
    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;}
.sc__c00000{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
}
.y0_c00000{bottom:0.000000px;}
.h0_c00000{height:4422.000000px;}
.w0_c00000{width:2878.500000px;}
.x0_c00000{left:0.000000px;}
@media print{
.y0_c00000{bottom:0.000000pt;}
.h0_c00000{height:3930.666667pt;}
.w0_c00000{width:2558.666667pt;}
.x0_c00000{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_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_17f717a99e3e4b0f3b921987.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00001{word-spacing:0.000000px;}
.fc0_c00001{color:transparent;}
.fs0_c00001{font-size:48.000000px;}
.y0_c00001{bottom:0.000000px;}
.y1_c00001{bottom:661.125000px;}
.h1_c00001{height:50.062500px;}
.h0_c00001{height:1174.500000px;}
.w0_c00001{width:744.732000px;}
.w1_c00001{width:744.750000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:247.350000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.fs0_c00001{font-size:42.666667pt;}
.y0_c00001{bottom:0.000000pt;}
.y1_c00001{bottom:587.666667pt;}
.h1_c00001{height:44.500000pt;}
.h0_c00001{height:1044.000000pt;}
.w0_c00001{width:661.984000pt;}
.w1_c00001{width:662.000000pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:219.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fa51a35900f82feeabe00c3c.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.284180;font-style:normal;font-weight:normal;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_59ca438b1b5539161491ff80.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:1.432129;font-style:normal;font-weight:normal;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_13495b77b57700d189609497.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:1.284180;font-style:normal;font-weight:normal;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_2236664f921d4dd2414caa85.woff2')format("woff");}.ff4_c00002{font-family:ff4_c00002;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00002;src:url('chunks/assets/font_fe8daa8b2d10075d57e9c4a2.woff2')format("woff");}.ff5_c00002{font-family:ff5_c00002;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00002{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m2_c00002{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0_c00002{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5_c00002{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1_c00002{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00002{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3_c00002{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,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;}
}
.ws0_c00002{word-spacing:0.000000px;}
.fc0_c00002{color:transparent;}
.fs2_c00002{font-size:84.000000px;}
.fs3_c00002{font-size:96.000000px;}
.fs1_c00002{font-size:120.000000px;}
.fs4_c00002{font-size:126.000000px;}
.fs0_c00002{font-size:132.000000px;}
.y0_c00002{bottom:0.000000px;}
.y1_c00002{bottom:580.875000px;}
.y2_c00002{bottom:581.160000px;}
.y3_c00002{bottom:581.535000px;}
.y4_c00002{bottom:581.910000px;}
.y6_c00002{bottom:700.335000px;}
.y5_c00002{bottom:700.410000px;}
.y7_c00002{bottom:816.675000px;}
.h5_c00002{height:82.441406px;}
.h6_c00002{height:94.218750px;}
.h4_c00002{height:117.714844px;}
.h7_c00002{height:126.984375px;}
.h2_c00002{height:129.486328px;}
.h3_c00002{height:137.671875px;}
.h0_c00002{height:1148.988000px;}
.h1_c00002{height:1149.000000px;}
.w0_c00002{width:706.464600px;}
.w1_c00002{width:706.500000px;}
.x0_c00002{left:0.000000px;}
.x1_c00002{left:120.414600px;}
.x9_c00002{left:151.014600px;}
.x2_c00002{left:190.914600px;}
.x3_c00002{left:207.489600px;}
.x4_c00002{left:256.839600px;}
.x5_c00002{left:276.639600px;}
.x6_c00002{left:334.614600px;}
.x7_c00002{left:366.624600px;}
.x8_c00002{left:565.314600px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls0_c00002{letter-spacing:0.000000pt;}
.ws0_c00002{word-spacing:0.000000pt;}
.fs2_c00002{font-size:74.666667pt;}
.fs3_c00002{font-size:85.333333pt;}
.fs1_c00002{font-size:106.666667pt;}
.fs4_c00002{font-size:112.000000pt;}
.fs0_c00002{font-size:117.333333pt;}
.y0_c00002{bottom:0.000000pt;}
.y1_c00002{bottom:516.333333pt;}
.y2_c00002{bottom:516.586667pt;}
.y3_c00002{bottom:516.920000pt;}
.y4_c00002{bottom:517.253333pt;}
.y6_c00002{bottom:622.520000pt;}
.y5_c00002{bottom:622.586667pt;}
.y7_c00002{bottom:725.933333pt;}
.h5_c00002{height:73.281250pt;}
.h6_c00002{height:83.750000pt;}
.h4_c00002{height:104.635417pt;}
.h7_c00002{height:112.875000pt;}
.h2_c00002{height:115.098958pt;}
.h3_c00002{height:122.375000pt;}
.h0_c00002{height:1021.322667pt;}
.h1_c00002{height:1021.333333pt;}
.w0_c00002{width:627.968533pt;}
.w1_c00002{width:628.000000pt;}
.x0_c00002{left:0.000000pt;}
.x1_c00002{left:107.035200pt;}
.x9_c00002{left:134.235200pt;}
.x2_c00002{left:169.701867pt;}
.x3_c00002{left:184.435200pt;}
.x4_c00002{left:228.301867pt;}
.x5_c00002{left:245.901867pt;}
.x6_c00002{left:297.435200pt;}
.x7_c00002{left:325.888533pt;}
.x8_c00002{left:502.501867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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:1174.500000px;}
.w1_c00003{width:765.750000px;}
.w0_c00003{width:765.991500px;}
.x0_c00003{left:0.000000px;}
@media print{
.y0_c00003{bottom:0.000000pt;}
.h0_c00003{height:1044.000000pt;}
.w1_c00003{width:680.666667pt;}
.w0_c00003{width:680.881333pt;}
.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_c3839bf3bc546acc42b22bd3.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_277a260a760941d307d8e553.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.432129;font-style:normal;font-weight:normal;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_75383162f01560484f902af7.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.432129;font-style:normal;font-weight:normal;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_b15695f9dfdedf2e6ebbeaf0.woff2')format("woff");}.ff4_c00004{font-family:ff4_c00004;line-height:1.432129;font-style:normal;font-weight:normal;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_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff5_c00004{font-family:ff5_c00004;line-height:1.575000;font-style:normal;font-weight:normal;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_3f0a2a4d16690323485b6a1c.woff2')format("woff");}.ff6_c00004{font-family:ff6_c00004;line-height:1.284180;font-style:normal;font-weight: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_81cdc8d1448daef398ad3e80.woff2')format("woff");}.ff7_c00004{font-family:ff7_c00004;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c00004{transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);}
.m15_c00004{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.mc_c00004{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf_c00004{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mb_c00004{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m0_c00004{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma_c00004{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m5_c00004{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md_c00004{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m4_c00004{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me_c00004{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1_c00004{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m6_c00004{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m8_c00004{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12_c00004{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m14_c00004{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c00004{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00004{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10_c00004{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m17_c00004{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c00004{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00004{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m13_c00004{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00004{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m11_c00004{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2_c00004{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00004{transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);}
.m7_c00004{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.ls0_c00004{letter-spacing:0.000000px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00004{word-spacing:0.000000px;}
.fc0_c00004{color:transparent;}
.fs9_c00004{font-size:42.000000px;}
.fsa_c00004{font-size:60.000000px;}
.fs6_c00004{font-size:84.000000px;}
.fs2_c00004{font-size:90.000000px;}
.fs4_c00004{font-size:96.000000px;}
.fs1_c00004{font-size:114.000000px;}
.fs5_c00004{font-size:126.000000px;}
.fs3_c00004{font-size:138.000000px;}
.fs8_c00004{font-size:144.000000px;}
.fs7_c00004{font-size:150.000000px;}
.fs0_c00004{font-size:240.000000px;}
.y0_c00004{bottom:0.000000px;}
.y1c_c00004{bottom:370.935000px;}
.y1a_c00004{bottom:507.810000px;}
.y19_c00004{bottom:508.500000px;}
.y1b_c00004{bottom:509.625000px;}
.y18_c00004{bottom:587.385000px;}
.y13_c00004{bottom:621.510000px;}
.y14_c00004{bottom:621.885000px;}
.y15_c00004{bottom:622.260000px;}
.y17_c00004{bottom:622.635000px;}
.y16_c00004{bottom:622.935000px;}
.y10_c00004{bottom:656.460000px;}
.y11_c00004{bottom:656.760000px;}
.y12_c00004{bottom:657.135000px;}
.yf_c00004{bottom:691.035000px;}
.ye_c00004{bottom:691.335000px;}
.yd_c00004{bottom:691.710000px;}
.yc_c00004{bottom:726.285000px;}
.yb_c00004{bottom:760.125000px;}
.ya_c00004{bottom:760.500000px;}
.y9_c00004{bottom:760.875000px;}
.y8_c00004{bottom:761.160000px;}
.y7_c00004{bottom:793.185000px;}
.y6_c00004{bottom:793.935000px;}
.y5_c00004{bottom:794.310000px;}
.y4_c00004{bottom:795.060000px;}
.y2_c00004{bottom:795.750000px;}
.y3_c00004{bottom:796.125000px;}
.y1_c00004{bottom:923.250000px;}
.hb_c00004{height:43.804688px;}
.hc_c00004{height:60.468750px;}
.h7_c00004{height:87.609375px;}
.h3_c00004{height:93.867188px;}
.h5_c00004{height:100.125000px;}
.h2_c00004{height:118.898438px;}
.h6_c00004{height:131.414062px;}
.ha_c00004{height:141.328125px;}
.h4_c00004{height:143.929688px;}
.h9_c00004{height:147.143555px;}
.h8_c00004{height:160.050000px;}
.h1_c00004{height:235.546875px;}
.h0_c00004{height:1174.500000px;}
.w1_c00004{width:727.500000px;}
.w0_c00004{width:727.724400px;}
.x0_c00004{left:0.000000px;}
.xb_c00004{left:51.284400px;}
.x16_c00004{left:53.474400px;}
.x24_c00004{left:82.574400px;}
.x2_c00004{left:97.724400px;}
.x1b_c00004{left:105.974400px;}
.x25_c00004{left:107.099400px;}
.x1c_c00004{left:114.974400px;}
.x1d_c00004{left:117.899400px;}
.x3_c00004{left:147.359400px;}
.x17_c00004{left:190.574400px;}
.xc_c00004{left:204.299400px;}
.x21_c00004{left:213.974400px;}
.x1_c00004{left:240.974400px;}
.x18_c00004{left:243.899400px;}
.x4_c00004{left:256.124400px;}
.x5_c00004{left:262.574400px;}
.x22_c00004{left:273.074400px;}
.x19_c00004{left:283.124400px;}
.x11_c00004{left:301.124400px;}
.x23_c00004{left:377.099400px;}
.x6_c00004{left:384.974400px;}
.x12_c00004{left:407.699400px;}
.x7_c00004{left:417.374400px;}
.x13_c00004{left:433.574400px;}
.x14_c00004{left:456.299400px;}
.xd_c00004{left:461.699400px;}
.x1e_c00004{left:483.674400px;}
.x8_c00004{left:492.974400px;}
.xe_c00004{left:517.874400px;}
.x15_c00004{left:554.924400px;}
.x9_c00004{left:563.549400px;}
.xf_c00004{left:573.299400px;}
.x1f_c00004{left:607.499400px;}
.xa_c00004{left:613.949400px;}
.x1a_c00004{left:630.149400px;}
.x10_c00004{left:643.874400px;}
.x20_c00004{left:648.899400px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls0_c00004{letter-spacing:0.000000pt;}
.ws0_c00004{word-spacing:0.000000pt;}
.fs9_c00004{font-size:37.333333pt;}
.fsa_c00004{font-size:53.333333pt;}
.fs6_c00004{font-size:74.666667pt;}
.fs2_c00004{font-size:80.000000pt;}
.fs4_c00004{font-size:85.333333pt;}
.fs1_c00004{font-size:101.333333pt;}
.fs5_c00004{font-size:112.000000pt;}
.fs3_c00004{font-size:122.666667pt;}
.fs8_c00004{font-size:128.000000pt;}
.fs7_c00004{font-size:133.333333pt;}
.fs0_c00004{font-size:213.333333pt;}
.y0_c00004{bottom:0.000000pt;}
.y1c_c00004{bottom:329.720000pt;}
.y1a_c00004{bottom:451.386667pt;}
.y19_c00004{bottom:452.000000pt;}
.y1b_c00004{bottom:453.000000pt;}
.y18_c00004{bottom:522.120000pt;}
.y13_c00004{bottom:552.453333pt;}
.y14_c00004{bottom:552.786667pt;}
.y15_c00004{bottom:553.120000pt;}
.y17_c00004{bottom:553.453333pt;}
.y16_c00004{bottom:553.720000pt;}
.y10_c00004{bottom:583.520000pt;}
.y11_c00004{bottom:583.786667pt;}
.y12_c00004{bottom:584.120000pt;}
.yf_c00004{bottom:614.253333pt;}
.ye_c00004{bottom:614.520000pt;}
.yd_c00004{bottom:614.853333pt;}
.yc_c00004{bottom:645.586667pt;}
.yb_c00004{bottom:675.666667pt;}
.ya_c00004{bottom:676.000000pt;}
.y9_c00004{bottom:676.333333pt;}
.y8_c00004{bottom:676.586667pt;}
.y7_c00004{bottom:705.053333pt;}
.y6_c00004{bottom:705.720000pt;}
.y5_c00004{bottom:706.053333pt;}
.y4_c00004{bottom:706.720000pt;}
.y2_c00004{bottom:707.333333pt;}
.y3_c00004{bottom:707.666667pt;}
.y1_c00004{bottom:820.666667pt;}
.hb_c00004{height:38.937500pt;}
.hc_c00004{height:53.750000pt;}
.h7_c00004{height:77.875000pt;}
.h3_c00004{height:83.437500pt;}
.h5_c00004{height:89.000000pt;}
.h2_c00004{height:105.687500pt;}
.h6_c00004{height:116.812500pt;}
.ha_c00004{height:125.625000pt;}
.h4_c00004{height:127.937500pt;}
.h9_c00004{height:130.794271pt;}
.h8_c00004{height:142.266667pt;}
.h1_c00004{height:209.375000pt;}
.h0_c00004{height:1044.000000pt;}
.w1_c00004{width:646.666667pt;}
.w0_c00004{width:646.866133pt;}
.x0_c00004{left:0.000000pt;}
.xb_c00004{left:45.586133pt;}
.x16_c00004{left:47.532800pt;}
.x24_c00004{left:73.399467pt;}
.x2_c00004{left:86.866133pt;}
.x1b_c00004{left:94.199467pt;}
.x25_c00004{left:95.199467pt;}
.x1c_c00004{left:102.199467pt;}
.x1d_c00004{left:104.799467pt;}
.x3_c00004{left:130.986133pt;}
.x17_c00004{left:169.399467pt;}
.xc_c00004{left:181.599467pt;}
.x21_c00004{left:190.199467pt;}
.x1_c00004{left:214.199467pt;}
.x18_c00004{left:216.799467pt;}
.x4_c00004{left:227.666133pt;}
.x5_c00004{left:233.399467pt;}
.x22_c00004{left:242.732800pt;}
.x19_c00004{left:251.666133pt;}
.x11_c00004{left:267.666133pt;}
.x23_c00004{left:335.199467pt;}
.x6_c00004{left:342.199467pt;}
.x12_c00004{left:362.399467pt;}
.x7_c00004{left:370.999467pt;}
.x13_c00004{left:385.399467pt;}
.x14_c00004{left:405.599467pt;}
.xd_c00004{left:410.399467pt;}
.x1e_c00004{left:429.932800pt;}
.x8_c00004{left:438.199467pt;}
.xe_c00004{left:460.332800pt;}
.x15_c00004{left:493.266133pt;}
.x9_c00004{left:500.932800pt;}
.xf_c00004{left:509.599467pt;}
.x1f_c00004{left:539.999467pt;}
.xa_c00004{left:545.732800pt;}
.x1a_c00004{left:560.132800pt;}
.x10_c00004{left:572.332800pt;}
.x20_c00004{left:576.799467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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:1174.500000px;}
.w0_c00005{width:748.984500px;}
.w1_c00005{width:749.250000px;}
.x0_c00005{left:0.000000px;}
@media print{
.y0_c00005{bottom:0.000000pt;}
.h0_c00005{height:1044.000000pt;}
.w0_c00005{width:665.764000pt;}
.w1_c00005{width:666.000000pt;}
.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_20ed93bf6eb92a2e8304387c.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00006{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.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:transparent;}
.fs0_c00006{font-size:162.000000px;}
.y0_c00006{bottom:0.000000px;}
.y1_c00006{bottom:689.625000px;}
.h1_c00006{height:158.994141px;}
.h0_c00006{height:1174.500000px;}
.w1_c00006{width:740.250000px;}
.w0_c00006{width:740.480250px;}
.x0_c00006{left:0.000000px;}
.x1_c00006{left:212.030250px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls0_c00006{letter-spacing:0.000000pt;}
.ws0_c00006{word-spacing:0.000000pt;}
.fs0_c00006{font-size:144.000000pt;}
.y0_c00006{bottom:0.000000pt;}
.y1_c00006{bottom:613.000000pt;}
.h1_c00006{height:141.328125pt;}
.h0_c00006{height:1044.000000pt;}
.w1_c00006{width:658.000000pt;}
.w0_c00006{width:658.204667pt;}
.x0_c00006{left:0.000000pt;}
.x1_c00006{left:188.471333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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:1174.500000px;}
.w0_c00007{width:770.244000px;}
.w1_c00007{width:770.250000px;}
.x0_c00007{left:0.000000px;}
@media print{
.y0_c00007{bottom:0.000000pt;}
.h0_c00007{height:1044.000000pt;}
.w0_c00007{width:684.661333pt;}
.w1_c00007{width:684.666667pt;}
.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_a2522dcc06a3597ada2ef976.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00008;src:url('chunks/assets/font_dcd0870a49e1c217d10ab7ae.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00008{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m7_c00008{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5_c00008{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c00008{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c00008{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c00008{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c00008{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00008{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8_c00008{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00008{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00008{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00008{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.ls0_c00008{letter-spacing:0.000000px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00008{word-spacing:0.000000px;}
.fc0_c00008{color:transparent;}
.fs2_c00008{font-size:72.000000px;}
.fs1_c00008{font-size:96.000000px;}
.fs0_c00008{font-size:162.000000px;}
.y0_c00008{bottom:0.000000px;}
.y1b_c00008{bottom:105.660000px;}
.y1a_c00008{bottom:135.885000px;}
.y19_c00008{bottom:164.685000px;}
.y18_c00008{bottom:194.250000px;}
.y17_c00008{bottom:223.710000px;}
.y16_c00008{bottom:253.935000px;}
.y15_c00008{bottom:282.810000px;}
.y14_c00008{bottom:313.710000px;}
.y13_c00008{bottom:343.650000px;}
.y12_c00008{bottom:373.500000px;}
.y11_c00008{bottom:404.460000px;}
.y10_c00008{bottom:434.310000px;}
.yf_c00008{bottom:464.535000px;}
.ye_c00008{bottom:494.460000px;}
.yd_c00008{bottom:525.060000px;}
.yc_c00008{bottom:555.660000px;}
.yb_c00008{bottom:585.510000px;}
.ya_c00008{bottom:616.875000px;}
.y9_c00008{bottom:645.960000px;}
.y8_c00008{bottom:674.085000px;}
.y7_c00008{bottom:675.510000px;}
.y6_c00008{bottom:677.310000px;}
.y5_c00008{bottom:706.500000px;}
.y4_c00008{bottom:736.710000px;}
.y3_c00008{bottom:766.950000px;}
.y2_c00008{bottom:797.175000px;}
.y1_c00008{bottom:876.060000px;}
.h3_c00008{height:70.664062px;}
.h2_c00008{height:94.218750px;}
.h1_c00008{height:163.265625px;}
.h0_c00008{height:1174.500000px;}
.w1_c00008{width:740.250000px;}
.w0_c00008{width:740.480250px;}
.x0_c00008{left:0.000000px;}
.x3_c00008{left:67.655250px;}
.x7_c00008{left:69.080250px;}
.x8_c00008{left:70.880250px;}
.xa_c00008{left:73.430250px;}
.xb_c00008{left:74.480250px;}
.x6_c00008{left:95.705250px;}
.x2_c00008{left:106.130250px;}
.x9_c00008{left:109.730250px;}
.x1_c00008{left:245.855250px;}
.x4_c00008{left:388.430250px;}
.x5_c00008{left:580.655250px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls0_c00008{letter-spacing:0.000000pt;}
.ws0_c00008{word-spacing:0.000000pt;}
.fs2_c00008{font-size:64.000000pt;}
.fs1_c00008{font-size:85.333333pt;}
.fs0_c00008{font-size:144.000000pt;}
.y0_c00008{bottom:0.000000pt;}
.y1b_c00008{bottom:93.920000pt;}
.y1a_c00008{bottom:120.786667pt;}
.y19_c00008{bottom:146.386667pt;}
.y18_c00008{bottom:172.666667pt;}
.y17_c00008{bottom:198.853333pt;}
.y16_c00008{bottom:225.720000pt;}
.y15_c00008{bottom:251.386667pt;}
.y14_c00008{bottom:278.853333pt;}
.y13_c00008{bottom:305.466667pt;}
.y12_c00008{bottom:332.000000pt;}
.y11_c00008{bottom:359.520000pt;}
.y10_c00008{bottom:386.053333pt;}
.yf_c00008{bottom:412.920000pt;}
.ye_c00008{bottom:439.520000pt;}
.yd_c00008{bottom:466.720000pt;}
.yc_c00008{bottom:493.920000pt;}
.yb_c00008{bottom:520.453333pt;}
.ya_c00008{bottom:548.333333pt;}
.y9_c00008{bottom:574.186667pt;}
.y8_c00008{bottom:599.186667pt;}
.y7_c00008{bottom:600.453333pt;}
.y6_c00008{bottom:602.053333pt;}
.y5_c00008{bottom:628.000000pt;}
.y4_c00008{bottom:654.853333pt;}
.y3_c00008{bottom:681.733333pt;}
.y2_c00008{bottom:708.600000pt;}
.y1_c00008{bottom:778.720000pt;}
.h3_c00008{height:62.812500pt;}
.h2_c00008{height:83.750000pt;}
.h1_c00008{height:145.125000pt;}
.h0_c00008{height:1044.000000pt;}
.w1_c00008{width:658.000000pt;}
.w0_c00008{width:658.204667pt;}
.x0_c00008{left:0.000000pt;}
.x3_c00008{left:60.138000pt;}
.x7_c00008{left:61.404667pt;}
.x8_c00008{left:63.004667pt;}
.xa_c00008{left:65.271333pt;}
.xb_c00008{left:66.204667pt;}
.x6_c00008{left:85.071333pt;}
.x2_c00008{left:94.338000pt;}
.x9_c00008{left:97.538000pt;}
.x1_c00008{left:218.538000pt;}
.x4_c00008{left:345.271333pt;}
.x5_c00008{left:516.138000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4aad43b6492fd1001b15f6ba.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00009;src:url('chunks/assets/font_b95592a64dcbc92fb00d9feb.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00009{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf_c00009{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4_c00009{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c00009{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00009{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5_c00009{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m0_c00009{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m8_c00009{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m10_c00009{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00009{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00009{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md_c00009{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c00009{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c00009{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00009{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16_c00009{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c00009{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00009{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c00009{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m17_c00009{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c00009{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00009{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c00009{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2_c00009{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,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:0.000000px;}
.fc0_c00009{color:transparent;}
.fs1_c00009{font-size:66.000000px;}
.fs2_c00009{font-size:90.000000px;}
.fs0_c00009{font-size:96.000000px;}
.y0_c00009{bottom:0.000000px;}
.y2f_c00009{bottom:100.260000px;}
.y2e_c00009{bottom:108.885000px;}
.y2c_c00009{bottom:118.560000px;}
.y2d_c00009{bottom:118.935000px;}
.y2b_c00009{bottom:134.835000px;}
.y2a_c00009{bottom:141.660000px;}
.y29_c00009{bottom:144.885000px;}
.y28_c00009{bottom:219.060000px;}
.y27_c00009{bottom:229.500000px;}
.y26_c00009{bottom:241.410000px;}
.y25_c00009{bottom:254.685000px;}
.y24_c00009{bottom:266.250000px;}
.y23_c00009{bottom:271.650000px;}
.y22_c00009{bottom:277.410000px;}
.y21_c00009{bottom:291.435000px;}
.y20_c00009{bottom:314.775000px;}
.y1f_c00009{bottom:325.650000px;}
.y1e_c00009{bottom:331.035000px;}
.y1d_c00009{bottom:350.085000px;}
.y1c_c00009{bottom:382.185000px;}
.y1b_c00009{bottom:390.060000px;}
.y1a_c00009{bottom:392.250000px;}
.y19_c00009{bottom:412.335000px;}
.y18_c00009{bottom:442.185000px;}
.y17_c00009{bottom:463.500000px;}
.y16_c00009{bottom:468.885000px;}
.y15_c00009{bottom:476.460000px;}
.y14_c00009{bottom:501.660000px;}
.y13_c00009{bottom:531.510000px;}
.y12_c00009{bottom:562.125000px;}
.y11_c00009{bottom:593.460000px;}
.y10_c00009{bottom:622.560000px;}
.yf_c00009{bottom:652.500000px;}
.ye_c00009{bottom:683.085000px;}
.yd_c00009{bottom:713.310000px;}
.yc_c00009{bottom:743.250000px;}
.yb_c00009{bottom:772.710000px;}
.ya_c00009{bottom:801.900000px;}
.y9_c00009{bottom:832.500000px;}
.y8_c00009{bottom:862.710000px;}
.y7_c00009{bottom:891.900000px;}
.y6_c00009{bottom:922.125000px;}
.y4_c00009{bottom:945.525000px;}
.y5_c00009{bottom:950.925000px;}
.y3_c00009{bottom:981.585000px;}
.y2_c00009{bottom:1011.060000px;}
.y1_c00009{bottom:1040.625000px;}
.h4_c00009{height:64.743164px;}
.h2_c00009{height:64.775391px;}
.h3_c00009{height:88.286133px;}
.h1_c00009{height:94.218750px;}
.h0_c00009{height:1174.500000px;}
.w0_c00009{width:761.740500px;}
.w1_c00009{width:762.000000px;}
.x0_c00009{left:0.000000px;}
.x1a_c00009{left:78.150000px;}
.xe_c00009{left:81.000000px;}
.x8_c00009{left:83.175000px;}
.x7_c00009{left:84.225000px;}
.x6_c00009{left:85.350000px;}
.x5_c00009{left:87.450000px;}
.x2_c00009{left:91.800000px;}
.x16_c00009{left:93.975000px;}
.x3_c00009{left:100.425000px;}
.xd_c00009{left:118.050000px;}
.x4_c00009{left:124.200000px;}
.x1_c00009{left:128.850000px;}
.xb_c00009{left:180.375000px;}
.xc_c00009{left:189.750000px;}
.x17_c00009{left:190.800000px;}
.x18_c00009{left:209.850000px;}
.x12_c00009{left:282.225000px;}
.xf_c00009{left:284.025000px;}
.x13_c00009{left:297.750000px;}
.x10_c00009{left:299.175000px;}
.x14_c00009{left:307.425000px;}
.x1b_c00009{left:363.225000px;}
.x1c_c00009{left:379.050000px;}
.x19_c00009{left:386.625000px;}
.x9_c00009{left:438.150000px;}
.xa_c00009{left:474.825000px;}
.x15_c00009{left:479.550000px;}
.x11_c00009{left:645.450000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls0_c00009{letter-spacing:0.000000pt;}
.ws0_c00009{word-spacing:0.000000pt;}
.fs1_c00009{font-size:58.666667pt;}
.fs2_c00009{font-size:80.000000pt;}
.fs0_c00009{font-size:85.333333pt;}
.y0_c00009{bottom:0.000000pt;}
.y2f_c00009{bottom:89.120000pt;}
.y2e_c00009{bottom:96.786667pt;}
.y2c_c00009{bottom:105.386667pt;}
.y2d_c00009{bottom:105.720000pt;}
.y2b_c00009{bottom:119.853333pt;}
.y2a_c00009{bottom:125.920000pt;}
.y29_c00009{bottom:128.786667pt;}
.y28_c00009{bottom:194.720000pt;}
.y27_c00009{bottom:204.000000pt;}
.y26_c00009{bottom:214.586667pt;}
.y25_c00009{bottom:226.386667pt;}
.y24_c00009{bottom:236.666667pt;}
.y23_c00009{bottom:241.466667pt;}
.y22_c00009{bottom:246.586667pt;}
.y21_c00009{bottom:259.053333pt;}
.y20_c00009{bottom:279.800000pt;}
.y1f_c00009{bottom:289.466667pt;}
.y1e_c00009{bottom:294.253333pt;}
.y1d_c00009{bottom:311.186667pt;}
.y1c_c00009{bottom:339.720000pt;}
.y1b_c00009{bottom:346.720000pt;}
.y1a_c00009{bottom:348.666667pt;}
.y19_c00009{bottom:366.520000pt;}
.y18_c00009{bottom:393.053333pt;}
.y17_c00009{bottom:412.000000pt;}
.y16_c00009{bottom:416.786667pt;}
.y15_c00009{bottom:423.520000pt;}
.y14_c00009{bottom:445.920000pt;}
.y13_c00009{bottom:472.453333pt;}
.y12_c00009{bottom:499.666667pt;}
.y11_c00009{bottom:527.520000pt;}
.y10_c00009{bottom:553.386667pt;}
.yf_c00009{bottom:580.000000pt;}
.ye_c00009{bottom:607.186667pt;}
.yd_c00009{bottom:634.053333pt;}
.yc_c00009{bottom:660.666667pt;}
.yb_c00009{bottom:686.853333pt;}
.ya_c00009{bottom:712.800000pt;}
.y9_c00009{bottom:740.000000pt;}
.y8_c00009{bottom:766.853333pt;}
.y7_c00009{bottom:792.800000pt;}
.y6_c00009{bottom:819.666667pt;}
.y4_c00009{bottom:840.466667pt;}
.y5_c00009{bottom:845.266667pt;}
.y3_c00009{bottom:872.520000pt;}
.y2_c00009{bottom:898.720000pt;}
.y1_c00009{bottom:925.000000pt;}
.h4_c00009{height:57.549479pt;}
.h2_c00009{height:57.578125pt;}
.h3_c00009{height:78.476562pt;}
.h1_c00009{height:83.750000pt;}
.h0_c00009{height:1044.000000pt;}
.w0_c00009{width:677.102667pt;}
.w1_c00009{width:677.333333pt;}
.x0_c00009{left:0.000000pt;}
.x1a_c00009{left:69.466667pt;}
.xe_c00009{left:72.000000pt;}
.x8_c00009{left:73.933333pt;}
.x7_c00009{left:74.866667pt;}
.x6_c00009{left:75.866667pt;}
.x5_c00009{left:77.733333pt;}
.x2_c00009{left:81.600000pt;}
.x16_c00009{left:83.533333pt;}
.x3_c00009{left:89.266667pt;}
.xd_c00009{left:104.933333pt;}
.x4_c00009{left:110.400000pt;}
.x1_c00009{left:114.533333pt;}
.xb_c00009{left:160.333333pt;}
.xc_c00009{left:168.666667pt;}
.x17_c00009{left:169.600000pt;}
.x18_c00009{left:186.533333pt;}
.x12_c00009{left:250.866667pt;}
.xf_c00009{left:252.466667pt;}
.x13_c00009{left:264.666667pt;}
.x10_c00009{left:265.933333pt;}
.x14_c00009{left:273.266667pt;}
.x1b_c00009{left:322.866667pt;}
.x1c_c00009{left:336.933333pt;}
.x19_c00009{left:343.666667pt;}
.x9_c00009{left:389.466667pt;}
.xa_c00009{left:422.066667pt;}
.x15_c00009{left:426.266667pt;}
.x11_c00009{left:573.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f8a7667a599b3746e36e6882.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00010;src:url('chunks/assets/font_0a7a429a7920fe6ce8469fcf.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00010{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9_c00010{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1_c00010{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4_c00010{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8_c00010{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00010{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c00010{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c00010{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c00010{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c00010{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c00010{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c00010{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,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;}
.fc0_c00010{color:transparent;}
.fs0_c00010{font-size:78.000000px;}
.fs1_c00010{font-size:96.000000px;}
.fs2_c00010{font-size:108.000000px;}
.y0_c00010{bottom:0.000000px;}
.y24_c00010{bottom:64.260000px;}
.y23_c00010{bottom:94.875000px;}
.y22_c00010{bottom:124.410000px;}
.y21_c00010{bottom:153.885000px;}
.y20_c00010{bottom:183.435000px;}
.y1f_c00010{bottom:214.035000px;}
.y1e_c00010{bottom:244.260000px;}
.y1d_c00010{bottom:274.875000px;}
.y1c_c00010{bottom:305.460000px;}
.y1b_c00010{bottom:336.060000px;}
.y1a_c00010{bottom:366.660000px;}
.y19_c00010{bottom:397.650000px;}
.y18_c00010{bottom:428.625000px;}
.y17_c00010{bottom:459.585000px;}
.y16_c00010{bottom:490.500000px;}
.y15_c00010{bottom:521.460000px;}
.y14_c00010{bottom:552.375000px;}
.y13_c00010{bottom:583.335000px;}
.y12_c00010{bottom:614.010000px;}
.y11_c00010{bottom:644.910000px;}
.y10_c00010{bottom:675.885000px;}
.yf_c00010{bottom:706.500000px;}
.ye_c00010{bottom:737.835000px;}
.yd_c00010{bottom:769.125000px;}
.yc_c00010{bottom:801.150000px;}
.yb_c00010{bottom:832.185000px;}
.ya_c00010{bottom:863.085000px;}
.y9_c00010{bottom:894.750000px;}
.y8_c00010{bottom:926.085000px;}
.y7_c00010{bottom:956.685000px;}
.y6_c00010{bottom:986.925000px;}
.y5_c00010{bottom:1016.460000px;}
.y4_c00010{bottom:1020.000000px;}
.y1_c00010{bottom:1020.060000px;}
.y3_c00010{bottom:1020.375000px;}
.y2_c00010{bottom:1020.810000px;}
.h1_c00010{height:78.609375px;}
.h4_c00010{height:94.218750px;}
.h2_c00010{height:96.750000px;}
.h3_c00010{height:108.843750px;}
.h0_c00010{height:1174.500000px;}
.w0_c00010{width:783.000000px;}
.x0_c00010{left:0.000000px;}
.x1_c00010{left:76.650000px;}
.x6_c00010{left:78.150000px;}
.x7_c00010{left:79.200000px;}
.x8_c00010{left:81.750000px;}
.x9_c00010{left:83.175000px;}
.xa_c00010{left:84.600000px;}
.xd_c00010{left:85.650000px;}
.xc_c00010{left:86.775000px;}
.xe_c00010{left:87.825000px;}
.xf_c00010{left:88.950000px;}
.x11_c00010{left:91.800000px;}
.x12_c00010{left:93.225000px;}
.x2_c00010{left:122.025000px;}
.xb_c00010{left:124.950000px;}
.x10_c00010{left:129.975000px;}
.x3_c00010{left:209.550000px;}
.x4_c00010{left:231.450000px;}
.x5_c00010{left:305.250000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls0_c00010{letter-spacing:0.000000pt;}
.ws0_c00010{word-spacing:0.000000pt;}
.fs0_c00010{font-size:69.333333pt;}
.fs1_c00010{font-size:85.333333pt;}
.fs2_c00010{font-size:96.000000pt;}
.y0_c00010{bottom:0.000000pt;}
.y24_c00010{bottom:57.120000pt;}
.y23_c00010{bottom:84.333333pt;}
.y22_c00010{bottom:110.586667pt;}
.y21_c00010{bottom:136.786667pt;}
.y20_c00010{bottom:163.053333pt;}
.y1f_c00010{bottom:190.253333pt;}
.y1e_c00010{bottom:217.120000pt;}
.y1d_c00010{bottom:244.333333pt;}
.y1c_c00010{bottom:271.520000pt;}
.y1b_c00010{bottom:298.720000pt;}
.y1a_c00010{bottom:325.920000pt;}
.y19_c00010{bottom:353.466667pt;}
.y18_c00010{bottom:381.000000pt;}
.y17_c00010{bottom:408.520000pt;}
.y16_c00010{bottom:436.000000pt;}
.y15_c00010{bottom:463.520000pt;}
.y14_c00010{bottom:491.000000pt;}
.y13_c00010{bottom:518.520000pt;}
.y12_c00010{bottom:545.786667pt;}
.y11_c00010{bottom:573.253333pt;}
.y10_c00010{bottom:600.786667pt;}
.yf_c00010{bottom:628.000000pt;}
.ye_c00010{bottom:655.853333pt;}
.yd_c00010{bottom:683.666667pt;}
.yc_c00010{bottom:712.133333pt;}
.yb_c00010{bottom:739.720000pt;}
.ya_c00010{bottom:767.186667pt;}
.y9_c00010{bottom:795.333333pt;}
.y8_c00010{bottom:823.186667pt;}
.y7_c00010{bottom:850.386667pt;}
.y6_c00010{bottom:877.266667pt;}
.y5_c00010{bottom:903.520000pt;}
.y4_c00010{bottom:906.666667pt;}
.y1_c00010{bottom:906.720000pt;}
.y3_c00010{bottom:907.000000pt;}
.y2_c00010{bottom:907.386667pt;}
.h1_c00010{height:69.875000pt;}
.h4_c00010{height:83.750000pt;}
.h2_c00010{height:86.000000pt;}
.h3_c00010{height:96.750000pt;}
.h0_c00010{height:1044.000000pt;}
.w0_c00010{width:696.000000pt;}
.x0_c00010{left:0.000000pt;}
.x1_c00010{left:68.133333pt;}
.x6_c00010{left:69.466667pt;}
.x7_c00010{left:70.400000pt;}
.x8_c00010{left:72.666667pt;}
.x9_c00010{left:73.933333pt;}
.xa_c00010{left:75.200000pt;}
.xd_c00010{left:76.133333pt;}
.xc_c00010{left:77.133333pt;}
.xe_c00010{left:78.066667pt;}
.xf_c00010{left:79.066667pt;}
.x11_c00010{left:81.600000pt;}
.x12_c00010{left:82.866667pt;}
.x2_c00010{left:108.466667pt;}
.xb_c00010{left:111.066667pt;}
.x10_c00010{left:115.533333pt;}
.x3_c00010{left:186.266667pt;}
.x4_c00010{left:205.733333pt;}
.x5_c00010{left:271.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_45ffd1f4c7675ffd4a8eaf25.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00011;src:url('chunks/assets/font_9190092901db72855d264214.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00011;src:url('chunks/assets/font_85df9e6dc037cb42400eec5f.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me_c00011{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m1_c00011{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7_c00011{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc_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);}
.m9_c00011{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4_c00011{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c00011{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00011{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m8_c00011{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c00011{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c00011{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md_c00011{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c00011{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00011{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00011{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2_c00011{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls0_c00011{letter-spacing:0.000000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00011{word-spacing:0.000000px;}
.fc0_c00011{color:transparent;}
.fs0_c00011{font-size:48.000000px;}
.fs2_c00011{font-size:54.000000px;}
.fs1_c00011{font-size:60.000000px;}
.fs4_c00011{font-size:90.000000px;}
.fs3_c00011{font-size:96.000000px;}
.y0_c00011{bottom:0.000000px;}
.y26_c00011{bottom:106.710000px;}
.y25_c00011{bottom:117.210000px;}
.y24_c00011{bottom:119.685000px;}
.y23_c00011{bottom:138.750000px;}
.y22_c00011{bottom:169.035000px;}
.y21_c00011{bottom:198.510000px;}
.y20_c00011{bottom:229.185000px;}
.y1f_c00011{bottom:259.410000px;}
.y1e_c00011{bottom:289.650000px;}
.y1d_c00011{bottom:319.785000px;}
.y1c_c00011{bottom:349.410000px;}
.y1b_c00011{bottom:381.060000px;}
.y1a_c00011{bottom:410.535000px;}
.y19_c00011{bottom:441.210000px;}
.y18_c00011{bottom:471.750000px;}
.y17_c00011{bottom:501.585000px;}
.y16_c00011{bottom:532.260000px;}
.y15_c00011{bottom:562.125000px;}
.y14_c00011{bottom:592.035000px;}
.y13_c00011{bottom:622.560000px;}
.y12_c00011{bottom:652.875000px;}
.y11_c00011{bottom:682.710000px;}
.y10_c00011{bottom:712.935000px;}
.yf_c00011{bottom:742.875000px;}
.ye_c00011{bottom:772.425000px;}
.yd_c00011{bottom:802.650000px;}
.yc_c00011{bottom:832.500000px;}
.yb_c00011{bottom:862.050000px;}
.ya_c00011{bottom:892.560000px;}
.y9_c00011{bottom:917.460000px;}
.y8_c00011{bottom:949.800000px;}
.y7_c00011{bottom:979.710000px;}
.y6_c00011{bottom:1009.560000px;}
.y5_c00011{bottom:1038.750000px;}
.y2_c00011{bottom:1095.300000px;}
.y4_c00011{bottom:1106.085000px;}
.y3_c00011{bottom:1111.500000px;}
.y1_c00011{bottom:1164.750000px;}
.h1_c00011{height:47.109375px;}
.h3_c00011{height:52.998047px;}
.h2_c00011{height:62.578125px;}
.h5_c00011{height:88.286133px;}
.h4_c00011{height:94.218750px;}
.h0_c00011{height:1174.500000px;}
.w0_c00011{width:761.740500px;}
.w1_c00011{width:762.000000px;}
.x0_c00011{left:0.000000px;}
.x8_c00011{left:79.950000px;}
.x7_c00011{left:81.750000px;}
.x6_c00011{left:82.800000px;}
.x5_c00011{left:84.600000px;}
.x2_c00011{left:102.975000px;}
.xb_c00011{left:115.950000px;}
.x3_c00011{left:119.175000px;}
.xc_c00011{left:212.760000px;}
.xd_c00011{left:222.135000px;}
.x9_c00011{left:236.175000px;}
.xa_c00011{left:330.825000px;}
.x4_c00011{left:341.250000px;}
.x1_c00011{left:761.400000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls0_c00011{letter-spacing:0.000000pt;}
.ws0_c00011{word-spacing:0.000000pt;}
.fs0_c00011{font-size:42.666667pt;}
.fs2_c00011{font-size:48.000000pt;}
.fs1_c00011{font-size:53.333333pt;}
.fs4_c00011{font-size:80.000000pt;}
.fs3_c00011{font-size:85.333333pt;}
.y0_c00011{bottom:0.000000pt;}
.y26_c00011{bottom:94.853333pt;}
.y25_c00011{bottom:104.186667pt;}
.y24_c00011{bottom:106.386667pt;}
.y23_c00011{bottom:123.333333pt;}
.y22_c00011{bottom:150.253333pt;}
.y21_c00011{bottom:176.453333pt;}
.y20_c00011{bottom:203.720000pt;}
.y1f_c00011{bottom:230.586667pt;}
.y1e_c00011{bottom:257.466667pt;}
.y1d_c00011{bottom:284.253333pt;}
.y1c_c00011{bottom:310.586667pt;}
.y1b_c00011{bottom:338.720000pt;}
.y1a_c00011{bottom:364.920000pt;}
.y19_c00011{bottom:392.186667pt;}
.y18_c00011{bottom:419.333333pt;}
.y17_c00011{bottom:445.853333pt;}
.y16_c00011{bottom:473.120000pt;}
.y15_c00011{bottom:499.666667pt;}
.y14_c00011{bottom:526.253333pt;}
.y13_c00011{bottom:553.386667pt;}
.y12_c00011{bottom:580.333333pt;}
.y11_c00011{bottom:606.853333pt;}
.y10_c00011{bottom:633.720000pt;}
.yf_c00011{bottom:660.333333pt;}
.ye_c00011{bottom:686.600000pt;}
.yd_c00011{bottom:713.466667pt;}
.yc_c00011{bottom:740.000000pt;}
.yb_c00011{bottom:766.266667pt;}
.ya_c00011{bottom:793.386667pt;}
.y9_c00011{bottom:815.520000pt;}
.y8_c00011{bottom:844.266667pt;}
.y7_c00011{bottom:870.853333pt;}
.y6_c00011{bottom:897.386667pt;}
.y5_c00011{bottom:923.333333pt;}
.y2_c00011{bottom:973.600000pt;}
.y4_c00011{bottom:983.186667pt;}
.y3_c00011{bottom:988.000000pt;}
.y1_c00011{bottom:1035.333333pt;}
.h1_c00011{height:41.875000pt;}
.h3_c00011{height:47.109375pt;}
.h2_c00011{height:55.625000pt;}
.h5_c00011{height:78.476562pt;}
.h4_c00011{height:83.750000pt;}
.h0_c00011{height:1044.000000pt;}
.w0_c00011{width:677.102667pt;}
.w1_c00011{width:677.333333pt;}
.x0_c00011{left:0.000000pt;}
.x8_c00011{left:71.066667pt;}
.x7_c00011{left:72.666667pt;}
.x6_c00011{left:73.600000pt;}
.x5_c00011{left:75.200000pt;}
.x2_c00011{left:91.533333pt;}
.xb_c00011{left:103.066667pt;}
.x3_c00011{left:105.933333pt;}
.xc_c00011{left:189.120000pt;}
.xd_c00011{left:197.453333pt;}
.x9_c00011{left:209.933333pt;}
.xa_c00011{left:294.066667pt;}
.x4_c00011{left:303.333333pt;}
.x1_c00011{left:676.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_54257db5489805bbca03e139.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.432129;font-style:normal;font-weight:normal;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_769390e895f989a7c4ec8d1e.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00012;src:url('chunks/assets/font_efacc45272d19bfc4b60eceb.woff2')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:1.284180;font-style: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.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4_c00012{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2_c00012{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3_c00012{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c00012{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5_c00012{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls0_c00012{letter-spacing:0.000000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00012{word-spacing:0.000000px;}
.fc0_c00012{color:transparent;}
.fs0_c00012{font-size:66.000000px;}
.fs2_c00012{font-size:84.000000px;}
.fs1_c00012{font-size:102.000000px;}
.y0_c00012{bottom:0.000000px;}
.y9_c00012{bottom:668.010000px;}
.y8_c00012{bottom:833.175000px;}
.y7_c00012{bottom:864.900000px;}
.y6_c00012{bottom:895.500000px;}
.y5_c00012{bottom:926.085000px;}
.y4_c00012{bottom:956.685000px;}
.y3_c00012{bottom:987.300000px;}
.y2_c00012{bottom:1018.560000px;}
.y1_c00012{bottom:1085.925000px;}
.h1_c00012{height:68.835938px;}
.h3_c00012{height:82.400391px;}
.h2_c00012{height:100.107422px;}
.h0_c00012{height:1174.500000px;}
.w0_c00012{width:783.000000px;}
.x0_c00012{left:0.000000px;}
.x3_c00012{left:78.825000px;}
.x2_c00012{left:79.950000px;}
.x5_c00012{left:112.650000px;}
.x4_c00012{left:119.175000px;}
.x1_c00012{left:669.975000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls0_c00012{letter-spacing:0.000000pt;}
.ws0_c00012{word-spacing:0.000000pt;}
.fs0_c00012{font-size:58.666667pt;}
.fs2_c00012{font-size:74.666667pt;}
.fs1_c00012{font-size:90.666667pt;}
.y0_c00012{bottom:0.000000pt;}
.y9_c00012{bottom:593.786667pt;}
.y8_c00012{bottom:740.600000pt;}
.y7_c00012{bottom:768.800000pt;}
.y6_c00012{bottom:796.000000pt;}
.y5_c00012{bottom:823.186667pt;}
.y4_c00012{bottom:850.386667pt;}
.y3_c00012{bottom:877.600000pt;}
.y2_c00012{bottom:905.386667pt;}
.y1_c00012{bottom:965.266667pt;}
.h1_c00012{height:61.187500pt;}
.h3_c00012{height:73.244792pt;}
.h2_c00012{height:88.984375pt;}
.h0_c00012{height:1044.000000pt;}
.w0_c00012{width:696.000000pt;}
.x0_c00012{left:0.000000pt;}
.x3_c00012{left:70.066667pt;}
.x2_c00012{left:71.066667pt;}
.x5_c00012{left:100.133333pt;}
.x4_c00012{left:105.933333pt;}
.x1_c00012{left:595.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00013 {
    display:none;
  }
  .loading-indicator_c00013.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00013 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00013 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00013" -> "#page-container .classname_c00013")
 */
.pf_c00013 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00013 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00013 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00013 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00013 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00013 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00013 {overflow:visible;}
  }
}
.c_c00013 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00013 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00013:after { /* webkit #35443 */
  content: '';
}
.t_c00013:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00013 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00013 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00013 { /* info for Javascript */
  display:none;
}
.l_c00013 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00013 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00013 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00013:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00013 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00013.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00013 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00013;src:url('chunks/assets/font_dcc3859fd932e48c723a1612.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00013{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls0_c00013{letter-spacing:0.000000px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00013{word-spacing:0.000000px;}
.fc0_c00013{color:transparent;}
.fs0_c00013{font-size:42.000000px;}
.y0_c00013{bottom:0.000000px;}
.y1_c00013{bottom:1076.625000px;}
.h1_c00013{height:43.804688px;}
.h0_c00013{height:1174.500000px;}
.w1_c00013{width:765.750000px;}
.w0_c00013{width:765.991500px;}
.x0_c00013{left:0.000000px;}
.x1_c00013{left:180.375000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls0_c00013{letter-spacing:0.000000pt;}
.ws0_c00013{word-spacing:0.000000pt;}
.fs0_c00013{font-size:37.333333pt;}
.y0_c00013{bottom:0.000000pt;}
.y1_c00013{bottom:957.000000pt;}
.h1_c00013{height:38.937500pt;}
.h0_c00013{height:1044.000000pt;}
.w1_c00013{width:680.666667pt;}
.w0_c00013{width:680.881333pt;}
.x0_c00013{left:0.000000pt;}
.x1_c00013{left:160.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6fe92d70f40c00d8452d3ad3.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00014{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mb_c00014{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00014{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4_c00014{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8_c00014{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c00014{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00014{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1_c00014{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00014{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00014{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00014{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00014{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.ls0_c00014{letter-spacing:0.000000px;}
.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;}
.fc0_c00014{color:transparent;}
.fs1_c00014{font-size:96.000000px;}
.fs0_c00014{font-size:162.000000px;}
.y0_c00014{bottom:0.000000px;}
.y19_c00014{bottom:56.685000px;}
.y18_c00014{bottom:86.625000px;}
.y17_c00014{bottom:116.460000px;}
.y16_c00014{bottom:146.310000px;}
.y15_c00014{bottom:176.250000px;}
.y14_c00014{bottom:206.460000px;}
.y13_c00014{bottom:237.060000px;}
.y12_c00014{bottom:267.660000px;}
.y11_c00014{bottom:298.560000px;}
.y10_c00014{bottom:328.785000px;}
.yf_c00014{bottom:359.460000px;}
.ye_c00014{bottom:390.435000px;}
.yd_c00014{bottom:420.960000px;}
.yc_c00014{bottom:452.010000px;}
.yb_c00014{bottom:482.625000px;}
.ya_c00014{bottom:513.210000px;}
.y9_c00014{bottom:543.810000px;}
.y8_c00014{bottom:574.710000px;}
.y7_c00014{bottom:606.060000px;}
.y6_c00014{bottom:636.285000px;}
.y5_c00014{bottom:667.260000px;}
.y4_c00014{bottom:698.535000px;}
.y3_c00014{bottom:729.885000px;}
.y2_c00014{bottom:760.875000px;}
.y1_c00014{bottom:840.435000px;}
.h2_c00014{height:94.218750px;}
.h1_c00014{height:158.994141px;}
.h0_c00014{height:1174.500000px;}
.w0_c00014{width:783.000000px;}
.x0_c00014{left:0.000000px;}
.x6_c00014{left:73.050000px;}
.x3_c00014{left:74.850000px;}
.x4_c00014{left:75.975000px;}
.x5_c00014{left:113.400000px;}
.x2_c00014{left:114.810000px;}
.x1_c00014{left:249.825000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls0_c00014{letter-spacing:0.000000pt;}
.ws0_c00014{word-spacing:0.000000pt;}
.fs1_c00014{font-size:85.333333pt;}
.fs0_c00014{font-size:144.000000pt;}
.y0_c00014{bottom:0.000000pt;}
.y19_c00014{bottom:50.386667pt;}
.y18_c00014{bottom:77.000000pt;}
.y17_c00014{bottom:103.520000pt;}
.y16_c00014{bottom:130.053333pt;}
.y15_c00014{bottom:156.666667pt;}
.y14_c00014{bottom:183.520000pt;}
.y13_c00014{bottom:210.720000pt;}
.y12_c00014{bottom:237.920000pt;}
.y11_c00014{bottom:265.386667pt;}
.y10_c00014{bottom:292.253333pt;}
.yf_c00014{bottom:319.520000pt;}
.ye_c00014{bottom:347.053333pt;}
.yd_c00014{bottom:374.186667pt;}
.yc_c00014{bottom:401.786667pt;}
.yb_c00014{bottom:429.000000pt;}
.ya_c00014{bottom:456.186667pt;}
.y9_c00014{bottom:483.386667pt;}
.y8_c00014{bottom:510.853333pt;}
.y7_c00014{bottom:538.720000pt;}
.y6_c00014{bottom:565.586667pt;}
.y5_c00014{bottom:593.120000pt;}
.y4_c00014{bottom:620.920000pt;}
.y3_c00014{bottom:648.786667pt;}
.y2_c00014{bottom:676.333333pt;}
.y1_c00014{bottom:747.053333pt;}
.h2_c00014{height:83.750000pt;}
.h1_c00014{height:141.328125pt;}
.h0_c00014{height:1044.000000pt;}
.w0_c00014{width:696.000000pt;}
.x0_c00014{left:0.000000pt;}
.x6_c00014{left:64.933333pt;}
.x3_c00014{left:66.533333pt;}
.x4_c00014{left:67.533333pt;}
.x5_c00014{left:100.800000pt;}
.x2_c00014{left:102.053333pt;}
.x1_c00014{left:222.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00015 {
    display:none;
  }
  .loading-indicator_c00015.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00015 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00015 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00015" -> "#page-container .classname_c00015")
 */
.pf_c00015 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00015 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00015 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00015 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00015 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00015 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00015 {overflow:visible;}
  }
}
.c_c00015 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00015 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00015:after { /* webkit #35443 */
  content: '';
}
.t_c00015:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00015 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00015 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00015 { /* info for Javascript */
  display:none;
}
.l_c00015 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00015 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00015 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00015:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00015 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00015.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00015 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00015;src:url('chunks/assets/font_563704c12558f6fd2345869d.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00015;src:url('chunks/assets/font_eb74f7c30ba6219edf1a1131.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00015;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff3_c00015{font-family:ff3_c00015;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00015{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mc_c00015{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf_c00015{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8_c00015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3_c00015{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4_c00015{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11_c00015{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb_c00015{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m12_c00015{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.ma_c00015{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00015{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c00015{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14_c00015{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c00015{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00015{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00015{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c00015{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m0_c00015{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md_c00015{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00015{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00015{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.ls0_c00015{letter-spacing:0.000000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00015{word-spacing:0.000000px;}
.fc0_c00015{color:transparent;}
.fs0_c00015{font-size:54.000000px;}
.fs3_c00015{font-size:72.000000px;}
.fs2_c00015{font-size:90.000000px;}
.fs1_c00015{font-size:96.000000px;}
.y0_c00015{bottom:0.000000px;}
.y2c_c00015{bottom:101.010000px;}
.y2b_c00015{bottom:110.310000px;}
.y2a_c00015{bottom:115.410000px;}
.y29_c00015{bottom:135.885000px;}
.y28_c00015{bottom:166.125000px;}
.y27_c00015{bottom:193.500000px;}
.y26_c00015{bottom:200.310000px;}
.y25_c00015{bottom:203.535000px;}
.y24_c00015{bottom:226.560000px;}
.y23_c00015{bottom:255.750000px;}
.y22_c00015{bottom:286.035000px;}
.y21_c00015{bottom:316.185000px;}
.y20_c00015{bottom:352.560000px;}
.y1f_c00015{bottom:377.835000px;}
.y1e_c00015{bottom:408.000000px;}
.y1d_c00015{bottom:438.285000px;}
.y1c_c00015{bottom:468.885000px;}
.y1b_c00015{bottom:499.125000px;}
.y1a_c00015{bottom:529.710000px;}
.y19_c00015{bottom:530.835000px;}
.y18_c00015{bottom:560.310000px;}
.y17_c00015{bottom:590.535000px;}
.y16_c00015{bottom:620.460000px;}
.y15_c00015{bottom:651.000000px;}
.y14_c00015{bottom:680.250000px;}
.y13_c00015{bottom:710.085000px;}
.y10_c00015{bottom:734.910000px;}
.y11_c00015{bottom:735.285000px;}
.y12_c00015{bottom:740.325000px;}
.yf_c00015{bottom:769.500000px;}
.ye_c00015{bottom:799.335000px;}
.yd_c00015{bottom:828.525000px;}
.yc_c00015{bottom:858.435000px;}
.yb_c00015{bottom:887.625000px;}
.ya_c00015{bottom:916.710000px;}
.y9_c00015{bottom:946.275000px;}
.y7_c00015{bottom:975.375000px;}
.y8_c00015{bottom:982.935000px;}
.y5_c00015{bottom:995.550000px;}
.y6_c00015{bottom:1008.900000px;}
.y4_c00015{bottom:1032.960000px;}
.y1_c00015{bottom:1089.525000px;}
.y3_c00015{bottom:1101.060000px;}
.y2_c00015{bottom:1106.460000px;}
.h2_c00015{height:52.998047px;}
.h1_c00015{height:54.421875px;}
.h5_c00015{height:70.628906px;}
.h4_c00015{height:88.330078px;}
.h3_c00015{height:94.218750px;}
.h0_c00015{height:1174.500000px;}
.w1_c00015{width:765.750000px;}
.w0_c00015{width:765.991500px;}
.x0_c00015{left:0.000000px;}
.x17_c00015{left:78.150000px;}
.x16_c00015{left:79.200000px;}
.x13_c00015{left:80.250000px;}
.x12_c00015{left:81.375000px;}
.x10_c00015{left:82.425000px;}
.xd_c00015{left:83.850000px;}
.xc_c00015{left:85.350000px;}
.x9_c00015{left:86.400000px;}
.x8_c00015{left:87.450000px;}
.x7_c00015{left:88.575000px;}
.x4_c00015{left:89.625000px;}
.x1_c00015{left:110.175000px;}
.x11_c00015{left:117.750000px;}
.x2_c00015{left:127.050000px;}
.xa_c00015{left:146.550000px;}
.xb_c00015{left:164.175000px;}
.x14_c00015{left:271.425000px;}
.x5_c00015{left:285.150000px;}
.xe_c00015{left:288.375000px;}
.x15_c00015{left:289.800000px;}
.x18_c00015{left:296.625000px;}
.x19_c00015{left:304.575000px;}
.xf_c00015{left:318.975000px;}
.x3_c00015{left:327.225000px;}
.x6_c00015{left:641.175000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls0_c00015{letter-spacing:0.000000pt;}
.ws0_c00015{word-spacing:0.000000pt;}
.fs0_c00015{font-size:48.000000pt;}
.fs3_c00015{font-size:64.000000pt;}
.fs2_c00015{font-size:80.000000pt;}
.fs1_c00015{font-size:85.333333pt;}
.y0_c00015{bottom:0.000000pt;}
.y2c_c00015{bottom:89.786667pt;}
.y2b_c00015{bottom:98.053333pt;}
.y2a_c00015{bottom:102.586667pt;}
.y29_c00015{bottom:120.786667pt;}
.y28_c00015{bottom:147.666667pt;}
.y27_c00015{bottom:172.000000pt;}
.y26_c00015{bottom:178.053333pt;}
.y25_c00015{bottom:180.920000pt;}
.y24_c00015{bottom:201.386667pt;}
.y23_c00015{bottom:227.333333pt;}
.y22_c00015{bottom:254.253333pt;}
.y21_c00015{bottom:281.053333pt;}
.y20_c00015{bottom:313.386667pt;}
.y1f_c00015{bottom:335.853333pt;}
.y1e_c00015{bottom:362.666667pt;}
.y1d_c00015{bottom:389.586667pt;}
.y1c_c00015{bottom:416.786667pt;}
.y1b_c00015{bottom:443.666667pt;}
.y1a_c00015{bottom:470.853333pt;}
.y19_c00015{bottom:471.853333pt;}
.y18_c00015{bottom:498.053333pt;}
.y17_c00015{bottom:524.920000pt;}
.y16_c00015{bottom:551.520000pt;}
.y15_c00015{bottom:578.666667pt;}
.y14_c00015{bottom:604.666667pt;}
.y13_c00015{bottom:631.186667pt;}
.y10_c00015{bottom:653.253333pt;}
.y11_c00015{bottom:653.586667pt;}
.y12_c00015{bottom:658.066667pt;}
.yf_c00015{bottom:684.000000pt;}
.ye_c00015{bottom:710.520000pt;}
.yd_c00015{bottom:736.466667pt;}
.yc_c00015{bottom:763.053333pt;}
.yb_c00015{bottom:789.000000pt;}
.ya_c00015{bottom:814.853333pt;}
.y9_c00015{bottom:841.133333pt;}
.y7_c00015{bottom:867.000000pt;}
.y8_c00015{bottom:873.720000pt;}
.y5_c00015{bottom:884.933333pt;}
.y6_c00015{bottom:896.800000pt;}
.y4_c00015{bottom:918.186667pt;}
.y1_c00015{bottom:968.466667pt;}
.y3_c00015{bottom:978.720000pt;}
.y2_c00015{bottom:983.520000pt;}
.h2_c00015{height:47.109375pt;}
.h1_c00015{height:48.375000pt;}
.h5_c00015{height:62.781250pt;}
.h4_c00015{height:78.515625pt;}
.h3_c00015{height:83.750000pt;}
.h0_c00015{height:1044.000000pt;}
.w1_c00015{width:680.666667pt;}
.w0_c00015{width:680.881333pt;}
.x0_c00015{left:0.000000pt;}
.x17_c00015{left:69.466667pt;}
.x16_c00015{left:70.400000pt;}
.x13_c00015{left:71.333333pt;}
.x12_c00015{left:72.333333pt;}
.x10_c00015{left:73.266667pt;}
.xd_c00015{left:74.533333pt;}
.xc_c00015{left:75.866667pt;}
.x9_c00015{left:76.800000pt;}
.x8_c00015{left:77.733333pt;}
.x7_c00015{left:78.733333pt;}
.x4_c00015{left:79.666667pt;}
.x1_c00015{left:97.933333pt;}
.x11_c00015{left:104.666667pt;}
.x2_c00015{left:112.933333pt;}
.xa_c00015{left:130.266667pt;}
.xb_c00015{left:145.933333pt;}
.x14_c00015{left:241.266667pt;}
.x5_c00015{left:253.466667pt;}
.xe_c00015{left:256.333333pt;}
.x15_c00015{left:257.600000pt;}
.x18_c00015{left:263.666667pt;}
.x19_c00015{left:270.733333pt;}
.xf_c00015{left:283.533333pt;}
.x3_c00015{left:290.866667pt;}
.x6_c00015{left:569.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_14e939f04157dfb8d3647c75.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00016{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7_c00016{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2_c00016{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00016{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c00016{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00016{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00016{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c00016{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00016{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c00016{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c00016{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00016{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00016{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00016{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,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;}
}
.ws0_c00016{word-spacing:0.000000px;}
.fc0_c00016{color:transparent;}
.fs0_c00016{font-size:96.000000px;}
.y0_c00016{bottom:0.000000px;}
.y20_c00016{bottom:61.035000px;}
.y1f_c00016{bottom:91.260000px;}
.y1e_c00016{bottom:121.500000px;}
.y1d_c00016{bottom:151.035000px;}
.y1c_c00016{bottom:180.510000px;}
.y1b_c00016{bottom:210.750000px;}
.y1a_c00016{bottom:241.335000px;}
.y19_c00016{bottom:271.275000px;}
.y18_c00016{bottom:302.250000px;}
.y17_c00016{bottom:332.460000px;}
.y16_c00016{bottom:363.435000px;}
.y15_c00016{bottom:395.460000px;}
.y14_c00016{bottom:426.060000px;}
.y13_c00016{bottom:457.335000px;}
.y12_c00016{bottom:488.385000px;}
.y11_c00016{bottom:519.000000px;}
.y10_c00016{bottom:549.885000px;}
.yf_c00016{bottom:580.500000px;}
.ye_c00016{bottom:611.460000px;}
.yd_c00016{bottom:641.685000px;}
.yc_c00016{bottom:673.410000px;}
.yb_c00016{bottom:704.310000px;}
.ya_c00016{bottom:735.285000px;}
.y9_c00016{bottom:766.575000px;}
.y8_c00016{bottom:797.625000px;}
.y7_c00016{bottom:828.900000px;}
.y6_c00016{bottom:860.175000px;}
.y5_c00016{bottom:890.085000px;}
.y4_c00016{bottom:921.060000px;}
.y3_c00016{bottom:951.960000px;}
.y2_c00016{bottom:981.900000px;}
.y1_c00016{bottom:1012.875000px;}
.h1_c00016{height:94.218750px;}
.h0_c00016{height:1174.500000px;}
.w0_c00016{width:783.000000px;}
.x0_c00016{left:0.000000px;}
.x4_c00016{left:68.775000px;}
.x1_c00016{left:69.825000px;}
.x3_c00016{left:71.250000px;}
.x6_c00016{left:73.800000px;}
.x7_c00016{left:74.850000px;}
.x8_c00016{left:75.975000px;}
.x5_c00016{left:108.000000px;}
.x2_c00016{left:111.225000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls0_c00016{letter-spacing:0.000000pt;}
.ws0_c00016{word-spacing:0.000000pt;}
.fs0_c00016{font-size:85.333333pt;}
.y0_c00016{bottom:0.000000pt;}
.y20_c00016{bottom:54.253333pt;}
.y1f_c00016{bottom:81.120000pt;}
.y1e_c00016{bottom:108.000000pt;}
.y1d_c00016{bottom:134.253333pt;}
.y1c_c00016{bottom:160.453333pt;}
.y1b_c00016{bottom:187.333333pt;}
.y1a_c00016{bottom:214.520000pt;}
.y19_c00016{bottom:241.133333pt;}
.y18_c00016{bottom:268.666667pt;}
.y17_c00016{bottom:295.520000pt;}
.y16_c00016{bottom:323.053333pt;}
.y15_c00016{bottom:351.520000pt;}
.y14_c00016{bottom:378.720000pt;}
.y13_c00016{bottom:406.520000pt;}
.y12_c00016{bottom:434.120000pt;}
.y11_c00016{bottom:461.333333pt;}
.y10_c00016{bottom:488.786667pt;}
.yf_c00016{bottom:516.000000pt;}
.ye_c00016{bottom:543.520000pt;}
.yd_c00016{bottom:570.386667pt;}
.yc_c00016{bottom:598.586667pt;}
.yb_c00016{bottom:626.053333pt;}
.ya_c00016{bottom:653.586667pt;}
.y9_c00016{bottom:681.400000pt;}
.y8_c00016{bottom:709.000000pt;}
.y7_c00016{bottom:736.800000pt;}
.y6_c00016{bottom:764.600000pt;}
.y5_c00016{bottom:791.186667pt;}
.y4_c00016{bottom:818.720000pt;}
.y3_c00016{bottom:846.186667pt;}
.y2_c00016{bottom:872.800000pt;}
.y1_c00016{bottom:900.333333pt;}
.h1_c00016{height:83.750000pt;}
.h0_c00016{height:1044.000000pt;}
.w0_c00016{width:696.000000pt;}
.x0_c00016{left:0.000000pt;}
.x4_c00016{left:61.133333pt;}
.x1_c00016{left:62.066667pt;}
.x3_c00016{left:63.333333pt;}
.x6_c00016{left:65.600000pt;}
.x7_c00016{left:66.533333pt;}
.x8_c00016{left:67.533333pt;}
.x5_c00016{left:96.000000pt;}
.x2_c00016{left:98.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_588c079d336942214ff5a8c2.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00017;src:url('chunks/assets/font_c5eac25be10abf5a593999c3.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m18_c00017{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m17_c00017{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m10_c00017{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3_c00017{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m16_c00017{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma_c00017{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc_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);}
.m11_c00017{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8_c00017{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c00017{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2_c00017{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00017{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.me_c00017{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4_c00017{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00017{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c00017{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c00017{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c00017{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c00017{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m0_c00017{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00017{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00017{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c00017{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m19_c00017{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m14_c00017{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00017{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v1_c00017{vertical-align:-6.060000px;}
.v0_c00017{vertical-align:0.000000px;}
.ls0_c00017{letter-spacing:0.000000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00017{word-spacing:0.000000px;}
._0_c00017{margin-left:-14.028994px;}
.fc0_c00017{color:transparent;}
.fs1_c00017{font-size:54.000000px;}
.fs0_c00017{font-size:60.000000px;}
.fs4_c00017{font-size:84.000000px;}
.fs3_c00017{font-size:90.000000px;}
.fs2_c00017{font-size:96.000000px;}
.y0_c00017{bottom:0.000000px;}
.y44_c00017{bottom:85.875000px;}
.y43_c00017{bottom:88.410000px;}
.y42_c00017{bottom:91.635000px;}
.y41_c00017{bottom:96.660000px;}
.y40_c00017{bottom:102.750000px;}
.y3f_c00017{bottom:106.335000px;}
.y3e_c00017{bottom:117.885000px;}
.y3d_c00017{bottom:125.085000px;}
.y3c_c00017{bottom:131.535000px;}
.y3b_c00017{bottom:135.885000px;}
.y3a_c00017{bottom:158.160000px;}
.y39_c00017{bottom:187.035000px;}
.y38_c00017{bottom:214.335000px;}
.y37_c00017{bottom:223.335000px;}
.y36_c00017{bottom:225.210000px;}
.y35_c00017{bottom:226.260000px;}
.y34_c00017{bottom:239.535000px;}
.y33_c00017{bottom:244.935000px;}
.y32_c00017{bottom:250.710000px;}
.y31_c00017{bottom:254.400000px;}
.y30_c00017{bottom:271.650000px;}
.y2f_c00017{bottom:282.435000px;}
.y2e_c00017{bottom:304.335000px;}
.y2d_c00017{bottom:310.875000px;}
.y2c_c00017{bottom:314.835000px;}
.y2b_c00017{bottom:333.150000px;}
.y2a_c00017{bottom:341.835000px;}
.y29_c00017{bottom:363.375000px;}
.y28_c00017{bottom:364.500000px;}
.y27_c00017{bottom:370.935000px;}
.y26_c00017{bottom:393.960000px;}
.y25_c00017{bottom:400.875000px;}
.y24_c00017{bottom:431.460000px;}
.y23_c00017{bottom:461.385000px;}
.y22_c00017{bottom:487.935000px;}
.y21_c00017{bottom:491.535000px;}
.y1f_c00017{bottom:493.335000px;}
.y20_c00017{bottom:493.710000px;}
.y1e_c00017{bottom:520.710000px;}
.y1d_c00017{bottom:522.135000px;}
.y1c_c00017{bottom:523.260000px;}
.y1b_c00017{bottom:552.375000px;}
.y18_c00017{bottom:581.535000px;}
.y1a_c00017{bottom:581.910000px;}
.y19_c00017{bottom:583.335000px;}
.y17_c00017{bottom:613.260000px;}
.y16_c00017{bottom:613.635000px;}
.y13_c00017{bottom:643.500000px;}
.y14_c00017{bottom:644.250000px;}
.y15_c00017{bottom:644.535000px;}
.y12_c00017{bottom:674.760000px;}
.y11_c00017{bottom:705.060000px;}
.y10_c00017{bottom:735.000000px;}
.yf_c00017{bottom:764.835000px;}
.yc_c00017{bottom:790.710000px;}
.yd_c00017{bottom:792.585000px;}
.ye_c00017{bottom:796.500000px;}
.yb_c00017{bottom:824.250000px;}
.ya_c00017{bottom:854.775000px;}
.y9_c00017{bottom:883.935000px;}
.y8_c00017{bottom:913.875000px;}
.y7_c00017{bottom:943.425000px;}
.y6_c00017{bottom:972.900000px;}
.y5_c00017{bottom:996.675000px;}
.y4_c00017{bottom:1030.500000px;}
.y1_c00017{bottom:1087.335000px;}
.y3_c00017{bottom:1097.835000px;}
.y2_c00017{bottom:1103.250000px;}
.h2_c00017{height:52.998047px;}
.h1_c00017{height:58.886719px;}
.h6_c00017{height:84.656250px;}
.h4_c00017{height:88.330078px;}
.h5_c00017{height:90.703125px;}
.h3_c00017{height:94.218750px;}
.h0_c00017{height:1174.500000px;}
.w0_c00017{width:731.977200px;}
.w1_c00017{width:732.000000px;}
.x0_c00017{left:0.000000px;}
.x8_c00017{left:68.365200px;}
.x14_c00017{left:69.490200px;}
.x4_c00017{left:70.540200px;}
.x1_c00017{left:89.590200px;}
.x1f_c00017{left:100.090200px;}
.xf_c00017{left:104.740200px;}
.x2_c00017{left:106.915200px;}
.x5_c00017{left:108.340200px;}
.xc_c00017{left:131.740200px;}
.x25_c00017{left:135.715200px;}
.x22_c00017{left:139.690200px;}
.x12_c00017{left:156.190200px;}
.x6_c00017{left:227.140200px;}
.x7_c00017{left:246.190200px;}
.x20_c00017{left:256.315200px;}
.x21_c00017{left:262.090200px;}
.x19_c00017{left:263.140200px;}
.x9_c00017{left:265.690200px;}
.x3_c00017{left:306.715200px;}
.x1c_c00017{left:312.490200px;}
.xa_c00017{left:316.765200px;}
.x1d_c00017{left:318.565200px;}
.x1a_c00017{left:335.140200px;}
.x26_c00017{left:362.890200px;}
.x27_c00017{left:382.315200px;}
.x23_c00017{left:385.150200px;}
.x10_c00017{left:405.340200px;}
.x24_c00017{left:419.740200px;}
.x11_c00017{left:466.915200px;}
.x1b_c00017{left:497.140200px;}
.x18_c00017{left:531.340200px;}
.xb_c00017{left:533.140200px;}
.x28_c00017{left:542.515200px;}
.x16_c00017{left:578.515200px;}
.xd_c00017{left:584.590200px;}
.x17_c00017{left:610.165200px;}
.x1e_c00017{left:619.540200px;}
.xe_c00017{left:644.365200px;}
.x13_c00017{left:648.715200px;}
.x15_c00017{left:653.740200px;}
@media print{
.v1_c00017{vertical-align:-5.386667pt;}
.v0_c00017{vertical-align:0.000000pt;}
.ls0_c00017{letter-spacing:0.000000pt;}
.ws0_c00017{word-spacing:0.000000pt;}
._0_c00017{margin-left:-12.470217pt;}
.fs1_c00017{font-size:48.000000pt;}
.fs0_c00017{font-size:53.333333pt;}
.fs4_c00017{font-size:74.666667pt;}
.fs3_c00017{font-size:80.000000pt;}
.fs2_c00017{font-size:85.333333pt;}
.y0_c00017{bottom:0.000000pt;}
.y44_c00017{bottom:76.333333pt;}
.y43_c00017{bottom:78.586667pt;}
.y42_c00017{bottom:81.453333pt;}
.y41_c00017{bottom:85.920000pt;}
.y40_c00017{bottom:91.333333pt;}
.y3f_c00017{bottom:94.520000pt;}
.y3e_c00017{bottom:104.786667pt;}
.y3d_c00017{bottom:111.186667pt;}
.y3c_c00017{bottom:116.920000pt;}
.y3b_c00017{bottom:120.786667pt;}
.y3a_c00017{bottom:140.586667pt;}
.y39_c00017{bottom:166.253333pt;}
.y38_c00017{bottom:190.520000pt;}
.y37_c00017{bottom:198.520000pt;}
.y36_c00017{bottom:200.186667pt;}
.y35_c00017{bottom:201.120000pt;}
.y34_c00017{bottom:212.920000pt;}
.y33_c00017{bottom:217.720000pt;}
.y32_c00017{bottom:222.853333pt;}
.y31_c00017{bottom:226.133333pt;}
.y30_c00017{bottom:241.466667pt;}
.y2f_c00017{bottom:251.053333pt;}
.y2e_c00017{bottom:270.520000pt;}
.y2d_c00017{bottom:276.333333pt;}
.y2c_c00017{bottom:279.853333pt;}
.y2b_c00017{bottom:296.133333pt;}
.y2a_c00017{bottom:303.853333pt;}
.y29_c00017{bottom:323.000000pt;}
.y28_c00017{bottom:324.000000pt;}
.y27_c00017{bottom:329.720000pt;}
.y26_c00017{bottom:350.186667pt;}
.y25_c00017{bottom:356.333333pt;}
.y24_c00017{bottom:383.520000pt;}
.y23_c00017{bottom:410.120000pt;}
.y22_c00017{bottom:433.720000pt;}
.y21_c00017{bottom:436.920000pt;}
.y1f_c00017{bottom:438.520000pt;}
.y20_c00017{bottom:438.853333pt;}
.y1e_c00017{bottom:462.853333pt;}
.y1d_c00017{bottom:464.120000pt;}
.y1c_c00017{bottom:465.120000pt;}
.y1b_c00017{bottom:491.000000pt;}
.y18_c00017{bottom:516.920000pt;}
.y1a_c00017{bottom:517.253333pt;}
.y19_c00017{bottom:518.520000pt;}
.y17_c00017{bottom:545.120000pt;}
.y16_c00017{bottom:545.453333pt;}
.y13_c00017{bottom:572.000000pt;}
.y14_c00017{bottom:572.666667pt;}
.y15_c00017{bottom:572.920000pt;}
.y12_c00017{bottom:599.786667pt;}
.y11_c00017{bottom:626.720000pt;}
.y10_c00017{bottom:653.333333pt;}
.yf_c00017{bottom:679.853333pt;}
.yc_c00017{bottom:702.853333pt;}
.yd_c00017{bottom:704.520000pt;}
.ye_c00017{bottom:708.000000pt;}
.yb_c00017{bottom:732.666667pt;}
.ya_c00017{bottom:759.800000pt;}
.y9_c00017{bottom:785.720000pt;}
.y8_c00017{bottom:812.333333pt;}
.y7_c00017{bottom:838.600000pt;}
.y6_c00017{bottom:864.800000pt;}
.y5_c00017{bottom:885.933333pt;}
.y4_c00017{bottom:916.000000pt;}
.y1_c00017{bottom:966.520000pt;}
.y3_c00017{bottom:975.853333pt;}
.y2_c00017{bottom:980.666667pt;}
.h2_c00017{height:47.109375pt;}
.h1_c00017{height:52.343750pt;}
.h6_c00017{height:75.250000pt;}
.h4_c00017{height:78.515625pt;}
.h5_c00017{height:80.625000pt;}
.h3_c00017{height:83.750000pt;}
.h0_c00017{height:1044.000000pt;}
.w0_c00017{width:650.646400pt;}
.w1_c00017{width:650.666667pt;}
.x0_c00017{left:0.000000pt;}
.x8_c00017{left:60.769067pt;}
.x14_c00017{left:61.769067pt;}
.x4_c00017{left:62.702400pt;}
.x1_c00017{left:79.635733pt;}
.x1f_c00017{left:88.969067pt;}
.xf_c00017{left:93.102400pt;}
.x2_c00017{left:95.035733pt;}
.x5_c00017{left:96.302400pt;}
.xc_c00017{left:117.102400pt;}
.x25_c00017{left:120.635733pt;}
.x22_c00017{left:124.169067pt;}
.x12_c00017{left:138.835733pt;}
.x6_c00017{left:201.902400pt;}
.x7_c00017{left:218.835733pt;}
.x20_c00017{left:227.835733pt;}
.x21_c00017{left:232.969067pt;}
.x19_c00017{left:233.902400pt;}
.x9_c00017{left:236.169067pt;}
.x3_c00017{left:272.635733pt;}
.x1c_c00017{left:277.769067pt;}
.xa_c00017{left:281.569067pt;}
.x1d_c00017{left:283.169067pt;}
.x1a_c00017{left:297.902400pt;}
.x26_c00017{left:322.569067pt;}
.x27_c00017{left:339.835733pt;}
.x23_c00017{left:342.355733pt;}
.x10_c00017{left:360.302400pt;}
.x24_c00017{left:373.102400pt;}
.x11_c00017{left:415.035733pt;}
.x1b_c00017{left:441.902400pt;}
.x18_c00017{left:472.302400pt;}
.xb_c00017{left:473.902400pt;}
.x28_c00017{left:482.235733pt;}
.x16_c00017{left:514.235733pt;}
.xd_c00017{left:519.635733pt;}
.x17_c00017{left:542.369067pt;}
.x1e_c00017{left:550.702400pt;}
.xe_c00017{left:572.769067pt;}
.x13_c00017{left:576.635733pt;}
.x15_c00017{left:581.102400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_65ddce6051a9f90af09976ce.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00018;src:url('chunks/assets/font_2609e8450ebcc4348799e7f5.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00018;src:url('chunks/assets/font_3ca2b491dcb855a512daeac6.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00018;src:url('chunks/assets/font_8089ac42c5e4b0bd86c480b8.woff2')format("woff");}.ff4_c00018{font-family:ff4_c00018;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c00018{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m10_c00018{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4_c00018{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5_c00018{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6_c00018{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c00018{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8_c00018{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00018{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c00018{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00018{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc_c00018{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c00018{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00018{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00018{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c00018{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00018{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1_c00018{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00018{color:transparent;}
.fs0_c00018{font-size:60.000000px;}
.fs3_c00018{font-size:66.000000px;}
.fs2_c00018{font-size:90.000000px;}
.fs1_c00018{font-size:96.000000px;}
.y0_c00018{bottom:0.000000px;}
.y26_c00018{bottom:46.560000px;}
.y25_c00018{bottom:74.010000px;}
.y24_c00018{bottom:103.125000px;}
.y23_c00018{bottom:133.335000px;}
.y22_c00018{bottom:157.125000px;}
.y21_c00018{bottom:187.335000px;}
.y20_c00018{bottom:217.260000px;}
.y1f_c00018{bottom:247.125000px;}
.y1e_c00018{bottom:277.335000px;}
.y1d_c00018{bottom:307.560000px;}
.y1c_c00018{bottom:337.875000px;}
.y1b_c00018{bottom:368.400000px;}
.y1a_c00018{bottom:398.685000px;}
.y18_c00018{bottom:428.625000px;}
.y17_c00018{bottom:428.910000px;}
.y19_c00018{bottom:429.660000px;}
.y15_c00018{bottom:459.885000px;}
.y16_c00018{bottom:460.935000px;}
.y14_c00018{bottom:490.500000px;}
.y13_c00018{bottom:521.460000px;}
.y12_c00018{bottom:552.000000px;}
.y11_c00018{bottom:582.585000px;}
.y10_c00018{bottom:612.885000px;}
.yf_c00018{bottom:644.625000px;}
.ye_c00018{bottom:674.460000px;}
.yd_c00018{bottom:705.000000px;}
.yc_c00018{bottom:759.750000px;}
.yb_c00018{bottom:828.900000px;}
.ya_c00018{bottom:859.500000px;}
.y9_c00018{bottom:890.400000px;}
.y8_c00018{bottom:921.750000px;}
.y7_c00018{bottom:951.300000px;}
.y6_c00018{bottom:980.460000px;}
.y5_c00018{bottom:984.375000px;}
.y4_c00018{bottom:1013.250000px;}
.y3_c00018{bottom:1075.800000px;}
.y1_c00018{bottom:1083.750000px;}
.y2_c00018{bottom:1090.425000px;}
.h1_c00018{height:60.468750px;}
.h2_c00018{height:62.578125px;}
.h6_c00018{height:64.775391px;}
.h5_c00018{height:88.286133px;}
.h4_c00018{height:94.218750px;}
.h3_c00018{height:96.750000px;}
.h0_c00018{height:1174.500000px;}
.w0_c00018{width:731.977200px;}
.w1_c00018{width:732.000000px;}
.x0_c00018{left:0.000000px;}
.x4_c00018{left:47.890200px;}
.x6_c00018{left:49.690200px;}
.xa_c00018{left:52.165200px;}
.xb_c00018{left:53.290200px;}
.xe_c00018{left:55.390200px;}
.x11_c00018{left:56.890200px;}
.x12_c00018{left:58.690200px;}
.x13_c00018{left:60.115200px;}
.x14_c00018{left:62.590200px;}
.x16_c00018{left:64.765200px;}
.x8_c00018{left:90.340200px;}
.x9_c00018{left:91.765200px;}
.x15_c00018{left:102.190200px;}
.xf_c00018{left:234.340200px;}
.x5_c00018{left:269.590200px;}
.x1_c00018{left:278.590200px;}
.x7_c00018{left:354.190200px;}
.x10_c00018{left:366.490200px;}
.xc_c00018{left:447.115200px;}
.x2_c00018{left:460.090200px;}
.xd_c00018{left:576.715200px;}
.x17_c00018{left:610.915200px;}
.x3_c00018{left:643.990200px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls0_c00018{letter-spacing:0.000000pt;}
.ws0_c00018{word-spacing:0.000000pt;}
.fs0_c00018{font-size:53.333333pt;}
.fs3_c00018{font-size:58.666667pt;}
.fs2_c00018{font-size:80.000000pt;}
.fs1_c00018{font-size:85.333333pt;}
.y0_c00018{bottom:0.000000pt;}
.y26_c00018{bottom:41.386667pt;}
.y25_c00018{bottom:65.786667pt;}
.y24_c00018{bottom:91.666667pt;}
.y23_c00018{bottom:118.520000pt;}
.y22_c00018{bottom:139.666667pt;}
.y21_c00018{bottom:166.520000pt;}
.y20_c00018{bottom:193.120000pt;}
.y1f_c00018{bottom:219.666667pt;}
.y1e_c00018{bottom:246.520000pt;}
.y1d_c00018{bottom:273.386667pt;}
.y1c_c00018{bottom:300.333333pt;}
.y1b_c00018{bottom:327.466667pt;}
.y1a_c00018{bottom:354.386667pt;}
.y18_c00018{bottom:381.000000pt;}
.y17_c00018{bottom:381.253333pt;}
.y19_c00018{bottom:381.920000pt;}
.y15_c00018{bottom:408.786667pt;}
.y16_c00018{bottom:409.720000pt;}
.y14_c00018{bottom:436.000000pt;}
.y13_c00018{bottom:463.520000pt;}
.y12_c00018{bottom:490.666667pt;}
.y11_c00018{bottom:517.853333pt;}
.y10_c00018{bottom:544.786667pt;}
.yf_c00018{bottom:573.000000pt;}
.ye_c00018{bottom:599.520000pt;}
.yd_c00018{bottom:626.666667pt;}
.yc_c00018{bottom:675.333333pt;}
.yb_c00018{bottom:736.800000pt;}
.ya_c00018{bottom:764.000000pt;}
.y9_c00018{bottom:791.466667pt;}
.y8_c00018{bottom:819.333333pt;}
.y7_c00018{bottom:845.600000pt;}
.y6_c00018{bottom:871.520000pt;}
.y5_c00018{bottom:875.000000pt;}
.y4_c00018{bottom:900.666667pt;}
.y3_c00018{bottom:956.266667pt;}
.y1_c00018{bottom:963.333333pt;}
.y2_c00018{bottom:969.266667pt;}
.h1_c00018{height:53.750000pt;}
.h2_c00018{height:55.625000pt;}
.h6_c00018{height:57.578125pt;}
.h5_c00018{height:78.476562pt;}
.h4_c00018{height:83.750000pt;}
.h3_c00018{height:86.000000pt;}
.h0_c00018{height:1044.000000pt;}
.w0_c00018{width:650.646400pt;}
.w1_c00018{width:650.666667pt;}
.x0_c00018{left:0.000000pt;}
.x4_c00018{left:42.569067pt;}
.x6_c00018{left:44.169067pt;}
.xa_c00018{left:46.369067pt;}
.xb_c00018{left:47.369067pt;}
.xe_c00018{left:49.235733pt;}
.x11_c00018{left:50.569067pt;}
.x12_c00018{left:52.169067pt;}
.x13_c00018{left:53.435733pt;}
.x14_c00018{left:55.635733pt;}
.x16_c00018{left:57.569067pt;}
.x8_c00018{left:80.302400pt;}
.x9_c00018{left:81.569067pt;}
.x15_c00018{left:90.835733pt;}
.xf_c00018{left:208.302400pt;}
.x5_c00018{left:239.635733pt;}
.x1_c00018{left:247.635733pt;}
.x7_c00018{left:314.835733pt;}
.x10_c00018{left:325.769067pt;}
.xc_c00018{left:397.435733pt;}
.x2_c00018{left:408.969067pt;}
.xd_c00018{left:512.635733pt;}
.x17_c00018{left:543.035733pt;}
.x3_c00018{left:572.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_070e9e2b1c7422977f824eeb.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00019;src:url('chunks/assets/font_363b0807bf2c1e1c33ce0622.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_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);}
.m3_c00019{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6_c00019{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9_c00019{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m0_c00019{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4_c00019{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.ma_c00019{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c00019{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8_c00019{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc_c00019{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c00019{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c00019{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00019{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c00019{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c00019{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c00019{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.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:0.000000px;}
.fc0_c00019{color:transparent;}
.fs1_c00019{font-size:54.000000px;}
.fs0_c00019{font-size:60.000000px;}
.fs3_c00019{font-size:84.000000px;}
.fs2_c00019{font-size:96.000000px;}
.y0_c00019{bottom:0.000000px;}
.y25_c00019{bottom:90.210000px;}
.y24_c00019{bottom:102.060000px;}
.y23_c00019{bottom:131.250000px;}
.y22_c00019{bottom:161.085000px;}
.y21_c00019{bottom:189.885000px;}
.y20_c00019{bottom:225.885000px;}
.y1f_c00019{bottom:243.585000px;}
.y1e_c00019{bottom:251.385000px;}
.y1d_c00019{bottom:280.650000px;}
.y1c_c00019{bottom:310.875000px;}
.y1b_c00019{bottom:340.410000px;}
.y1a_c00019{bottom:370.560000px;}
.y19_c00019{bottom:401.535000px;}
.y18_c00019{bottom:431.460000px;}
.y17_c00019{bottom:462.000000px;}
.y16_c00019{bottom:492.285000px;}
.y15_c00019{bottom:522.510000px;}
.y14_c00019{bottom:552.750000px;}
.y13_c00019{bottom:582.660000px;}
.y12_c00019{bottom:612.510000px;}
.y11_c00019{bottom:642.435000px;}
.y10_c00019{bottom:672.285000px;}
.yf_c00019{bottom:702.210000px;}
.ye_c00019{bottom:731.325000px;}
.yd_c00019{bottom:762.285000px;}
.yc_c00019{bottom:791.085000px;}
.yb_c00019{bottom:820.275000px;}
.ya_c00019{bottom:850.500000px;}
.y9_c00019{bottom:879.300000px;}
.y8_c00019{bottom:909.150000px;}
.y7_c00019{bottom:938.310000px;}
.y6_c00019{bottom:967.125000px;}
.y5_c00019{bottom:997.800000px;}
.y4_c00019{bottom:1026.585000px;}
.y1_c00019{bottom:1080.210000px;}
.y3_c00019{bottom:1092.750000px;}
.y2_c00019{bottom:1096.425000px;}
.h2_c00019{height:52.998047px;}
.h1_c00019{height:62.578125px;}
.h4_c00019{height:82.441406px;}
.h3_c00019{height:94.218750px;}
.h0_c00019{height:1174.500000px;}
.w0_c00019{width:731.977200px;}
.w1_c00019{width:732.000000px;}
.x0_c00019{left:0.000000px;}
.x10_c00019{left:57.565200px;}
.xd_c00019{left:60.115200px;}
.xc_c00019{left:62.290200px;}
.xb_c00019{left:63.340200px;}
.xa_c00019{left:64.390200px;}
.x9_c00019{left:66.190200px;}
.x8_c00019{left:67.990200px;}
.x7_c00019{left:70.165200px;}
.x4_c00019{left:71.290200px;}
.x6_c00019{left:72.340200px;}
.x5_c00019{left:73.765200px;}
.x1_c00019{left:89.590200px;}
.xf_c00019{left:98.965200px;}
.x2_c00019{left:106.915200px;}
.x3_c00019{left:309.565200px;}
.x11_c00019{left:610.540200px;}
.xe_c00019{left:654.790200px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls0_c00019{letter-spacing:0.000000pt;}
.ws0_c00019{word-spacing:0.000000pt;}
.fs1_c00019{font-size:48.000000pt;}
.fs0_c00019{font-size:53.333333pt;}
.fs3_c00019{font-size:74.666667pt;}
.fs2_c00019{font-size:85.333333pt;}
.y0_c00019{bottom:0.000000pt;}
.y25_c00019{bottom:80.186667pt;}
.y24_c00019{bottom:90.720000pt;}
.y23_c00019{bottom:116.666667pt;}
.y22_c00019{bottom:143.186667pt;}
.y21_c00019{bottom:168.786667pt;}
.y20_c00019{bottom:200.786667pt;}
.y1f_c00019{bottom:216.520000pt;}
.y1e_c00019{bottom:223.453333pt;}
.y1d_c00019{bottom:249.466667pt;}
.y1c_c00019{bottom:276.333333pt;}
.y1b_c00019{bottom:302.586667pt;}
.y1a_c00019{bottom:329.386667pt;}
.y19_c00019{bottom:356.920000pt;}
.y18_c00019{bottom:383.520000pt;}
.y17_c00019{bottom:410.666667pt;}
.y16_c00019{bottom:437.586667pt;}
.y15_c00019{bottom:464.453333pt;}
.y14_c00019{bottom:491.333333pt;}
.y13_c00019{bottom:517.920000pt;}
.y12_c00019{bottom:544.453333pt;}
.y11_c00019{bottom:571.053333pt;}
.y10_c00019{bottom:597.586667pt;}
.yf_c00019{bottom:624.186667pt;}
.ye_c00019{bottom:650.066667pt;}
.yd_c00019{bottom:677.586667pt;}
.yc_c00019{bottom:703.186667pt;}
.yb_c00019{bottom:729.133333pt;}
.ya_c00019{bottom:756.000000pt;}
.y9_c00019{bottom:781.600000pt;}
.y8_c00019{bottom:808.133333pt;}
.y7_c00019{bottom:834.053333pt;}
.y6_c00019{bottom:859.666667pt;}
.y5_c00019{bottom:886.933333pt;}
.y4_c00019{bottom:912.520000pt;}
.y1_c00019{bottom:960.186667pt;}
.y3_c00019{bottom:971.333333pt;}
.y2_c00019{bottom:974.600000pt;}
.h2_c00019{height:47.109375pt;}
.h1_c00019{height:55.625000pt;}
.h4_c00019{height:73.281250pt;}
.h3_c00019{height:83.750000pt;}
.h0_c00019{height:1044.000000pt;}
.w0_c00019{width:650.646400pt;}
.w1_c00019{width:650.666667pt;}
.x0_c00019{left:0.000000pt;}
.x10_c00019{left:51.169067pt;}
.xd_c00019{left:53.435733pt;}
.xc_c00019{left:55.369067pt;}
.xb_c00019{left:56.302400pt;}
.xa_c00019{left:57.235733pt;}
.x9_c00019{left:58.835733pt;}
.x8_c00019{left:60.435733pt;}
.x7_c00019{left:62.369067pt;}
.x4_c00019{left:63.369067pt;}
.x6_c00019{left:64.302400pt;}
.x5_c00019{left:65.569067pt;}
.x1_c00019{left:79.635733pt;}
.xf_c00019{left:87.969067pt;}
.x2_c00019{left:95.035733pt;}
.x3_c00019{left:275.169067pt;}
.x11_c00019{left:542.702400pt;}
.xe_c00019{left:582.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cca37d421e41c7fd1dd6a5a4.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00020;src:url('chunks/assets/font_b6dbf4c7489ac8e5f6c0cb19.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00020;src:url('chunks/assets/font_0ac4df5a8ef5e6a7ac0285c1.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c00020{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.mc_c00020{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m0_c00020{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma_c00020{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m12_c00020{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7_c00020{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m14_c00020{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10_c00020{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m6_c00020{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md_c00020{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8_c00020{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5_c00020{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00020{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.me_c00020{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf_c00020{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m13_c00020{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00020{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c00020{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m11_c00020{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00020{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00020{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00020{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls0_c00020{letter-spacing:0.000000px;}
.sc__c00020{text-shadow:none;}
.sc0_c00020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00020{-webkit-text-stroke:0px transparent;}
.sc0_c00020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00020{word-spacing:0.000000px;}
.fc0_c00020{color:transparent;}
.fs3_c00020{font-size:18.000000px;}
.fs1_c00020{font-size:84.000000px;}
.fs2_c00020{font-size:96.000000px;}
.fs0_c00020{font-size:102.000000px;}
.y0_c00020{bottom:0.000000px;}
.y2e_c00020{bottom:4.875000px;}
.y2d_c00020{bottom:71.385000px;}
.y2b_c00020{bottom:100.560000px;}
.y2c_c00020{bottom:102.435000px;}
.y29_c00020{bottom:129.435000px;}
.y28_c00020{bottom:130.500000px;}
.y2a_c00020{bottom:131.910000px;}
.y25_c00020{bottom:159.285000px;}
.y24_c00020{bottom:160.410000px;}
.y26_c00020{bottom:161.460000px;}
.y27_c00020{bottom:166.125000px;}
.y22_c00020{bottom:189.510000px;}
.y23_c00020{bottom:190.635000px;}
.y21_c00020{bottom:220.875000px;}
.y20_c00020{bottom:250.335000px;}
.y1f_c00020{bottom:280.935000px;}
.y1e_c00020{bottom:310.875000px;}
.y1d_c00020{bottom:341.835000px;}
.y1c_c00020{bottom:371.685000px;}
.y1b_c00020{bottom:402.660000px;}
.y1a_c00020{bottom:433.260000px;}
.y19_c00020{bottom:464.250000px;}
.y18_c00020{bottom:494.835000px;}
.y17_c00020{bottom:525.810000px;}
.y16_c00020{bottom:556.335000px;}
.y15_c00020{bottom:587.310000px;}
.y14_c00020{bottom:617.910000px;}
.y13_c00020{bottom:648.210000px;}
.y12_c00020{bottom:678.810000px;}
.y11_c00020{bottom:710.085000px;}
.y10_c00020{bottom:740.700000px;}
.yf_c00020{bottom:771.300000px;}
.ye_c00020{bottom:802.275000px;}
.yc_c00020{bottom:834.585000px;}
.yd_c00020{bottom:834.675000px;}
.yb_c00020{bottom:859.125000px;}
.ya_c00020{bottom:864.150000px;}
.y9_c00020{bottom:894.000000px;}
.y8_c00020{bottom:895.500000px;}
.y7_c00020{bottom:920.025000px;}
.y6_c00020{bottom:925.050000px;}
.y5_c00020{bottom:950.250000px;}
.y4_c00020{bottom:955.275000px;}
.y3_c00020{bottom:985.185000px;}
.y2_c00020{bottom:1015.800000px;}
.y1_c00020{bottom:1018.275000px;}
.h6_c00020{height:18.773438px;}
.h3_c00020{height:82.441406px;}
.h4_c00020{height:94.218750px;}
.h5_c00020{height:96.750000px;}
.h2_c00020{height:100.107422px;}
.h1_c00020{height:102.796875px;}
.h0_c00020{height:1174.500000px;}
.w0_c00020{width:731.977200px;}
.w1_c00020{width:732.000000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:39.565200px;}
.x3_c00020{left:40.690200px;}
.xb_c00020{left:42.115200px;}
.xc_c00020{left:43.165200px;}
.xd_c00020{left:44.290200px;}
.xe_c00020{left:45.340200px;}
.xf_c00020{left:46.765200px;}
.x10_c00020{left:48.190200px;}
.x11_c00020{left:49.315200px;}
.x12_c00020{left:50.365200px;}
.x13_c00020{left:52.165200px;}
.x15_c00020{left:53.590200px;}
.x1c_c00020{left:55.090200px;}
.x1e_c00020{left:56.515200px;}
.xa_c00020{left:68.365200px;}
.x16_c00020{left:93.550200px;}
.x14_c00020{left:103.315200px;}
.x8_c00020{left:118.090200px;}
.x6_c00020{left:128.515200px;}
.x2_c00020{left:154.390200px;}
.x9_c00020{left:160.915200px;}
.x17_c00020{left:198.340200px;}
.x1a_c00020{left:219.940200px;}
.x18_c00020{left:246.565200px;}
.x1b_c00020{left:255.565200px;}
.x1d_c00020{left:294.490200px;}
.x19_c00020{left:642.565200px;}
.x5_c00020{left:646.165200px;}
.x4_c00020{left:659.515200px;}
.x7_c00020{left:661.990200px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls0_c00020{letter-spacing:0.000000pt;}
.ws0_c00020{word-spacing:0.000000pt;}
.fs3_c00020{font-size:16.000000pt;}
.fs1_c00020{font-size:74.666667pt;}
.fs2_c00020{font-size:85.333333pt;}
.fs0_c00020{font-size:90.666667pt;}
.y0_c00020{bottom:0.000000pt;}
.y2e_c00020{bottom:4.333333pt;}
.y2d_c00020{bottom:63.453333pt;}
.y2b_c00020{bottom:89.386667pt;}
.y2c_c00020{bottom:91.053333pt;}
.y29_c00020{bottom:115.053333pt;}
.y28_c00020{bottom:116.000000pt;}
.y2a_c00020{bottom:117.253333pt;}
.y25_c00020{bottom:141.586667pt;}
.y24_c00020{bottom:142.586667pt;}
.y26_c00020{bottom:143.520000pt;}
.y27_c00020{bottom:147.666667pt;}
.y22_c00020{bottom:168.453333pt;}
.y23_c00020{bottom:169.453333pt;}
.y21_c00020{bottom:196.333333pt;}
.y20_c00020{bottom:222.520000pt;}
.y1f_c00020{bottom:249.720000pt;}
.y1e_c00020{bottom:276.333333pt;}
.y1d_c00020{bottom:303.853333pt;}
.y1c_c00020{bottom:330.386667pt;}
.y1b_c00020{bottom:357.920000pt;}
.y1a_c00020{bottom:385.120000pt;}
.y19_c00020{bottom:412.666667pt;}
.y18_c00020{bottom:439.853333pt;}
.y17_c00020{bottom:467.386667pt;}
.y16_c00020{bottom:494.520000pt;}
.y15_c00020{bottom:522.053333pt;}
.y14_c00020{bottom:549.253333pt;}
.y13_c00020{bottom:576.186667pt;}
.y12_c00020{bottom:603.386667pt;}
.y11_c00020{bottom:631.186667pt;}
.y10_c00020{bottom:658.400000pt;}
.yf_c00020{bottom:685.600000pt;}
.ye_c00020{bottom:713.133333pt;}
.yc_c00020{bottom:741.853333pt;}
.yd_c00020{bottom:741.933333pt;}
.yb_c00020{bottom:763.666667pt;}
.ya_c00020{bottom:768.133333pt;}
.y9_c00020{bottom:794.666667pt;}
.y8_c00020{bottom:796.000000pt;}
.y7_c00020{bottom:817.800000pt;}
.y6_c00020{bottom:822.266667pt;}
.y5_c00020{bottom:844.666667pt;}
.y4_c00020{bottom:849.133333pt;}
.y3_c00020{bottom:875.720000pt;}
.y2_c00020{bottom:902.933333pt;}
.y1_c00020{bottom:905.133333pt;}
.h6_c00020{height:16.687500pt;}
.h3_c00020{height:73.281250pt;}
.h4_c00020{height:83.750000pt;}
.h5_c00020{height:86.000000pt;}
.h2_c00020{height:88.984375pt;}
.h1_c00020{height:91.375000pt;}
.h0_c00020{height:1044.000000pt;}
.w0_c00020{width:650.646400pt;}
.w1_c00020{width:650.666667pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:35.169067pt;}
.x3_c00020{left:36.169067pt;}
.xb_c00020{left:37.435733pt;}
.xc_c00020{left:38.369067pt;}
.xd_c00020{left:39.369067pt;}
.xe_c00020{left:40.302400pt;}
.xf_c00020{left:41.569067pt;}
.x10_c00020{left:42.835733pt;}
.x11_c00020{left:43.835733pt;}
.x12_c00020{left:44.769067pt;}
.x13_c00020{left:46.369067pt;}
.x15_c00020{left:47.635733pt;}
.x1c_c00020{left:48.969067pt;}
.x1e_c00020{left:50.235733pt;}
.xa_c00020{left:60.769067pt;}
.x16_c00020{left:83.155733pt;}
.x14_c00020{left:91.835733pt;}
.x8_c00020{left:104.969067pt;}
.x6_c00020{left:114.235733pt;}
.x2_c00020{left:137.235733pt;}
.x9_c00020{left:143.035733pt;}
.x17_c00020{left:176.302400pt;}
.x1a_c00020{left:195.502400pt;}
.x18_c00020{left:219.169067pt;}
.x1b_c00020{left:227.169067pt;}
.x1d_c00020{left:261.769067pt;}
.x19_c00020{left:571.169067pt;}
.x5_c00020{left:574.369067pt;}
.x4_c00020{left:586.235733pt;}
.x7_c00020{left:588.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e61e52080694bd75dcafa4d0.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00021;src:url('chunks/assets/font_5211335ac978cd828005fb82.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00021;src:url('chunks/assets/font_a80e0010e3b67f347f21b596.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00021;src:url('chunks/assets/font_dd558f22e9a291355d336e3a.woff2')format("woff");}.ff4_c00021{font-family:ff4_c00021;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00021;src:url('chunks/assets/font_ac69488061feb497c5282be1.woff2')format("woff");}.ff5_c00021{font-family:ff5_c00021;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00021;src:url('chunks/assets/font_2d2dcf17b68d4961cb920a93.woff2')format("woff");}.ff6_c00021{font-family:ff6_c00021;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00021{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7_c00021{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00021{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m5_c00021{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma_c00021{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00021{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m8_c00021{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md_c00021{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc_c00021{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c00021{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10_c00021{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00021{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c00021{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c00021{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00021{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00021{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00021{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11_c00021{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c00021{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m14_c00021{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m18_c00021{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00021{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00021{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c00021{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c00021{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00021{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m19_c00021{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1_c00021{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls0_c00021{letter-spacing:0.000000px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00021{word-spacing:0.000000px;}
.fc0_c00021{color:transparent;}
.fs1_c00021{font-size:54.000000px;}
.fs0_c00021{font-size:60.000000px;}
.fs2_c00021{font-size:72.000000px;}
.fs4_c00021{font-size:78.000000px;}
.fs3_c00021{font-size:90.000000px;}
.fs5_c00021{font-size:102.000000px;}
.fs6_c00021{font-size:108.000000px;}
.y0_c00021{bottom:0.000000px;}
.y31_c00021{bottom:181.935000px;}
.y30_c00021{bottom:184.785000px;}
.y2f_c00021{bottom:186.285000px;}
.y2e_c00021{bottom:188.460000px;}
.y2d_c00021{bottom:267.000000px;}
.y2c_c00021{bottom:281.310000px;}
.y2b_c00021{bottom:287.835000px;}
.y2a_c00021{bottom:298.650000px;}
.y28_c00021{bottom:312.285000px;}
.y29_c00021{bottom:312.585000px;}
.y27_c00021{bottom:319.875000px;}
.y26_c00021{bottom:348.285000px;}
.y25_c00021{bottom:378.585000px;}
.y24_c00021{bottom:409.500000px;}
.y23_c00021{bottom:440.085000px;}
.y22_c00021{bottom:470.310000px;}
.y21_c00021{bottom:500.910000px;}
.y20_c00021{bottom:531.885000px;}
.y1f_c00021{bottom:562.500000px;}
.y1e_c00021{bottom:593.085000px;}
.y1d_c00021{bottom:622.635000px;}
.y1c_c00021{bottom:652.785000px;}
.y1b_c00021{bottom:683.085000px;}
.y1a_c00021{bottom:713.010000px;}
.y19_c00021{bottom:743.535000px;}
.y18_c00021{bottom:773.385000px;}
.y17_c00021{bottom:803.685000px;}
.y16_c00021{bottom:833.625000px;}
.y15_c00021{bottom:864.150000px;}
.y14_c00021{bottom:893.685000px;}
.y11_c00021{bottom:920.310000px;}
.y13_c00021{bottom:926.085000px;}
.y12_c00021{bottom:927.150000px;}
.y10_c00021{bottom:953.085000px;}
.yf_c00021{bottom:982.275000px;}
.ye_c00021{bottom:998.085000px;}
.yd_c00021{bottom:1026.900000px;}
.yb_c00021{bottom:1029.060000px;}
.ya_c00021{bottom:1029.435000px;}
.y9_c00021{bottom:1030.500000px;}
.y8_c00021{bottom:1031.550000px;}
.y7_c00021{bottom:1033.710000px;}
.y6_c00021{bottom:1034.835000px;}
.y5_c00021{bottom:1035.210000px;}
.y4_c00021{bottom:1036.185000px;}
.yc_c00021{bottom:1043.085000px;}
.y1_c00021{bottom:1094.550000px;}
.y3_c00021{bottom:1107.525000px;}
.y2_c00021{bottom:1110.960000px;}
.h2_c00021{height:54.421875px;}
.h1_c00021{height:62.578125px;}
.h3_c00021{height:72.562500px;}
.h6_c00021{height:76.552734px;}
.h5_c00021{height:88.330078px;}
.h4_c00021{height:93.867188px;}
.h7_c00021{height:100.107422px;}
.h8_c00021{height:112.640625px;}
.h0_c00021{height:1174.500000px;}
.w0_c00021{width:731.977200px;}
.w1_c00021{width:732.000000px;}
.x0_c00021{left:0.000000px;}
.x1c_c00021{left:70.165200px;}
.x19_c00021{left:71.965200px;}
.x16_c00021{left:73.090200px;}
.x13_c00021{left:74.140200px;}
.x15_c00021{left:75.175200px;}
.x14_c00021{left:77.365200px;}
.xe_c00021{left:78.490200px;}
.x10_c00021{left:79.915200px;}
.xd_c00021{left:81.715200px;}
.x1_c00021{left:98.965200px;}
.x2_c00021{left:118.090200px;}
.xf_c00021{left:120.190200px;}
.xa_c00021{left:156.565200px;}
.x1a_c00021{left:159.790200px;}
.xb_c00021{left:166.690200px;}
.x9_c00021{left:183.940200px;}
.x8_c00021{left:206.290200px;}
.x7_c00021{left:216.340200px;}
.x6_c00021{left:258.115200px;}
.x5_c00021{left:263.890200px;}
.x4_c00021{left:287.965200px;}
.xc_c00021{left:307.765200px;}
.x3_c00021{left:320.365200px;}
.x1d_c00021{left:364.315200px;}
.x1e_c00021{left:390.565200px;}
.x1f_c00021{left:450.340200px;}
.x20_c00021{left:474.790200px;}
.x21_c00021{left:478.390200px;}
.x11_c00021{left:546.490200px;}
.x12_c00021{left:580.990200px;}
.x17_c00021{left:584.965200px;}
.x1b_c00021{left:619.915200px;}
.x18_c00021{left:642.565200px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls0_c00021{letter-spacing:0.000000pt;}
.ws0_c00021{word-spacing:0.000000pt;}
.fs1_c00021{font-size:48.000000pt;}
.fs0_c00021{font-size:53.333333pt;}
.fs2_c00021{font-size:64.000000pt;}
.fs4_c00021{font-size:69.333333pt;}
.fs3_c00021{font-size:80.000000pt;}
.fs5_c00021{font-size:90.666667pt;}
.fs6_c00021{font-size:96.000000pt;}
.y0_c00021{bottom:0.000000pt;}
.y31_c00021{bottom:161.720000pt;}
.y30_c00021{bottom:164.253333pt;}
.y2f_c00021{bottom:165.586667pt;}
.y2e_c00021{bottom:167.520000pt;}
.y2d_c00021{bottom:237.333333pt;}
.y2c_c00021{bottom:250.053333pt;}
.y2b_c00021{bottom:255.853333pt;}
.y2a_c00021{bottom:265.466667pt;}
.y28_c00021{bottom:277.586667pt;}
.y29_c00021{bottom:277.853333pt;}
.y27_c00021{bottom:284.333333pt;}
.y26_c00021{bottom:309.586667pt;}
.y25_c00021{bottom:336.520000pt;}
.y24_c00021{bottom:364.000000pt;}
.y23_c00021{bottom:391.186667pt;}
.y22_c00021{bottom:418.053333pt;}
.y21_c00021{bottom:445.253333pt;}
.y20_c00021{bottom:472.786667pt;}
.y1f_c00021{bottom:500.000000pt;}
.y1e_c00021{bottom:527.186667pt;}
.y1d_c00021{bottom:553.453333pt;}
.y1c_c00021{bottom:580.253333pt;}
.y1b_c00021{bottom:607.186667pt;}
.y1a_c00021{bottom:633.786667pt;}
.y19_c00021{bottom:660.920000pt;}
.y18_c00021{bottom:687.453333pt;}
.y17_c00021{bottom:714.386667pt;}
.y16_c00021{bottom:741.000000pt;}
.y15_c00021{bottom:768.133333pt;}
.y14_c00021{bottom:794.386667pt;}
.y11_c00021{bottom:818.053333pt;}
.y13_c00021{bottom:823.186667pt;}
.y12_c00021{bottom:824.133333pt;}
.y10_c00021{bottom:847.186667pt;}
.yf_c00021{bottom:873.133333pt;}
.ye_c00021{bottom:887.186667pt;}
.yd_c00021{bottom:912.800000pt;}
.yb_c00021{bottom:914.720000pt;}
.ya_c00021{bottom:915.053333pt;}
.y9_c00021{bottom:916.000000pt;}
.y8_c00021{bottom:916.933333pt;}
.y7_c00021{bottom:918.853333pt;}
.y6_c00021{bottom:919.853333pt;}
.y5_c00021{bottom:920.186667pt;}
.y4_c00021{bottom:921.053333pt;}
.yc_c00021{bottom:927.186667pt;}
.y1_c00021{bottom:972.933333pt;}
.y3_c00021{bottom:984.466667pt;}
.y2_c00021{bottom:987.520000pt;}
.h2_c00021{height:48.375000pt;}
.h1_c00021{height:55.625000pt;}
.h3_c00021{height:64.500000pt;}
.h6_c00021{height:68.046875pt;}
.h5_c00021{height:78.515625pt;}
.h4_c00021{height:83.437500pt;}
.h7_c00021{height:88.984375pt;}
.h8_c00021{height:100.125000pt;}
.h0_c00021{height:1044.000000pt;}
.w0_c00021{width:650.646400pt;}
.w1_c00021{width:650.666667pt;}
.x0_c00021{left:0.000000pt;}
.x1c_c00021{left:62.369067pt;}
.x19_c00021{left:63.969067pt;}
.x16_c00021{left:64.969067pt;}
.x13_c00021{left:65.902400pt;}
.x15_c00021{left:66.822400pt;}
.x14_c00021{left:68.769067pt;}
.xe_c00021{left:69.769067pt;}
.x10_c00021{left:71.035733pt;}
.xd_c00021{left:72.635733pt;}
.x1_c00021{left:87.969067pt;}
.x2_c00021{left:104.969067pt;}
.xf_c00021{left:106.835733pt;}
.xa_c00021{left:139.169067pt;}
.x1a_c00021{left:142.035733pt;}
.xb_c00021{left:148.169067pt;}
.x9_c00021{left:163.502400pt;}
.x8_c00021{left:183.369067pt;}
.x7_c00021{left:192.302400pt;}
.x6_c00021{left:229.435733pt;}
.x5_c00021{left:234.569067pt;}
.x4_c00021{left:255.969067pt;}
.xc_c00021{left:273.569067pt;}
.x3_c00021{left:284.769067pt;}
.x1d_c00021{left:323.835733pt;}
.x1e_c00021{left:347.169067pt;}
.x1f_c00021{left:400.302400pt;}
.x20_c00021{left:422.035733pt;}
.x21_c00021{left:425.235733pt;}
.x11_c00021{left:485.769067pt;}
.x12_c00021{left:516.435733pt;}
.x17_c00021{left:519.969067pt;}
.x1b_c00021{left:551.035733pt;}
.x18_c00021{left:571.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8459d9aeb533b9ef282673cd.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00022{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls0_c00022{letter-spacing:0.000000px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00022{word-spacing:0.000000px;}
.fc0_c00022{color:transparent;}
.fs0_c00022{font-size:180.000000px;}
.y0_c00022{bottom:0.000000px;}
.y1_c00022{bottom:673.035000px;}
.h1_c00022{height:176.660156px;}
.h0_c00022{height:1174.500000px;}
.w0_c00022{width:731.977200px;}
.w1_c00022{width:732.000000px;}
.x0_c00022{left:0.000000px;}
.x1_c00022{left:97.540200px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls0_c00022{letter-spacing:0.000000pt;}
.ws0_c00022{word-spacing:0.000000pt;}
.fs0_c00022{font-size:160.000000pt;}
.y0_c00022{bottom:0.000000pt;}
.y1_c00022{bottom:598.253333pt;}
.h1_c00022{height:157.031250pt;}
.h0_c00022{height:1044.000000pt;}
.w0_c00022{width:650.646400pt;}
.w1_c00022{width:650.666667pt;}
.x0_c00022{left:0.000000pt;}
.x1_c00022{left:86.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9281972374b91e43ac8c60b.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00023{transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,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;}
.ls0_c00023{letter-spacing:0.000000px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00023{word-spacing:0.000000px;}
.fc0_c00023{color:transparent;}
.fs0_c00023{font-size:60.000000px;}
.y0_c00023{bottom:0.000000px;}
.y1_c00023{bottom:126.510000px;}
.y2_c00023{bottom:283.500000px;}
.h1_c00023{height:61.670545px;}
.h0_c00023{height:1174.500000px;}
.w0_c00023{width:731.977200px;}
.w1_c00023{width:732.000000px;}
.x1_c00023{left:-21.259800px;}
.x2_c00023{left:-7.909800px;}
.x0_c00023{left:0.000000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls0_c00023{letter-spacing:0.000000pt;}
.ws0_c00023{word-spacing:0.000000pt;}
.fs0_c00023{font-size:53.333333pt;}
.y0_c00023{bottom:0.000000pt;}
.y1_c00023{bottom:112.453333pt;}
.y2_c00023{bottom:252.000000pt;}
.h1_c00023{height:54.818262pt;}
.h0_c00023{height:1044.000000pt;}
.w0_c00023{width:650.646400pt;}
.w1_c00023{width:650.666667pt;}
.x1_c00023{left:-18.897600pt;}
.x2_c00023{left:-7.030933pt;}
.x0_c00023{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_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_09738b4e8847a0918d8ce45f.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00024;src:url('chunks/assets/font_75485a5e0dccfe6d447441be.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00024;src:url('chunks/assets/font_78a57966bd9fa24d0e6681c1.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00024{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m0_c00024{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me_c00024{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m13_c00024{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m15_c00024{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mb_c00024{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9_c00024{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m14_c00024{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6_c00024{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m8_c00024{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf_c00024{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00024{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c00024{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c00024{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc_c00024{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c00024{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00024{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00024{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00024{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00024{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00024{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m11_c00024{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v1_c00024{vertical-align:-5.700000px;}
.v0_c00024{vertical-align:0.000000px;}
.ls0_c00024{letter-spacing:0.000000px;}
.sc__c00024{text-shadow:none;}
.sc0_c00024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00024{-webkit-text-stroke:0px transparent;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00024{word-spacing:0.000000px;}
._0_c00024{margin-left:-9.641633px;}
.fc0_c00024{color:transparent;}
.fs3_c00024{font-size:54.000000px;}
.fs5_c00024{font-size:66.000000px;}
.fs1_c00024{font-size:72.000000px;}
.fs4_c00024{font-size:78.000000px;}
.fs2_c00024{font-size:84.000000px;}
.fs0_c00024{font-size:174.000000px;}
.y0_c00024{bottom:0.000000px;}
.y30_c00024{bottom:75.435000px;}
.y2f_c00024{bottom:97.335000px;}
.y2d_c00024{bottom:117.885000px;}
.y2e_c00024{bottom:118.560000px;}
.y2c_c00024{bottom:138.435000px;}
.y2a_c00024{bottom:159.660000px;}
.y2b_c00024{bottom:161.835000px;}
.y29_c00024{bottom:181.635000px;}
.y27_c00024{bottom:202.785000px;}
.y28_c00024{bottom:203.625000px;}
.y26_c00024{bottom:224.760000px;}
.y24_c00024{bottom:246.060000px;}
.y25_c00024{bottom:246.810000px;}
.y23_c00024{bottom:268.335000px;}
.y21_c00024{bottom:290.310000px;}
.y22_c00024{bottom:290.685000px;}
.y20_c00024{bottom:311.910000px;}
.y1e_c00024{bottom:333.525000px;}
.y1f_c00024{bottom:333.900000px;}
.y1d_c00024{bottom:355.500000px;}
.y1c_c00024{bottom:377.460000px;}
.y1b_c00024{bottom:399.435000px;}
.y19_c00024{bottom:421.035000px;}
.y1a_c00024{bottom:421.710000px;}
.y18_c00024{bottom:443.385000px;}
.y17_c00024{bottom:465.660000px;}
.y16_c00024{bottom:487.935000px;}
.y15_c00024{bottom:509.910000px;}
.y14_c00024{bottom:531.510000px;}
.y13_c00024{bottom:531.885000px;}
.y12_c00024{bottom:554.160000px;}
.y11_c00024{bottom:576.510000px;}
.y10_c00024{bottom:596.685000px;}
.yf_c00024{bottom:598.125000px;}
.ye_c00024{bottom:619.710000px;}
.yd_c00024{bottom:639.510000px;}
.yc_c00024{bottom:640.260000px;}
.yb_c00024{bottom:642.000000px;}
.ya_c00024{bottom:642.060000px;}
.y9_c00024{bottom:664.410000px;}
.y8_c00024{bottom:684.510000px;}
.y7_c00024{bottom:686.685000px;}
.y6_c00024{bottom:687.060000px;}
.y5_c00024{bottom:708.660000px;}
.y4_c00024{bottom:709.035000px;}
.y3_c00024{bottom:728.385000px;}
.y2_c00024{bottom:731.325000px;}
.y1_c00024{bottom:814.500000px;}
.h4_c00024{height:52.998047px;}
.h5_c00024{height:54.421875px;}
.h7_c00024{height:64.775391px;}
.h2_c00024{height:70.664062px;}
.h8_c00024{height:76.741406px;}
.h6_c00024{height:78.609375px;}
.h3_c00024{height:82.441406px;}
.h1_c00024{height:181.476562px;}
.h0_c00024{height:1174.500000px;}
.w0_c00024{width:731.977200px;}
.w1_c00024{width:732.000000px;}
.x0_c00024{left:0.000000px;}
.x8_c00024{left:66.565200px;}
.x4_c00024{left:68.740200px;}
.xe_c00024{left:99.715200px;}
.x2_c00024{left:100.765200px;}
.x14_c00024{left:101.890200px;}
.x6_c00024{left:151.915200px;}
.xf_c00024{left:164.140200px;}
.x10_c00024{left:168.115200px;}
.x7_c00024{left:182.875200px;}
.x11_c00024{left:202.315200px;}
.x13_c00024{left:204.490200px;}
.x1_c00024{left:208.750200px;}
.x5_c00024{left:210.190200px;}
.x3_c00024{left:227.890200px;}
.x9_c00024{left:229.690200px;}
.xc_c00024{left:245.890200px;}
.x16_c00024{left:248.365200px;}
.x15_c00024{left:277.165200px;}
.x12_c00024{left:287.290200px;}
.xd_c00024{left:299.890200px;}
.xa_c00024{left:340.165200px;}
.xb_c00024{left:687.190200px;}
@media print{
.v1_c00024{vertical-align:-5.066667pt;}
.v0_c00024{vertical-align:0.000000pt;}
.ls0_c00024{letter-spacing:0.000000pt;}
.ws0_c00024{word-spacing:0.000000pt;}
._0_c00024{margin-left:-8.570340pt;}
.fs3_c00024{font-size:48.000000pt;}
.fs5_c00024{font-size:58.666667pt;}
.fs1_c00024{font-size:64.000000pt;}
.fs4_c00024{font-size:69.333333pt;}
.fs2_c00024{font-size:74.666667pt;}
.fs0_c00024{font-size:154.666667pt;}
.y0_c00024{bottom:0.000000pt;}
.y30_c00024{bottom:67.053333pt;}
.y2f_c00024{bottom:86.520000pt;}
.y2d_c00024{bottom:104.786667pt;}
.y2e_c00024{bottom:105.386667pt;}
.y2c_c00024{bottom:123.053333pt;}
.y2a_c00024{bottom:141.920000pt;}
.y2b_c00024{bottom:143.853333pt;}
.y29_c00024{bottom:161.453333pt;}
.y27_c00024{bottom:180.253333pt;}
.y28_c00024{bottom:181.000000pt;}
.y26_c00024{bottom:199.786667pt;}
.y24_c00024{bottom:218.720000pt;}
.y25_c00024{bottom:219.386667pt;}
.y23_c00024{bottom:238.520000pt;}
.y21_c00024{bottom:258.053333pt;}
.y22_c00024{bottom:258.386667pt;}
.y20_c00024{bottom:277.253333pt;}
.y1e_c00024{bottom:296.466667pt;}
.y1f_c00024{bottom:296.800000pt;}
.y1d_c00024{bottom:316.000000pt;}
.y1c_c00024{bottom:335.520000pt;}
.y1b_c00024{bottom:355.053333pt;}
.y19_c00024{bottom:374.253333pt;}
.y1a_c00024{bottom:374.853333pt;}
.y18_c00024{bottom:394.120000pt;}
.y17_c00024{bottom:413.920000pt;}
.y16_c00024{bottom:433.720000pt;}
.y15_c00024{bottom:453.253333pt;}
.y14_c00024{bottom:472.453333pt;}
.y13_c00024{bottom:472.786667pt;}
.y12_c00024{bottom:492.586667pt;}
.y11_c00024{bottom:512.453333pt;}
.y10_c00024{bottom:530.386667pt;}
.yf_c00024{bottom:531.666667pt;}
.ye_c00024{bottom:550.853333pt;}
.yd_c00024{bottom:568.453333pt;}
.yc_c00024{bottom:569.120000pt;}
.yb_c00024{bottom:570.666667pt;}
.ya_c00024{bottom:570.720000pt;}
.y9_c00024{bottom:590.586667pt;}
.y8_c00024{bottom:608.453333pt;}
.y7_c00024{bottom:610.386667pt;}
.y6_c00024{bottom:610.720000pt;}
.y5_c00024{bottom:629.920000pt;}
.y4_c00024{bottom:630.253333pt;}
.y3_c00024{bottom:647.453333pt;}
.y2_c00024{bottom:650.066667pt;}
.y1_c00024{bottom:724.000000pt;}
.h4_c00024{height:47.109375pt;}
.h5_c00024{height:48.375000pt;}
.h7_c00024{height:57.578125pt;}
.h2_c00024{height:62.812500pt;}
.h8_c00024{height:68.214583pt;}
.h6_c00024{height:69.875000pt;}
.h3_c00024{height:73.281250pt;}
.h1_c00024{height:161.312500pt;}
.h0_c00024{height:1044.000000pt;}
.w0_c00024{width:650.646400pt;}
.w1_c00024{width:650.666667pt;}
.x0_c00024{left:0.000000pt;}
.x8_c00024{left:59.169067pt;}
.x4_c00024{left:61.102400pt;}
.xe_c00024{left:88.635733pt;}
.x2_c00024{left:89.569067pt;}
.x14_c00024{left:90.569067pt;}
.x6_c00024{left:135.035733pt;}
.xf_c00024{left:145.902400pt;}
.x10_c00024{left:149.435733pt;}
.x7_c00024{left:162.555733pt;}
.x11_c00024{left:179.835733pt;}
.x13_c00024{left:181.769067pt;}
.x1_c00024{left:185.555733pt;}
.x5_c00024{left:186.835733pt;}
.x3_c00024{left:202.569067pt;}
.x9_c00024{left:204.169067pt;}
.xc_c00024{left:218.569067pt;}
.x16_c00024{left:220.769067pt;}
.x15_c00024{left:246.369067pt;}
.x12_c00024{left:255.369067pt;}
.xd_c00024{left:266.569067pt;}
.xa_c00024{left:302.369067pt;}
.xb_c00024{left:610.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_74017590e4db1b3aa7d2f574.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00025;src:url('chunks/assets/font_1c30b4b617a8bdb2c564b4f7.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m29_c00025{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00025{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00025{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00025{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m28_c00025{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m9_c00025{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m26_c00025{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m20_c00025{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6_c00025{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m19_c00025{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10_c00025{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m14_c00025{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m21_c00025{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m18_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);}
.ma_c00025{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m0_c00025{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c00025{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c00025{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m22_c00025{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c00025{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00025{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8_c00025{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00025{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m17_c00025{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mf_c00025{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00025{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00025{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c00025{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00025{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c00025{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00025{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00025{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c00025{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00025{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00025{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00025{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m25_c00025{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00025{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m27_c00025{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c00025{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00025{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mb_c00025{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m24_c00025{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m23_c00025{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00025{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1_c00025{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.ls0_c00025{letter-spacing:0.000000px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00025{word-spacing:0.000000px;}
.fc0_c00025{color:transparent;}
.fs3_c00025{font-size:48.000000px;}
.fs1_c00025{font-size:60.000000px;}
.fs0_c00025{font-size:66.000000px;}
.fs4_c00025{font-size:72.000000px;}
.fs2_c00025{font-size:78.000000px;}
.y0_c00025{bottom:0.000000px;}
.y65_c00025{bottom:108.885000px;}
.y64_c00025{bottom:114.000000px;}
.y61_c00025{bottom:116.085000px;}
.y63_c00025{bottom:117.210000px;}
.y62_c00025{bottom:117.510000px;}
.y60_c00025{bottom:121.875000px;}
.y5f_c00025{bottom:124.710000px;}
.y5e_c00025{bottom:125.385000px;}
.y5d_c00025{bottom:130.125000px;}
.y5c_c00025{bottom:134.835000px;}
.y5b_c00025{bottom:136.635000px;}
.y5a_c00025{bottom:156.435000px;}
.y59_c00025{bottom:160.035000px;}
.y56_c00025{bottom:171.510000px;}
.y55_c00025{bottom:175.125000px;}
.y57_c00025{bottom:178.710000px;}
.y58_c00025{bottom:179.085000px;}
.y54_c00025{bottom:184.125000px;}
.y53_c00025{bottom:196.710000px;}
.y52_c00025{bottom:199.935000px;}
.y51_c00025{bottom:218.310000px;}
.y50_c00025{bottom:221.250000px;}
.y4f_c00025{bottom:231.660000px;}
.y4e_c00025{bottom:246.750000px;}
.y4d_c00025{bottom:251.835000px;}
.y4b_c00025{bottom:259.710000px;}
.y4c_c00025{bottom:260.085000px;}
.y4a_c00025{bottom:262.275000px;}
.y49_c00025{bottom:283.125000px;}
.y48_c00025{bottom:294.285000px;}
.y47_c00025{bottom:303.000000px;}
.y46_c00025{bottom:303.285000px;}
.y45_c00025{bottom:305.085000px;}
.y44_c00025{bottom:326.310000px;}
.y43_c00025{bottom:339.285000px;}
.y42_c00025{bottom:359.085000px;}
.y41_c00025{bottom:367.410000px;}
.y40_c00025{bottom:385.035000px;}
.y3f_c00025{bottom:404.085000px;}
.y3e_c00025{bottom:408.810000px;}
.y3d_c00025{bottom:410.625000px;}
.y3c_c00025{bottom:425.310000px;}
.y3b_c00025{bottom:427.875000px;}
.y3a_c00025{bottom:430.710000px;}
.y39_c00025{bottom:452.685000px;}
.y38_c00025{bottom:468.135000px;}
.y37_c00025{bottom:470.010000px;}
.y36_c00025{bottom:473.910000px;}
.y35_c00025{bottom:494.385000px;}
.y34_c00025{bottom:513.885000px;}
.y33_c00025{bottom:537.285000px;}
.y32_c00025{bottom:556.710000px;}
.y31_c00025{bottom:558.135000px;}
.y30_c00025{bottom:558.210000px;}
.y2f_c00025{bottom:579.060000px;}
.y2e_c00025{bottom:579.375000px;}
.y2d_c00025{bottom:600.960000px;}
.y2c_c00025{bottom:622.560000px;}
.y29_c00025{bottom:642.810000px;}
.y2a_c00025{bottom:643.500000px;}
.y2b_c00025{bottom:644.250000px;}
.y27_c00025{bottom:664.710000px;}
.y28_c00025{bottom:666.510000px;}
.y26_c00025{bottom:686.685000px;}
.y22_c00025{bottom:705.060000px;}
.y23_c00025{bottom:706.185000px;}
.y24_c00025{bottom:706.875000px;}
.y25_c00025{bottom:710.460000px;}
.y1f_c00025{bottom:726.660000px;}
.y20_c00025{bottom:728.085000px;}
.y21_c00025{bottom:731.700000px;}
.y1e_c00025{bottom:747.885000px;}
.y1b_c00025{bottom:768.435000px;}
.y1c_c00025{bottom:769.875000px;}
.y1d_c00025{bottom:775.260000px;}
.y1a_c00025{bottom:792.585000px;}
.y17_c00025{bottom:809.775000px;}
.y18_c00025{bottom:811.275000px;}
.y19_c00025{bottom:818.085000px;}
.y16_c00025{bottom:828.900000px;}
.y14_c00025{bottom:852.675000px;}
.y15_c00025{bottom:861.300000px;}
.y12_c00025{bottom:873.150000px;}
.y13_c00025{bottom:881.835000px;}
.y11_c00025{bottom:894.435000px;}
.yd_c00025{bottom:913.500000px;}
.ye_c00025{bottom:916.710000px;}
.yf_c00025{bottom:924.000000px;}
.y10_c00025{bottom:927.900000px;}
.yc_c00025{bottom:939.375000px;}
.yb_c00025{bottom:954.900000px;}
.ya_c00025{bottom:966.810000px;}
.y9_c00025{bottom:977.925000px;}
.y7_c00025{bottom:995.250000px;}
.y8_c00025{bottom:1008.150000px;}
.y6_c00025{bottom:1015.050000px;}
.y4_c00025{bottom:1038.750000px;}
.y5_c00025{bottom:1052.085000px;}
.y1_c00025{bottom:1091.685000px;}
.y3_c00025{bottom:1103.550000px;}
.y2_c00025{bottom:1108.125000px;}
.h5_c00025{height:47.109375px;}
.h2_c00025{height:58.886719px;}
.h1_c00025{height:64.775391px;}
.h6_c00025{height:70.664062px;}
.h3_c00025{height:76.552734px;}
.h4_c00025{height:78.609375px;}
.h0_c00025{height:1174.500000px;}
.w0_c00025{width:731.977200px;}
.w1_c00025{width:732.000000px;}
.x0_c00025{left:0.000000px;}
.x3a_c00025{left:52.165200px;}
.x35_c00025{left:53.590200px;}
.x22_c00025{left:54.715200px;}
.x1e_c00025{left:55.765200px;}
.x17_c00025{left:56.890200px;}
.xd_c00025{left:57.940200px;}
.x6_c00025{left:58.990200px;}
.x8_c00025{left:60.115200px;}
.x3b_c00025{left:67.315200px;}
.x3c_c00025{left:74.140200px;}
.x1_c00025{left:78.790200px;}
.x2c_c00025{left:82.765200px;}
.x23_c00025{left:84.175200px;}
.x10_c00025{left:85.300200px;}
.x14_c00025{left:86.365200px;}
.xe_c00025{left:88.165200px;}
.x4_c00025{left:89.290200px;}
.x2_c00025{left:95.740200px;}
.x25_c00025{left:129.190200px;}
.x36_c00025{left:135.715200px;}
.x1a_c00025{left:144.340200px;}
.x31_c00025{left:150.115200px;}
.x12_c00025{left:152.590200px;}
.x15_c00025{left:155.515200px;}
.x18_c00025{left:157.990200px;}
.x7_c00025{left:159.790200px;}
.xa_c00025{left:160.915200px;}
.x29_c00025{left:161.965200px;}
.x24_c00025{left:163.765200px;}
.x1b_c00025{left:174.565200px;}
.x2d_c00025{left:175.990200px;}
.x33_c00025{left:178.915200px;}
.x20_c00025{left:180.715200px;}
.x13_c00025{left:182.875200px;}
.x1c_c00025{left:190.375200px;}
.x9_c00025{left:196.165200px;}
.x2e_c00025{left:201.190200px;}
.x2a_c00025{left:210.565200px;}
.x21_c00025{left:211.990200px;}
.x2f_c00025{left:240.115200px;}
.x32_c00025{left:241.165200px;}
.xf_c00025{left:249.115200px;}
.x2b_c00025{left:251.965200px;}
.x11_c00025{left:256.315200px;}
.x1f_c00025{left:258.490200px;}
.x3_c00025{left:260.965200px;}
.x19_c00025{left:265.990200px;}
.x16_c00025{left:268.915200px;}
.x5_c00025{left:285.115200px;}
.x27_c00025{left:289.090200px;}
.xb_c00025{left:295.165200px;}
.x1d_c00025{left:308.515200px;}
.x37_c00025{left:331.165200px;}
.x38_c00025{left:336.190200px;}
.x34_c00025{left:340.540200px;}
.x28_c00025{left:355.315200px;}
.x39_c00025{left:397.765200px;}
.x30_c00025{left:537.790200px;}
.xc_c00025{left:541.090200px;}
.x26_c00025{left:579.940200px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls0_c00025{letter-spacing:0.000000pt;}
.ws0_c00025{word-spacing:0.000000pt;}
.fs3_c00025{font-size:42.666667pt;}
.fs1_c00025{font-size:53.333333pt;}
.fs0_c00025{font-size:58.666667pt;}
.fs4_c00025{font-size:64.000000pt;}
.fs2_c00025{font-size:69.333333pt;}
.y0_c00025{bottom:0.000000pt;}
.y65_c00025{bottom:96.786667pt;}
.y64_c00025{bottom:101.333333pt;}
.y61_c00025{bottom:103.186667pt;}
.y63_c00025{bottom:104.186667pt;}
.y62_c00025{bottom:104.453333pt;}
.y60_c00025{bottom:108.333333pt;}
.y5f_c00025{bottom:110.853333pt;}
.y5e_c00025{bottom:111.453333pt;}
.y5d_c00025{bottom:115.666667pt;}
.y5c_c00025{bottom:119.853333pt;}
.y5b_c00025{bottom:121.453333pt;}
.y5a_c00025{bottom:139.053333pt;}
.y59_c00025{bottom:142.253333pt;}
.y56_c00025{bottom:152.453333pt;}
.y55_c00025{bottom:155.666667pt;}
.y57_c00025{bottom:158.853333pt;}
.y58_c00025{bottom:159.186667pt;}
.y54_c00025{bottom:163.666667pt;}
.y53_c00025{bottom:174.853333pt;}
.y52_c00025{bottom:177.720000pt;}
.y51_c00025{bottom:194.053333pt;}
.y50_c00025{bottom:196.666667pt;}
.y4f_c00025{bottom:205.920000pt;}
.y4e_c00025{bottom:219.333333pt;}
.y4d_c00025{bottom:223.853333pt;}
.y4b_c00025{bottom:230.853333pt;}
.y4c_c00025{bottom:231.186667pt;}
.y4a_c00025{bottom:233.133333pt;}
.y49_c00025{bottom:251.666667pt;}
.y48_c00025{bottom:261.586667pt;}
.y47_c00025{bottom:269.333333pt;}
.y46_c00025{bottom:269.586667pt;}
.y45_c00025{bottom:271.186667pt;}
.y44_c00025{bottom:290.053333pt;}
.y43_c00025{bottom:301.586667pt;}
.y42_c00025{bottom:319.186667pt;}
.y41_c00025{bottom:326.586667pt;}
.y40_c00025{bottom:342.253333pt;}
.y3f_c00025{bottom:359.186667pt;}
.y3e_c00025{bottom:363.386667pt;}
.y3d_c00025{bottom:365.000000pt;}
.y3c_c00025{bottom:378.053333pt;}
.y3b_c00025{bottom:380.333333pt;}
.y3a_c00025{bottom:382.853333pt;}
.y39_c00025{bottom:402.386667pt;}
.y38_c00025{bottom:416.120000pt;}
.y37_c00025{bottom:417.786667pt;}
.y36_c00025{bottom:421.253333pt;}
.y35_c00025{bottom:439.453333pt;}
.y34_c00025{bottom:456.786667pt;}
.y33_c00025{bottom:477.586667pt;}
.y32_c00025{bottom:494.853333pt;}
.y31_c00025{bottom:496.120000pt;}
.y30_c00025{bottom:496.186667pt;}
.y2f_c00025{bottom:514.720000pt;}
.y2e_c00025{bottom:515.000000pt;}
.y2d_c00025{bottom:534.186667pt;}
.y2c_c00025{bottom:553.386667pt;}
.y29_c00025{bottom:571.386667pt;}
.y2a_c00025{bottom:572.000000pt;}
.y2b_c00025{bottom:572.666667pt;}
.y27_c00025{bottom:590.853333pt;}
.y28_c00025{bottom:592.453333pt;}
.y26_c00025{bottom:610.386667pt;}
.y22_c00025{bottom:626.720000pt;}
.y23_c00025{bottom:627.720000pt;}
.y24_c00025{bottom:628.333333pt;}
.y25_c00025{bottom:631.520000pt;}
.y1f_c00025{bottom:645.920000pt;}
.y20_c00025{bottom:647.186667pt;}
.y21_c00025{bottom:650.400000pt;}
.y1e_c00025{bottom:664.786667pt;}
.y1b_c00025{bottom:683.053333pt;}
.y1c_c00025{bottom:684.333333pt;}
.y1d_c00025{bottom:689.120000pt;}
.y1a_c00025{bottom:704.520000pt;}
.y17_c00025{bottom:719.800000pt;}
.y18_c00025{bottom:721.133333pt;}
.y19_c00025{bottom:727.186667pt;}
.y16_c00025{bottom:736.800000pt;}
.y14_c00025{bottom:757.933333pt;}
.y15_c00025{bottom:765.600000pt;}
.y12_c00025{bottom:776.133333pt;}
.y13_c00025{bottom:783.853333pt;}
.y11_c00025{bottom:795.053333pt;}
.yd_c00025{bottom:812.000000pt;}
.ye_c00025{bottom:814.853333pt;}
.yf_c00025{bottom:821.333333pt;}
.y10_c00025{bottom:824.800000pt;}
.yc_c00025{bottom:835.000000pt;}
.yb_c00025{bottom:848.800000pt;}
.ya_c00025{bottom:859.386667pt;}
.y9_c00025{bottom:869.266667pt;}
.y7_c00025{bottom:884.666667pt;}
.y8_c00025{bottom:896.133333pt;}
.y6_c00025{bottom:902.266667pt;}
.y4_c00025{bottom:923.333333pt;}
.y5_c00025{bottom:935.186667pt;}
.y1_c00025{bottom:970.386667pt;}
.y3_c00025{bottom:980.933333pt;}
.y2_c00025{bottom:985.000000pt;}
.h5_c00025{height:41.875000pt;}
.h2_c00025{height:52.343750pt;}
.h1_c00025{height:57.578125pt;}
.h6_c00025{height:62.812500pt;}
.h3_c00025{height:68.046875pt;}
.h4_c00025{height:69.875000pt;}
.h0_c00025{height:1044.000000pt;}
.w0_c00025{width:650.646400pt;}
.w1_c00025{width:650.666667pt;}
.x0_c00025{left:0.000000pt;}
.x3a_c00025{left:46.369067pt;}
.x35_c00025{left:47.635733pt;}
.x22_c00025{left:48.635733pt;}
.x1e_c00025{left:49.569067pt;}
.x17_c00025{left:50.569067pt;}
.xd_c00025{left:51.502400pt;}
.x6_c00025{left:52.435733pt;}
.x8_c00025{left:53.435733pt;}
.x3b_c00025{left:59.835733pt;}
.x3c_c00025{left:65.902400pt;}
.x1_c00025{left:70.035733pt;}
.x2c_c00025{left:73.569067pt;}
.x23_c00025{left:74.822400pt;}
.x10_c00025{left:75.822400pt;}
.x14_c00025{left:76.769067pt;}
.xe_c00025{left:78.369067pt;}
.x4_c00025{left:79.369067pt;}
.x2_c00025{left:85.102400pt;}
.x25_c00025{left:114.835733pt;}
.x36_c00025{left:120.635733pt;}
.x1a_c00025{left:128.302400pt;}
.x31_c00025{left:133.435733pt;}
.x12_c00025{left:135.635733pt;}
.x15_c00025{left:138.235733pt;}
.x18_c00025{left:140.435733pt;}
.x7_c00025{left:142.035733pt;}
.xa_c00025{left:143.035733pt;}
.x29_c00025{left:143.969067pt;}
.x24_c00025{left:145.569067pt;}
.x1b_c00025{left:155.169067pt;}
.x2d_c00025{left:156.435733pt;}
.x33_c00025{left:159.035733pt;}
.x20_c00025{left:160.635733pt;}
.x13_c00025{left:162.555733pt;}
.x1c_c00025{left:169.222400pt;}
.x9_c00025{left:174.369067pt;}
.x2e_c00025{left:178.835733pt;}
.x2a_c00025{left:187.169067pt;}
.x21_c00025{left:188.435733pt;}
.x2f_c00025{left:213.435733pt;}
.x32_c00025{left:214.369067pt;}
.xf_c00025{left:221.435733pt;}
.x2b_c00025{left:223.969067pt;}
.x11_c00025{left:227.835733pt;}
.x1f_c00025{left:229.769067pt;}
.x3_c00025{left:231.969067pt;}
.x19_c00025{left:236.435733pt;}
.x16_c00025{left:239.035733pt;}
.x5_c00025{left:253.435733pt;}
.x27_c00025{left:256.969067pt;}
.xb_c00025{left:262.369067pt;}
.x1d_c00025{left:274.235733pt;}
.x37_c00025{left:294.369067pt;}
.x38_c00025{left:298.835733pt;}
.x34_c00025{left:302.702400pt;}
.x28_c00025{left:315.835733pt;}
.x39_c00025{left:353.569067pt;}
.x30_c00025{left:478.035733pt;}
.xc_c00025{left:480.969067pt;}
.x26_c00025{left:515.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b59d0a5af73055b782e904eb.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00026;src:url('chunks/assets/font_7005289d3f9310b4ebac7d51.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00026;src:url('chunks/assets/font_73f5e1c3e97ebc82c2c8b735.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me_c00026{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m11_c00026{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m21_c00026{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00026{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6_c00026{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m19_c00026{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8_c00026{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10_c00026{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00026{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1a_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);}
.m3_c00026{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m20_c00026{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00026{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_c00026{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00026{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mb_c00026{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4_c00026{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00026{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m15_c00026{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c00026{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9_c00026{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00026{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m17_c00026{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m28_c00026{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00026{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c00026{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m29_c00026{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00026{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00026{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m22_c00026{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m13_c00026{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2_c00026{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m23_c00026{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00026{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m25_c00026{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00026{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m16_c00026{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m27_c00026{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14_c00026{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mf_c00026{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.md_c00026{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m24_c00026{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.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:0.000000px;}
.fc0_c00026{color:transparent;}
.fs1_c00026{font-size:18.000000px;}
.fs6_c00026{font-size:54.000000px;}
.fs2_c00026{font-size:60.000000px;}
.fs7_c00026{font-size:66.000000px;}
.fs3_c00026{font-size:72.000000px;}
.fs4_c00026{font-size:84.000000px;}
.fs5_c00026{font-size:90.000000px;}
.fs0_c00026{font-size:108.000000px;}
.y0_c00026{bottom:0.000000px;}
.y52_c00026{bottom:70.335000px;}
.y53_c00026{bottom:70.710000px;}
.y54_c00026{bottom:71.835000px;}
.y51_c00026{bottom:93.435000px;}
.y50_c00026{bottom:113.535000px;}
.y4d_c00026{bottom:133.035000px;}
.y4e_c00026{bottom:135.885000px;}
.y4f_c00026{bottom:142.335000px;}
.y4c_c00026{bottom:155.310000px;}
.y4b_c00026{bottom:177.000000px;}
.y48_c00026{bottom:197.085000px;}
.y49_c00026{bottom:197.835000px;}
.y4a_c00026{bottom:201.060000px;}
.y46_c00026{bottom:218.685000px;}
.y47_c00026{bottom:221.250000px;}
.y44_c00026{bottom:240.285000px;}
.y45_c00026{bottom:241.710000px;}
.y43_c00026{bottom:261.900000px;}
.y3e_c00026{bottom:283.125000px;}
.y3d_c00026{bottom:283.875000px;}
.y3f_c00026{bottom:284.250000px;}
.y40_c00026{bottom:286.035000px;}
.y41_c00026{bottom:288.525000px;}
.y42_c00026{bottom:289.935000px;}
.y3b_c00026{bottom:305.085000px;}
.y3a_c00026{bottom:305.460000px;}
.y3c_c00026{bottom:306.585000px;}
.y39_c00026{bottom:327.750000px;}
.y38_c00026{bottom:349.410000px;}
.y37_c00026{bottom:370.650000px;}
.y36_c00026{bottom:371.310000px;}
.y35_c00026{bottom:371.685000px;}
.y34_c00026{bottom:393.285000px;}
.y33_c00026{bottom:414.510000px;}
.y31_c00026{bottom:436.875000px;}
.y32_c00026{bottom:437.535000px;}
.y30_c00026{bottom:459.210000px;}
.y2f_c00026{bottom:481.125000px;}
.y2e_c00026{bottom:503.460000px;}
.y2d_c00026{bottom:525.435000px;}
.y2b_c00026{bottom:546.960000px;}
.y2c_c00026{bottom:547.410000px;}
.y2a_c00026{bottom:569.310000px;}
.y29_c00026{bottom:590.910000px;}
.y28_c00026{bottom:612.885000px;}
.y27_c00026{bottom:634.500000px;}
.y26_c00026{bottom:635.160000px;}
.y25_c00026{bottom:656.460000px;}
.y24_c00026{bottom:678.435000px;}
.y23_c00026{bottom:679.875000px;}
.y22_c00026{bottom:701.460000px;}
.y21_c00026{bottom:721.635000px;}
.y20_c00026{bottom:721.950000px;}
.y1f_c00026{bottom:723.450000px;}
.y1e_c00026{bottom:743.910000px;}
.y1d_c00026{bottom:745.710000px;}
.y1c_c00026{bottom:765.885000px;}
.y1b_c00026{bottom:768.000000px;}
.y1a_c00026{bottom:768.060000px;}
.y19_c00026{bottom:789.000000px;}
.y18_c00026{bottom:810.525000px;}
.y16_c00026{bottom:813.000000px;}
.y17_c00026{bottom:813.060000px;}
.y15_c00026{bottom:831.750000px;}
.y14_c00026{bottom:834.300000px;}
.y13_c00026{bottom:854.085000px;}
.y12_c00026{bottom:856.650000px;}
.y11_c00026{bottom:876.750000px;}
.y10_c00026{bottom:878.550000px;}
.yf_c00026{bottom:899.775000px;}
.ye_c00026{bottom:919.935000px;}
.yd_c00026{bottom:940.800000px;}
.yc_c00026{bottom:943.050000px;}
.yb_c00026{bottom:943.335000px;}
.ya_c00026{bottom:943.710000px;}
.y9_c00026{bottom:963.900000px;}
.y8_c00026{bottom:984.375000px;}
.y7_c00026{bottom:987.960000px;}
.y6_c00026{bottom:1009.560000px;}
.y5_c00026{bottom:1029.060000px;}
.y3_c00026{bottom:1081.935000px;}
.y4_c00026{bottom:1088.460000px;}
.y1_c00026{bottom:1154.025000px;}
.y2_c00026{bottom:1171.935000px;}
.h2_c00026{height:17.666016px;}
.h8_c00026{height:52.998047px;}
.h6_c00026{height:58.886719px;}
.h3_c00026{height:60.468750px;}
.h9_c00026{height:64.775391px;}
.h4_c00026{height:70.664062px;}
.h5_c00026{height:82.441406px;}
.h7_c00026{height:88.330078px;}
.h1_c00026{height:112.640625px;}
.h0_c00026{height:1174.500000px;}
.w0_c00026{width:731.977200px;}
.w1_c00026{width:732.000000px;}
.x0_c00026{left:0.000000px;}
.x1a_c00026{left:38.890200px;}
.xf_c00026{left:40.315200px;}
.x6_c00026{left:41.740200px;}
.x30_c00026{left:44.290200px;}
.x34_c00026{left:46.390200px;}
.x14_c00026{left:57.190200px;}
.x15_c00026{left:64.090200px;}
.x23_c00026{left:65.140200px;}
.x1c_c00026{left:71.965200px;}
.x21_c00026{left:73.090200px;}
.x9_c00026{left:74.140200px;}
.x7_c00026{left:75.175200px;}
.x5_c00026{left:76.675200px;}
.x31_c00026{left:78.115200px;}
.x33_c00026{left:79.540200px;}
.x24_c00026{left:92.140200px;}
.x35_c00026{left:130.315200px;}
.x1b_c00026{left:138.565200px;}
.x25_c00026{left:140.365200px;}
.x2e_c00026{left:159.790200px;}
.x36_c00026{left:162.340200px;}
.x2c_c00026{left:164.140200px;}
.x8_c00026{left:169.540200px;}
.xa_c00026{left:173.500200px;}
.x27_c00026{left:174.940200px;}
.xe_c00026{left:177.490200px;}
.x2d_c00026{left:178.540200px;}
.x1_c00026{left:184.315200px;}
.x1f_c00026{left:188.590200px;}
.x1d_c00026{left:190.375200px;}
.x20_c00026{left:191.500200px;}
.x16_c00026{left:198.340200px;}
.xd_c00026{left:200.500200px;}
.x22_c00026{left:236.140200px;}
.x26_c00026{left:242.590200px;}
.x28_c00026{left:263.140200px;}
.xb_c00026{left:264.565200px;}
.xc_c00026{left:274.990200px;}
.x4_c00026{left:290.140200px;}
.x18_c00026{left:350.965200px;}
.x29_c00026{left:378.340200px;}
.x17_c00026{left:397.390200px;}
.x2f_c00026{left:398.890200px;}
.x2_c00026{left:410.365200px;}
.x10_c00026{left:444.190200px;}
.x11_c00026{left:459.340200px;}
.x12_c00026{left:466.165200px;}
.x13_c00026{left:473.740200px;}
.x1e_c00026{left:521.965200px;}
.x19_c00026{left:581.740200px;}
.x2a_c00026{left:600.490200px;}
.x32_c00026{left:623.140200px;}
.x2b_c00026{left:625.690200px;}
.x3_c00026{left:635.365200px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls0_c00026{letter-spacing:0.000000pt;}
.ws0_c00026{word-spacing:0.000000pt;}
.fs1_c00026{font-size:16.000000pt;}
.fs6_c00026{font-size:48.000000pt;}
.fs2_c00026{font-size:53.333333pt;}
.fs7_c00026{font-size:58.666667pt;}
.fs3_c00026{font-size:64.000000pt;}
.fs4_c00026{font-size:74.666667pt;}
.fs5_c00026{font-size:80.000000pt;}
.fs0_c00026{font-size:96.000000pt;}
.y0_c00026{bottom:0.000000pt;}
.y52_c00026{bottom:62.520000pt;}
.y53_c00026{bottom:62.853333pt;}
.y54_c00026{bottom:63.853333pt;}
.y51_c00026{bottom:83.053333pt;}
.y50_c00026{bottom:100.920000pt;}
.y4d_c00026{bottom:118.253333pt;}
.y4e_c00026{bottom:120.786667pt;}
.y4f_c00026{bottom:126.520000pt;}
.y4c_c00026{bottom:138.053333pt;}
.y4b_c00026{bottom:157.333333pt;}
.y48_c00026{bottom:175.186667pt;}
.y49_c00026{bottom:175.853333pt;}
.y4a_c00026{bottom:178.720000pt;}
.y46_c00026{bottom:194.386667pt;}
.y47_c00026{bottom:196.666667pt;}
.y44_c00026{bottom:213.586667pt;}
.y45_c00026{bottom:214.853333pt;}
.y43_c00026{bottom:232.800000pt;}
.y3e_c00026{bottom:251.666667pt;}
.y3d_c00026{bottom:252.333333pt;}
.y3f_c00026{bottom:252.666667pt;}
.y40_c00026{bottom:254.253333pt;}
.y41_c00026{bottom:256.466667pt;}
.y42_c00026{bottom:257.720000pt;}
.y3b_c00026{bottom:271.186667pt;}
.y3a_c00026{bottom:271.520000pt;}
.y3c_c00026{bottom:272.520000pt;}
.y39_c00026{bottom:291.333333pt;}
.y38_c00026{bottom:310.586667pt;}
.y37_c00026{bottom:329.466667pt;}
.y36_c00026{bottom:330.053333pt;}
.y35_c00026{bottom:330.386667pt;}
.y34_c00026{bottom:349.586667pt;}
.y33_c00026{bottom:368.453333pt;}
.y31_c00026{bottom:388.333333pt;}
.y32_c00026{bottom:388.920000pt;}
.y30_c00026{bottom:408.186667pt;}
.y2f_c00026{bottom:427.666667pt;}
.y2e_c00026{bottom:447.520000pt;}
.y2d_c00026{bottom:467.053333pt;}
.y2b_c00026{bottom:486.186667pt;}
.y2c_c00026{bottom:486.586667pt;}
.y2a_c00026{bottom:506.053333pt;}
.y29_c00026{bottom:525.253333pt;}
.y28_c00026{bottom:544.786667pt;}
.y27_c00026{bottom:564.000000pt;}
.y26_c00026{bottom:564.586667pt;}
.y25_c00026{bottom:583.520000pt;}
.y24_c00026{bottom:603.053333pt;}
.y23_c00026{bottom:604.333333pt;}
.y22_c00026{bottom:623.520000pt;}
.y21_c00026{bottom:641.453333pt;}
.y20_c00026{bottom:641.733333pt;}
.y1f_c00026{bottom:643.066667pt;}
.y1e_c00026{bottom:661.253333pt;}
.y1d_c00026{bottom:662.853333pt;}
.y1c_c00026{bottom:680.786667pt;}
.y1b_c00026{bottom:682.666667pt;}
.y1a_c00026{bottom:682.720000pt;}
.y19_c00026{bottom:701.333333pt;}
.y18_c00026{bottom:720.466667pt;}
.y16_c00026{bottom:722.666667pt;}
.y17_c00026{bottom:722.720000pt;}
.y15_c00026{bottom:739.333333pt;}
.y14_c00026{bottom:741.600000pt;}
.y13_c00026{bottom:759.186667pt;}
.y12_c00026{bottom:761.466667pt;}
.y11_c00026{bottom:779.333333pt;}
.y10_c00026{bottom:780.933333pt;}
.yf_c00026{bottom:799.800000pt;}
.ye_c00026{bottom:817.720000pt;}
.yd_c00026{bottom:836.266667pt;}
.yc_c00026{bottom:838.266667pt;}
.yb_c00026{bottom:838.520000pt;}
.ya_c00026{bottom:838.853333pt;}
.y9_c00026{bottom:856.800000pt;}
.y8_c00026{bottom:875.000000pt;}
.y7_c00026{bottom:878.186667pt;}
.y6_c00026{bottom:897.386667pt;}
.y5_c00026{bottom:914.720000pt;}
.y3_c00026{bottom:961.720000pt;}
.y4_c00026{bottom:967.520000pt;}
.y1_c00026{bottom:1025.800000pt;}
.y2_c00026{bottom:1041.720000pt;}
.h2_c00026{height:15.703125pt;}
.h8_c00026{height:47.109375pt;}
.h6_c00026{height:52.343750pt;}
.h3_c00026{height:53.750000pt;}
.h9_c00026{height:57.578125pt;}
.h4_c00026{height:62.812500pt;}
.h5_c00026{height:73.281250pt;}
.h7_c00026{height:78.515625pt;}
.h1_c00026{height:100.125000pt;}
.h0_c00026{height:1044.000000pt;}
.w0_c00026{width:650.646400pt;}
.w1_c00026{width:650.666667pt;}
.x0_c00026{left:0.000000pt;}
.x1a_c00026{left:34.569067pt;}
.xf_c00026{left:35.835733pt;}
.x6_c00026{left:37.102400pt;}
.x30_c00026{left:39.369067pt;}
.x34_c00026{left:41.235733pt;}
.x14_c00026{left:50.835733pt;}
.x15_c00026{left:56.969067pt;}
.x23_c00026{left:57.902400pt;}
.x1c_c00026{left:63.969067pt;}
.x21_c00026{left:64.969067pt;}
.x9_c00026{left:65.902400pt;}
.x7_c00026{left:66.822400pt;}
.x5_c00026{left:68.155733pt;}
.x31_c00026{left:69.435733pt;}
.x33_c00026{left:70.702400pt;}
.x24_c00026{left:81.902400pt;}
.x35_c00026{left:115.835733pt;}
.x1b_c00026{left:123.169067pt;}
.x25_c00026{left:124.769067pt;}
.x2e_c00026{left:142.035733pt;}
.x36_c00026{left:144.302400pt;}
.x2c_c00026{left:145.902400pt;}
.x8_c00026{left:150.702400pt;}
.xa_c00026{left:154.222400pt;}
.x27_c00026{left:155.502400pt;}
.xe_c00026{left:157.769067pt;}
.x2d_c00026{left:158.702400pt;}
.x1_c00026{left:163.835733pt;}
.x1f_c00026{left:167.635733pt;}
.x1d_c00026{left:169.222400pt;}
.x20_c00026{left:170.222400pt;}
.x16_c00026{left:176.302400pt;}
.xd_c00026{left:178.222400pt;}
.x22_c00026{left:209.902400pt;}
.x26_c00026{left:215.635733pt;}
.x28_c00026{left:233.902400pt;}
.xb_c00026{left:235.169067pt;}
.xc_c00026{left:244.435733pt;}
.x4_c00026{left:257.902400pt;}
.x18_c00026{left:311.969067pt;}
.x29_c00026{left:336.302400pt;}
.x17_c00026{left:353.235733pt;}
.x2f_c00026{left:354.569067pt;}
.x2_c00026{left:364.769067pt;}
.x10_c00026{left:394.835733pt;}
.x11_c00026{left:408.302400pt;}
.x12_c00026{left:414.369067pt;}
.x13_c00026{left:421.102400pt;}
.x1e_c00026{left:463.969067pt;}
.x19_c00026{left:517.102400pt;}
.x2a_c00026{left:533.769067pt;}
.x32_c00026{left:553.902400pt;}
.x2b_c00026{left:556.169067pt;}
.x3_c00026{left:564.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6c0b7e0e3e7e5b65c0f4130.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00027;src:url('chunks/assets/font_f2f3d3f52ae9d19b0bb3baea.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00027;src:url('chunks/assets/font_e508c39bdc4c795edd5913e1.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:1.284180;font-style:normal;font-weight:normal;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_e0a858220a923d9d6cde91c8.woff2')format("woff");}.ff4_c00027{font-family:ff4_c00027;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1b_c00027{transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00027{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m29_c00027{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m27_c00027{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m28_c00027{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.md_c00027{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m0_c00027{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m11_c00027{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m17_c00027{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00027{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m14_c00027{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me_c00027{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m8_c00027{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m20_c00027{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m13_c00027{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m25_c00027{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb_c00027{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m26_c00027{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3_c00027{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf_c00027{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m9_c00027{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma_c00027{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19_c00027{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m12_c00027{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00027{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00027{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m24_c00027{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00027{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m18_c00027{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m21_c00027{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00027{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c00027{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00027{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c00027{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00027{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c00027{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m22_c00027{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00027{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00027{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m23_c00027{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m15_c00027{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00027{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1_c00027{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.v1_c00027{vertical-align:11.700000px;}
.ls0_c00027{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00027{word-spacing:0.000000px;}
.ws0_c00027{word-spacing:147.383772px;}
._0_c00027{margin-left:-1.557192px;}
.fc0_c00027{color:transparent;}
.fs1_c00027{font-size:60.000000px;}
.fs3_c00027{font-size:66.000000px;}
.fs2_c00027{font-size:78.000000px;}
.fs0_c00027{font-size:84.000000px;}
.y0_c00027{bottom:0.000000px;}
.y56_c00027{bottom:103.500000px;}
.y55_c00027{bottom:119.310000px;}
.y54_c00027{bottom:129.750000px;}
.y53_c00027{bottom:142.785000px;}
.y52_c00027{bottom:151.335000px;}
.y51_c00027{bottom:173.310000px;}
.y50_c00027{bottom:181.635000px;}
.y4f_c00027{bottom:183.750000px;}
.y4e_c00027{bottom:193.500000px;}
.y4d_c00027{bottom:207.885000px;}
.y4c_c00027{bottom:214.710000px;}
.y4b_c00027{bottom:231.660000px;}
.y4a_c00027{bottom:248.535000px;}
.y49_c00027{bottom:254.685000px;}
.y48_c00027{bottom:256.500000px;}
.y47_c00027{bottom:272.685000px;}
.y46_c00027{bottom:275.250000px;}
.y45_c00027{bottom:276.660000px;}
.y44_c00027{bottom:277.335000px;}
.y43_c00027{bottom:278.460000px;}
.y42_c00027{bottom:295.410000px;}
.y41_c00027{bottom:315.525000px;}
.y40_c00027{bottom:341.835000px;}
.y3f_c00027{bottom:342.525000px;}
.y3d_c00027{bottom:357.285000px;}
.y3c_c00027{bottom:358.410000px;}
.y3e_c00027{bottom:358.710000px;}
.y3b_c00027{bottom:362.685000px;}
.y3a_c00027{bottom:381.435000px;}
.y39_c00027{bottom:383.910000px;}
.y38_c00027{bottom:404.085000px;}
.y37_c00027{bottom:424.260000px;}
.y36_c00027{bottom:426.435000px;}
.y35_c00027{bottom:446.910000px;}
.y34_c00027{bottom:468.135000px;}
.y33_c00027{bottom:490.125000px;}
.y31_c00027{bottom:510.660000px;}
.y32_c00027{bottom:511.335000px;}
.y2e_c00027{bottom:532.260000px;}
.y2c_c00027{bottom:532.560000px;}
.y2d_c00027{bottom:532.635000px;}
.y2b_c00027{bottom:532.935000px;}
.y2a_c00027{bottom:533.310000px;}
.y29_c00027{bottom:533.685000px;}
.y2f_c00027{bottom:534.060000px;}
.y30_c00027{bottom:535.500000px;}
.y28_c00027{bottom:554.625000px;}
.y26_c00027{bottom:575.460000px;}
.y27_c00027{bottom:577.560000px;}
.y21_c00027{bottom:595.935000px;}
.y22_c00027{bottom:596.685000px;}
.y23_c00027{bottom:597.435000px;}
.y24_c00027{bottom:599.910000px;}
.y25_c00027{bottom:601.335000px;}
.y20_c00027{bottom:620.460000px;}
.y1f_c00027{bottom:642.060000px;}
.y1e_c00027{bottom:664.335000px;}
.y1d_c00027{bottom:684.885000px;}
.y1c_c00027{bottom:705.750000px;}
.y1b_c00027{bottom:726.660000px;}
.y19_c00027{bottom:744.285000px;}
.y1a_c00027{bottom:750.450000px;}
.y17_c00027{bottom:766.260000px;}
.y18_c00027{bottom:772.710000px;}
.y15_c00027{bottom:790.050000px;}
.y16_c00027{bottom:795.750000px;}
.y14_c00027{bottom:814.875000px;}
.y13_c00027{bottom:826.335000px;}
.y12_c00027{bottom:858.060000px;}
.y11_c00027{bottom:881.085000px;}
.yf_c00027{bottom:890.085000px;}
.y10_c00027{bottom:894.435000px;}
.yd_c00027{bottom:911.685000px;}
.ye_c00027{bottom:926.835000px;}
.yc_c00027{bottom:930.810000px;}
.ya_c00027{bottom:965.400000px;}
.yb_c00027{bottom:970.425000px;}
.y9_c00027{bottom:977.925000px;}
.y7_c00027{bottom:999.150000px;}
.y8_c00027{bottom:1013.250000px;}
.y5_c00027{bottom:1016.085000px;}
.y6_c00027{bottom:1029.060000px;}
.y4_c00027{bottom:1048.125000px;}
.y1_c00027{bottom:1087.335000px;}
.y3_c00027{bottom:1104.300000px;}
.y2_c00027{bottom:1105.710000px;}
.h2_c00027{height:58.886719px;}
.h8_c00027{height:64.743164px;}
.h7_c00027{height:76.514648px;}
.h4_c00027{height:76.552734px;}
.h3_c00027{height:78.609375px;}
.h6_c00027{height:82.400391px;}
.h1_c00027{height:82.441406px;}
.h5_c00027{height:94.141406px;}
.h0_c00027{height:1174.500000px;}
.w0_c00027{width:731.977200px;}
.w1_c00027{width:732.000000px;}
.x0_c00027{left:0.000000px;}
.x9_c00027{left:91.090200px;}
.xa_c00027{left:92.140200px;}
.x1f_c00027{left:94.315200px;}
.x25_c00027{left:95.740200px;}
.x30_c00027{left:97.915200px;}
.x1_c00027{left:107.590200px;}
.x14_c00027{left:112.315200px;}
.xe_c00027{left:120.190200px;}
.x4_c00027{left:121.315200px;}
.x7_c00027{left:122.740200px;}
.x2_c00027{left:124.165200px;}
.x20_c00027{left:125.965200px;}
.x27_c00027{left:128.140200px;}
.x26_c00027{left:132.490200px;}
.x1c_c00027{left:150.490200px;}
.x28_c00027{left:168.490200px;}
.x31_c00027{left:173.875200px;}
.x21_c00027{left:178.540200px;}
.x2d_c00027{left:182.875200px;}
.xf_c00027{left:187.915200px;}
.x2e_c00027{left:201.565200px;}
.x1b_c00027{left:205.540200px;}
.x10_c00027{left:208.750200px;}
.x29_c00027{left:218.140200px;}
.x2b_c00027{left:228.190200px;}
.x1a_c00027{left:232.165200px;}
.x2a_c00027{left:239.365200px;}
.x19_c00027{left:243.715200px;}
.xb_c00027{left:251.290200px;}
.x22_c00027{left:254.890200px;}
.x2c_c00027{left:262.090200px;}
.xd_c00027{left:274.990200px;}
.x18_c00027{left:290.140200px;}
.x3_c00027{left:291.565200px;}
.x11_c00027{left:294.490200px;}
.xc_c00027{left:308.140200px;}
.x17_c00027{left:314.965200px;}
.x16_c00027{left:328.990200px;}
.x15_c00027{left:336.940200px;}
.x5_c00027{left:363.940200px;}
.x1d_c00027{left:375.775200px;}
.x6_c00027{left:414.715200px;}
.x1e_c00027{left:569.890200px;}
.x23_c00027{left:584.965200px;}
.x12_c00027{left:589.690200px;}
.x2f_c00027{left:624.190200px;}
.x13_c00027{left:650.140200px;}
.x24_c00027{left:654.790200px;}
.x8_c00027{left:677.140200px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.v1_c00027{vertical-align:10.400000pt;}
.ls0_c00027{letter-spacing:0.000000pt;}
.ws1_c00027{word-spacing:0.000000pt;}
.ws0_c00027{word-spacing:131.007797pt;}
._0_c00027{margin-left:-1.384171pt;}
.fs1_c00027{font-size:53.333333pt;}
.fs3_c00027{font-size:58.666667pt;}
.fs2_c00027{font-size:69.333333pt;}
.fs0_c00027{font-size:74.666667pt;}
.y0_c00027{bottom:0.000000pt;}
.y56_c00027{bottom:92.000000pt;}
.y55_c00027{bottom:106.053333pt;}
.y54_c00027{bottom:115.333333pt;}
.y53_c00027{bottom:126.920000pt;}
.y52_c00027{bottom:134.520000pt;}
.y51_c00027{bottom:154.053333pt;}
.y50_c00027{bottom:161.453333pt;}
.y4f_c00027{bottom:163.333333pt;}
.y4e_c00027{bottom:172.000000pt;}
.y4d_c00027{bottom:184.786667pt;}
.y4c_c00027{bottom:190.853333pt;}
.y4b_c00027{bottom:205.920000pt;}
.y4a_c00027{bottom:220.920000pt;}
.y49_c00027{bottom:226.386667pt;}
.y48_c00027{bottom:228.000000pt;}
.y47_c00027{bottom:242.386667pt;}
.y46_c00027{bottom:244.666667pt;}
.y45_c00027{bottom:245.920000pt;}
.y44_c00027{bottom:246.520000pt;}
.y43_c00027{bottom:247.520000pt;}
.y42_c00027{bottom:262.586667pt;}
.y41_c00027{bottom:280.466667pt;}
.y40_c00027{bottom:303.853333pt;}
.y3f_c00027{bottom:304.466667pt;}
.y3d_c00027{bottom:317.586667pt;}
.y3c_c00027{bottom:318.586667pt;}
.y3e_c00027{bottom:318.853333pt;}
.y3b_c00027{bottom:322.386667pt;}
.y3a_c00027{bottom:339.053333pt;}
.y39_c00027{bottom:341.253333pt;}
.y38_c00027{bottom:359.186667pt;}
.y37_c00027{bottom:377.120000pt;}
.y36_c00027{bottom:379.053333pt;}
.y35_c00027{bottom:397.253333pt;}
.y34_c00027{bottom:416.120000pt;}
.y33_c00027{bottom:435.666667pt;}
.y31_c00027{bottom:453.920000pt;}
.y32_c00027{bottom:454.520000pt;}
.y2e_c00027{bottom:473.120000pt;}
.y2c_c00027{bottom:473.386667pt;}
.y2d_c00027{bottom:473.453333pt;}
.y2b_c00027{bottom:473.720000pt;}
.y2a_c00027{bottom:474.053333pt;}
.y29_c00027{bottom:474.386667pt;}
.y2f_c00027{bottom:474.720000pt;}
.y30_c00027{bottom:476.000000pt;}
.y28_c00027{bottom:493.000000pt;}
.y26_c00027{bottom:511.520000pt;}
.y27_c00027{bottom:513.386667pt;}
.y21_c00027{bottom:529.720000pt;}
.y22_c00027{bottom:530.386667pt;}
.y23_c00027{bottom:531.053333pt;}
.y24_c00027{bottom:533.253333pt;}
.y25_c00027{bottom:534.520000pt;}
.y20_c00027{bottom:551.520000pt;}
.y1f_c00027{bottom:570.720000pt;}
.y1e_c00027{bottom:590.520000pt;}
.y1d_c00027{bottom:608.786667pt;}
.y1c_c00027{bottom:627.333333pt;}
.y1b_c00027{bottom:645.920000pt;}
.y19_c00027{bottom:661.586667pt;}
.y1a_c00027{bottom:667.066667pt;}
.y17_c00027{bottom:681.120000pt;}
.y18_c00027{bottom:686.853333pt;}
.y15_c00027{bottom:702.266667pt;}
.y16_c00027{bottom:707.333333pt;}
.y14_c00027{bottom:724.333333pt;}
.y13_c00027{bottom:734.520000pt;}
.y12_c00027{bottom:762.720000pt;}
.y11_c00027{bottom:783.186667pt;}
.yf_c00027{bottom:791.186667pt;}
.y10_c00027{bottom:795.053333pt;}
.yd_c00027{bottom:810.386667pt;}
.ye_c00027{bottom:823.853333pt;}
.yc_c00027{bottom:827.386667pt;}
.ya_c00027{bottom:858.133333pt;}
.yb_c00027{bottom:862.600000pt;}
.y9_c00027{bottom:869.266667pt;}
.y7_c00027{bottom:888.133333pt;}
.y8_c00027{bottom:900.666667pt;}
.y5_c00027{bottom:903.186667pt;}
.y6_c00027{bottom:914.720000pt;}
.y4_c00027{bottom:931.666667pt;}
.y1_c00027{bottom:966.520000pt;}
.y3_c00027{bottom:981.600000pt;}
.y2_c00027{bottom:982.853333pt;}
.h2_c00027{height:52.343750pt;}
.h8_c00027{height:57.549479pt;}
.h7_c00027{height:68.013021pt;}
.h4_c00027{height:68.046875pt;}
.h3_c00027{height:69.875000pt;}
.h6_c00027{height:73.244792pt;}
.h1_c00027{height:73.281250pt;}
.h5_c00027{height:83.681250pt;}
.h0_c00027{height:1044.000000pt;}
.w0_c00027{width:650.646400pt;}
.w1_c00027{width:650.666667pt;}
.x0_c00027{left:0.000000pt;}
.x9_c00027{left:80.969067pt;}
.xa_c00027{left:81.902400pt;}
.x1f_c00027{left:83.835733pt;}
.x25_c00027{left:85.102400pt;}
.x30_c00027{left:87.035733pt;}
.x1_c00027{left:95.635733pt;}
.x14_c00027{left:99.835733pt;}
.xe_c00027{left:106.835733pt;}
.x4_c00027{left:107.835733pt;}
.x7_c00027{left:109.102400pt;}
.x2_c00027{left:110.369067pt;}
.x20_c00027{left:111.969067pt;}
.x27_c00027{left:113.902400pt;}
.x26_c00027{left:117.769067pt;}
.x1c_c00027{left:133.769067pt;}
.x28_c00027{left:149.769067pt;}
.x31_c00027{left:154.555733pt;}
.x21_c00027{left:158.702400pt;}
.x2d_c00027{left:162.555733pt;}
.xf_c00027{left:167.035733pt;}
.x2e_c00027{left:179.169067pt;}
.x1b_c00027{left:182.702400pt;}
.x10_c00027{left:185.555733pt;}
.x29_c00027{left:193.902400pt;}
.x2b_c00027{left:202.835733pt;}
.x1a_c00027{left:206.369067pt;}
.x2a_c00027{left:212.769067pt;}
.x19_c00027{left:216.635733pt;}
.xb_c00027{left:223.369067pt;}
.x22_c00027{left:226.569067pt;}
.x2c_c00027{left:232.969067pt;}
.xd_c00027{left:244.435733pt;}
.x18_c00027{left:257.902400pt;}
.x3_c00027{left:259.169067pt;}
.x11_c00027{left:261.769067pt;}
.xc_c00027{left:273.902400pt;}
.x17_c00027{left:279.969067pt;}
.x16_c00027{left:292.435733pt;}
.x15_c00027{left:299.502400pt;}
.x5_c00027{left:323.502400pt;}
.x1d_c00027{left:334.022400pt;}
.x6_c00027{left:368.635733pt;}
.x1e_c00027{left:506.569067pt;}
.x23_c00027{left:519.969067pt;}
.x12_c00027{left:524.169067pt;}
.x2f_c00027{left:554.835733pt;}
.x13_c00027{left:577.902400pt;}
.x24_c00027{left:582.035733pt;}
.x8_c00027{left:601.902400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c550871547e818d8ee9f9aa5.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00028;src:url('chunks/assets/font_250d44a7971a15e0126f5e3b.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00028;src:url('chunks/assets/font_5eb2db73e149082c64bf54e0.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00028;src:url('chunks/assets/font_f57fa3d36c747079e4ba8914.woff2')format("woff");}.ff4_c00028{font-family:ff4_c00028;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00028;src:url('chunks/assets/font_63cb7ad2cb606f3f381358d6.woff2')format("woff");}.ff5_c00028{font-family:ff5_c00028;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00028{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8_c00028{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m0_c00028{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m2_c00028{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7_c00028{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md_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);}
.m1_c00028{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m13_c00028{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3_c00028{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc_c00028{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4_c00028{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_c00028{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c00028{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00028{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb_c00028{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c00028{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00028{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00028{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00028{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m14_c00028{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c00028{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00028{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00028{vertical-align:0.000000px;}
.ls0_c00028{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00028{color:transparent;}
.fs3_c00028{font-size:66.000000px;}
.fs1_c00028{font-size:72.000000px;}
.fs2_c00028{font-size:78.000000px;}
.fs0_c00028{font-size:84.000000px;}
.y0_c00028{bottom:0.000000px;}
.y2f_c00028{bottom:272.685000px;}
.y2e_c00028{bottom:295.335000px;}
.y2d_c00028{bottom:316.275000px;}
.y2b_c00028{bottom:337.875000px;}
.y2c_c00028{bottom:338.910000px;}
.y2a_c00028{bottom:359.460000px;}
.y29_c00028{bottom:382.500000px;}
.y28_c00028{bottom:403.335000px;}
.y27_c00028{bottom:425.685000px;}
.y26_c00028{bottom:447.285000px;}
.y25_c00028{bottom:469.935000px;}
.y24_c00028{bottom:491.535000px;}
.y23_c00028{bottom:513.885000px;}
.y22_c00028{bottom:535.875000px;}
.y21_c00028{bottom:557.760000px;}
.y20_c00028{bottom:579.750000px;}
.y1f_c00028{bottom:601.335000px;}
.y1e_c00028{bottom:622.935000px;}
.y1d_c00028{bottom:623.310000px;}
.y1c_c00028{bottom:645.285000px;}
.y1b_c00028{bottom:666.510000px;}
.y1a_c00028{bottom:667.560000px;}
.y19_c00028{bottom:688.500000px;}
.y18_c00028{bottom:689.910000px;}
.y17_c00028{bottom:710.760000px;}
.y16_c00028{bottom:732.750000px;}
.y15_c00028{bottom:754.710000px;}
.y14_c00028{bottom:777.060000px;}
.y13_c00028{bottom:777.750000px;}
.y12_c00028{bottom:798.960000px;}
.y11_c00028{bottom:822.060000px;}
.y10_c00028{bottom:842.550000px;}
.yf_c00028{bottom:844.050000px;}
.ye_c00028{bottom:865.560000px;}
.yd_c00028{bottom:886.500000px;}
.yc_c00028{bottom:908.835000px;}
.yb_c00028{bottom:930.375000px;}
.y9_c00028{bottom:930.750000px;}
.ya_c00028{bottom:931.125000px;}
.y7_c00028{bottom:952.335000px;}
.y8_c00028{bottom:953.085000px;}
.y6_c00028{bottom:972.900000px;}
.y5_c00028{bottom:994.500000px;}
.y4_c00028{bottom:996.300000px;}
.y3_c00028{bottom:1016.835000px;}
.y2_c00028{bottom:1018.275000px;}
.y1_c00028{bottom:1069.710000px;}
.h6_c00028{height:64.775391px;}
.h4_c00028{height:75.093750px;}
.h5_c00028{height:81.351562px;}
.h3_c00028{height:82.400391px;}
.h2_c00028{height:82.441406px;}
.h1_c00028{height:84.656250px;}
.h0_c00028{height:1174.500000px;}
.w0_c00028{width:731.977200px;}
.w1_c00028{width:732.000000px;}
.x0_c00028{left:0.000000px;}
.xb_c00028{left:56.890200px;}
.x6_c00028{left:58.690200px;}
.x11_c00028{left:60.115200px;}
.x14_c00028{left:90.340200px;}
.x2_c00028{left:91.390200px;}
.x4_c00028{left:92.890200px;}
.x15_c00028{left:94.315200px;}
.x7_c00028{left:105.790200px;}
.x8_c00028{left:125.290200px;}
.x9_c00028{left:134.290200px;}
.xd_c00028{left:144.340200px;}
.xa_c00028{left:145.765200px;}
.x16_c00028{left:156.565200px;}
.x12_c00028{left:177.790200px;}
.x10_c00028{left:195.790200px;}
.xe_c00028{left:206.590200px;}
.x13_c00028{left:236.890200px;}
.xc_c00028{left:247.315200px;}
.xf_c00028{left:269.965200px;}
.x5_c00028{left:276.490200px;}
.x3_c00028{left:326.515200px;}
.x1_c00028{left:651.940200px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls0_c00028{letter-spacing:0.000000pt;}
.ws0_c00028{word-spacing:0.000000pt;}
.fs3_c00028{font-size:58.666667pt;}
.fs1_c00028{font-size:64.000000pt;}
.fs2_c00028{font-size:69.333333pt;}
.fs0_c00028{font-size:74.666667pt;}
.y0_c00028{bottom:0.000000pt;}
.y2f_c00028{bottom:242.386667pt;}
.y2e_c00028{bottom:262.520000pt;}
.y2d_c00028{bottom:281.133333pt;}
.y2b_c00028{bottom:300.333333pt;}
.y2c_c00028{bottom:301.253333pt;}
.y2a_c00028{bottom:319.520000pt;}
.y29_c00028{bottom:340.000000pt;}
.y28_c00028{bottom:358.520000pt;}
.y27_c00028{bottom:378.386667pt;}
.y26_c00028{bottom:397.586667pt;}
.y25_c00028{bottom:417.720000pt;}
.y24_c00028{bottom:436.920000pt;}
.y23_c00028{bottom:456.786667pt;}
.y22_c00028{bottom:476.333333pt;}
.y21_c00028{bottom:495.786667pt;}
.y20_c00028{bottom:515.333333pt;}
.y1f_c00028{bottom:534.520000pt;}
.y1e_c00028{bottom:553.720000pt;}
.y1d_c00028{bottom:554.053333pt;}
.y1c_c00028{bottom:573.586667pt;}
.y1b_c00028{bottom:592.453333pt;}
.y1a_c00028{bottom:593.386667pt;}
.y19_c00028{bottom:612.000000pt;}
.y18_c00028{bottom:613.253333pt;}
.y17_c00028{bottom:631.786667pt;}
.y16_c00028{bottom:651.333333pt;}
.y15_c00028{bottom:670.853333pt;}
.y14_c00028{bottom:690.720000pt;}
.y13_c00028{bottom:691.333333pt;}
.y12_c00028{bottom:710.186667pt;}
.y11_c00028{bottom:730.720000pt;}
.y10_c00028{bottom:748.933333pt;}
.yf_c00028{bottom:750.266667pt;}
.ye_c00028{bottom:769.386667pt;}
.yd_c00028{bottom:788.000000pt;}
.yc_c00028{bottom:807.853333pt;}
.yb_c00028{bottom:827.000000pt;}
.y9_c00028{bottom:827.333333pt;}
.ya_c00028{bottom:827.666667pt;}
.y7_c00028{bottom:846.520000pt;}
.y8_c00028{bottom:847.186667pt;}
.y6_c00028{bottom:864.800000pt;}
.y5_c00028{bottom:884.000000pt;}
.y4_c00028{bottom:885.600000pt;}
.y3_c00028{bottom:903.853333pt;}
.y2_c00028{bottom:905.133333pt;}
.y1_c00028{bottom:950.853333pt;}
.h6_c00028{height:57.578125pt;}
.h4_c00028{height:66.750000pt;}
.h5_c00028{height:72.312500pt;}
.h3_c00028{height:73.244792pt;}
.h2_c00028{height:73.281250pt;}
.h1_c00028{height:75.250000pt;}
.h0_c00028{height:1044.000000pt;}
.w0_c00028{width:650.646400pt;}
.w1_c00028{width:650.666667pt;}
.x0_c00028{left:0.000000pt;}
.xb_c00028{left:50.569067pt;}
.x6_c00028{left:52.169067pt;}
.x11_c00028{left:53.435733pt;}
.x14_c00028{left:80.302400pt;}
.x2_c00028{left:81.235733pt;}
.x4_c00028{left:82.569067pt;}
.x15_c00028{left:83.835733pt;}
.x7_c00028{left:94.035733pt;}
.x8_c00028{left:111.369067pt;}
.x9_c00028{left:119.369067pt;}
.xd_c00028{left:128.302400pt;}
.xa_c00028{left:129.569067pt;}
.x16_c00028{left:139.169067pt;}
.x12_c00028{left:158.035733pt;}
.x10_c00028{left:174.035733pt;}
.xe_c00028{left:183.635733pt;}
.x13_c00028{left:210.569067pt;}
.xc_c00028{left:219.835733pt;}
.xf_c00028{left:239.969067pt;}
.x5_c00028{left:245.769067pt;}
.x3_c00028{left:290.235733pt;}
.x1_c00028{left:579.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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:1174.500000px;}
.w0_c00029{width:731.977200px;}
.w1_c00029{width:732.000000px;}
.x0_c00029{left:0.000000px;}
@media print{
.y0_c00029{bottom:0.000000pt;}
.h0_c00029{height:1044.000000pt;}
.w0_c00029{width:650.646400pt;}
.w1_c00029{width:650.666667pt;}
.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_a5b87a6cdb5771127da19e9c.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00030{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,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.000000px;}
.fc0_c00030{color:transparent;}
.fs0_c00030{font-size:132.000000px;}
.y0_c00030{bottom:0.000000px;}
.y1_c00030{bottom:661.500000px;}
.h1_c00030{height:129.550781px;}
.h0_c00030{height:1174.500000px;}
.w0_c00030{width:731.977200px;}
.w1_c00030{width:732.000000px;}
.x0_c00030{left:0.000000px;}
.x1_c00030{left:192.940200px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls0_c00030{letter-spacing:0.000000pt;}
.ws0_c00030{word-spacing:0.000000pt;}
.fs0_c00030{font-size:117.333333pt;}
.y0_c00030{bottom:0.000000pt;}
.y1_c00030{bottom:588.000000pt;}
.h1_c00030{height:115.156250pt;}
.h0_c00030{height:1044.000000pt;}
.w0_c00030{width:650.646400pt;}
.w1_c00030{width:650.666667pt;}
.x0_c00030{left:0.000000pt;}
.x1_c00030{left:171.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00031 {
    display:none;
  }
  .loading-indicator_c00031.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00031 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00031 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00031" -> "#page-container .classname_c00031")
 */
.pf_c00031 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00031 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00031 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00031 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00031 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00031 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00031 {overflow:visible;}
  }
}
.c_c00031 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00031 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00031:after { /* webkit #35443 */
  content: '';
}
.t_c00031:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00031 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00031 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00031 { /* info for Javascript */
  display:none;
}
.l_c00031 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00031 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00031 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00031:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00031 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00031.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00031 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00031;src:url('chunks/assets/font_577a7b41f6abc109c51f893d.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00031{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.ls0_c00031{letter-spacing:0.000000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00031{word-spacing:0.000000px;}
.fc0_c00031{color:transparent;}
.fs0_c00031{font-size:60.000000px;}
.y0_c00031{bottom:0.000000px;}
.y1_c00031{bottom:581.535000px;}
.h1_c00031{height:61.670545px;}
.h0_c00031{height:1174.500000px;}
.w0_c00031{width:731.977200px;}
.w1_c00031{width:732.000000px;}
.x0_c00031{left:0.000000px;}
.x1_c00031{left:750.565200px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls0_c00031{letter-spacing:0.000000pt;}
.ws0_c00031{word-spacing:0.000000pt;}
.fs0_c00031{font-size:53.333333pt;}
.y0_c00031{bottom:0.000000pt;}
.y1_c00031{bottom:516.920000pt;}
.h1_c00031{height:54.818262pt;}
.h0_c00031{height:1044.000000pt;}
.w0_c00031{width:650.646400pt;}
.w1_c00031{width:650.666667pt;}
.x0_c00031{left:0.000000pt;}
.x1_c00031{left:667.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c8971e1fcb4704aec6d88d9d.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00032;src:url('chunks/assets/font_9e139da8243ad75e50b49988.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_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);}
.m7_c00032{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m13_c00032{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c00032{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c00032{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00032{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00032{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c00032{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m12_c00032{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c00032{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00032{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c00032{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00032{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00032{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00032{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2_c00032{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c00032{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m14_c00032{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m8_c00032{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00032{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c00032{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,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;}
.fc0_c00032{color:transparent;}
.fs1_c00032{font-size:66.000000px;}
.fs2_c00032{font-size:72.000000px;}
.fs0_c00032{font-size:108.000000px;}
.y0_c00032{bottom:0.000000px;}
.y2c_c00032{bottom:72.585000px;}
.y2a_c00032{bottom:93.435000px;}
.y2b_c00032{bottom:95.625000px;}
.y28_c00032{bottom:115.410000px;}
.y29_c00032{bottom:121.125000px;}
.y26_c00032{bottom:136.260000px;}
.y27_c00032{bottom:141.660000px;}
.y25_c00032{bottom:157.500000px;}
.y24_c00032{bottom:178.410000px;}
.y23_c00032{bottom:199.635000px;}
.y22_c00032{bottom:220.875000px;}
.y21_c00032{bottom:242.460000px;}
.y20_c00032{bottom:264.060000px;}
.y1e_c00032{bottom:285.660000px;}
.y1f_c00032{bottom:289.275000px;}
.y1d_c00032{bottom:307.935000px;}
.y1c_c00032{bottom:329.625000px;}
.y1b_c00032{bottom:350.835000px;}
.y1a_c00032{bottom:372.810000px;}
.y19_c00032{bottom:394.335000px;}
.y18_c00032{bottom:416.310000px;}
.y17_c00032{bottom:438.285000px;}
.y16_c00032{bottom:459.885000px;}
.y15_c00032{bottom:460.260000px;}
.y14_c00032{bottom:460.560000px;}
.y13_c00032{bottom:482.250000px;}
.y11_c00032{bottom:504.135000px;}
.y12_c00032{bottom:504.210000px;}
.y10_c00032{bottom:504.510000px;}
.yf_c00032{bottom:526.125000px;}
.ye_c00032{bottom:638.460000px;}
.yd_c00032{bottom:655.035000px;}
.yc_c00032{bottom:673.035000px;}
.yb_c00032{bottom:689.535000px;}
.ya_c00032{bottom:691.335000px;}
.y9_c00032{bottom:691.710000px;}
.y8_c00032{bottom:692.085000px;}
.y7_c00032{bottom:692.385000px;}
.y6_c00032{bottom:707.910000px;}
.y5_c00032{bottom:725.910000px;}
.y4_c00032{bottom:743.910000px;}
.y3_c00032{bottom:760.500000px;}
.y2_c00032{bottom:762.660000px;}
.y1_c00032{bottom:834.675000px;}
.h3_c00032{height:64.775391px;}
.h2_c00032{height:66.515625px;}
.h4_c00032{height:70.664062px;}
.h1_c00032{height:105.996094px;}
.h0_c00032{height:1174.500000px;}
.w0_c00032{width:731.977200px;}
.w1_c00032{width:732.000000px;}
.x0_c00032{left:0.000000px;}
.x2_c00032{left:39.190200px;}
.x11_c00032{left:41.365200px;}
.x10_c00032{left:42.490200px;}
.x5_c00032{left:56.140200px;}
.x4_c00032{left:57.190200px;}
.xd_c00032{left:73.765200px;}
.x14_c00032{left:75.175200px;}
.x12_c00032{left:81.715200px;}
.x13_c00032{left:123.790200px;}
.x6_c00032{left:134.290200px;}
.x7_c00032{left:155.515200px;}
.x1_c00032{left:161.965200px;}
.x8_c00032{left:176.365200px;}
.xe_c00032{left:186.115200px;}
.x3_c00032{left:189.715200px;}
.x9_c00032{left:213.790200px;}
.xa_c00032{left:222.115200px;}
.xb_c00032{left:254.140200px;}
.xc_c00032{left:272.140200px;}
.xf_c00032{left:288.715200px;}
.x17_c00032{left:351.340200px;}
.x16_c00032{left:651.565200px;}
.x15_c00032{left:652.990200px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls0_c00032{letter-spacing:0.000000pt;}
.ws0_c00032{word-spacing:0.000000pt;}
.fs1_c00032{font-size:58.666667pt;}
.fs2_c00032{font-size:64.000000pt;}
.fs0_c00032{font-size:96.000000pt;}
.y0_c00032{bottom:0.000000pt;}
.y2c_c00032{bottom:64.520000pt;}
.y2a_c00032{bottom:83.053333pt;}
.y2b_c00032{bottom:85.000000pt;}
.y28_c00032{bottom:102.586667pt;}
.y29_c00032{bottom:107.666667pt;}
.y26_c00032{bottom:121.120000pt;}
.y27_c00032{bottom:125.920000pt;}
.y25_c00032{bottom:140.000000pt;}
.y24_c00032{bottom:158.586667pt;}
.y23_c00032{bottom:177.453333pt;}
.y22_c00032{bottom:196.333333pt;}
.y21_c00032{bottom:215.520000pt;}
.y20_c00032{bottom:234.720000pt;}
.y1e_c00032{bottom:253.920000pt;}
.y1f_c00032{bottom:257.133333pt;}
.y1d_c00032{bottom:273.720000pt;}
.y1c_c00032{bottom:293.000000pt;}
.y1b_c00032{bottom:311.853333pt;}
.y1a_c00032{bottom:331.386667pt;}
.y19_c00032{bottom:350.520000pt;}
.y18_c00032{bottom:370.053333pt;}
.y17_c00032{bottom:389.586667pt;}
.y16_c00032{bottom:408.786667pt;}
.y15_c00032{bottom:409.120000pt;}
.y14_c00032{bottom:409.386667pt;}
.y13_c00032{bottom:428.666667pt;}
.y11_c00032{bottom:448.120000pt;}
.y12_c00032{bottom:448.186667pt;}
.y10_c00032{bottom:448.453333pt;}
.yf_c00032{bottom:467.666667pt;}
.ye_c00032{bottom:567.520000pt;}
.yd_c00032{bottom:582.253333pt;}
.yc_c00032{bottom:598.253333pt;}
.yb_c00032{bottom:612.920000pt;}
.ya_c00032{bottom:614.520000pt;}
.y9_c00032{bottom:614.853333pt;}
.y8_c00032{bottom:615.186667pt;}
.y7_c00032{bottom:615.453333pt;}
.y6_c00032{bottom:629.253333pt;}
.y5_c00032{bottom:645.253333pt;}
.y4_c00032{bottom:661.253333pt;}
.y3_c00032{bottom:676.000000pt;}
.y2_c00032{bottom:677.920000pt;}
.y1_c00032{bottom:741.933333pt;}
.h3_c00032{height:57.578125pt;}
.h2_c00032{height:59.125000pt;}
.h4_c00032{height:62.812500pt;}
.h1_c00032{height:94.218750pt;}
.h0_c00032{height:1044.000000pt;}
.w0_c00032{width:650.646400pt;}
.w1_c00032{width:650.666667pt;}
.x0_c00032{left:0.000000pt;}
.x2_c00032{left:34.835733pt;}
.x11_c00032{left:36.769067pt;}
.x10_c00032{left:37.769067pt;}
.x5_c00032{left:49.902400pt;}
.x4_c00032{left:50.835733pt;}
.xd_c00032{left:65.569067pt;}
.x14_c00032{left:66.822400pt;}
.x12_c00032{left:72.635733pt;}
.x13_c00032{left:110.035733pt;}
.x6_c00032{left:119.369067pt;}
.x7_c00032{left:138.235733pt;}
.x1_c00032{left:143.969067pt;}
.x8_c00032{left:156.769067pt;}
.xe_c00032{left:165.435733pt;}
.x3_c00032{left:168.635733pt;}
.x9_c00032{left:190.035733pt;}
.xa_c00032{left:197.435733pt;}
.xb_c00032{left:225.902400pt;}
.xc_c00032{left:241.902400pt;}
.xf_c00032{left:256.635733pt;}
.x17_c00032{left:312.302400pt;}
.x16_c00032{left:579.169067pt;}
.x15_c00032{left:580.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e2d5cf871b7cab28a44944b.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00033;src:url('chunks/assets/font_a0e28e7569d5d54e937d1b2d.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00033;src:url('chunks/assets/font_22c160bd710941176f414033.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00033;src:url('chunks/assets/font_a2f45790614702244e5aa880.woff2')format("woff");}.ff4_c00033{font-family:ff4_c00033;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19_c00033{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mf_c00033{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3_c00033{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00033{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c00033{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10_c00033{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me_c00033{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00033{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00033{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c00033{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00033{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m9_c00033{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c00033{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00033{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7_c00033{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00033{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c00033{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4_c00033{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00033{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c00033{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00033{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c00033{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c00033{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m18_c00033{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m17_c00033{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00033{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c00033{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00033{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14_c00033{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00033{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c00033{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00033{color:transparent;}
.fs0_c00033{font-size:60.000000px;}
.fs3_c00033{font-size:66.000000px;}
.fs1_c00033{font-size:72.000000px;}
.fs2_c00033{font-size:78.000000px;}
.y0_c00033{bottom:0.000000px;}
.y41_c00033{bottom:102.060000px;}
.y40_c00033{bottom:109.260000px;}
.y3e_c00033{bottom:110.310000px;}
.y3f_c00033{bottom:110.685000px;}
.y3d_c00033{bottom:111.810000px;}
.y3c_c00033{bottom:116.835000px;}
.y3b_c00033{bottom:124.710000px;}
.y3a_c00033{bottom:128.010000px;}
.y39_c00033{bottom:137.685000px;}
.y38_c00033{bottom:145.260000px;}
.y37_c00033{bottom:147.000000px;}
.y36_c00033{bottom:148.500000px;}
.y35_c00033{bottom:156.060000px;}
.y34_c00033{bottom:159.585000px;}
.y33_c00033{bottom:169.410000px;}
.y32_c00033{bottom:186.285000px;}
.y31_c00033{bottom:203.625000px;}
.y30_c00033{bottom:219.435000px;}
.y2f_c00033{bottom:228.060000px;}
.y2e_c00033{bottom:229.500000px;}
.y2d_c00033{bottom:234.210000px;}
.y2c_c00033{bottom:234.510000px;}
.y2b_c00033{bottom:235.260000px;}
.y2a_c00033{bottom:237.060000px;}
.y29_c00033{bottom:238.125000px;}
.y28_c00033{bottom:243.885000px;}
.y27_c00033{bottom:255.435000px;}
.y26_c00033{bottom:264.060000px;}
.y25_c00033{bottom:336.435000px;}
.y24_c00033{bottom:358.710000px;}
.y23_c00033{bottom:380.310000px;}
.y22_c00033{bottom:400.500000px;}
.y21_c00033{bottom:402.285000px;}
.y20_c00033{bottom:424.260000px;}
.y1f_c00033{bottom:426.060000px;}
.y1e_c00033{bottom:444.375000px;}
.y1d_c00033{bottom:444.435000px;}
.y1c_c00033{bottom:446.625000px;}
.y1b_c00033{bottom:467.760000px;}
.y1a_c00033{bottom:489.810000px;}
.y19_c00033{bottom:511.335000px;}
.y18_c00033{bottom:533.310000px;}
.y17_c00033{bottom:555.000000px;}
.y16_c00033{bottom:575.835000px;}
.y15_c00033{bottom:599.250000px;}
.y14_c00033{bottom:621.135000px;}
.y13_c00033{bottom:668.685000px;}
.y12_c00033{bottom:721.635000px;}
.y11_c00033{bottom:749.385000px;}
.y10_c00033{bottom:771.300000px;}
.yf_c00033{bottom:793.275000px;}
.ye_c00033{bottom:814.500000px;}
.yd_c00033{bottom:835.800000px;}
.yc_c00033{bottom:851.925000px;}
.yb_c00033{bottom:878.925000px;}
.ya_c00033{bottom:889.050000px;}
.y9_c00033{bottom:920.685000px;}
.y7_c00033{bottom:927.585000px;}
.y8_c00033{bottom:942.675000px;}
.y6_c00033{bottom:963.585000px;}
.y5_c00033{bottom:985.875000px;}
.y4_c00033{bottom:1031.175000px;}
.y1_c00033{bottom:1088.460000px;}
.y3_c00033{bottom:1104.300000px;}
.y2_c00033{bottom:1105.800000px;}
.h2_c00033{height:58.886719px;}
.h1_c00033{height:60.468750px;}
.h6_c00033{height:64.775391px;}
.h8_c00033{height:70.628906px;}
.h3_c00033{height:70.664062px;}
.h7_c00033{height:76.514648px;}
.h4_c00033{height:76.552734px;}
.h5_c00033{height:78.609375px;}
.h0_c00033{height:1174.500000px;}
.w0_c00033{width:731.977200px;}
.w1_c00033{width:732.000000px;}
.x0_c00033{left:0.000000px;}
.x8_c00033{left:84.175200px;}
.x6_c00033{left:85.300200px;}
.x9_c00033{left:86.740200px;}
.x1_c00033{left:102.190200px;}
.x7_c00033{left:107.965200px;}
.x1d_c00033{left:110.890200px;}
.xb_c00033{left:112.690200px;}
.x1c_c00033{left:114.115200px;}
.x5_c00033{left:115.165200px;}
.xc_c00033{left:116.965200px;}
.x2_c00033{left:120.940200px;}
.x1e_c00033{left:133.165200px;}
.x11_c00033{left:138.190200px;}
.x23_c00033{left:160.915200px;}
.x17_c00033{left:161.965200px;}
.x18_c00033{left:196.540200px;}
.xf_c00033{left:214.915200px;}
.x19_c00033{left:266.740200px;}
.x1a_c00033{left:268.915200px;}
.x3_c00033{left:299.515200px;}
.x1f_c00033{left:303.790200px;}
.xa_c00033{left:371.515200px;}
.x4_c00033{left:376.525200px;}
.x12_c00033{left:380.890200px;}
.x13_c00033{left:415.390200px;}
.x20_c00033{left:460.390200px;}
.x14_c00033{left:472.315200px;}
.xd_c00033{left:477.340200px;}
.x15_c00033{left:533.140200px;}
.x21_c00033{left:578.140200px;}
.x16_c00033{left:584.590200px;}
.x22_c00033{left:595.390200px;}
.xe_c00033{left:649.765200px;}
.x10_c00033{left:673.915200px;}
.x1b_c00033{left:683.965200px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls0_c00033{letter-spacing:0.000000pt;}
.ws0_c00033{word-spacing:0.000000pt;}
.fs0_c00033{font-size:53.333333pt;}
.fs3_c00033{font-size:58.666667pt;}
.fs1_c00033{font-size:64.000000pt;}
.fs2_c00033{font-size:69.333333pt;}
.y0_c00033{bottom:0.000000pt;}
.y41_c00033{bottom:90.720000pt;}
.y40_c00033{bottom:97.120000pt;}
.y3e_c00033{bottom:98.053333pt;}
.y3f_c00033{bottom:98.386667pt;}
.y3d_c00033{bottom:99.386667pt;}
.y3c_c00033{bottom:103.853333pt;}
.y3b_c00033{bottom:110.853333pt;}
.y3a_c00033{bottom:113.786667pt;}
.y39_c00033{bottom:122.386667pt;}
.y38_c00033{bottom:129.120000pt;}
.y37_c00033{bottom:130.666667pt;}
.y36_c00033{bottom:132.000000pt;}
.y35_c00033{bottom:138.720000pt;}
.y34_c00033{bottom:141.853333pt;}
.y33_c00033{bottom:150.586667pt;}
.y32_c00033{bottom:165.586667pt;}
.y31_c00033{bottom:181.000000pt;}
.y30_c00033{bottom:195.053333pt;}
.y2f_c00033{bottom:202.720000pt;}
.y2e_c00033{bottom:204.000000pt;}
.y2d_c00033{bottom:208.186667pt;}
.y2c_c00033{bottom:208.453333pt;}
.y2b_c00033{bottom:209.120000pt;}
.y2a_c00033{bottom:210.720000pt;}
.y29_c00033{bottom:211.666667pt;}
.y28_c00033{bottom:216.786667pt;}
.y27_c00033{bottom:227.053333pt;}
.y26_c00033{bottom:234.720000pt;}
.y25_c00033{bottom:299.053333pt;}
.y24_c00033{bottom:318.853333pt;}
.y23_c00033{bottom:338.053333pt;}
.y22_c00033{bottom:356.000000pt;}
.y21_c00033{bottom:357.586667pt;}
.y20_c00033{bottom:377.120000pt;}
.y1f_c00033{bottom:378.720000pt;}
.y1e_c00033{bottom:395.000000pt;}
.y1d_c00033{bottom:395.053333pt;}
.y1c_c00033{bottom:397.000000pt;}
.y1b_c00033{bottom:415.786667pt;}
.y1a_c00033{bottom:435.386667pt;}
.y19_c00033{bottom:454.520000pt;}
.y18_c00033{bottom:474.053333pt;}
.y17_c00033{bottom:493.333333pt;}
.y16_c00033{bottom:511.853333pt;}
.y15_c00033{bottom:532.666667pt;}
.y14_c00033{bottom:552.120000pt;}
.y13_c00033{bottom:594.386667pt;}
.y12_c00033{bottom:641.453333pt;}
.y11_c00033{bottom:666.120000pt;}
.y10_c00033{bottom:685.600000pt;}
.yf_c00033{bottom:705.133333pt;}
.ye_c00033{bottom:724.000000pt;}
.yd_c00033{bottom:742.933333pt;}
.yc_c00033{bottom:757.266667pt;}
.yb_c00033{bottom:781.266667pt;}
.ya_c00033{bottom:790.266667pt;}
.y9_c00033{bottom:818.386667pt;}
.y7_c00033{bottom:824.520000pt;}
.y8_c00033{bottom:837.933333pt;}
.y6_c00033{bottom:856.520000pt;}
.y5_c00033{bottom:876.333333pt;}
.y4_c00033{bottom:916.600000pt;}
.y1_c00033{bottom:967.520000pt;}
.y3_c00033{bottom:981.600000pt;}
.y2_c00033{bottom:982.933333pt;}
.h2_c00033{height:52.343750pt;}
.h1_c00033{height:53.750000pt;}
.h6_c00033{height:57.578125pt;}
.h8_c00033{height:62.781250pt;}
.h3_c00033{height:62.812500pt;}
.h7_c00033{height:68.013021pt;}
.h4_c00033{height:68.046875pt;}
.h5_c00033{height:69.875000pt;}
.h0_c00033{height:1044.000000pt;}
.w0_c00033{width:650.646400pt;}
.w1_c00033{width:650.666667pt;}
.x0_c00033{left:0.000000pt;}
.x8_c00033{left:74.822400pt;}
.x6_c00033{left:75.822400pt;}
.x9_c00033{left:77.102400pt;}
.x1_c00033{left:90.835733pt;}
.x7_c00033{left:95.969067pt;}
.x1d_c00033{left:98.569067pt;}
.xb_c00033{left:100.169067pt;}
.x1c_c00033{left:101.435733pt;}
.x5_c00033{left:102.369067pt;}
.xc_c00033{left:103.969067pt;}
.x2_c00033{left:107.502400pt;}
.x1e_c00033{left:118.369067pt;}
.x11_c00033{left:122.835733pt;}
.x23_c00033{left:143.035733pt;}
.x17_c00033{left:143.969067pt;}
.x18_c00033{left:174.702400pt;}
.xf_c00033{left:191.035733pt;}
.x19_c00033{left:237.102400pt;}
.x1a_c00033{left:239.035733pt;}
.x3_c00033{left:266.235733pt;}
.x1f_c00033{left:270.035733pt;}
.xa_c00033{left:330.235733pt;}
.x4_c00033{left:334.689067pt;}
.x12_c00033{left:338.569067pt;}
.x13_c00033{left:369.235733pt;}
.x20_c00033{left:409.235733pt;}
.x14_c00033{left:419.835733pt;}
.xd_c00033{left:424.302400pt;}
.x15_c00033{left:473.902400pt;}
.x21_c00033{left:513.902400pt;}
.x16_c00033{left:519.635733pt;}
.x22_c00033{left:529.235733pt;}
.xe_c00033{left:577.569067pt;}
.x10_c00033{left:599.035733pt;}
.x1b_c00033{left:607.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a6d92bfb74d5e7bf8339fbb4.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00034;src:url('chunks/assets/font_26d5dab33ff40d68c44db700.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00034;src:url('chunks/assets/font_e0740368957e3c03aa292423.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00034;src:url('chunks/assets/font_5614dae1ad2fd56f9c053d48.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m26_c00034{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m20_c00034{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m28_c00034{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m11_c00034{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1c_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);}
.me_c00034{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c00034{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c00034{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c00034{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4_c00034{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8_c00034{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c00034{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c00034{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00034{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m10_c00034{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m16_c00034{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00034{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00034{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00034{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m22_c00034{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m27_c00034{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00034{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m29_c00034{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00034{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00034{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m18_c00034{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c00034{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c00034{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00034{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00034{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00034{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m24_c00034{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00034{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c00034{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m25_c00034{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m19_c00034{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c00034{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m17_c00034{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mf_c00034{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m21_c00034{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m12_c00034{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1_c00034{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.ls0_c00034{letter-spacing:0.000000px;}
.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;}
._0_c00034{margin-left:-55.849448px;}
.fc0_c00034{color:transparent;}
.fs4_c00034{font-size:54.000000px;}
.fs0_c00034{font-size:60.000000px;}
.fs1_c00034{font-size:66.000000px;}
.fs3_c00034{font-size:72.000000px;}
.fs2_c00034{font-size:84.000000px;}
.y0_c00034{bottom:0.000000px;}
.y58_c00034{bottom:51.660000px;}
.y57_c00034{bottom:71.085000px;}
.y54_c00034{bottom:87.660000px;}
.y55_c00034{bottom:88.410000px;}
.y56_c00034{bottom:90.210000px;}
.y53_c00034{bottom:105.285000px;}
.y4f_c00034{bottom:120.435000px;}
.y4e_c00034{bottom:120.810000px;}
.y50_c00034{bottom:121.125000px;}
.y51_c00034{bottom:121.500000px;}
.y52_c00034{bottom:123.660000px;}
.y4d_c00034{bottom:139.125000px;}
.y4c_c00034{bottom:156.000000px;}
.y4a_c00034{bottom:171.885000px;}
.y4b_c00034{bottom:172.635000px;}
.y49_c00034{bottom:189.210000px;}
.y48_c00034{bottom:189.885000px;}
.y46_c00034{bottom:206.385000px;}
.y47_c00034{bottom:206.760000px;}
.y45_c00034{bottom:206.835000px;}
.y43_c00034{bottom:223.410000px;}
.y44_c00034{bottom:224.085000px;}
.y42_c00034{bottom:240.660000px;}
.y41_c00034{bottom:258.285000px;}
.y3e_c00034{bottom:275.250000px;}
.y3d_c00034{bottom:275.535000px;}
.y3f_c00034{bottom:275.625000px;}
.y40_c00034{bottom:277.410000px;}
.y3a_c00034{bottom:292.875000px;}
.y39_c00034{bottom:293.250000px;}
.y3b_c00034{bottom:296.085000px;}
.y3c_c00034{bottom:297.210000px;}
.y37_c00034{bottom:310.185000px;}
.y38_c00034{bottom:313.710000px;}
.y36_c00034{bottom:327.810000px;}
.y35_c00034{bottom:345.060000px;}
.y31_c00034{bottom:362.025000px;}
.y32_c00034{bottom:362.310000px;}
.y30_c00034{bottom:362.400000px;}
.y33_c00034{bottom:363.060000px;}
.y34_c00034{bottom:365.535000px;}
.y2d_c00034{bottom:379.650000px;}
.y2e_c00034{bottom:379.935000px;}
.y2c_c00034{bottom:380.025000px;}
.y2f_c00034{bottom:381.750000px;}
.y28_c00034{bottom:396.900000px;}
.y29_c00034{bottom:398.025000px;}
.y2a_c00034{bottom:399.435000px;}
.y2b_c00034{bottom:400.125000px;}
.y27_c00034{bottom:414.885000px;}
.y25_c00034{bottom:432.135000px;}
.y24_c00034{bottom:432.510000px;}
.y26_c00034{bottom:432.885000px;}
.y23_c00034{bottom:504.885000px;}
.y22_c00034{bottom:526.875000px;}
.y21_c00034{bottom:549.135000px;}
.y20_c00034{bottom:570.810000px;}
.y1f_c00034{bottom:592.035000px;}
.y1d_c00034{bottom:592.710000px;}
.y1e_c00034{bottom:593.085000px;}
.y1c_c00034{bottom:614.685000px;}
.y1b_c00034{bottom:634.875000px;}
.y1a_c00034{bottom:636.000000px;}
.y19_c00034{bottom:636.660000px;}
.y18_c00034{bottom:658.635000px;}
.y17_c00034{bottom:680.910000px;}
.y16_c00034{bottom:702.885000px;}
.y15_c00034{bottom:724.875000px;}
.y14_c00034{bottom:746.760000px;}
.y13_c00034{bottom:768.750000px;}
.y12_c00034{bottom:790.800000px;}
.y11_c00034{bottom:813.375000px;}
.y10_c00034{bottom:834.675000px;}
.yf_c00034{bottom:856.935000px;}
.ye_c00034{bottom:878.550000px;}
.yd_c00034{bottom:900.150000px;}
.yc_c00034{bottom:921.810000px;}
.yb_c00034{bottom:943.335000px;}
.ya_c00034{bottom:966.375000px;}
.y9_c00034{bottom:987.300000px;}
.y8_c00034{bottom:1008.900000px;}
.y7_c00034{bottom:1024.800000px;}
.y6_c00034{bottom:1027.560000px;}
.y5_c00034{bottom:1029.750000px;}
.y4_c00034{bottom:1032.000000px;}
.y3_c00034{bottom:1080.150000px;}
.y1_c00034{bottom:1089.210000px;}
.y2_c00034{bottom:1095.150000px;}
.h7_c00034{height:52.998047px;}
.h1_c00034{height:60.468750px;}
.h6_c00034{height:64.743164px;}
.h2_c00034{height:64.775391px;}
.h5_c00034{height:70.628906px;}
.h3_c00034{height:82.441406px;}
.h4_c00034{height:84.656250px;}
.h0_c00034{height:1174.500000px;}
.w0_c00034{width:731.977200px;}
.w1_c00034{width:732.000000px;}
.x0_c00034{left:0.000000px;}
.x11_c00034{left:39.940200px;}
.xb_c00034{left:40.990200px;}
.x4_c00034{left:42.490200px;}
.x8_c00034{left:43.915200px;}
.x32_c00034{left:45.715200px;}
.x9_c00034{left:55.090200px;}
.x12_c00034{left:58.315200px;}
.x2a_c00034{left:59.740200px;}
.x2d_c00034{left:61.165200px;}
.x33_c00034{left:62.965200px;}
.x16_c00034{left:67.315200px;}
.x2b_c00034{left:70.165200px;}
.xc_c00034{left:74.140200px;}
.xa_c00034{left:75.925200px;}
.x25_c00034{left:79.540200px;}
.x23_c00034{left:81.340200px;}
.x2c_c00034{left:85.990200px;}
.x13_c00034{left:97.915200px;}
.x34_c00034{left:101.140200px;}
.x1b_c00034{left:116.590200px;}
.x1f_c00034{left:123.490200px;}
.x14_c00034{left:128.140200px;}
.x1c_c00034{left:138.940200px;}
.x27_c00034{left:160.165200px;}
.x17_c00034{left:173.500200px;}
.x15_c00034{left:199.750200px;}
.x28_c00034{left:214.165200px;}
.x20_c00034{left:236.515200px;}
.x1d_c00034{left:238.990200px;}
.x2e_c00034{left:249.490200px;}
.x18_c00034{left:260.290200px;}
.x1_c00034{left:262.090200px;}
.x21_c00034{left:298.090200px;}
.x2f_c00034{left:318.190200px;}
.x30_c00034{left:320.740200px;}
.xf_c00034{left:341.290200px;}
.x10_c00034{left:357.790200px;}
.x31_c00034{left:367.525200px;}
.x29_c00034{left:371.890200px;}
.x1e_c00034{left:388.090200px;}
.xd_c00034{left:414.715200px;}
.x35_c00034{left:427.315200px;}
.x5_c00034{left:434.140200px;}
.x6_c00034{left:456.115200px;}
.x2_c00034{left:462.940200px;}
.xe_c00034{left:502.915200px;}
.x19_c00034{left:546.490200px;}
.x1a_c00034{left:565.540200px;}
.x7_c00034{left:602.590200px;}
.x22_c00034{left:604.090200px;}
.x36_c00034{left:606.940200px;}
.x26_c00034{left:622.090200px;}
.x24_c00034{left:627.790200px;}
.x3_c00034{left:635.740200px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls0_c00034{letter-spacing:0.000000pt;}
.ws0_c00034{word-spacing:0.000000pt;}
._0_c00034{margin-left:-49.643954pt;}
.fs4_c00034{font-size:48.000000pt;}
.fs0_c00034{font-size:53.333333pt;}
.fs1_c00034{font-size:58.666667pt;}
.fs3_c00034{font-size:64.000000pt;}
.fs2_c00034{font-size:74.666667pt;}
.y0_c00034{bottom:0.000000pt;}
.y58_c00034{bottom:45.920000pt;}
.y57_c00034{bottom:63.186667pt;}
.y54_c00034{bottom:77.920000pt;}
.y55_c00034{bottom:78.586667pt;}
.y56_c00034{bottom:80.186667pt;}
.y53_c00034{bottom:93.586667pt;}
.y4f_c00034{bottom:107.053333pt;}
.y4e_c00034{bottom:107.386667pt;}
.y50_c00034{bottom:107.666667pt;}
.y51_c00034{bottom:108.000000pt;}
.y52_c00034{bottom:109.920000pt;}
.y4d_c00034{bottom:123.666667pt;}
.y4c_c00034{bottom:138.666667pt;}
.y4a_c00034{bottom:152.786667pt;}
.y4b_c00034{bottom:153.453333pt;}
.y49_c00034{bottom:168.186667pt;}
.y48_c00034{bottom:168.786667pt;}
.y46_c00034{bottom:183.453333pt;}
.y47_c00034{bottom:183.786667pt;}
.y45_c00034{bottom:183.853333pt;}
.y43_c00034{bottom:198.586667pt;}
.y44_c00034{bottom:199.186667pt;}
.y42_c00034{bottom:213.920000pt;}
.y41_c00034{bottom:229.586667pt;}
.y3e_c00034{bottom:244.666667pt;}
.y3d_c00034{bottom:244.920000pt;}
.y3f_c00034{bottom:245.000000pt;}
.y40_c00034{bottom:246.586667pt;}
.y3a_c00034{bottom:260.333333pt;}
.y39_c00034{bottom:260.666667pt;}
.y3b_c00034{bottom:263.186667pt;}
.y3c_c00034{bottom:264.186667pt;}
.y37_c00034{bottom:275.720000pt;}
.y38_c00034{bottom:278.853333pt;}
.y36_c00034{bottom:291.386667pt;}
.y35_c00034{bottom:306.720000pt;}
.y31_c00034{bottom:321.800000pt;}
.y32_c00034{bottom:322.053333pt;}
.y30_c00034{bottom:322.133333pt;}
.y33_c00034{bottom:322.720000pt;}
.y34_c00034{bottom:324.920000pt;}
.y2d_c00034{bottom:337.466667pt;}
.y2e_c00034{bottom:337.720000pt;}
.y2c_c00034{bottom:337.800000pt;}
.y2f_c00034{bottom:339.333333pt;}
.y28_c00034{bottom:352.800000pt;}
.y29_c00034{bottom:353.800000pt;}
.y2a_c00034{bottom:355.053333pt;}
.y2b_c00034{bottom:355.666667pt;}
.y27_c00034{bottom:368.786667pt;}
.y25_c00034{bottom:384.120000pt;}
.y24_c00034{bottom:384.453333pt;}
.y26_c00034{bottom:384.786667pt;}
.y23_c00034{bottom:448.786667pt;}
.y22_c00034{bottom:468.333333pt;}
.y21_c00034{bottom:488.120000pt;}
.y20_c00034{bottom:507.386667pt;}
.y1f_c00034{bottom:526.253333pt;}
.y1d_c00034{bottom:526.853333pt;}
.y1e_c00034{bottom:527.186667pt;}
.y1c_c00034{bottom:546.386667pt;}
.y1b_c00034{bottom:564.333333pt;}
.y1a_c00034{bottom:565.333333pt;}
.y19_c00034{bottom:565.920000pt;}
.y18_c00034{bottom:585.453333pt;}
.y17_c00034{bottom:605.253333pt;}
.y16_c00034{bottom:624.786667pt;}
.y15_c00034{bottom:644.333333pt;}
.y14_c00034{bottom:663.786667pt;}
.y13_c00034{bottom:683.333333pt;}
.y12_c00034{bottom:702.933333pt;}
.y11_c00034{bottom:723.000000pt;}
.y10_c00034{bottom:741.933333pt;}
.yf_c00034{bottom:761.720000pt;}
.ye_c00034{bottom:780.933333pt;}
.yd_c00034{bottom:800.133333pt;}
.yc_c00034{bottom:819.386667pt;}
.yb_c00034{bottom:838.520000pt;}
.ya_c00034{bottom:859.000000pt;}
.y9_c00034{bottom:877.600000pt;}
.y8_c00034{bottom:896.800000pt;}
.y7_c00034{bottom:910.933333pt;}
.y6_c00034{bottom:913.386667pt;}
.y5_c00034{bottom:915.333333pt;}
.y4_c00034{bottom:917.333333pt;}
.y3_c00034{bottom:960.133333pt;}
.y1_c00034{bottom:968.186667pt;}
.y2_c00034{bottom:973.466667pt;}
.h7_c00034{height:47.109375pt;}
.h1_c00034{height:53.750000pt;}
.h6_c00034{height:57.549479pt;}
.h2_c00034{height:57.578125pt;}
.h5_c00034{height:62.781250pt;}
.h3_c00034{height:73.281250pt;}
.h4_c00034{height:75.250000pt;}
.h0_c00034{height:1044.000000pt;}
.w0_c00034{width:650.646400pt;}
.w1_c00034{width:650.666667pt;}
.x0_c00034{left:0.000000pt;}
.x11_c00034{left:35.502400pt;}
.xb_c00034{left:36.435733pt;}
.x4_c00034{left:37.769067pt;}
.x8_c00034{left:39.035733pt;}
.x32_c00034{left:40.635733pt;}
.x9_c00034{left:48.969067pt;}
.x12_c00034{left:51.835733pt;}
.x2a_c00034{left:53.102400pt;}
.x2d_c00034{left:54.369067pt;}
.x33_c00034{left:55.969067pt;}
.x16_c00034{left:59.835733pt;}
.x2b_c00034{left:62.369067pt;}
.xc_c00034{left:65.902400pt;}
.xa_c00034{left:67.489067pt;}
.x25_c00034{left:70.702400pt;}
.x23_c00034{left:72.302400pt;}
.x2c_c00034{left:76.435733pt;}
.x13_c00034{left:87.035733pt;}
.x34_c00034{left:89.902400pt;}
.x1b_c00034{left:103.635733pt;}
.x1f_c00034{left:109.769067pt;}
.x14_c00034{left:113.902400pt;}
.x1c_c00034{left:123.502400pt;}
.x27_c00034{left:142.369067pt;}
.x17_c00034{left:154.222400pt;}
.x15_c00034{left:177.555733pt;}
.x28_c00034{left:190.369067pt;}
.x20_c00034{left:210.235733pt;}
.x1d_c00034{left:212.435733pt;}
.x2e_c00034{left:221.769067pt;}
.x18_c00034{left:231.369067pt;}
.x1_c00034{left:232.969067pt;}
.x21_c00034{left:264.969067pt;}
.x2f_c00034{left:282.835733pt;}
.x30_c00034{left:285.102400pt;}
.xf_c00034{left:303.369067pt;}
.x10_c00034{left:318.035733pt;}
.x31_c00034{left:326.689067pt;}
.x29_c00034{left:330.569067pt;}
.x1e_c00034{left:344.969067pt;}
.xd_c00034{left:368.635733pt;}
.x35_c00034{left:379.835733pt;}
.x5_c00034{left:385.902400pt;}
.x6_c00034{left:405.435733pt;}
.x2_c00034{left:411.502400pt;}
.xe_c00034{left:447.035733pt;}
.x19_c00034{left:485.769067pt;}
.x1a_c00034{left:502.702400pt;}
.x7_c00034{left:535.635733pt;}
.x22_c00034{left:536.969067pt;}
.x36_c00034{left:539.502400pt;}
.x26_c00034{left:552.969067pt;}
.x24_c00034{left:558.035733pt;}
.x3_c00034{left:565.102400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_147b8f54f0261a5d00a9d408.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00035;src:url('chunks/assets/font_89a0cf36993973d9780e358c.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00035;src:url('chunks/assets/font_5f01f18286f5fcab8ff47147.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00035;src:url('chunks/assets/font_e894234de993e4442853e227.woff2')format("woff");}.ff4_c00035{font-family:ff4_c00035;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c00035{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m15_c00035{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc_c00035{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m25_c00035{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m14_c00035{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8_c00035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00035{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m12_c00035{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c00035{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me_c00035{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c00035{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m26_c00035{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c00035{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c00035{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m6_c00035{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00035{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c00035{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00035{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c00035{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00035{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00035{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00035{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c00035{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00035{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00035{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00035{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00035{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00035{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m21_c00035{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m23_c00035{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c00035{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m22_c00035{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00035{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00035{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m19_c00035{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m24_c00035{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m18_c00035{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m20_c00035{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c00035{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:transparent;}
.fs1_c00035{font-size:60.000000px;}
.fs2_c00035{font-size:66.000000px;}
.fs5_c00035{font-size:72.000000px;}
.fs0_c00035{font-size:78.000000px;}
.fs4_c00035{font-size:84.000000px;}
.fs3_c00035{font-size:90.000000px;}
.y0_c00035{bottom:0.000000px;}
.y6f_c00035{bottom:103.500000px;}
.y6d_c00035{bottom:105.285000px;}
.y6c_c00035{bottom:105.960000px;}
.y6e_c00035{bottom:110.385000px;}
.y6b_c00035{bottom:112.875000px;}
.y6a_c00035{bottom:116.835000px;}
.y69_c00035{bottom:120.435000px;}
.y68_c00035{bottom:123.660000px;}
.y66_c00035{bottom:126.510000px;}
.y67_c00035{bottom:126.885000px;}
.y63_c00035{bottom:140.250000px;}
.y65_c00035{bottom:140.910000px;}
.y64_c00035{bottom:144.135000px;}
.y62_c00035{bottom:145.635000px;}
.y61_c00035{bottom:153.585000px;}
.y60_c00035{bottom:160.710000px;}
.y5f_c00035{bottom:163.635000px;}
.y5d_c00035{bottom:176.535000px;}
.y5e_c00035{bottom:177.660000px;}
.y5c_c00035{bottom:184.500000px;}
.y5b_c00035{bottom:190.560000px;}
.y5a_c00035{bottom:193.875000px;}
.y59_c00035{bottom:197.835000px;}
.y58_c00035{bottom:209.010000px;}
.y57_c00035{bottom:210.060000px;}
.y56_c00035{bottom:211.500000px;}
.y55_c00035{bottom:225.210000px;}
.y54_c00035{bottom:228.750000px;}
.y53_c00035{bottom:236.685000px;}
.y52_c00035{bottom:241.785000px;}
.y51_c00035{bottom:244.635000px;}
.y4f_c00035{bottom:244.935000px;}
.y50_c00035{bottom:245.685000px;}
.y4e_c00035{bottom:254.685000px;}
.y4d_c00035{bottom:261.150000px;}
.y4c_c00035{bottom:262.275000px;}
.y4b_c00035{bottom:263.310000px;}
.y4a_c00035{bottom:264.060000px;}
.y49_c00035{bottom:270.525000px;}
.y48_c00035{bottom:275.160000px;}
.y47_c00035{bottom:278.460000px;}
.y46_c00035{bottom:279.525000px;}
.y45_c00035{bottom:284.625000px;}
.y44_c00035{bottom:293.910000px;}
.y43_c00035{bottom:295.035000px;}
.y42_c00035{bottom:295.335000px;}
.y41_c00035{bottom:310.500000px;}
.y40_c00035{bottom:313.710000px;}
.y3f_c00035{bottom:320.910000px;}
.y3e_c00035{bottom:330.285000px;}
.y3d_c00035{bottom:333.525000px;}
.y3c_c00035{bottom:341.085000px;}
.y3b_c00035{bottom:351.210000px;}
.y3a_c00035{bottom:353.310000px;}
.y39_c00035{bottom:360.900000px;}
.y38_c00035{bottom:365.160000px;}
.y37_c00035{bottom:369.150000px;}
.y36_c00035{bottom:369.210000px;}
.y35_c00035{bottom:371.400000px;}
.y34_c00035{bottom:376.335000px;}
.y33_c00035{bottom:380.685000px;}
.y32_c00035{bottom:391.125000px;}
.y31_c00035{bottom:399.435000px;}
.y30_c00035{bottom:446.910000px;}
.y2f_c00035{bottom:468.885000px;}
.y2e_c00035{bottom:485.835000px;}
.y2d_c00035{bottom:486.885000px;}
.y2b_c00035{bottom:487.560000px;}
.y2a_c00035{bottom:490.500000px;}
.y29_c00035{bottom:491.910000px;}
.y28_c00035{bottom:492.660000px;}
.y27_c00035{bottom:493.335000px;}
.y2c_c00035{bottom:510.660000px;}
.y26_c00035{bottom:512.385000px;}
.y25_c00035{bottom:531.210000px;}
.y24_c00035{bottom:535.125000px;}
.y23_c00035{bottom:555.660000px;}
.y22_c00035{bottom:577.260000px;}
.y21_c00035{bottom:598.875000px;}
.y20_c00035{bottom:620.760000px;}
.y1f_c00035{bottom:641.385000px;}
.y1e_c00035{bottom:664.035000px;}
.y1d_c00035{bottom:685.560000px;}
.y1c_c00035{bottom:707.250000px;}
.y1b_c00035{bottom:729.210000px;}
.y1a_c00035{bottom:748.635000px;}
.y19_c00035{bottom:772.710000px;}
.y18_c00035{bottom:794.310000px;}
.y15_c00035{bottom:811.650000px;}
.y16_c00035{bottom:817.050000px;}
.y17_c00035{bottom:818.460000px;}
.y14_c00035{bottom:835.710000px;}
.y13_c00035{bottom:858.810000px;}
.y12_c00035{bottom:868.500000px;}
.y11_c00035{bottom:900.585000px;}
.y10_c00035{bottom:922.185000px;}
.yf_c00035{bottom:943.050000px;}
.ye_c00035{bottom:964.275000px;}
.yd_c00035{bottom:985.875000px;}
.ya_c00035{bottom:993.060000px;}
.yb_c00035{bottom:996.300000px;}
.yc_c00035{bottom:1008.900000px;}
.y9_c00035{bottom:1026.900000px;}
.y4_c00035{bottom:1042.800000px;}
.y5_c00035{bottom:1052.085000px;}
.y6_c00035{bottom:1053.900000px;}
.y7_c00035{bottom:1055.685000px;}
.y8_c00035{bottom:1056.060000px;}
.y1_c00035{bottom:1089.525000px;}
.y3_c00035{bottom:1104.300000px;}
.y2_c00035{bottom:1106.460000px;}
.h2_c00035{height:58.886719px;}
.h5_c00035{height:64.775391px;}
.h8_c00035{height:70.664062px;}
.h9_c00035{height:72.562500px;}
.h4_c00035{height:76.514648px;}
.h3_c00035{height:76.552734px;}
.h1_c00035{height:78.609375px;}
.h7_c00035{height:82.441406px;}
.h6_c00035{height:88.286133px;}
.h0_c00035{height:1174.500000px;}
.w0_c00035{width:731.977200px;}
.w1_c00035{width:732.000000px;}
.x0_c00035{left:0.000000px;}
.x11_c00035{left:77.740200px;}
.x9_c00035{left:79.165200px;}
.xc_c00035{left:80.590200px;}
.x13_c00035{left:82.090200px;}
.x25_c00035{left:89.290200px;}
.x1_c00035{left:95.740200px;}
.x36_c00035{left:97.540200px;}
.x28_c00035{left:98.965200px;}
.x12_c00035{left:100.090200px;}
.x35_c00035{left:101.515200px;}
.x4_c00035{left:108.340200px;}
.xd_c00035{left:109.390200px;}
.x10_c00035{left:111.565200px;}
.x2_c00035{left:115.540200px;}
.x27_c00035{left:133.540200px;}
.x2f_c00035{left:137.890200px;}
.x21_c00035{left:139.690200px;}
.x1c_c00035{left:148.990200px;}
.x3f_c00035{left:154.090200px;}
.x3b_c00035{left:156.940200px;}
.x26_c00035{left:161.290200px;}
.xa_c00035{left:171.340200px;}
.xb_c00035{left:177.790200px;}
.x40_c00035{left:181.375200px;}
.x32_c00035{left:191.500200px;}
.x37_c00035{left:205.540200px;}
.x38_c00035{left:211.315200px;}
.x39_c00035{left:224.590200px;}
.x29_c00035{left:234.715200px;}
.x15_c00035{left:237.565200px;}
.x2b_c00035{left:240.790200px;}
.x1d_c00035{left:250.540200px;}
.x3a_c00035{left:258.790200px;}
.x41_c00035{left:279.340200px;}
.x3_c00035{left:294.490200px;}
.x16_c00035{left:295.915200px;}
.x33_c00035{left:300.565200px;}
.x18_c00035{left:308.890200px;}
.x2c_c00035{left:317.515200px;}
.x17_c00035{left:373.690200px;}
.xe_c00035{left:382.990200px;}
.x34_c00035{left:390.190200px;}
.x1e_c00035{left:392.365200px;}
.x22_c00035{left:393.490200px;}
.x42_c00035{left:395.590200px;}
.x43_c00035{left:406.765200px;}
.x3c_c00035{left:415.390200px;}
.x5_c00035{left:418.990200px;}
.x2d_c00035{left:435.565200px;}
.x3d_c00035{left:459.340200px;}
.xf_c00035{left:463.990200px;}
.x14_c00035{left:467.290200px;}
.x19_c00035{left:478.765200px;}
.x6_c00035{left:494.965200px;}
.x1a_c00035{left:506.515200px;}
.x30_c00035{left:510.490200px;}
.x7_c00035{left:514.090200px;}
.x1f_c00035{left:553.690200px;}
.x8_c00035{left:596.890200px;}
.x23_c00035{left:617.740200px;}
.x1b_c00035{left:629.965200px;}
.x2e_c00035{left:649.090200px;}
.x44_c00035{left:652.990200px;}
.x24_c00035{left:655.915200px;}
.x20_c00035{left:676.090200px;}
.x3e_c00035{left:677.515200px;}
.x31_c00035{left:683.290200px;}
.x2a_c00035{left:688.990200px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls0_c00035{letter-spacing:0.000000pt;}
.ws0_c00035{word-spacing:0.000000pt;}
.fs1_c00035{font-size:53.333333pt;}
.fs2_c00035{font-size:58.666667pt;}
.fs5_c00035{font-size:64.000000pt;}
.fs0_c00035{font-size:69.333333pt;}
.fs4_c00035{font-size:74.666667pt;}
.fs3_c00035{font-size:80.000000pt;}
.y0_c00035{bottom:0.000000pt;}
.y6f_c00035{bottom:92.000000pt;}
.y6d_c00035{bottom:93.586667pt;}
.y6c_c00035{bottom:94.186667pt;}
.y6e_c00035{bottom:98.120000pt;}
.y6b_c00035{bottom:100.333333pt;}
.y6a_c00035{bottom:103.853333pt;}
.y69_c00035{bottom:107.053333pt;}
.y68_c00035{bottom:109.920000pt;}
.y66_c00035{bottom:112.453333pt;}
.y67_c00035{bottom:112.786667pt;}
.y63_c00035{bottom:124.666667pt;}
.y65_c00035{bottom:125.253333pt;}
.y64_c00035{bottom:128.120000pt;}
.y62_c00035{bottom:129.453333pt;}
.y61_c00035{bottom:136.520000pt;}
.y60_c00035{bottom:142.853333pt;}
.y5f_c00035{bottom:145.453333pt;}
.y5d_c00035{bottom:156.920000pt;}
.y5e_c00035{bottom:157.920000pt;}
.y5c_c00035{bottom:164.000000pt;}
.y5b_c00035{bottom:169.386667pt;}
.y5a_c00035{bottom:172.333333pt;}
.y59_c00035{bottom:175.853333pt;}
.y58_c00035{bottom:185.786667pt;}
.y57_c00035{bottom:186.720000pt;}
.y56_c00035{bottom:188.000000pt;}
.y55_c00035{bottom:200.186667pt;}
.y54_c00035{bottom:203.333333pt;}
.y53_c00035{bottom:210.386667pt;}
.y52_c00035{bottom:214.920000pt;}
.y51_c00035{bottom:217.453333pt;}
.y4f_c00035{bottom:217.720000pt;}
.y50_c00035{bottom:218.386667pt;}
.y4e_c00035{bottom:226.386667pt;}
.y4d_c00035{bottom:232.133333pt;}
.y4c_c00035{bottom:233.133333pt;}
.y4b_c00035{bottom:234.053333pt;}
.y4a_c00035{bottom:234.720000pt;}
.y49_c00035{bottom:240.466667pt;}
.y48_c00035{bottom:244.586667pt;}
.y47_c00035{bottom:247.520000pt;}
.y46_c00035{bottom:248.466667pt;}
.y45_c00035{bottom:253.000000pt;}
.y44_c00035{bottom:261.253333pt;}
.y43_c00035{bottom:262.253333pt;}
.y42_c00035{bottom:262.520000pt;}
.y41_c00035{bottom:276.000000pt;}
.y40_c00035{bottom:278.853333pt;}
.y3f_c00035{bottom:285.253333pt;}
.y3e_c00035{bottom:293.586667pt;}
.y3d_c00035{bottom:296.466667pt;}
.y3c_c00035{bottom:303.186667pt;}
.y3b_c00035{bottom:312.186667pt;}
.y3a_c00035{bottom:314.053333pt;}
.y39_c00035{bottom:320.800000pt;}
.y38_c00035{bottom:324.586667pt;}
.y37_c00035{bottom:328.133333pt;}
.y36_c00035{bottom:328.186667pt;}
.y35_c00035{bottom:330.133333pt;}
.y34_c00035{bottom:334.520000pt;}
.y33_c00035{bottom:338.386667pt;}
.y32_c00035{bottom:347.666667pt;}
.y31_c00035{bottom:355.053333pt;}
.y30_c00035{bottom:397.253333pt;}
.y2f_c00035{bottom:416.786667pt;}
.y2e_c00035{bottom:431.853333pt;}
.y2d_c00035{bottom:432.786667pt;}
.y2b_c00035{bottom:433.386667pt;}
.y2a_c00035{bottom:436.000000pt;}
.y29_c00035{bottom:437.253333pt;}
.y28_c00035{bottom:437.920000pt;}
.y27_c00035{bottom:438.520000pt;}
.y2c_c00035{bottom:453.920000pt;}
.y26_c00035{bottom:455.453333pt;}
.y25_c00035{bottom:472.186667pt;}
.y24_c00035{bottom:475.666667pt;}
.y23_c00035{bottom:493.920000pt;}
.y22_c00035{bottom:513.120000pt;}
.y21_c00035{bottom:532.333333pt;}
.y20_c00035{bottom:551.786667pt;}
.y1f_c00035{bottom:570.120000pt;}
.y1e_c00035{bottom:590.253333pt;}
.y1d_c00035{bottom:609.386667pt;}
.y1c_c00035{bottom:628.666667pt;}
.y1b_c00035{bottom:648.186667pt;}
.y1a_c00035{bottom:665.453333pt;}
.y19_c00035{bottom:686.853333pt;}
.y18_c00035{bottom:706.053333pt;}
.y15_c00035{bottom:721.466667pt;}
.y16_c00035{bottom:726.266667pt;}
.y17_c00035{bottom:727.520000pt;}
.y14_c00035{bottom:742.853333pt;}
.y13_c00035{bottom:763.386667pt;}
.y12_c00035{bottom:772.000000pt;}
.y11_c00035{bottom:800.520000pt;}
.y10_c00035{bottom:819.720000pt;}
.yf_c00035{bottom:838.266667pt;}
.ye_c00035{bottom:857.133333pt;}
.yd_c00035{bottom:876.333333pt;}
.ya_c00035{bottom:882.720000pt;}
.yb_c00035{bottom:885.600000pt;}
.yc_c00035{bottom:896.800000pt;}
.y9_c00035{bottom:912.800000pt;}
.y4_c00035{bottom:926.933333pt;}
.y5_c00035{bottom:935.186667pt;}
.y6_c00035{bottom:936.800000pt;}
.y7_c00035{bottom:938.386667pt;}
.y8_c00035{bottom:938.720000pt;}
.y1_c00035{bottom:968.466667pt;}
.y3_c00035{bottom:981.600000pt;}
.y2_c00035{bottom:983.520000pt;}
.h2_c00035{height:52.343750pt;}
.h5_c00035{height:57.578125pt;}
.h8_c00035{height:62.812500pt;}
.h9_c00035{height:64.500000pt;}
.h4_c00035{height:68.013021pt;}
.h3_c00035{height:68.046875pt;}
.h1_c00035{height:69.875000pt;}
.h7_c00035{height:73.281250pt;}
.h6_c00035{height:78.476562pt;}
.h0_c00035{height:1044.000000pt;}
.w0_c00035{width:650.646400pt;}
.w1_c00035{width:650.666667pt;}
.x0_c00035{left:0.000000pt;}
.x11_c00035{left:69.102400pt;}
.x9_c00035{left:70.369067pt;}
.xc_c00035{left:71.635733pt;}
.x13_c00035{left:72.969067pt;}
.x25_c00035{left:79.369067pt;}
.x1_c00035{left:85.102400pt;}
.x36_c00035{left:86.702400pt;}
.x28_c00035{left:87.969067pt;}
.x12_c00035{left:88.969067pt;}
.x35_c00035{left:90.235733pt;}
.x4_c00035{left:96.302400pt;}
.xd_c00035{left:97.235733pt;}
.x10_c00035{left:99.169067pt;}
.x2_c00035{left:102.702400pt;}
.x27_c00035{left:118.702400pt;}
.x2f_c00035{left:122.569067pt;}
.x21_c00035{left:124.169067pt;}
.x1c_c00035{left:132.435733pt;}
.x3f_c00035{left:136.969067pt;}
.x3b_c00035{left:139.502400pt;}
.x26_c00035{left:143.369067pt;}
.xa_c00035{left:152.302400pt;}
.xb_c00035{left:158.035733pt;}
.x40_c00035{left:161.222400pt;}
.x32_c00035{left:170.222400pt;}
.x37_c00035{left:182.702400pt;}
.x38_c00035{left:187.835733pt;}
.x39_c00035{left:199.635733pt;}
.x29_c00035{left:208.635733pt;}
.x15_c00035{left:211.169067pt;}
.x2b_c00035{left:214.035733pt;}
.x1d_c00035{left:222.702400pt;}
.x3a_c00035{left:230.035733pt;}
.x41_c00035{left:248.302400pt;}
.x3_c00035{left:261.769067pt;}
.x16_c00035{left:263.035733pt;}
.x33_c00035{left:267.169067pt;}
.x18_c00035{left:274.569067pt;}
.x2c_c00035{left:282.235733pt;}
.x17_c00035{left:332.169067pt;}
.xe_c00035{left:340.435733pt;}
.x34_c00035{left:346.835733pt;}
.x1e_c00035{left:348.769067pt;}
.x22_c00035{left:349.769067pt;}
.x42_c00035{left:351.635733pt;}
.x43_c00035{left:361.569067pt;}
.x3c_c00035{left:369.235733pt;}
.x5_c00035{left:372.435733pt;}
.x2d_c00035{left:387.169067pt;}
.x3d_c00035{left:408.302400pt;}
.xf_c00035{left:412.435733pt;}
.x14_c00035{left:415.369067pt;}
.x19_c00035{left:425.569067pt;}
.x6_c00035{left:439.969067pt;}
.x1a_c00035{left:450.235733pt;}
.x30_c00035{left:453.769067pt;}
.x7_c00035{left:456.969067pt;}
.x1f_c00035{left:492.169067pt;}
.x8_c00035{left:530.569067pt;}
.x23_c00035{left:549.102400pt;}
.x1b_c00035{left:559.969067pt;}
.x2e_c00035{left:576.969067pt;}
.x44_c00035{left:580.435733pt;}
.x24_c00035{left:583.035733pt;}
.x20_c00035{left:600.969067pt;}
.x3e_c00035{left:602.235733pt;}
.x31_c00035{left:607.369067pt;}
.x2a_c00035{left:612.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e096f15ae29b04157766e7db.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00036;src:url('chunks/assets/font_9334745efd5db808122a753c.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.402354;font-style:normal;font-weight:normal;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_e38ff39a85a178da3400d674.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00036{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5_c00036{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00036{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4_c00036{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c00036{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00036{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c00036{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c00036{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00036{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00036{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m15_c00036{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c00036{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c00036{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m14_c00036{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m0_c00036{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c00036{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00036{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00036{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c00036{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00036{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00036{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00036{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00036{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,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;}
.fc0_c00036{color:transparent;}
.fs2_c00036{font-size:60.000000px;}
.fs1_c00036{font-size:66.000000px;}
.fs0_c00036{font-size:72.000000px;}
.fs3_c00036{font-size:84.000000px;}
.y0_c00036{bottom:0.000000px;}
.y3b_c00036{bottom:66.435000px;}
.y3c_c00036{bottom:68.910000px;}
.y39_c00036{bottom:81.885000px;}
.y3a_c00036{bottom:85.125000px;}
.y38_c00036{bottom:100.185000px;}
.y37_c00036{bottom:117.885000px;}
.y36_c00036{bottom:134.835000px;}
.y35_c00036{bottom:151.410000px;}
.y34_c00036{bottom:165.810000px;}
.y31_c00036{bottom:183.810000px;}
.y32_c00036{bottom:185.535000px;}
.y33_c00036{bottom:186.285000px;}
.y30_c00036{bottom:201.810000px;}
.y2f_c00036{bottom:219.060000px;}
.y2e_c00036{bottom:234.135000px;}
.y2d_c00036{bottom:253.275000px;}
.y2c_c00036{bottom:270.900000px;}
.y2b_c00036{bottom:288.150000px;}
.y2a_c00036{bottom:305.085000px;}
.y29_c00036{bottom:323.085000px;}
.y28_c00036{bottom:340.335000px;}
.y27_c00036{bottom:356.250000px;}
.y25_c00036{bottom:373.500000px;}
.y26_c00036{bottom:374.535000px;}
.y23_c00036{bottom:390.435000px;}
.y24_c00036{bottom:392.625000px;}
.y20_c00036{bottom:408.750000px;}
.y22_c00036{bottom:409.875000px;}
.y21_c00036{bottom:410.250000px;}
.y1f_c00036{bottom:427.500000px;}
.y1e_c00036{bottom:499.500000px;}
.y1d_c00036{bottom:501.285000px;}
.y1c_c00036{bottom:523.260000px;}
.y1b_c00036{bottom:545.160000px;}
.y1a_c00036{bottom:567.135000px;}
.y19_c00036{bottom:588.810000px;}
.y18_c00036{bottom:610.710000px;}
.y17_c00036{bottom:633.000000px;}
.y16_c00036{bottom:654.660000px;}
.y15_c00036{bottom:676.935000px;}
.y14_c00036{bottom:698.910000px;}
.y13_c00036{bottom:721.260000px;}
.y12_c00036{bottom:743.160000px;}
.y11_c00036{bottom:765.135000px;}
.y10_c00036{bottom:787.125000px;}
.yf_c00036{bottom:809.460000px;}
.ye_c00036{bottom:831.750000px;}
.yd_c00036{bottom:854.085000px;}
.yc_c00036{bottom:874.935000px;}
.ya_c00036{bottom:896.175000px;}
.yb_c00036{bottom:896.925000px;}
.y9_c00036{bottom:918.525000px;}
.y8_c00036{bottom:940.500000px;}
.y7_c00036{bottom:962.085000px;}
.y6_c00036{bottom:984.060000px;}
.y5_c00036{bottom:1005.675000px;}
.y4_c00036{bottom:1027.650000px;}
.y3_c00036{bottom:1078.710000px;}
.y2_c00036{bottom:1086.960000px;}
.y1_c00036{bottom:1088.085000px;}
.h4_c00036{height:64.743164px;}
.h2_c00036{height:64.775391px;}
.h1_c00036{height:70.664062px;}
.h3_c00036{height:82.441406px;}
.h0_c00036{height:1174.500000px;}
.w0_c00036{width:731.977200px;}
.w1_c00036{width:732.000000px;}
.x0_c00036{left:0.000000px;}
.x4_c00036{left:52.165200px;}
.x5_c00036{left:53.590200px;}
.xb_c00036{left:55.765200px;}
.x8_c00036{left:56.890200px;}
.x9_c00036{left:58.690200px;}
.x12_c00036{left:60.490200px;}
.x13_c00036{left:62.590200px;}
.x14_c00036{left:63.715200px;}
.x16_c00036{left:65.140200px;}
.x19_c00036{left:67.315200px;}
.x1b_c00036{left:69.115200px;}
.xd_c00036{left:74.890200px;}
.x6_c00036{left:85.675200px;}
.x7_c00036{left:86.740200px;}
.xa_c00036{left:88.540200px;}
.x15_c00036{left:89.965200px;}
.x1a_c00036{left:92.515200px;}
.x1c_c00036{left:95.740200px;}
.x10_c00036{left:147.190200px;}
.x11_c00036{left:223.540200px;}
.x1d_c00036{left:231.490200px;}
.x1_c00036{left:271.090200px;}
.x2_c00036{left:298.390200px;}
.xe_c00036{left:314.590200px;}
.xf_c00036{left:408.190200px;}
.x17_c00036{left:467.290200px;}
.x18_c00036{left:483.790200px;}
.x1e_c00036{left:546.115200px;}
.xc_c00036{left:640.765200px;}
.x3_c00036{left:643.990200px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls0_c00036{letter-spacing:0.000000pt;}
.ws0_c00036{word-spacing:0.000000pt;}
.fs2_c00036{font-size:53.333333pt;}
.fs1_c00036{font-size:58.666667pt;}
.fs0_c00036{font-size:64.000000pt;}
.fs3_c00036{font-size:74.666667pt;}
.y0_c00036{bottom:0.000000pt;}
.y3b_c00036{bottom:59.053333pt;}
.y3c_c00036{bottom:61.253333pt;}
.y39_c00036{bottom:72.786667pt;}
.y3a_c00036{bottom:75.666667pt;}
.y38_c00036{bottom:89.053333pt;}
.y37_c00036{bottom:104.786667pt;}
.y36_c00036{bottom:119.853333pt;}
.y35_c00036{bottom:134.586667pt;}
.y34_c00036{bottom:147.386667pt;}
.y31_c00036{bottom:163.386667pt;}
.y32_c00036{bottom:164.920000pt;}
.y33_c00036{bottom:165.586667pt;}
.y30_c00036{bottom:179.386667pt;}
.y2f_c00036{bottom:194.720000pt;}
.y2e_c00036{bottom:208.120000pt;}
.y2d_c00036{bottom:225.133333pt;}
.y2c_c00036{bottom:240.800000pt;}
.y2b_c00036{bottom:256.133333pt;}
.y2a_c00036{bottom:271.186667pt;}
.y29_c00036{bottom:287.186667pt;}
.y28_c00036{bottom:302.520000pt;}
.y27_c00036{bottom:316.666667pt;}
.y25_c00036{bottom:332.000000pt;}
.y26_c00036{bottom:332.920000pt;}
.y23_c00036{bottom:347.053333pt;}
.y24_c00036{bottom:349.000000pt;}
.y20_c00036{bottom:363.333333pt;}
.y22_c00036{bottom:364.333333pt;}
.y21_c00036{bottom:364.666667pt;}
.y1f_c00036{bottom:380.000000pt;}
.y1e_c00036{bottom:444.000000pt;}
.y1d_c00036{bottom:445.586667pt;}
.y1c_c00036{bottom:465.120000pt;}
.y1b_c00036{bottom:484.586667pt;}
.y1a_c00036{bottom:504.120000pt;}
.y19_c00036{bottom:523.386667pt;}
.y18_c00036{bottom:542.853333pt;}
.y17_c00036{bottom:562.666667pt;}
.y16_c00036{bottom:581.920000pt;}
.y15_c00036{bottom:601.720000pt;}
.y14_c00036{bottom:621.253333pt;}
.y13_c00036{bottom:641.120000pt;}
.y12_c00036{bottom:660.586667pt;}
.y11_c00036{bottom:680.120000pt;}
.y10_c00036{bottom:699.666667pt;}
.yf_c00036{bottom:719.520000pt;}
.ye_c00036{bottom:739.333333pt;}
.yd_c00036{bottom:759.186667pt;}
.yc_c00036{bottom:777.720000pt;}
.ya_c00036{bottom:796.600000pt;}
.yb_c00036{bottom:797.266667pt;}
.y9_c00036{bottom:816.466667pt;}
.y8_c00036{bottom:836.000000pt;}
.y7_c00036{bottom:855.186667pt;}
.y6_c00036{bottom:874.720000pt;}
.y5_c00036{bottom:893.933333pt;}
.y4_c00036{bottom:913.466667pt;}
.y3_c00036{bottom:958.853333pt;}
.y2_c00036{bottom:966.186667pt;}
.y1_c00036{bottom:967.186667pt;}
.h4_c00036{height:57.549479pt;}
.h2_c00036{height:57.578125pt;}
.h1_c00036{height:62.812500pt;}
.h3_c00036{height:73.281250pt;}
.h0_c00036{height:1044.000000pt;}
.w0_c00036{width:650.646400pt;}
.w1_c00036{width:650.666667pt;}
.x0_c00036{left:0.000000pt;}
.x4_c00036{left:46.369067pt;}
.x5_c00036{left:47.635733pt;}
.xb_c00036{left:49.569067pt;}
.x8_c00036{left:50.569067pt;}
.x9_c00036{left:52.169067pt;}
.x12_c00036{left:53.769067pt;}
.x13_c00036{left:55.635733pt;}
.x14_c00036{left:56.635733pt;}
.x16_c00036{left:57.902400pt;}
.x19_c00036{left:59.835733pt;}
.x1b_c00036{left:61.435733pt;}
.xd_c00036{left:66.569067pt;}
.x6_c00036{left:76.155733pt;}
.x7_c00036{left:77.102400pt;}
.xa_c00036{left:78.702400pt;}
.x15_c00036{left:79.969067pt;}
.x1a_c00036{left:82.235733pt;}
.x1c_c00036{left:85.102400pt;}
.x10_c00036{left:130.835733pt;}
.x11_c00036{left:198.702400pt;}
.x1d_c00036{left:205.769067pt;}
.x1_c00036{left:240.969067pt;}
.x2_c00036{left:265.235733pt;}
.xe_c00036{left:279.635733pt;}
.xf_c00036{left:362.835733pt;}
.x17_c00036{left:415.369067pt;}
.x18_c00036{left:430.035733pt;}
.x1e_c00036{left:485.435733pt;}
.xc_c00036{left:569.569067pt;}
.x3_c00036{left:572.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa21ca469df4485c44966ea4.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00037;src:url('chunks/assets/font_809d56f0427ec806230f994e.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00037;src:url('chunks/assets/font_1eac0ba25a03d2d5e1c9ad22.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00037;src:url('chunks/assets/font_84fa95c46bdff586b8eeac16.woff2')format("woff");}.ff4_c00037{font-family:ff4_c00037;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1b_c00037{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00037{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00037{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00037{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mb_c00037{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md_c00037{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc_c00037{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00037{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m18_c00037{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00037{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c00037{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19_c00037{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00037{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c00037{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00037{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00037{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00037{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c00037{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c00037{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00037{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c00037{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m11_c00037{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00037{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00037{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c00037{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00037{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m15_c00037{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00037{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00037{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00037{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c00037{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00037{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.ls0_c00037{letter-spacing:0.000000px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00037{word-spacing:0.000000px;}
.fc0_c00037{color:transparent;}
.fs1_c00037{font-size:60.000000px;}
.fs2_c00037{font-size:66.000000px;}
.fs3_c00037{font-size:72.000000px;}
.fs0_c00037{font-size:78.000000px;}
.fs4_c00037{font-size:84.000000px;}
.y0_c00037{bottom:0.000000px;}
.y50_c00037{bottom:108.135000px;}
.y4f_c00037{bottom:108.510000px;}
.y4e_c00037{bottom:118.935000px;}
.y4d_c00037{bottom:128.685000px;}
.y4c_c00037{bottom:129.810000px;}
.y4b_c00037{bottom:134.460000px;}
.y4a_c00037{bottom:145.260000px;}
.y49_c00037{bottom:149.250000px;}
.y48_c00037{bottom:153.510000px;}
.y47_c00037{bottom:166.875000px;}
.y46_c00037{bottom:182.685000px;}
.y45_c00037{bottom:204.285000px;}
.y44_c00037{bottom:225.885000px;}
.y43_c00037{bottom:240.285000px;}
.y42_c00037{bottom:241.410000px;}
.y41_c00037{bottom:251.835000px;}
.y40_c00037{bottom:271.935000px;}
.y3f_c00037{bottom:284.535000px;}
.y3e_c00037{bottom:293.625000px;}
.y3d_c00037{bottom:313.035000px;}
.y3c_c00037{bottom:328.875000px;}
.y3b_c00037{bottom:335.025000px;}
.y3a_c00037{bottom:356.910000px;}
.y39_c00037{bottom:373.125000px;}
.y38_c00037{bottom:378.525000px;}
.y37_c00037{bottom:399.750000px;}
.y36_c00037{bottom:417.435000px;}
.y35_c00037{bottom:418.125000px;}
.y34_c00037{bottom:422.460000px;}
.y33_c00037{bottom:426.060000px;}
.y32_c00037{bottom:440.085000px;}
.y31_c00037{bottom:444.435000px;}
.y30_c00037{bottom:465.285000px;}
.y2f_c00037{bottom:483.960000px;}
.y2e_c00037{bottom:485.085000px;}
.y2d_c00037{bottom:487.935000px;}
.y2c_c00037{bottom:509.160000px;}
.y2a_c00037{bottom:528.960000px;}
.y2b_c00037{bottom:529.035000px;}
.y29_c00037{bottom:530.835000px;}
.y28_c00037{bottom:550.260000px;}
.y27_c00037{bottom:550.560000px;}
.y26_c00037{bottom:551.310000px;}
.y25_c00037{bottom:552.060000px;}
.y24_c00037{bottom:574.035000px;}
.y23_c00037{bottom:595.635000px;}
.y21_c00037{bottom:615.435000px;}
.y22_c00037{bottom:617.535000px;}
.y20_c00037{bottom:639.210000px;}
.y1e_c00037{bottom:660.810000px;}
.y1f_c00037{bottom:661.125000px;}
.y1d_c00037{bottom:682.335000px;}
.y1c_c00037{bottom:703.935000px;}
.y1b_c00037{bottom:725.625000px;}
.y1a_c00037{bottom:747.585000px;}
.y19_c00037{bottom:768.375000px;}
.y18_c00037{bottom:789.675000px;}
.y17_c00037{bottom:812.025000px;}
.y16_c00037{bottom:832.500000px;}
.y15_c00037{bottom:854.085000px;}
.y14_c00037{bottom:875.310000px;}
.y13_c00037{bottom:895.875000px;}
.y11_c00037{bottom:907.710000px;}
.y12_c00037{bottom:920.685000px;}
.ye_c00037{bottom:927.210000px;}
.yf_c00037{bottom:930.750000px;}
.y10_c00037{bottom:941.175000px;}
.yd_c00037{bottom:960.300000px;}
.yb_c00037{bottom:967.500000px;}
.yc_c00037{bottom:981.525000px;}
.y8_c00037{bottom:998.085000px;}
.y6_c00037{bottom:1008.150000px;}
.ya_c00037{bottom:1008.525000px;}
.y9_c00037{bottom:1009.275000px;}
.y7_c00037{bottom:1023.300000px;}
.y4_c00037{bottom:1041.675000px;}
.y5_c00037{bottom:1051.050000px;}
.y1_c00037{bottom:1086.960000px;}
.y3_c00037{bottom:1099.935000px;}
.y2_c00037{bottom:1102.500000px;}
.h2_c00037{height:58.886719px;}
.h3_c00037{height:66.515625px;}
.h5_c00037{height:70.664062px;}
.h4_c00037{height:72.562500px;}
.h1_c00037{height:76.552734px;}
.h6_c00037{height:82.400391px;}
.h7_c00037{height:82.441406px;}
.h8_c00037{height:84.656250px;}
.h0_c00037{height:1174.500000px;}
.w0_c00037{width:731.977200px;}
.w1_c00037{width:732.000000px;}
.x0_c00037{left:0.000000px;}
.x2f_c00037{left:63.340200px;}
.x29_c00037{left:65.890200px;}
.x28_c00037{left:66.940200px;}
.x23_c00037{left:68.365200px;}
.x1e_c00037{left:69.490200px;}
.x14_c00037{left:70.540200px;}
.x12_c00037{left:71.590200px;}
.x10_c00037{left:73.390200px;}
.xe_c00037{left:74.890200px;}
.xc_c00037{left:76.300200px;}
.x4_c00037{left:77.740200px;}
.x1_c00037{left:96.115200px;}
.x6_c00037{left:98.965200px;}
.x11_c00037{left:104.365200px;}
.xf_c00037{left:105.490200px;}
.x2_c00037{left:114.115200px;}
.x1f_c00037{left:120.565200px;}
.x2d_c00037{left:122.365200px;}
.x9_c00037{left:124.165200px;}
.xa_c00037{left:139.315200px;}
.x15_c00037{left:169.165200px;}
.x2b_c00037{left:218.515200px;}
.xd_c00037{left:223.540200px;}
.x2c_c00037{left:235.765200px;}
.xb_c00037{left:253.765200px;}
.x3_c00037{left:292.690200px;}
.x2a_c00037{left:402.490200px;}
.x26_c00037{left:422.965200px;}
.x1b_c00037{left:485.590200px;}
.x20_c00037{left:516.940200px;}
.x2e_c00037{left:521.590200px;}
.x7_c00037{left:533.140200px;}
.x25_c00037{left:549.715200px;}
.x16_c00037{left:575.590200px;}
.x19_c00037{left:584.590200px;}
.x17_c00037{left:591.790200px;}
.x1a_c00037{left:602.590200px;}
.x1d_c00037{left:611.290200px;}
.x1c_c00037{left:624.940200px;}
.x5_c00037{left:627.490200px;}
.x13_c00037{left:631.765200px;}
.x8_c00037{left:639.715200px;}
.x21_c00037{left:651.940200px;}
.x24_c00037{left:660.190200px;}
.x18_c00037{left:663.115200px;}
.x22_c00037{left:674.290200px;}
.x27_c00037{left:678.190200px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls0_c00037{letter-spacing:0.000000pt;}
.ws0_c00037{word-spacing:0.000000pt;}
.fs1_c00037{font-size:53.333333pt;}
.fs2_c00037{font-size:58.666667pt;}
.fs3_c00037{font-size:64.000000pt;}
.fs0_c00037{font-size:69.333333pt;}
.fs4_c00037{font-size:74.666667pt;}
.y0_c00037{bottom:0.000000pt;}
.y50_c00037{bottom:96.120000pt;}
.y4f_c00037{bottom:96.453333pt;}
.y4e_c00037{bottom:105.720000pt;}
.y4d_c00037{bottom:114.386667pt;}
.y4c_c00037{bottom:115.386667pt;}
.y4b_c00037{bottom:119.520000pt;}
.y4a_c00037{bottom:129.120000pt;}
.y49_c00037{bottom:132.666667pt;}
.y48_c00037{bottom:136.453333pt;}
.y47_c00037{bottom:148.333333pt;}
.y46_c00037{bottom:162.386667pt;}
.y45_c00037{bottom:181.586667pt;}
.y44_c00037{bottom:200.786667pt;}
.y43_c00037{bottom:213.586667pt;}
.y42_c00037{bottom:214.586667pt;}
.y41_c00037{bottom:223.853333pt;}
.y40_c00037{bottom:241.720000pt;}
.y3f_c00037{bottom:252.920000pt;}
.y3e_c00037{bottom:261.000000pt;}
.y3d_c00037{bottom:278.253333pt;}
.y3c_c00037{bottom:292.333333pt;}
.y3b_c00037{bottom:297.800000pt;}
.y3a_c00037{bottom:317.253333pt;}
.y39_c00037{bottom:331.666667pt;}
.y38_c00037{bottom:336.466667pt;}
.y37_c00037{bottom:355.333333pt;}
.y36_c00037{bottom:371.053333pt;}
.y35_c00037{bottom:371.666667pt;}
.y34_c00037{bottom:375.520000pt;}
.y33_c00037{bottom:378.720000pt;}
.y32_c00037{bottom:391.186667pt;}
.y31_c00037{bottom:395.053333pt;}
.y30_c00037{bottom:413.586667pt;}
.y2f_c00037{bottom:430.186667pt;}
.y2e_c00037{bottom:431.186667pt;}
.y2d_c00037{bottom:433.720000pt;}
.y2c_c00037{bottom:452.586667pt;}
.y2a_c00037{bottom:470.186667pt;}
.y2b_c00037{bottom:470.253333pt;}
.y29_c00037{bottom:471.853333pt;}
.y28_c00037{bottom:489.120000pt;}
.y27_c00037{bottom:489.386667pt;}
.y26_c00037{bottom:490.053333pt;}
.y25_c00037{bottom:490.720000pt;}
.y24_c00037{bottom:510.253333pt;}
.y23_c00037{bottom:529.453333pt;}
.y21_c00037{bottom:547.053333pt;}
.y22_c00037{bottom:548.920000pt;}
.y20_c00037{bottom:568.186667pt;}
.y1e_c00037{bottom:587.386667pt;}
.y1f_c00037{bottom:587.666667pt;}
.y1d_c00037{bottom:606.520000pt;}
.y1c_c00037{bottom:625.720000pt;}
.y1b_c00037{bottom:645.000000pt;}
.y1a_c00037{bottom:664.520000pt;}
.y19_c00037{bottom:683.000000pt;}
.y18_c00037{bottom:701.933333pt;}
.y17_c00037{bottom:721.800000pt;}
.y16_c00037{bottom:740.000000pt;}
.y15_c00037{bottom:759.186667pt;}
.y14_c00037{bottom:778.053333pt;}
.y13_c00037{bottom:796.333333pt;}
.y11_c00037{bottom:806.853333pt;}
.y12_c00037{bottom:818.386667pt;}
.ye_c00037{bottom:824.186667pt;}
.yf_c00037{bottom:827.333333pt;}
.y10_c00037{bottom:836.600000pt;}
.yd_c00037{bottom:853.600000pt;}
.yb_c00037{bottom:860.000000pt;}
.yc_c00037{bottom:872.466667pt;}
.y8_c00037{bottom:887.186667pt;}
.y6_c00037{bottom:896.133333pt;}
.ya_c00037{bottom:896.466667pt;}
.y9_c00037{bottom:897.133333pt;}
.y7_c00037{bottom:909.600000pt;}
.y4_c00037{bottom:925.933333pt;}
.y5_c00037{bottom:934.266667pt;}
.y1_c00037{bottom:966.186667pt;}
.y3_c00037{bottom:977.720000pt;}
.y2_c00037{bottom:980.000000pt;}
.h2_c00037{height:52.343750pt;}
.h3_c00037{height:59.125000pt;}
.h5_c00037{height:62.812500pt;}
.h4_c00037{height:64.500000pt;}
.h1_c00037{height:68.046875pt;}
.h6_c00037{height:73.244792pt;}
.h7_c00037{height:73.281250pt;}
.h8_c00037{height:75.250000pt;}
.h0_c00037{height:1044.000000pt;}
.w0_c00037{width:650.646400pt;}
.w1_c00037{width:650.666667pt;}
.x0_c00037{left:0.000000pt;}
.x2f_c00037{left:56.302400pt;}
.x29_c00037{left:58.569067pt;}
.x28_c00037{left:59.502400pt;}
.x23_c00037{left:60.769067pt;}
.x1e_c00037{left:61.769067pt;}
.x14_c00037{left:62.702400pt;}
.x12_c00037{left:63.635733pt;}
.x10_c00037{left:65.235733pt;}
.xe_c00037{left:66.569067pt;}
.xc_c00037{left:67.822400pt;}
.x4_c00037{left:69.102400pt;}
.x1_c00037{left:85.435733pt;}
.x6_c00037{left:87.969067pt;}
.x11_c00037{left:92.769067pt;}
.xf_c00037{left:93.769067pt;}
.x2_c00037{left:101.435733pt;}
.x1f_c00037{left:107.169067pt;}
.x2d_c00037{left:108.769067pt;}
.x9_c00037{left:110.369067pt;}
.xa_c00037{left:123.835733pt;}
.x15_c00037{left:150.369067pt;}
.x2b_c00037{left:194.235733pt;}
.xd_c00037{left:198.702400pt;}
.x2c_c00037{left:209.569067pt;}
.xb_c00037{left:225.569067pt;}
.x3_c00037{left:260.169067pt;}
.x2a_c00037{left:357.769067pt;}
.x26_c00037{left:375.969067pt;}
.x1b_c00037{left:431.635733pt;}
.x20_c00037{left:459.502400pt;}
.x2e_c00037{left:463.635733pt;}
.x7_c00037{left:473.902400pt;}
.x25_c00037{left:488.635733pt;}
.x16_c00037{left:511.635733pt;}
.x19_c00037{left:519.635733pt;}
.x17_c00037{left:526.035733pt;}
.x1a_c00037{left:535.635733pt;}
.x1d_c00037{left:543.369067pt;}
.x1c_c00037{left:555.502400pt;}
.x5_c00037{left:557.769067pt;}
.x13_c00037{left:561.569067pt;}
.x8_c00037{left:568.635733pt;}
.x21_c00037{left:579.502400pt;}
.x24_c00037{left:586.835733pt;}
.x18_c00037{left:589.435733pt;}
.x22_c00037{left:599.369067pt;}
.x27_c00037{left:602.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_201a6d68043383b425eff051.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00038;src:url('chunks/assets/font_b90a5bdb0b3f3a770bc8e023.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00038;src:url('chunks/assets/font_22305b189c99529b617d1d62.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c00038{transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);}
.m13_c00038{transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);}
.m9_c00038{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c00038{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m17_c00038{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00038{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00038{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c00038{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00038{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00038{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c00038{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00038{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00038{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00038{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00038{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00038{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00038{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10_c00038{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00038{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m15_c00038{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00038{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00038{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c00038{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c00038{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.ls0_c00038{letter-spacing:0.000000px;}
.sc__c00038{text-shadow:none;}
.sc0_c00038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00038{-webkit-text-stroke:0px transparent;}
.sc0_c00038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00038{word-spacing:0.000000px;}
.fc0_c00038{color:transparent;}
.fs1_c00038{font-size:54.000000px;}
.fs0_c00038{font-size:60.000000px;}
.fs4_c00038{font-size:66.000000px;}
.fs3_c00038{font-size:72.000000px;}
.fs2_c00038{font-size:78.000000px;}
.y0_c00038{bottom:0.000000px;}
.y3c_c00038{bottom:57.435000px;}
.y37_c00038{bottom:74.010000px;}
.y38_c00038{bottom:74.385000px;}
.y39_c00038{bottom:75.750000px;}
.y3a_c00038{bottom:81.510000px;}
.y3b_c00038{bottom:83.685000px;}
.y36_c00038{bottom:134.835000px;}
.y34_c00038{bottom:143.835000px;}
.y33_c00038{bottom:144.885000px;}
.y35_c00038{bottom:145.635000px;}
.y32_c00038{bottom:165.810000px;}
.y31_c00038{bottom:187.710000px;}
.y30_c00038{bottom:209.010000px;}
.y2f_c00038{bottom:230.625000px;}
.y2e_c00038{bottom:252.210000px;}
.y2d_c00038{bottom:274.125000px;}
.y2c_c00038{bottom:295.785000px;}
.y2b_c00038{bottom:317.310000px;}
.y2a_c00038{bottom:338.910000px;}
.y29_c00038{bottom:360.900000px;}
.y28_c00038{bottom:382.875000px;}
.y27_c00038{bottom:404.460000px;}
.y26_c00038{bottom:426.435000px;}
.y25_c00038{bottom:448.710000px;}
.y24_c00038{bottom:470.685000px;}
.y23_c00038{bottom:492.660000px;}
.y22_c00038{bottom:514.635000px;}
.y21_c00038{bottom:536.535000px;}
.y20_c00038{bottom:558.510000px;}
.y1f_c00038{bottom:580.500000px;}
.y1e_c00038{bottom:602.085000px;}
.y1d_c00038{bottom:624.060000px;}
.y1c_c00038{bottom:645.660000px;}
.y1b_c00038{bottom:667.935000px;}
.y1a_c00038{bottom:690.285000px;}
.y19_c00038{bottom:711.585000px;}
.y18_c00038{bottom:712.560000px;}
.y17_c00038{bottom:732.075000px;}
.y16_c00038{bottom:734.250000px;}
.y15_c00038{bottom:756.135000px;}
.y14_c00038{bottom:778.500000px;}
.y13_c00038{bottom:799.710000px;}
.y12_c00038{bottom:822.435000px;}
.y11_c00038{bottom:844.335000px;}
.y10_c00038{bottom:866.025000px;}
.yf_c00038{bottom:888.300000px;}
.ye_c00038{bottom:909.525000px;}
.yd_c00038{bottom:930.810000px;}
.yb_c00038{bottom:932.925000px;}
.yc_c00038{bottom:933.675000px;}
.ya_c00038{bottom:953.085000px;}
.y9_c00038{bottom:972.525000px;}
.y8_c00038{bottom:974.310000px;}
.y7_c00038{bottom:976.800000px;}
.y6_c00038{bottom:996.300000px;}
.y5_c00038{bottom:999.210000px;}
.y4_c00038{bottom:1018.185000px;}
.y3_c00038{bottom:1020.435000px;}
.y2_c00038{bottom:1070.835000px;}
.y1_c00038{bottom:1079.085000px;}
.h2_c00038{height:54.421875px;}
.h1_c00038{height:60.468750px;}
.h8_c00038{height:64.743164px;}
.h7_c00038{height:64.775391px;}
.h5_c00038{height:70.664062px;}
.h4_c00038{height:72.562500px;}
.h6_c00038{height:76.514648px;}
.h3_c00038{height:78.609375px;}
.h0_c00038{height:1174.500000px;}
.w0_c00038{width:731.977200px;}
.w1_c00038{width:732.000000px;}
.x0_c00038{left:0.000000px;}
.xd_c00038{left:57.940200px;}
.xb_c00038{left:59.365200px;}
.x5_c00038{left:60.790200px;}
.xa_c00038{left:64.390200px;}
.xe_c00038{left:76.300200px;}
.x10_c00038{left:77.365200px;}
.xf_c00038{left:92.140200px;}
.x3_c00038{left:93.940200px;}
.x4_c00038{left:134.290200px;}
.x19_c00038{left:150.790200px;}
.x8_c00038{left:197.590200px;}
.x11_c00038{left:227.140200px;}
.x12_c00038{left:244.390200px;}
.x9_c00038{left:246.190200px;}
.x1_c00038{left:279.715200px;}
.x14_c00038{left:313.540200px;}
.x15_c00038{left:359.965200px;}
.x6_c00038{left:398.515200px;}
.x7_c00038{left:415.765200px;}
.x13_c00038{left:472.315200px;}
.xc_c00038{left:588.565200px;}
.x16_c00038{left:610.165200px;}
.x2_c00038{left:652.315200px;}
.x17_c00038{left:657.715200px;}
.x18_c00038{left:675.715200px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls0_c00038{letter-spacing:0.000000pt;}
.ws0_c00038{word-spacing:0.000000pt;}
.fs1_c00038{font-size:48.000000pt;}
.fs0_c00038{font-size:53.333333pt;}
.fs4_c00038{font-size:58.666667pt;}
.fs3_c00038{font-size:64.000000pt;}
.fs2_c00038{font-size:69.333333pt;}
.y0_c00038{bottom:0.000000pt;}
.y3c_c00038{bottom:51.053333pt;}
.y37_c00038{bottom:65.786667pt;}
.y38_c00038{bottom:66.120000pt;}
.y39_c00038{bottom:67.333333pt;}
.y3a_c00038{bottom:72.453333pt;}
.y3b_c00038{bottom:74.386667pt;}
.y36_c00038{bottom:119.853333pt;}
.y34_c00038{bottom:127.853333pt;}
.y33_c00038{bottom:128.786667pt;}
.y35_c00038{bottom:129.453333pt;}
.y32_c00038{bottom:147.386667pt;}
.y31_c00038{bottom:166.853333pt;}
.y30_c00038{bottom:185.786667pt;}
.y2f_c00038{bottom:205.000000pt;}
.y2e_c00038{bottom:224.186667pt;}
.y2d_c00038{bottom:243.666667pt;}
.y2c_c00038{bottom:262.920000pt;}
.y2b_c00038{bottom:282.053333pt;}
.y2a_c00038{bottom:301.253333pt;}
.y29_c00038{bottom:320.800000pt;}
.y28_c00038{bottom:340.333333pt;}
.y27_c00038{bottom:359.520000pt;}
.y26_c00038{bottom:379.053333pt;}
.y25_c00038{bottom:398.853333pt;}
.y24_c00038{bottom:418.386667pt;}
.y23_c00038{bottom:437.920000pt;}
.y22_c00038{bottom:457.453333pt;}
.y21_c00038{bottom:476.920000pt;}
.y20_c00038{bottom:496.453333pt;}
.y1f_c00038{bottom:516.000000pt;}
.y1e_c00038{bottom:535.186667pt;}
.y1d_c00038{bottom:554.720000pt;}
.y1c_c00038{bottom:573.920000pt;}
.y1b_c00038{bottom:593.720000pt;}
.y1a_c00038{bottom:613.586667pt;}
.y19_c00038{bottom:632.520000pt;}
.y18_c00038{bottom:633.386667pt;}
.y17_c00038{bottom:650.733333pt;}
.y16_c00038{bottom:652.666667pt;}
.y15_c00038{bottom:672.120000pt;}
.y14_c00038{bottom:692.000000pt;}
.y13_c00038{bottom:710.853333pt;}
.y12_c00038{bottom:731.053333pt;}
.y11_c00038{bottom:750.520000pt;}
.y10_c00038{bottom:769.800000pt;}
.yf_c00038{bottom:789.600000pt;}
.ye_c00038{bottom:808.466667pt;}
.yd_c00038{bottom:827.386667pt;}
.yb_c00038{bottom:829.266667pt;}
.yc_c00038{bottom:829.933333pt;}
.ya_c00038{bottom:847.186667pt;}
.y9_c00038{bottom:864.466667pt;}
.y8_c00038{bottom:866.053333pt;}
.y7_c00038{bottom:868.266667pt;}
.y6_c00038{bottom:885.600000pt;}
.y5_c00038{bottom:888.186667pt;}
.y4_c00038{bottom:905.053333pt;}
.y3_c00038{bottom:907.053333pt;}
.y2_c00038{bottom:951.853333pt;}
.y1_c00038{bottom:959.186667pt;}
.h2_c00038{height:48.375000pt;}
.h1_c00038{height:53.750000pt;}
.h8_c00038{height:57.549479pt;}
.h7_c00038{height:57.578125pt;}
.h5_c00038{height:62.812500pt;}
.h4_c00038{height:64.500000pt;}
.h6_c00038{height:68.013021pt;}
.h3_c00038{height:69.875000pt;}
.h0_c00038{height:1044.000000pt;}
.w0_c00038{width:650.646400pt;}
.w1_c00038{width:650.666667pt;}
.x0_c00038{left:0.000000pt;}
.xd_c00038{left:51.502400pt;}
.xb_c00038{left:52.769067pt;}
.x5_c00038{left:54.035733pt;}
.xa_c00038{left:57.235733pt;}
.xe_c00038{left:67.822400pt;}
.x10_c00038{left:68.769067pt;}
.xf_c00038{left:81.902400pt;}
.x3_c00038{left:83.502400pt;}
.x4_c00038{left:119.369067pt;}
.x19_c00038{left:134.035733pt;}
.x8_c00038{left:175.635733pt;}
.x11_c00038{left:201.902400pt;}
.x12_c00038{left:217.235733pt;}
.x9_c00038{left:218.835733pt;}
.x1_c00038{left:248.635733pt;}
.x14_c00038{left:278.702400pt;}
.x15_c00038{left:319.969067pt;}
.x6_c00038{left:354.235733pt;}
.x7_c00038{left:369.569067pt;}
.x13_c00038{left:419.835733pt;}
.xc_c00038{left:523.169067pt;}
.x16_c00038{left:542.369067pt;}
.x2_c00038{left:579.835733pt;}
.x17_c00038{left:584.635733pt;}
.x18_c00038{left:600.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e6dead80ce4cecdc03226c83.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00039;src:url('chunks/assets/font_064b2eace786c4bb9db61375.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00039;src:url('chunks/assets/font_472111d5396ad567a5643255.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00039;src:url('chunks/assets/font_ec440e2022e61dc3279a8831.woff2')format("woff");}.ff4_c00039{font-family:ff4_c00039;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m22_c00039{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m21_c00039{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m26_c00039{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m27_c00039{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m29_c00039{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc_c00039{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m18_c00039{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m13_c00039{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c00039{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9_c00039{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m19_c00039{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m14_c00039{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00039{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c00039{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00039{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c00039{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5_c00039{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11_c00039{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c00039{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c00039{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c00039{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c00039{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c00039{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00039{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m25_c00039{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m17_c00039{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00039{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00039{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00039{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00039{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00039{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m23_c00039{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c00039{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m28_c00039{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m20_c00039{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c00039{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mf_c00039{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c00039{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m24_c00039{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma_c00039{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c00039{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.ls0_c00039{letter-spacing:0.000000px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00039{word-spacing:0.000000px;}
.fc0_c00039{color:transparent;}
.fs2_c00039{font-size:48.000000px;}
.fs0_c00039{font-size:54.000000px;}
.fs1_c00039{font-size:60.000000px;}
.fs5_c00039{font-size:66.000000px;}
.fs4_c00039{font-size:72.000000px;}
.fs3_c00039{font-size:78.000000px;}
.fs6_c00039{font-size:84.000000px;}
.y0_c00039{bottom:0.000000px;}
.y56_c00039{bottom:99.510000px;}
.y55_c00039{bottom:99.885000px;}
.y57_c00039{bottom:100.260000px;}
.y54_c00039{bottom:100.635000px;}
.y53_c00039{bottom:106.710000px;}
.y52_c00039{bottom:114.660000px;}
.y51_c00039{bottom:117.885000px;}
.y50_c00039{bottom:118.635000px;}
.y4f_c00039{bottom:130.875000px;}
.y4e_c00039{bottom:140.250000px;}
.y4d_c00039{bottom:153.210000px;}
.y4c_c00039{bottom:160.785000px;}
.y4b_c00039{bottom:166.500000px;}
.y4a_c00039{bottom:174.060000px;}
.y49_c00039{bottom:184.875000px;}
.y48_c00039{bottom:186.285000px;}
.y47_c00039{bottom:188.460000px;}
.y46_c00039{bottom:193.500000px;}
.y45_c00039{bottom:210.060000px;}
.y44_c00039{bottom:227.685000px;}
.y43_c00039{bottom:245.685000px;}
.y42_c00039{bottom:261.900000px;}
.y3c_c00039{bottom:284.535000px;}
.y41_c00039{bottom:285.285000px;}
.y40_c00039{bottom:287.460000px;}
.y3f_c00039{bottom:288.210000px;}
.y3e_c00039{bottom:288.900000px;}
.y3d_c00039{bottom:289.275000px;}
.y3b_c00039{bottom:297.150000px;}
.y3a_c00039{bottom:314.460000px;}
.y39_c00039{bottom:331.410000px;}
.y38_c00039{bottom:348.960000px;}
.y37_c00039{bottom:366.585000px;}
.y36_c00039{bottom:384.000000px;}
.y35_c00039{bottom:400.875000px;}
.y34_c00039{bottom:405.150000px;}
.y33_c00039{bottom:407.310000px;}
.y32_c00039{bottom:418.500000px;}
.y31_c00039{bottom:423.210000px;}
.y30_c00039{bottom:440.085000px;}
.y2f_c00039{bottom:452.310000px;}
.y2e_c00039{bottom:452.685000px;}
.y2d_c00039{bottom:454.500000px;}
.y2c_c00039{bottom:471.060000px;}
.y2b_c00039{bottom:474.000000px;}
.y2a_c00039{bottom:526.185000px;}
.y29_c00039{bottom:546.660000px;}
.y28_c00039{bottom:547.035000px;}
.y27_c00039{bottom:568.635000px;}
.y26_c00039{bottom:590.250000px;}
.y23_c00039{bottom:611.085000px;}
.y24_c00039{bottom:611.460000px;}
.y25_c00039{bottom:613.260000px;}
.y22_c00039{bottom:633.810000px;}
.y1f_c00039{bottom:652.875000px;}
.y20_c00039{bottom:655.410000px;}
.y21_c00039{bottom:657.510000px;}
.y1b_c00039{bottom:674.835000px;}
.y1c_c00039{bottom:675.885000px;}
.y1d_c00039{bottom:678.750000px;}
.y1e_c00039{bottom:679.500000px;}
.y1a_c00039{bottom:698.910000px;}
.y19_c00039{bottom:746.085000px;}
.y18_c00039{bottom:798.960000px;}
.y17_c00039{bottom:826.050000px;}
.y16_c00039{bottom:839.685000px;}
.y15_c00039{bottom:868.875000px;}
.y14_c00039{bottom:890.400000px;}
.y13_c00039{bottom:911.685000px;}
.y12_c00039{bottom:931.125000px;}
.y11_c00039{bottom:953.835000px;}
.yf_c00039{bottom:963.210000px;}
.y10_c00039{bottom:974.400000px;}
.ya_c00039{bottom:983.685000px;}
.yb_c00039{bottom:984.060000px;}
.yd_c00039{bottom:984.750000px;}
.y8_c00039{bottom:992.400000px;}
.y9_c00039{bottom:1005.000000px;}
.yc_c00039{bottom:1007.085000px;}
.ye_c00039{bottom:1008.150000px;}
.y6_c00039{bottom:1012.185000px;}
.y7_c00039{bottom:1026.210000px;}
.y5_c00039{bottom:1036.275000px;}
.y1_c00039{bottom:1080.900000px;}
.y3_c00039{bottom:1092.060000px;}
.y4_c00039{bottom:1095.675000px;}
.y2_c00039{bottom:1096.800000px;}
.h3_c00039{height:47.085938px;}
.hb_c00039{height:52.971680px;}
.h1_c00039{height:54.421875px;}
.h2_c00039{height:60.468750px;}
.ha_c00039{height:64.743164px;}
.h7_c00039{height:64.775391px;}
.h6_c00039{height:70.664062px;}
.h9_c00039{height:76.514648px;}
.h5_c00039{height:76.552734px;}
.h4_c00039{height:78.609375px;}
.h8_c00039{height:82.400391px;}
.hc_c00039{height:82.441406px;}
.h0_c00039{height:1174.500000px;}
.w0_c00039{width:731.977200px;}
.w1_c00039{width:732.000000px;}
.x0_c00039{left:0.000000px;}
.x5_c00039{left:62.590200px;}
.x6_c00039{left:63.715200px;}
.x18_c00039{left:64.765200px;}
.x1a_c00039{left:65.890200px;}
.x20_c00039{left:67.690200px;}
.x24_c00039{left:68.740200px;}
.x25_c00039{left:78.490200px;}
.x1_c00039{left:79.915200px;}
.x1b_c00039{left:82.390200px;}
.xe_c00039{left:83.515200px;}
.xd_c00039{left:93.175200px;}
.x2_c00039{left:97.540200px;}
.x23_c00039{left:98.965200px;}
.x26_c00039{left:100.090200px;}
.x21_c00039{left:102.190200px;}
.x27_c00039{left:106.165200px;}
.x1c_c00039{left:109.765200px;}
.x2d_c00039{left:118.765200px;}
.xc_c00039{left:129.190200px;}
.x29_c00039{left:134.590200px;}
.x2a_c00039{left:144.715200px;}
.x2e_c00039{left:160.915200px;}
.x14_c00039{left:169.915200px;}
.x22_c00039{left:228.190200px;}
.x2f_c00039{left:240.490200px;}
.x10_c00039{left:270.715200px;}
.x3_c00039{left:277.915200px;}
.x2b_c00039{left:303.115200px;}
.x2c_c00039{left:312.490200px;}
.x11_c00039{left:339.790200px;}
.xf_c00039{left:349.915200px;}
.x17_c00039{left:361.390200px;}
.x4_c00039{left:365.740200px;}
.x1d_c00039{left:469.765200px;}
.x30_c00039{left:476.590200px;}
.x7_c00039{left:505.090200px;}
.x31_c00039{left:546.115200px;}
.x8_c00039{left:549.715200px;}
.x32_c00039{left:563.365200px;}
.x15_c00039{left:571.315200px;}
.x19_c00039{left:573.115200px;}
.x1e_c00039{left:575.965200px;}
.xa_c00039{left:578.515200px;}
.x16_c00039{left:596.890200px;}
.x12_c00039{left:605.515200px;}
.x9_c00039{left:606.940200px;}
.x33_c00039{left:610.540200px;}
.x13_c00039{left:627.490200px;}
.x1f_c00039{left:630.340200px;}
.xb_c00039{left:654.790200px;}
.x28_c00039{left:660.190200px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls0_c00039{letter-spacing:0.000000pt;}
.ws0_c00039{word-spacing:0.000000pt;}
.fs2_c00039{font-size:42.666667pt;}
.fs0_c00039{font-size:48.000000pt;}
.fs1_c00039{font-size:53.333333pt;}
.fs5_c00039{font-size:58.666667pt;}
.fs4_c00039{font-size:64.000000pt;}
.fs3_c00039{font-size:69.333333pt;}
.fs6_c00039{font-size:74.666667pt;}
.y0_c00039{bottom:0.000000pt;}
.y56_c00039{bottom:88.453333pt;}
.y55_c00039{bottom:88.786667pt;}
.y57_c00039{bottom:89.120000pt;}
.y54_c00039{bottom:89.453333pt;}
.y53_c00039{bottom:94.853333pt;}
.y52_c00039{bottom:101.920000pt;}
.y51_c00039{bottom:104.786667pt;}
.y50_c00039{bottom:105.453333pt;}
.y4f_c00039{bottom:116.333333pt;}
.y4e_c00039{bottom:124.666667pt;}
.y4d_c00039{bottom:136.186667pt;}
.y4c_c00039{bottom:142.920000pt;}
.y4b_c00039{bottom:148.000000pt;}
.y4a_c00039{bottom:154.720000pt;}
.y49_c00039{bottom:164.333333pt;}
.y48_c00039{bottom:165.586667pt;}
.y47_c00039{bottom:167.520000pt;}
.y46_c00039{bottom:172.000000pt;}
.y45_c00039{bottom:186.720000pt;}
.y44_c00039{bottom:202.386667pt;}
.y43_c00039{bottom:218.386667pt;}
.y42_c00039{bottom:232.800000pt;}
.y3c_c00039{bottom:252.920000pt;}
.y41_c00039{bottom:253.586667pt;}
.y40_c00039{bottom:255.520000pt;}
.y3f_c00039{bottom:256.186667pt;}
.y3e_c00039{bottom:256.800000pt;}
.y3d_c00039{bottom:257.133333pt;}
.y3b_c00039{bottom:264.133333pt;}
.y3a_c00039{bottom:279.520000pt;}
.y39_c00039{bottom:294.586667pt;}
.y38_c00039{bottom:310.186667pt;}
.y37_c00039{bottom:325.853333pt;}
.y36_c00039{bottom:341.333333pt;}
.y35_c00039{bottom:356.333333pt;}
.y34_c00039{bottom:360.133333pt;}
.y33_c00039{bottom:362.053333pt;}
.y32_c00039{bottom:372.000000pt;}
.y31_c00039{bottom:376.186667pt;}
.y30_c00039{bottom:391.186667pt;}
.y2f_c00039{bottom:402.053333pt;}
.y2e_c00039{bottom:402.386667pt;}
.y2d_c00039{bottom:404.000000pt;}
.y2c_c00039{bottom:418.720000pt;}
.y2b_c00039{bottom:421.333333pt;}
.y2a_c00039{bottom:467.720000pt;}
.y29_c00039{bottom:485.920000pt;}
.y28_c00039{bottom:486.253333pt;}
.y27_c00039{bottom:505.453333pt;}
.y26_c00039{bottom:524.666667pt;}
.y23_c00039{bottom:543.186667pt;}
.y24_c00039{bottom:543.520000pt;}
.y25_c00039{bottom:545.120000pt;}
.y22_c00039{bottom:563.386667pt;}
.y1f_c00039{bottom:580.333333pt;}
.y20_c00039{bottom:582.586667pt;}
.y21_c00039{bottom:584.453333pt;}
.y1b_c00039{bottom:599.853333pt;}
.y1c_c00039{bottom:600.786667pt;}
.y1d_c00039{bottom:603.333333pt;}
.y1e_c00039{bottom:604.000000pt;}
.y1a_c00039{bottom:621.253333pt;}
.y19_c00039{bottom:663.186667pt;}
.y18_c00039{bottom:710.186667pt;}
.y17_c00039{bottom:734.266667pt;}
.y16_c00039{bottom:746.386667pt;}
.y15_c00039{bottom:772.333333pt;}
.y14_c00039{bottom:791.466667pt;}
.y13_c00039{bottom:810.386667pt;}
.y12_c00039{bottom:827.666667pt;}
.y11_c00039{bottom:847.853333pt;}
.yf_c00039{bottom:856.186667pt;}
.y10_c00039{bottom:866.133333pt;}
.ya_c00039{bottom:874.386667pt;}
.yb_c00039{bottom:874.720000pt;}
.yd_c00039{bottom:875.333333pt;}
.y8_c00039{bottom:882.133333pt;}
.y9_c00039{bottom:893.333333pt;}
.yc_c00039{bottom:895.186667pt;}
.ye_c00039{bottom:896.133333pt;}
.y6_c00039{bottom:899.720000pt;}
.y7_c00039{bottom:912.186667pt;}
.y5_c00039{bottom:921.133333pt;}
.y1_c00039{bottom:960.800000pt;}
.y3_c00039{bottom:970.720000pt;}
.y4_c00039{bottom:973.933333pt;}
.y2_c00039{bottom:974.933333pt;}
.h3_c00039{height:41.854167pt;}
.hb_c00039{height:47.085938pt;}
.h1_c00039{height:48.375000pt;}
.h2_c00039{height:53.750000pt;}
.ha_c00039{height:57.549479pt;}
.h7_c00039{height:57.578125pt;}
.h6_c00039{height:62.812500pt;}
.h9_c00039{height:68.013021pt;}
.h5_c00039{height:68.046875pt;}
.h4_c00039{height:69.875000pt;}
.h8_c00039{height:73.244792pt;}
.hc_c00039{height:73.281250pt;}
.h0_c00039{height:1044.000000pt;}
.w0_c00039{width:650.646400pt;}
.w1_c00039{width:650.666667pt;}
.x0_c00039{left:0.000000pt;}
.x5_c00039{left:55.635733pt;}
.x6_c00039{left:56.635733pt;}
.x18_c00039{left:57.569067pt;}
.x1a_c00039{left:58.569067pt;}
.x20_c00039{left:60.169067pt;}
.x24_c00039{left:61.102400pt;}
.x25_c00039{left:69.769067pt;}
.x1_c00039{left:71.035733pt;}
.x1b_c00039{left:73.235733pt;}
.xe_c00039{left:74.235733pt;}
.xd_c00039{left:82.822400pt;}
.x2_c00039{left:86.702400pt;}
.x23_c00039{left:87.969067pt;}
.x26_c00039{left:88.969067pt;}
.x21_c00039{left:90.835733pt;}
.x27_c00039{left:94.369067pt;}
.x1c_c00039{left:97.569067pt;}
.x2d_c00039{left:105.569067pt;}
.xc_c00039{left:114.835733pt;}
.x29_c00039{left:119.635733pt;}
.x2a_c00039{left:128.635733pt;}
.x2e_c00039{left:143.035733pt;}
.x14_c00039{left:151.035733pt;}
.x22_c00039{left:202.835733pt;}
.x2f_c00039{left:213.769067pt;}
.x10_c00039{left:240.635733pt;}
.x3_c00039{left:247.035733pt;}
.x2b_c00039{left:269.435733pt;}
.x2c_c00039{left:277.769067pt;}
.x11_c00039{left:302.035733pt;}
.xf_c00039{left:311.035733pt;}
.x17_c00039{left:321.235733pt;}
.x4_c00039{left:325.102400pt;}
.x1d_c00039{left:417.569067pt;}
.x30_c00039{left:423.635733pt;}
.x7_c00039{left:448.969067pt;}
.x31_c00039{left:485.435733pt;}
.x8_c00039{left:488.635733pt;}
.x32_c00039{left:500.769067pt;}
.x15_c00039{left:507.835733pt;}
.x19_c00039{left:509.435733pt;}
.x1e_c00039{left:511.969067pt;}
.xa_c00039{left:514.235733pt;}
.x16_c00039{left:530.569067pt;}
.x12_c00039{left:538.235733pt;}
.x9_c00039{left:539.502400pt;}
.x33_c00039{left:542.702400pt;}
.x13_c00039{left:557.769067pt;}
.x1f_c00039{left:560.302400pt;}
.xb_c00039{left:582.035733pt;}
.x28_c00039{left:586.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_094747c082ed968670151bdc.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00040;src:url('chunks/assets/font_07187f399e155a43012c6465.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00040;src:url('chunks/assets/font_b9978703ac18d6c8893e3672.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00040;src:url('chunks/assets/font_675a13569345ef58bf48fb9f.woff2')format("woff");}.ff4_c00040{font-family:ff4_c00040;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1b_c00040{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m16_c00040{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m14_c00040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8_c00040{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m15_c00040{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb_c00040{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00040{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3_c00040{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00040{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00040{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c00040{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9_c00040{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c00040{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mf_c00040{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00040{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00040{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c00040{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00040{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m13_c00040{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c00040{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m17_c00040{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m19_c00040{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00040{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00040{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00040{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c00040{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c00040{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c00040{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,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:0.000000px;}
.fc0_c00040{color:transparent;}
.fs4_c00040{font-size:60.000000px;}
.fs1_c00040{font-size:66.000000px;}
.fs2_c00040{font-size:72.000000px;}
.fs3_c00040{font-size:78.000000px;}
.fs0_c00040{font-size:84.000000px;}
.y0_c00040{bottom:0.000000px;}
.y44_c00040{bottom:63.585000px;}
.y3f_c00040{bottom:78.285000px;}
.y40_c00040{bottom:80.460000px;}
.y41_c00040{bottom:81.135000px;}
.y42_c00040{bottom:83.685000px;}
.y43_c00040{bottom:86.535000px;}
.y3c_c00040{bottom:98.085000px;}
.y3d_c00040{bottom:104.910000px;}
.y3e_c00040{bottom:106.785000px;}
.y3b_c00040{bottom:115.710000px;}
.y3a_c00040{bottom:129.435000px;}
.y38_c00040{bottom:146.310000px;}
.y39_c00040{bottom:149.535000px;}
.y37_c00040{bottom:163.260000px;}
.y34_c00040{bottom:180.510000px;}
.y35_c00040{bottom:183.060000px;}
.y36_c00040{bottom:190.635000px;}
.y32_c00040{bottom:197.085000px;}
.y33_c00040{bottom:197.385000px;}
.y31_c00040{bottom:257.910000px;}
.y30_c00040{bottom:280.275000px;}
.y2f_c00040{bottom:302.535000px;}
.y2e_c00040{bottom:324.525000px;}
.y2d_c00040{bottom:346.125000px;}
.y2c_c00040{bottom:367.710000px;}
.y2b_c00040{bottom:389.025000px;}
.y2a_c00040{bottom:411.285000px;}
.y29_c00040{bottom:433.635000px;}
.y28_c00040{bottom:455.625000px;}
.y27_c00040{bottom:477.510000px;}
.y26_c00040{bottom:499.500000px;}
.y24_c00040{bottom:521.460000px;}
.y25_c00040{bottom:522.135000px;}
.y23_c00040{bottom:543.435000px;}
.y21_c00040{bottom:565.335000px;}
.y22_c00040{bottom:565.710000px;}
.y20_c00040{bottom:587.310000px;}
.y1f_c00040{bottom:609.285000px;}
.y1e_c00040{bottom:630.510000px;}
.y1d_c00040{bottom:630.885000px;}
.y1c_c00040{bottom:631.635000px;}
.y1b_c00040{bottom:652.125000px;}
.y1a_c00040{bottom:652.500000px;}
.y19_c00040{bottom:653.535000px;}
.y18_c00040{bottom:674.085000px;}
.y17_c00040{bottom:674.760000px;}
.y16_c00040{bottom:675.885000px;}
.y15_c00040{bottom:697.125000px;}
.y14_c00040{bottom:719.085000px;}
.y13_c00040{bottom:741.750000px;}
.y12_c00040{bottom:763.335000px;}
.y11_c00040{bottom:785.310000px;}
.y10_c00040{bottom:805.875000px;}
.yf_c00040{bottom:808.425000px;}
.ye_c00040{bottom:809.460000px;}
.yd_c00040{bottom:830.685000px;}
.yc_c00040{bottom:848.685000px;}
.yb_c00040{bottom:852.675000px;}
.ya_c00040{bottom:873.525000px;}
.y9_c00040{bottom:895.185000px;}
.y8_c00040{bottom:917.400000px;}
.y7_c00040{bottom:939.060000px;}
.y6_c00040{bottom:960.300000px;}
.y5_c00040{bottom:981.900000px;}
.y4_c00040{bottom:1003.500000px;}
.y3_c00040{bottom:1006.710000px;}
.y2_c00040{bottom:1018.935000px;}
.y1_c00040{bottom:1025.835000px;}
.h6_c00040{height:60.468750px;}
.h2_c00040{height:64.775391px;}
.h4_c00040{height:70.664062px;}
.h5_c00040{height:76.514648px;}
.h3_c00040{height:82.400391px;}
.h1_c00040{height:82.441406px;}
.h0_c00040{height:1174.500000px;}
.w0_c00040{width:731.977200px;}
.w1_c00040{width:732.000000px;}
.xb_c00040{left:-17.284800px;}
.x0_c00040{left:0.000000px;}
.x3_c00040{left:44.590200px;}
.x5_c00040{left:46.090200px;}
.x7_c00040{left:47.890200px;}
.x13_c00040{left:49.315200px;}
.x15_c00040{left:51.490200px;}
.x1a_c00040{left:52.915200px;}
.x1f_c00040{left:56.140200px;}
.x22_c00040{left:57.565200px;}
.x23_c00040{left:59.740200px;}
.x26_c00040{left:67.990200px;}
.x1c_c00040{left:72.715200px;}
.x20_c00040{left:74.515200px;}
.x1_c00040{left:77.740200px;}
.x8_c00040{left:79.165200px;}
.x18_c00040{left:83.515200px;}
.x19_c00040{left:85.300200px;}
.x1b_c00040{left:86.740200px;}
.x4_c00040{left:97.165200px;}
.x27_c00040{left:98.590200px;}
.x1d_c00040{left:109.765200px;}
.x21_c00040{left:111.190200px;}
.x9_c00040{left:184.690200px;}
.x11_c00040{left:196.915200px;}
.x28_c00040{left:204.115200px;}
.xc_c00040{left:291.940200px;}
.xd_c00040{left:336.565200px;}
.xa_c00040{left:346.690200px;}
.xe_c00040{left:446.740200px;}
.x6_c00040{left:450.340200px;}
.x12_c00040{left:459.340200px;}
.x16_c00040{left:480.940200px;}
.x29_c00040{left:483.490200px;}
.x2a_c00040{left:499.690200px;}
.x17_c00040{left:521.965200px;}
.xf_c00040{left:528.790200px;}
.x10_c00040{left:564.490200px;}
.x24_c00040{left:615.940200px;}
.x25_c00040{left:632.140200px;}
.x14_c00040{left:634.315200px;}
.x1e_c00040{left:640.765200px;}
.x2_c00040{left:647.590200px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls0_c00040{letter-spacing:0.000000pt;}
.ws0_c00040{word-spacing:0.000000pt;}
.fs4_c00040{font-size:53.333333pt;}
.fs1_c00040{font-size:58.666667pt;}
.fs2_c00040{font-size:64.000000pt;}
.fs3_c00040{font-size:69.333333pt;}
.fs0_c00040{font-size:74.666667pt;}
.y0_c00040{bottom:0.000000pt;}
.y44_c00040{bottom:56.520000pt;}
.y3f_c00040{bottom:69.586667pt;}
.y40_c00040{bottom:71.520000pt;}
.y41_c00040{bottom:72.120000pt;}
.y42_c00040{bottom:74.386667pt;}
.y43_c00040{bottom:76.920000pt;}
.y3c_c00040{bottom:87.186667pt;}
.y3d_c00040{bottom:93.253333pt;}
.y3e_c00040{bottom:94.920000pt;}
.y3b_c00040{bottom:102.853333pt;}
.y3a_c00040{bottom:115.053333pt;}
.y38_c00040{bottom:130.053333pt;}
.y39_c00040{bottom:132.920000pt;}
.y37_c00040{bottom:145.120000pt;}
.y34_c00040{bottom:160.453333pt;}
.y35_c00040{bottom:162.720000pt;}
.y36_c00040{bottom:169.453333pt;}
.y32_c00040{bottom:175.186667pt;}
.y33_c00040{bottom:175.453333pt;}
.y31_c00040{bottom:229.253333pt;}
.y30_c00040{bottom:249.133333pt;}
.y2f_c00040{bottom:268.920000pt;}
.y2e_c00040{bottom:288.466667pt;}
.y2d_c00040{bottom:307.666667pt;}
.y2c_c00040{bottom:326.853333pt;}
.y2b_c00040{bottom:345.800000pt;}
.y2a_c00040{bottom:365.586667pt;}
.y29_c00040{bottom:385.453333pt;}
.y28_c00040{bottom:405.000000pt;}
.y27_c00040{bottom:424.453333pt;}
.y26_c00040{bottom:444.000000pt;}
.y24_c00040{bottom:463.520000pt;}
.y25_c00040{bottom:464.120000pt;}
.y23_c00040{bottom:483.053333pt;}
.y21_c00040{bottom:502.520000pt;}
.y22_c00040{bottom:502.853333pt;}
.y20_c00040{bottom:522.053333pt;}
.y1f_c00040{bottom:541.586667pt;}
.y1e_c00040{bottom:560.453333pt;}
.y1d_c00040{bottom:560.786667pt;}
.y1c_c00040{bottom:561.453333pt;}
.y1b_c00040{bottom:579.666667pt;}
.y1a_c00040{bottom:580.000000pt;}
.y19_c00040{bottom:580.920000pt;}
.y18_c00040{bottom:599.186667pt;}
.y17_c00040{bottom:599.786667pt;}
.y16_c00040{bottom:600.786667pt;}
.y15_c00040{bottom:619.666667pt;}
.y14_c00040{bottom:639.186667pt;}
.y13_c00040{bottom:659.333333pt;}
.y12_c00040{bottom:678.520000pt;}
.y11_c00040{bottom:698.053333pt;}
.y10_c00040{bottom:716.333333pt;}
.yf_c00040{bottom:718.600000pt;}
.ye_c00040{bottom:719.520000pt;}
.yd_c00040{bottom:738.386667pt;}
.yc_c00040{bottom:754.386667pt;}
.yb_c00040{bottom:757.933333pt;}
.ya_c00040{bottom:776.466667pt;}
.y9_c00040{bottom:795.720000pt;}
.y8_c00040{bottom:815.466667pt;}
.y7_c00040{bottom:834.720000pt;}
.y6_c00040{bottom:853.600000pt;}
.y5_c00040{bottom:872.800000pt;}
.y4_c00040{bottom:892.000000pt;}
.y3_c00040{bottom:894.853333pt;}
.y2_c00040{bottom:905.720000pt;}
.y1_c00040{bottom:911.853333pt;}
.h6_c00040{height:53.750000pt;}
.h2_c00040{height:57.578125pt;}
.h4_c00040{height:62.812500pt;}
.h5_c00040{height:68.013021pt;}
.h3_c00040{height:73.244792pt;}
.h1_c00040{height:73.281250pt;}
.h0_c00040{height:1044.000000pt;}
.w0_c00040{width:650.646400pt;}
.w1_c00040{width:650.666667pt;}
.xb_c00040{left:-15.364267pt;}
.x0_c00040{left:0.000000pt;}
.x3_c00040{left:39.635733pt;}
.x5_c00040{left:40.969067pt;}
.x7_c00040{left:42.569067pt;}
.x13_c00040{left:43.835733pt;}
.x15_c00040{left:45.769067pt;}
.x1a_c00040{left:47.035733pt;}
.x1f_c00040{left:49.902400pt;}
.x22_c00040{left:51.169067pt;}
.x23_c00040{left:53.102400pt;}
.x26_c00040{left:60.435733pt;}
.x1c_c00040{left:64.635733pt;}
.x20_c00040{left:66.235733pt;}
.x1_c00040{left:69.102400pt;}
.x8_c00040{left:70.369067pt;}
.x18_c00040{left:74.235733pt;}
.x19_c00040{left:75.822400pt;}
.x1b_c00040{left:77.102400pt;}
.x4_c00040{left:86.369067pt;}
.x27_c00040{left:87.635733pt;}
.x1d_c00040{left:97.569067pt;}
.x21_c00040{left:98.835733pt;}
.x9_c00040{left:164.169067pt;}
.x11_c00040{left:175.035733pt;}
.x28_c00040{left:181.435733pt;}
.xc_c00040{left:259.502400pt;}
.xd_c00040{left:299.169067pt;}
.xa_c00040{left:308.169067pt;}
.xe_c00040{left:397.102400pt;}
.x6_c00040{left:400.302400pt;}
.x12_c00040{left:408.302400pt;}
.x16_c00040{left:427.502400pt;}
.x29_c00040{left:429.769067pt;}
.x2a_c00040{left:444.169067pt;}
.x17_c00040{left:463.969067pt;}
.xf_c00040{left:470.035733pt;}
.x10_c00040{left:501.769067pt;}
.x24_c00040{left:547.502400pt;}
.x25_c00040{left:561.902400pt;}
.x14_c00040{left:563.835733pt;}
.x1e_c00040{left:569.569067pt;}
.x2_c00040{left:575.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d099baa4f4d45697f0e36af.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00041;src:url('chunks/assets/font_26cfdb5b05ff144388b67c12.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00041;src:url('chunks/assets/font_e87d7f924508ca2cde604dd4.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00041;src:url('chunks/assets/font_7b6fa0b3a9d8506a228208ca.woff2')format("woff");}.ff4_c00041{font-family:ff4_c00041;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00041{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m17_c00041{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb_c00041{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf_c00041{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9_c00041{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.mc_c00041{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma_c00041{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1_c00041{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c00041{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4_c00041{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.me_c00041{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m12_c00041{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m15_c00041{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00041{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m16_c00041{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c00041{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00041{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c00041{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5_c00041{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00041{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m13_c00041{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c00041{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m14_c00041{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.v0_c00041{vertical-align:0.000000px;}
.ls0_c00041{letter-spacing:0.000000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00041{word-spacing:0.000000px;}
.fc0_c00041{color:transparent;}
.fs0_c00041{font-size:60.000000px;}
.fs3_c00041{font-size:72.000000px;}
.fs1_c00041{font-size:78.000000px;}
.fs2_c00041{font-size:84.000000px;}
.y0_c00041{bottom:0.000000px;}
.y3d_c00041{bottom:198.885000px;}
.y3c_c00041{bottom:205.710000px;}
.y3b_c00041{bottom:210.750000px;}
.y3a_c00041{bottom:219.060000px;}
.y39_c00041{bottom:229.125000px;}
.y38_c00041{bottom:233.460000px;}
.y37_c00041{bottom:238.125000px;}
.y36_c00041{bottom:248.535000px;}
.y35_c00041{bottom:267.660000px;}
.y34_c00041{bottom:289.650000px;}
.y33_c00041{bottom:310.875000px;}
.y32_c00041{bottom:331.335000px;}
.y31_c00041{bottom:353.685000px;}
.y30_c00041{bottom:379.650000px;}
.y2f_c00041{bottom:392.910000px;}
.y2e_c00041{bottom:396.210000px;}
.y2d_c00041{bottom:400.185000px;}
.y2c_c00041{bottom:403.035000px;}
.y2b_c00041{bottom:414.510000px;}
.y2a_c00041{bottom:420.000000px;}
.y29_c00041{bottom:441.210000px;}
.y28_c00041{bottom:462.810000px;}
.y27_c00041{bottom:484.035000px;}
.y26_c00041{bottom:507.810000px;}
.y25_c00041{bottom:528.285000px;}
.y24_c00041{bottom:549.885000px;}
.y23_c00041{bottom:571.500000px;}
.y22_c00041{bottom:593.085000px;}
.y21_c00041{bottom:614.685000px;}
.y1f_c00041{bottom:635.625000px;}
.y20_c00041{bottom:636.660000px;}
.y1e_c00041{bottom:657.885000px;}
.y1d_c00041{bottom:679.500000px;}
.y1c_c00041{bottom:701.085000px;}
.y1b_c00041{bottom:722.700000px;}
.y18_c00041{bottom:741.750000px;}
.y19_c00041{bottom:743.160000px;}
.y1a_c00041{bottom:746.085000px;}
.y17_c00041{bottom:765.585000px;}
.y16_c00041{bottom:783.510000px;}
.y15_c00041{bottom:808.335000px;}
.y14_c00041{bottom:829.275000px;}
.y13_c00041{bottom:851.250000px;}
.y12_c00041{bottom:872.460000px;}
.y11_c00041{bottom:884.025000px;}
.y10_c00041{bottom:913.500000px;}
.yf_c00041{bottom:935.460000px;}
.ye_c00041{bottom:953.085000px;}
.yc_c00041{bottom:966.060000px;}
.yd_c00041{bottom:978.300000px;}
.y8_c00041{bottom:985.500000px;}
.y9_c00041{bottom:993.060000px;}
.ya_c00041{bottom:1002.750000px;}
.yb_c00041{bottom:1004.925000px;}
.y6_c00041{bottom:1017.210000px;}
.y7_c00041{bottom:1026.150000px;}
.y2_c00041{bottom:1029.810000px;}
.y3_c00041{bottom:1036.275000px;}
.y4_c00041{bottom:1038.060000px;}
.y5_c00041{bottom:1044.900000px;}
.y3e_c00041{bottom:1084.125000px;}
.y1_c00041{bottom:1095.960000px;}
.h1_c00041{height:58.886719px;}
.h4_c00041{height:70.628906px;}
.h2_c00041{height:78.609375px;}
.h3_c00041{height:82.441406px;}
.h0_c00041{height:1174.500000px;}
.w0_c00041{width:731.977200px;}
.w1_c00041{width:732.000000px;}
.x0_c00041{left:0.000000px;}
.x1d_c00041{left:34.915200px;}
.x17_c00041{left:36.340200px;}
.x12_c00041{left:38.515200px;}
.xf_c00041{left:39.940200px;}
.xc_c00041{left:42.115200px;}
.xd_c00041{left:43.165200px;}
.x2_c00041{left:44.290200px;}
.x13_c00041{left:58.690200px;}
.x23_c00041{left:62.965200px;}
.x1c_c00041{left:66.190200px;}
.x16_c00041{left:67.690200px;}
.xe_c00041{left:69.790200px;}
.xb_c00041{left:73.090200px;}
.x7_c00041{left:80.290200px;}
.xa_c00041{left:85.675200px;}
.x19_c00041{left:188.965200px;}
.x1f_c00041{left:202.990200px;}
.x20_c00041{left:243.340200px;}
.x21_c00041{left:245.515200px;}
.x14_c00041{left:247.690200px;}
.x1_c00041{left:263.515200px;}
.x3_c00041{left:265.315200px;}
.x4_c00041{left:273.190200px;}
.x22_c00041{left:275.740200px;}
.x1a_c00041{left:279.715200px;}
.x10_c00041{left:286.915200px;}
.x11_c00041{left:319.990200px;}
.x8_c00041{left:345.190200px;}
.x5_c00041{left:353.890200px;}
.x15_c00041{left:446.740200px;}
.x1b_c00041{left:479.890200px;}
.x1e_c00041{left:492.490200px;}
.x6_c00041{left:577.390200px;}
.x9_c00041{left:602.965200px;}
.x18_c00041{left:620.590200px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls0_c00041{letter-spacing:0.000000pt;}
.ws0_c00041{word-spacing:0.000000pt;}
.fs0_c00041{font-size:53.333333pt;}
.fs3_c00041{font-size:64.000000pt;}
.fs1_c00041{font-size:69.333333pt;}
.fs2_c00041{font-size:74.666667pt;}
.y0_c00041{bottom:0.000000pt;}
.y3d_c00041{bottom:176.786667pt;}
.y3c_c00041{bottom:182.853333pt;}
.y3b_c00041{bottom:187.333333pt;}
.y3a_c00041{bottom:194.720000pt;}
.y39_c00041{bottom:203.666667pt;}
.y38_c00041{bottom:207.520000pt;}
.y37_c00041{bottom:211.666667pt;}
.y36_c00041{bottom:220.920000pt;}
.y35_c00041{bottom:237.920000pt;}
.y34_c00041{bottom:257.466667pt;}
.y33_c00041{bottom:276.333333pt;}
.y32_c00041{bottom:294.520000pt;}
.y31_c00041{bottom:314.386667pt;}
.y30_c00041{bottom:337.466667pt;}
.y2f_c00041{bottom:349.253333pt;}
.y2e_c00041{bottom:352.186667pt;}
.y2d_c00041{bottom:355.720000pt;}
.y2c_c00041{bottom:358.253333pt;}
.y2b_c00041{bottom:368.453333pt;}
.y2a_c00041{bottom:373.333333pt;}
.y29_c00041{bottom:392.186667pt;}
.y28_c00041{bottom:411.386667pt;}
.y27_c00041{bottom:430.253333pt;}
.y26_c00041{bottom:451.386667pt;}
.y25_c00041{bottom:469.586667pt;}
.y24_c00041{bottom:488.786667pt;}
.y23_c00041{bottom:508.000000pt;}
.y22_c00041{bottom:527.186667pt;}
.y21_c00041{bottom:546.386667pt;}
.y1f_c00041{bottom:565.000000pt;}
.y20_c00041{bottom:565.920000pt;}
.y1e_c00041{bottom:584.786667pt;}
.y1d_c00041{bottom:604.000000pt;}
.y1c_c00041{bottom:623.186667pt;}
.y1b_c00041{bottom:642.400000pt;}
.y18_c00041{bottom:659.333333pt;}
.y19_c00041{bottom:660.586667pt;}
.y1a_c00041{bottom:663.186667pt;}
.y17_c00041{bottom:680.520000pt;}
.y16_c00041{bottom:696.453333pt;}
.y15_c00041{bottom:718.520000pt;}
.y14_c00041{bottom:737.133333pt;}
.y13_c00041{bottom:756.666667pt;}
.y12_c00041{bottom:775.520000pt;}
.y11_c00041{bottom:785.800000pt;}
.y10_c00041{bottom:812.000000pt;}
.yf_c00041{bottom:831.520000pt;}
.ye_c00041{bottom:847.186667pt;}
.yc_c00041{bottom:858.720000pt;}
.yd_c00041{bottom:869.600000pt;}
.y8_c00041{bottom:876.000000pt;}
.y9_c00041{bottom:882.720000pt;}
.ya_c00041{bottom:891.333333pt;}
.yb_c00041{bottom:893.266667pt;}
.y6_c00041{bottom:904.186667pt;}
.y7_c00041{bottom:912.133333pt;}
.y2_c00041{bottom:915.386667pt;}
.y3_c00041{bottom:921.133333pt;}
.y4_c00041{bottom:922.720000pt;}
.y5_c00041{bottom:928.800000pt;}
.y3e_c00041{bottom:963.666667pt;}
.y1_c00041{bottom:974.186667pt;}
.h1_c00041{height:52.343750pt;}
.h4_c00041{height:62.781250pt;}
.h2_c00041{height:69.875000pt;}
.h3_c00041{height:73.281250pt;}
.h0_c00041{height:1044.000000pt;}
.w0_c00041{width:650.646400pt;}
.w1_c00041{width:650.666667pt;}
.x0_c00041{left:0.000000pt;}
.x1d_c00041{left:31.035733pt;}
.x17_c00041{left:32.302400pt;}
.x12_c00041{left:34.235733pt;}
.xf_c00041{left:35.502400pt;}
.xc_c00041{left:37.435733pt;}
.xd_c00041{left:38.369067pt;}
.x2_c00041{left:39.369067pt;}
.x13_c00041{left:52.169067pt;}
.x23_c00041{left:55.969067pt;}
.x1c_c00041{left:58.835733pt;}
.x16_c00041{left:60.169067pt;}
.xe_c00041{left:62.035733pt;}
.xb_c00041{left:64.969067pt;}
.x7_c00041{left:71.369067pt;}
.xa_c00041{left:76.155733pt;}
.x19_c00041{left:167.969067pt;}
.x1f_c00041{left:180.435733pt;}
.x20_c00041{left:216.302400pt;}
.x21_c00041{left:218.235733pt;}
.x14_c00041{left:220.169067pt;}
.x1_c00041{left:234.235733pt;}
.x3_c00041{left:235.835733pt;}
.x4_c00041{left:242.835733pt;}
.x22_c00041{left:245.102400pt;}
.x1a_c00041{left:248.635733pt;}
.x10_c00041{left:255.035733pt;}
.x11_c00041{left:284.435733pt;}
.x8_c00041{left:306.835733pt;}
.x5_c00041{left:314.569067pt;}
.x15_c00041{left:397.102400pt;}
.x1b_c00041{left:426.569067pt;}
.x1e_c00041{left:437.769067pt;}
.x6_c00041{left:513.235733pt;}
.x9_c00041{left:535.969067pt;}
.x18_c00041{left:551.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95060ac3025171ce518336f5.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00042;src:url('chunks/assets/font_fb8a6bae4424537bfa792bf5.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00042;src:url('chunks/assets/font_0e61e43db1d07efa941213dd.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00042;src:url('chunks/assets/font_05354ed479b49d28860a7fe8.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00042{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2_c00042{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m11_c00042{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc_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);}
.m0_c00042{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma_c00042{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c00042{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_c00042{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4_c00042{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00042{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00042{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c00042{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c00042{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c00042{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me_c00042{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00042{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00042{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m18_c00042{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c00042{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c00042{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17_c00042{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00042{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c00042{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c00042{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00042{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.ls0_c00042{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00042{color:transparent;}
.fs1_c00042{font-size:66.000000px;}
.fs0_c00042{font-size:84.000000px;}
.y0_c00042{bottom:0.000000px;}
.y3d_c00042{bottom:56.685000px;}
.y3c_c00042{bottom:57.375000px;}
.y3b_c00042{bottom:74.685000px;}
.y3a_c00042{bottom:90.210000px;}
.y40_c00042{bottom:94.500000px;}
.y39_c00042{bottom:107.085000px;}
.y38_c00042{bottom:109.260000px;}
.y3f_c00042{bottom:111.750000px;}
.y37_c00042{bottom:124.335000px;}
.y36_c00042{bottom:140.625000px;}
.y3e_c00042{bottom:145.260000px;}
.y35_c00042{bottom:157.500000px;}
.y34_c00042{bottom:159.660000px;}
.y33_c00042{bottom:207.510000px;}
.y32_c00042{bottom:228.435000px;}
.y31_c00042{bottom:251.085000px;}
.y30_c00042{bottom:272.685000px;}
.y2f_c00042{bottom:294.285000px;}
.y2e_c00042{bottom:316.275000px;}
.y2d_c00042{bottom:337.500000px;}
.y2c_c00042{bottom:359.460000px;}
.y2b_c00042{bottom:381.750000px;}
.y2a_c00042{bottom:402.960000px;}
.y29_c00042{bottom:424.935000px;}
.y28_c00042{bottom:447.000000px;}
.y27_c00042{bottom:469.260000px;}
.y26_c00042{bottom:491.535000px;}
.y25_c00042{bottom:513.210000px;}
.y24_c00042{bottom:535.500000px;}
.y23_c00042{bottom:557.085000px;}
.y22_c00042{bottom:579.060000px;}
.y21_c00042{bottom:600.660000px;}
.y20_c00042{bottom:623.310000px;}
.y1f_c00042{bottom:644.160000px;}
.y1e_c00042{bottom:644.535000px;}
.y1d_c00042{bottom:666.885000px;}
.y1c_c00042{bottom:688.875000px;}
.y1b_c00042{bottom:710.385000px;}
.y1a_c00042{bottom:711.510000px;}
.y19_c00042{bottom:711.885000px;}
.y18_c00042{bottom:732.750000px;}
.y17_c00042{bottom:755.085000px;}
.y16_c00042{bottom:777.435000px;}
.y15_c00042{bottom:800.460000px;}
.y14_c00042{bottom:819.150000px;}
.y13_c00042{bottom:822.375000px;}
.y12_c00042{bottom:842.925000px;}
.y11_c00042{bottom:866.310000px;}
.y10_c00042{bottom:885.000000px;}
.yf_c00042{bottom:887.925000px;}
.yd_c00042{bottom:888.300000px;}
.ye_c00042{bottom:888.675000px;}
.yc_c00042{bottom:904.500000px;}
.yb_c00042{bottom:905.550000px;}
.ya_c00042{bottom:905.925000px;}
.y9_c00042{bottom:907.335000px;}
.y8_c00042{bottom:909.525000px;}
.y6_c00042{bottom:910.185000px;}
.y7_c00042{bottom:910.275000px;}
.y5_c00042{bottom:910.650000px;}
.y4_c00042{bottom:925.710000px;}
.y3_c00042{bottom:927.900000px;}
.y2_c00042{bottom:931.500000px;}
.y1_c00042{bottom:951.675000px;}
.h4_c00042{height:64.775391px;}
.h2_c00042{height:82.400391px;}
.h3_c00042{height:82.441406px;}
.h1_c00042{height:84.656250px;}
.h0_c00042{height:1174.500000px;}
.w0_c00042{width:731.977200px;}
.w1_c00042{width:732.000000px;}
.x0_c00042{left:0.000000px;}
.x13_c00042{left:35.950200px;}
.x1a_c00042{left:38.515200px;}
.x17_c00042{left:39.940200px;}
.xd_c00042{left:41.365200px;}
.x2_c00042{left:42.790200px;}
.x1c_c00042{left:59.365200px;}
.x1e_c00042{left:67.315200px;}
.x1b_c00042{left:71.590200px;}
.x19_c00042{left:73.090200px;}
.x11_c00042{left:74.515200px;}
.x1_c00042{left:75.925200px;}
.x18_c00042{left:93.175200px;}
.x1d_c00042{left:96.115200px;}
.x1f_c00042{left:97.915200px;}
.x5_c00042{left:103.990200px;}
.xe_c00042{left:106.915200px;}
.x14_c00042{left:129.940200px;}
.x6_c00042{left:179.965200px;}
.xf_c00042{left:184.990200px;}
.x7_c00042{left:199.750200px;}
.x8_c00042{left:262.390200px;}
.x15_c00042{left:311.740200px;}
.x10_c00042{left:314.965200px;}
.x9_c00042{left:371.515200px;}
.x12_c00042{left:405.715200px;}
.x3_c00042{left:458.590200px;}
.xa_c00042{left:543.565200px;}
.xb_c00042{left:569.515200px;}
.x20_c00042{left:577.090200px;}
.x21_c00042{left:580.690200px;}
.x22_c00042{left:582.115200px;}
.xc_c00042{left:600.115200px;}
.x16_c00042{left:611.965200px;}
.x4_c00042{left:616.315200px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls0_c00042{letter-spacing:0.000000pt;}
.ws0_c00042{word-spacing:0.000000pt;}
.fs1_c00042{font-size:58.666667pt;}
.fs0_c00042{font-size:74.666667pt;}
.y0_c00042{bottom:0.000000pt;}
.y3d_c00042{bottom:50.386667pt;}
.y3c_c00042{bottom:51.000000pt;}
.y3b_c00042{bottom:66.386667pt;}
.y3a_c00042{bottom:80.186667pt;}
.y40_c00042{bottom:84.000000pt;}
.y39_c00042{bottom:95.186667pt;}
.y38_c00042{bottom:97.120000pt;}
.y3f_c00042{bottom:99.333333pt;}
.y37_c00042{bottom:110.520000pt;}
.y36_c00042{bottom:125.000000pt;}
.y3e_c00042{bottom:129.120000pt;}
.y35_c00042{bottom:140.000000pt;}
.y34_c00042{bottom:141.920000pt;}
.y33_c00042{bottom:184.453333pt;}
.y32_c00042{bottom:203.053333pt;}
.y31_c00042{bottom:223.186667pt;}
.y30_c00042{bottom:242.386667pt;}
.y2f_c00042{bottom:261.586667pt;}
.y2e_c00042{bottom:281.133333pt;}
.y2d_c00042{bottom:300.000000pt;}
.y2c_c00042{bottom:319.520000pt;}
.y2b_c00042{bottom:339.333333pt;}
.y2a_c00042{bottom:358.186667pt;}
.y29_c00042{bottom:377.720000pt;}
.y28_c00042{bottom:397.333333pt;}
.y27_c00042{bottom:417.120000pt;}
.y26_c00042{bottom:436.920000pt;}
.y25_c00042{bottom:456.186667pt;}
.y24_c00042{bottom:476.000000pt;}
.y23_c00042{bottom:495.186667pt;}
.y22_c00042{bottom:514.720000pt;}
.y21_c00042{bottom:533.920000pt;}
.y20_c00042{bottom:554.053333pt;}
.y1f_c00042{bottom:572.586667pt;}
.y1e_c00042{bottom:572.920000pt;}
.y1d_c00042{bottom:592.786667pt;}
.y1c_c00042{bottom:612.333333pt;}
.y1b_c00042{bottom:631.453333pt;}
.y1a_c00042{bottom:632.453333pt;}
.y19_c00042{bottom:632.786667pt;}
.y18_c00042{bottom:651.333333pt;}
.y17_c00042{bottom:671.186667pt;}
.y16_c00042{bottom:691.053333pt;}
.y15_c00042{bottom:711.520000pt;}
.y14_c00042{bottom:728.133333pt;}
.y13_c00042{bottom:731.000000pt;}
.y12_c00042{bottom:749.266667pt;}
.y11_c00042{bottom:770.053333pt;}
.y10_c00042{bottom:786.666667pt;}
.yf_c00042{bottom:789.266667pt;}
.yd_c00042{bottom:789.600000pt;}
.ye_c00042{bottom:789.933333pt;}
.yc_c00042{bottom:804.000000pt;}
.yb_c00042{bottom:804.933333pt;}
.ya_c00042{bottom:805.266667pt;}
.y9_c00042{bottom:806.520000pt;}
.y8_c00042{bottom:808.466667pt;}
.y6_c00042{bottom:809.053333pt;}
.y7_c00042{bottom:809.133333pt;}
.y5_c00042{bottom:809.466667pt;}
.y4_c00042{bottom:822.853333pt;}
.y3_c00042{bottom:824.800000pt;}
.y2_c00042{bottom:828.000000pt;}
.y1_c00042{bottom:845.933333pt;}
.h4_c00042{height:57.578125pt;}
.h2_c00042{height:73.244792pt;}
.h3_c00042{height:73.281250pt;}
.h1_c00042{height:75.250000pt;}
.h0_c00042{height:1044.000000pt;}
.w0_c00042{width:650.646400pt;}
.w1_c00042{width:650.666667pt;}
.x0_c00042{left:0.000000pt;}
.x13_c00042{left:31.955733pt;}
.x1a_c00042{left:34.235733pt;}
.x17_c00042{left:35.502400pt;}
.xd_c00042{left:36.769067pt;}
.x2_c00042{left:38.035733pt;}
.x1c_c00042{left:52.769067pt;}
.x1e_c00042{left:59.835733pt;}
.x1b_c00042{left:63.635733pt;}
.x19_c00042{left:64.969067pt;}
.x11_c00042{left:66.235733pt;}
.x1_c00042{left:67.489067pt;}
.x18_c00042{left:82.822400pt;}
.x1d_c00042{left:85.435733pt;}
.x1f_c00042{left:87.035733pt;}
.x5_c00042{left:92.435733pt;}
.xe_c00042{left:95.035733pt;}
.x14_c00042{left:115.502400pt;}
.x6_c00042{left:159.969067pt;}
.xf_c00042{left:164.435733pt;}
.x7_c00042{left:177.555733pt;}
.x8_c00042{left:233.235733pt;}
.x15_c00042{left:277.102400pt;}
.x10_c00042{left:279.969067pt;}
.x9_c00042{left:330.235733pt;}
.x12_c00042{left:360.635733pt;}
.x3_c00042{left:407.635733pt;}
.xa_c00042{left:483.169067pt;}
.xb_c00042{left:506.235733pt;}
.x20_c00042{left:512.969067pt;}
.x21_c00042{left:516.169067pt;}
.x22_c00042{left:517.435733pt;}
.xc_c00042{left:533.435733pt;}
.x16_c00042{left:543.969067pt;}
.x4_c00042{left:547.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2aca8185da362d5a4526a8b6.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00043;src:url('chunks/assets/font_ab187a0194cb3e09f1b62aa7.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00043{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m10_c00043{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c00043{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00043{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4_c00043{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c00043{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma_c00043{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8_c00043{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00043{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00043{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00043{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2_c00043{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00043{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00043{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c00043{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5_c00043{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c00043{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00043{color:transparent;}
.fs1_c00043{font-size:54.000000px;}
.fs2_c00043{font-size:66.000000px;}
.fs0_c00043{font-size:78.000000px;}
.y0_c00043{bottom:0.000000px;}
.y15_c00043{bottom:790.710000px;}
.y14_c00043{bottom:810.150000px;}
.y13_c00043{bottom:831.435000px;}
.y12_c00043{bottom:832.500000px;}
.y11_c00043{bottom:847.275000px;}
.y10_c00043{bottom:852.300000px;}
.yf_c00043{bottom:852.960000px;}
.ye_c00043{bottom:853.050000px;}
.yd_c00043{bottom:873.900000px;}
.yc_c00043{bottom:895.185000px;}
.yb_c00043{bottom:916.050000px;}
.ya_c00043{bottom:937.650000px;}
.y9_c00043{bottom:958.875000px;}
.y8_c00043{bottom:980.460000px;}
.y7_c00043{bottom:1001.025000px;}
.y6_c00043{bottom:1021.125000px;}
.y5_c00043{bottom:1022.550000px;}
.y4_c00043{bottom:1043.085000px;}
.y1_c00043{bottom:1094.925000px;}
.y2_c00043{bottom:1095.300000px;}
.y3_c00043{bottom:1101.435000px;}
.h2_c00043{height:52.998047px;}
.h3_c00043{height:64.775391px;}
.h4_c00043{height:66.515625px;}
.h1_c00043{height:76.552734px;}
.h0_c00043{height:1174.500000px;}
.w0_c00043{width:731.977200px;}
.w1_c00043{width:732.000000px;}
.x0_c00043{left:0.000000px;}
.x10_c00043{left:58.990200px;}
.xe_c00043{left:60.790200px;}
.xa_c00043{left:62.290200px;}
.x9_c00043{left:63.340200px;}
.x7_c00043{left:65.515200px;}
.x6_c00043{left:66.565200px;}
.x4_c00043{left:68.740200px;}
.x1_c00043{left:88.915200px;}
.x8_c00043{left:94.315200px;}
.x2_c00043{left:107.290200px;}
.xf_c00043{left:272.890200px;}
.x3_c00043{left:289.390200px;}
.xb_c00043{left:414.340200px;}
.xc_c00043{left:445.690200px;}
.xd_c00043{left:627.490200px;}
.x5_c00043{left:662.740200px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls0_c00043{letter-spacing:0.000000pt;}
.ws0_c00043{word-spacing:0.000000pt;}
.fs1_c00043{font-size:48.000000pt;}
.fs2_c00043{font-size:58.666667pt;}
.fs0_c00043{font-size:69.333333pt;}
.y0_c00043{bottom:0.000000pt;}
.y15_c00043{bottom:702.853333pt;}
.y14_c00043{bottom:720.133333pt;}
.y13_c00043{bottom:739.053333pt;}
.y12_c00043{bottom:740.000000pt;}
.y11_c00043{bottom:753.133333pt;}
.y10_c00043{bottom:757.600000pt;}
.yf_c00043{bottom:758.186667pt;}
.ye_c00043{bottom:758.266667pt;}
.yd_c00043{bottom:776.800000pt;}
.yc_c00043{bottom:795.720000pt;}
.yb_c00043{bottom:814.266667pt;}
.ya_c00043{bottom:833.466667pt;}
.y9_c00043{bottom:852.333333pt;}
.y8_c00043{bottom:871.520000pt;}
.y7_c00043{bottom:889.800000pt;}
.y6_c00043{bottom:907.666667pt;}
.y5_c00043{bottom:908.933333pt;}
.y4_c00043{bottom:927.186667pt;}
.y1_c00043{bottom:973.266667pt;}
.y2_c00043{bottom:973.600000pt;}
.y3_c00043{bottom:979.053333pt;}
.h2_c00043{height:47.109375pt;}
.h3_c00043{height:57.578125pt;}
.h4_c00043{height:59.125000pt;}
.h1_c00043{height:68.046875pt;}
.h0_c00043{height:1044.000000pt;}
.w0_c00043{width:650.646400pt;}
.w1_c00043{width:650.666667pt;}
.x0_c00043{left:0.000000pt;}
.x10_c00043{left:52.435733pt;}
.xe_c00043{left:54.035733pt;}
.xa_c00043{left:55.369067pt;}
.x9_c00043{left:56.302400pt;}
.x7_c00043{left:58.235733pt;}
.x6_c00043{left:59.169067pt;}
.x4_c00043{left:61.102400pt;}
.x1_c00043{left:79.035733pt;}
.x8_c00043{left:83.835733pt;}
.x2_c00043{left:95.369067pt;}
.xf_c00043{left:242.569067pt;}
.x3_c00043{left:257.235733pt;}
.xb_c00043{left:368.302400pt;}
.xc_c00043{left:396.169067pt;}
.xd_c00043{left:557.769067pt;}
.x5_c00043{left:589.102400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b97dd779e99157b8f7f85ea1.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00044;src:url('chunks/assets/font_93f7b3b267fa7c426d2eed2b.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00044{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2_c00044{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00044{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,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:0.000000px;}
.fc0_c00044{color:transparent;}
.fs2_c00044{font-size:132.000000px;}
.fs1_c00044{font-size:144.000000px;}
.fs0_c00044{font-size:186.000000px;}
.y0_c00044{bottom:0.000000px;}
.y3_c00044{bottom:450.885000px;}
.y2_c00044{bottom:569.310000px;}
.y1_c00044{bottom:741.750000px;}
.h3_c00044{height:133.031250px;}
.h2_c00044{height:145.125000px;}
.h1_c00044{height:182.548828px;}
.h0_c00044{height:1174.500000px;}
.w0_c00044{width:731.977200px;}
.w1_c00044{width:732.000000px;}
.x0_c00044{left:0.000000px;}
.x1_c00044{left:78.790200px;}
.x3_c00044{left:200.125200px;}
.x2_c00044{left:257.365200px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls0_c00044{letter-spacing:0.000000pt;}
.ws0_c00044{word-spacing:0.000000pt;}
.fs2_c00044{font-size:117.333333pt;}
.fs1_c00044{font-size:128.000000pt;}
.fs0_c00044{font-size:165.333333pt;}
.y0_c00044{bottom:0.000000pt;}
.y3_c00044{bottom:400.786667pt;}
.y2_c00044{bottom:506.053333pt;}
.y1_c00044{bottom:659.333333pt;}
.h3_c00044{height:118.250000pt;}
.h2_c00044{height:129.000000pt;}
.h1_c00044{height:162.265625pt;}
.h0_c00044{height:1044.000000pt;}
.w0_c00044{width:650.646400pt;}
.w1_c00044{width:650.666667pt;}
.x0_c00044{left:0.000000pt;}
.x1_c00044{left:70.035733pt;}
.x3_c00044{left:177.889067pt;}
.x2_c00044{left:228.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0156d168665cc14ecbe3e52b.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00045{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m0_c00045{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.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:0.000000px;}
.fc0_c00045{color:transparent;}
.fs0_c00045{font-size:60.000000px;}
.y0_c00045{bottom:0.000000px;}
.y2_c00045{bottom:224.085000px;}
.y1_c00045{bottom:874.935000px;}
.h1_c00045{height:61.670545px;}
.h0_c00045{height:1174.500000px;}
.w0_c00045{width:731.977200px;}
.w1_c00045{width:732.000000px;}
.x0_c00045{left:0.000000px;}
.x1_c00045{left:493.165200px;}
.x2_c00045{left:605.890200px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls0_c00045{letter-spacing:0.000000pt;}
.ws0_c00045{word-spacing:0.000000pt;}
.fs0_c00045{font-size:53.333333pt;}
.y0_c00045{bottom:0.000000pt;}
.y2_c00045{bottom:199.186667pt;}
.y1_c00045{bottom:777.720000pt;}
.h1_c00045{height:54.818262pt;}
.h0_c00045{height:1044.000000pt;}
.w0_c00045{width:650.646400pt;}
.w1_c00045{width:650.666667pt;}
.x0_c00045{left:0.000000pt;}
.x1_c00045{left:438.369067pt;}
.x2_c00045{left:538.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e6edde583069595e87b2c3d0.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00046;src:url('chunks/assets/font_03a753374bb4bb2e0305c23d.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00046;src:url('chunks/assets/font_7ea88874128cb85b4ede51fc.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00046;src:url('chunks/assets/font_e789c22c9ccc070f9940c60a.woff2')format("woff");}.ff4_c00046{font-family:ff4_c00046;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1b_c00046{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m11_c00046{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m19_c00046{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c00046{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00046{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00046{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00046{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00046{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00046{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c00046{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c00046{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8_c00046{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c00046{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00046{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00046{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c00046{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c00046{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c00046{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00046{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00046{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3_c00046{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00046{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c00046{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00046{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00046{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m16_c00046{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m9_c00046{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7_c00046{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.ls0_c00046{letter-spacing:0.000000px;}
.sc__c00046{text-shadow:none;}
.sc0_c00046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00046{-webkit-text-stroke:0px transparent;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00046{word-spacing:0.000000px;}
.fc0_c00046{color:transparent;}
.fs3_c00046{font-size:60.000000px;}
.fs1_c00046{font-size:66.000000px;}
.fs2_c00046{font-size:72.000000px;}
.fs4_c00046{font-size:84.000000px;}
.fs0_c00046{font-size:132.000000px;}
.y0_c00046{bottom:0.000000px;}
.y35_c00046{bottom:64.635000px;}
.y34_c00046{bottom:84.435000px;}
.y32_c00046{bottom:101.685000px;}
.y31_c00046{bottom:102.000000px;}
.y33_c00046{bottom:104.250000px;}
.y30_c00046{bottom:118.935000px;}
.y2a_c00046{bottom:134.460000px;}
.y2b_c00046{bottom:135.135000px;}
.y2c_c00046{bottom:135.585000px;}
.y2d_c00046{bottom:137.010000px;}
.y2e_c00046{bottom:139.185000px;}
.y2f_c00046{bottom:139.500000px;}
.y29_c00046{bottom:152.085000px;}
.y28_c00046{bottom:168.585000px;}
.y27_c00046{bottom:186.000000px;}
.y25_c00046{bottom:201.375000px;}
.y24_c00046{bottom:202.500000px;}
.y26_c00046{bottom:205.335000px;}
.y23_c00046{bottom:219.000000px;}
.y22_c00046{bottom:234.885000px;}
.y21_c00046{bottom:252.585000px;}
.y20_c00046{bottom:253.650000px;}
.y1f_c00046{bottom:269.775000px;}
.y1e_c00046{bottom:286.785000px;}
.y1d_c00046{bottom:304.035000px;}
.y1a_c00046{bottom:320.625000px;}
.y1b_c00046{bottom:321.000000px;}
.y1c_c00046{bottom:321.660000px;}
.y19_c00046{bottom:322.035000px;}
.y18_c00046{bottom:404.460000px;}
.y17_c00046{bottom:405.210000px;}
.y16_c00046{bottom:406.275000px;}
.y14_c00046{bottom:426.435000px;}
.y15_c00046{bottom:426.750000px;}
.y13_c00046{bottom:448.710000px;}
.y11_c00046{bottom:469.935000px;}
.y12_c00046{bottom:470.010000px;}
.y10_c00046{bottom:471.060000px;}
.yf_c00046{bottom:471.435000px;}
.ye_c00046{bottom:491.910000px;}
.yd_c00046{bottom:492.285000px;}
.yc_c00046{bottom:493.035000px;}
.yb_c00046{bottom:493.335000px;}
.ya_c00046{bottom:512.460000px;}
.y9_c00046{bottom:513.510000px;}
.y8_c00046{bottom:599.910000px;}
.y7_c00046{bottom:615.435000px;}
.y6_c00046{bottom:630.885000px;}
.y5_c00046{bottom:633.810000px;}
.y4_c00046{bottom:650.685000px;}
.y3_c00046{bottom:665.835000px;}
.y2_c00046{bottom:669.375000px;}
.y1_c00046{bottom:876.375000px;}
.h6_c00046{height:58.857422px;}
.h2_c00046{height:64.775391px;}
.h3_c00046{height:66.515625px;}
.h5_c00046{height:70.628906px;}
.h4_c00046{height:70.664062px;}
.h7_c00046{height:82.441406px;}
.h1_c00046{height:133.031250px;}
.h0_c00046{height:1174.500000px;}
.w0_c00046{width:731.977200px;}
.w1_c00046{width:732.000000px;}
.x0_c00046{left:0.000000px;}
.x2_c00046{left:50.365200px;}
.x8_c00046{left:52.165200px;}
.x11_c00046{left:53.590200px;}
.x18_c00046{left:55.765200px;}
.x1e_c00046{left:57.565200px;}
.x9_c00046{left:73.765200px;}
.x23_c00046{left:75.925200px;}
.x4_c00046{left:77.740200px;}
.x15_c00046{left:81.340200px;}
.x1a_c00046{left:82.390200px;}
.x1d_c00046{left:83.515200px;}
.x6_c00046{left:85.675200px;}
.xd_c00046{left:87.115200px;}
.x24_c00046{left:113.740200px;}
.x13_c00046{left:115.165200px;}
.xe_c00046{left:116.590200px;}
.x16_c00046{left:119.140200px;}
.x1b_c00046{left:125.290200px;}
.xa_c00046{left:132.490200px;}
.x19_c00046{left:164.140200px;}
.xf_c00046{left:172.090200px;}
.x14_c00046{left:204.790200px;}
.x1_c00046{left:214.915200px;}
.x10_c00046{left:256.315200px;}
.xb_c00046{left:261.715200px;}
.x17_c00046{left:284.365200px;}
.xc_c00046{left:370.390200px;}
.x1f_c00046{left:378.715200px;}
.x20_c00046{left:394.900200px;}
.x3_c00046{left:456.115200px;}
.x5_c00046{left:503.965200px;}
.x25_c00046{left:523.090200px;}
.x1c_c00046{left:526.990200px;}
.x21_c00046{left:595.390200px;}
.x26_c00046{left:604.390200px;}
.x7_c00046{left:638.290200px;}
.x12_c00046{left:656.965200px;}
.x22_c00046{left:669.940200px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls0_c00046{letter-spacing:0.000000pt;}
.ws0_c00046{word-spacing:0.000000pt;}
.fs3_c00046{font-size:53.333333pt;}
.fs1_c00046{font-size:58.666667pt;}
.fs2_c00046{font-size:64.000000pt;}
.fs4_c00046{font-size:74.666667pt;}
.fs0_c00046{font-size:117.333333pt;}
.y0_c00046{bottom:0.000000pt;}
.y35_c00046{bottom:57.453333pt;}
.y34_c00046{bottom:75.053333pt;}
.y32_c00046{bottom:90.386667pt;}
.y31_c00046{bottom:90.666667pt;}
.y33_c00046{bottom:92.666667pt;}
.y30_c00046{bottom:105.720000pt;}
.y2a_c00046{bottom:119.520000pt;}
.y2b_c00046{bottom:120.120000pt;}
.y2c_c00046{bottom:120.520000pt;}
.y2d_c00046{bottom:121.786667pt;}
.y2e_c00046{bottom:123.720000pt;}
.y2f_c00046{bottom:124.000000pt;}
.y29_c00046{bottom:135.186667pt;}
.y28_c00046{bottom:149.853333pt;}
.y27_c00046{bottom:165.333333pt;}
.y25_c00046{bottom:179.000000pt;}
.y24_c00046{bottom:180.000000pt;}
.y26_c00046{bottom:182.520000pt;}
.y23_c00046{bottom:194.666667pt;}
.y22_c00046{bottom:208.786667pt;}
.y21_c00046{bottom:224.520000pt;}
.y20_c00046{bottom:225.466667pt;}
.y1f_c00046{bottom:239.800000pt;}
.y1e_c00046{bottom:254.920000pt;}
.y1d_c00046{bottom:270.253333pt;}
.y1a_c00046{bottom:285.000000pt;}
.y1b_c00046{bottom:285.333333pt;}
.y1c_c00046{bottom:285.920000pt;}
.y19_c00046{bottom:286.253333pt;}
.y18_c00046{bottom:359.520000pt;}
.y17_c00046{bottom:360.186667pt;}
.y16_c00046{bottom:361.133333pt;}
.y14_c00046{bottom:379.053333pt;}
.y15_c00046{bottom:379.333333pt;}
.y13_c00046{bottom:398.853333pt;}
.y11_c00046{bottom:417.720000pt;}
.y12_c00046{bottom:417.786667pt;}
.y10_c00046{bottom:418.720000pt;}
.yf_c00046{bottom:419.053333pt;}
.ye_c00046{bottom:437.253333pt;}
.yd_c00046{bottom:437.586667pt;}
.yc_c00046{bottom:438.253333pt;}
.yb_c00046{bottom:438.520000pt;}
.ya_c00046{bottom:455.520000pt;}
.y9_c00046{bottom:456.453333pt;}
.y8_c00046{bottom:533.253333pt;}
.y7_c00046{bottom:547.053333pt;}
.y6_c00046{bottom:560.786667pt;}
.y5_c00046{bottom:563.386667pt;}
.y4_c00046{bottom:578.386667pt;}
.y3_c00046{bottom:591.853333pt;}
.y2_c00046{bottom:595.000000pt;}
.y1_c00046{bottom:779.000000pt;}
.h6_c00046{height:52.317708pt;}
.h2_c00046{height:57.578125pt;}
.h3_c00046{height:59.125000pt;}
.h5_c00046{height:62.781250pt;}
.h4_c00046{height:62.812500pt;}
.h7_c00046{height:73.281250pt;}
.h1_c00046{height:118.250000pt;}
.h0_c00046{height:1044.000000pt;}
.w0_c00046{width:650.646400pt;}
.w1_c00046{width:650.666667pt;}
.x0_c00046{left:0.000000pt;}
.x2_c00046{left:44.769067pt;}
.x8_c00046{left:46.369067pt;}
.x11_c00046{left:47.635733pt;}
.x18_c00046{left:49.569067pt;}
.x1e_c00046{left:51.169067pt;}
.x9_c00046{left:65.569067pt;}
.x23_c00046{left:67.489067pt;}
.x4_c00046{left:69.102400pt;}
.x15_c00046{left:72.302400pt;}
.x1a_c00046{left:73.235733pt;}
.x1d_c00046{left:74.235733pt;}
.x6_c00046{left:76.155733pt;}
.xd_c00046{left:77.435733pt;}
.x24_c00046{left:101.102400pt;}
.x13_c00046{left:102.369067pt;}
.xe_c00046{left:103.635733pt;}
.x16_c00046{left:105.902400pt;}
.x1b_c00046{left:111.369067pt;}
.xa_c00046{left:117.769067pt;}
.x19_c00046{left:145.902400pt;}
.xf_c00046{left:152.969067pt;}
.x14_c00046{left:182.035733pt;}
.x1_c00046{left:191.035733pt;}
.x10_c00046{left:227.835733pt;}
.xb_c00046{left:232.635733pt;}
.x17_c00046{left:252.769067pt;}
.xc_c00046{left:329.235733pt;}
.x1f_c00046{left:336.635733pt;}
.x20_c00046{left:351.022400pt;}
.x3_c00046{left:405.435733pt;}
.x5_c00046{left:447.969067pt;}
.x25_c00046{left:464.969067pt;}
.x1c_c00046{left:468.435733pt;}
.x21_c00046{left:529.235733pt;}
.x26_c00046{left:537.235733pt;}
.x7_c00046{left:567.369067pt;}
.x12_c00046{left:583.969067pt;}
.x22_c00046{left:595.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b3d15fdd4ac0296cd755ca1.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00047;src:url('chunks/assets/font_b471c33a39f0f6e017a6c9a8.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00047;src:url('chunks/assets/font_2cddb1e45644abb49a323357.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00047{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00047{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00047{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00047{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m5_c00047{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m31_c00047{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m16_c00047{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m30_c00047{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m24_c00047{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00047{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m25_c00047{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m11_c00047{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m23_c00047{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m28_c00047{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m29_c00047{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00047{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m20_c00047{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00047{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00047{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1f_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);}
.m22_c00047{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m15_c00047{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m26_c00047{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m10_c00047{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4_c00047{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m27_c00047{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m18_c00047{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00047{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00047{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf_c00047{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c00047{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c00047{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1_c00047{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m19_c00047{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c00047{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00047{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c00047{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c00047{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c00047{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00047{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m35_c00047{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m32_c00047{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00047{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00047{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00047{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c00047{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m33_c00047{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00047{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m21_c00047{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c00047{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00047{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m17_c00047{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m34_c00047{transform:matrix(2.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.225000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00047{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v1_c00047{vertical-align:-18.600000px;}
.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:0.000000px;}
._0_c00047{width:38.999896px;}
.fc0_c00047{color:transparent;}
.fs6_c00047{font-size:54.000000px;}
.fs0_c00047{font-size:60.000000px;}
.fs4_c00047{font-size:66.000000px;}
.fs1_c00047{font-size:72.000000px;}
.fs2_c00047{font-size:78.000000px;}
.fs5_c00047{font-size:84.000000px;}
.fs3_c00047{font-size:90.000000px;}
.y0_c00047{bottom:0.000000px;}
.y89_c00047{bottom:99.885000px;}
.y88_c00047{bottom:100.935000px;}
.y8a_c00047{bottom:102.435000px;}
.y87_c00047{bottom:105.285000px;}
.y86_c00047{bottom:117.510000px;}
.y85_c00047{bottom:117.885000px;}
.y84_c00047{bottom:126.585000px;}
.y81_c00047{bottom:136.260000px;}
.y82_c00047{bottom:136.635000px;}
.y83_c00047{bottom:137.310000px;}
.y80_c00047{bottom:138.435000px;}
.y7f_c00047{bottom:142.035000px;}
.y7e_c00047{bottom:143.835000px;}
.y7d_c00047{bottom:147.810000px;}
.y7c_c00047{bottom:152.835000px;}
.y7a_c00047{bottom:153.210000px;}
.y7b_c00047{bottom:154.560000px;}
.y79_c00047{bottom:157.875000px;}
.y78_c00047{bottom:163.635000px;}
.y77_c00047{bottom:167.250000px;}
.y76_c00047{bottom:168.660000px;}
.y75_c00047{bottom:197.085000px;}
.y74_c00047{bottom:199.635000px;}
.y6f_c00047{bottom:210.375000px;}
.y72_c00047{bottom:210.750000px;}
.y6e_c00047{bottom:211.500000px;}
.y6d_c00047{bottom:215.085000px;}
.y73_c00047{bottom:218.385000px;}
.y71_c00047{bottom:231.660000px;}
.y70_c00047{bottom:235.260000px;}
.y6c_c00047{bottom:250.035000px;}
.y6b_c00047{bottom:253.275000px;}
.y6a_c00047{bottom:259.785000px;}
.y69_c00047{bottom:266.625000px;}
.y68_c00047{bottom:267.960000px;}
.y67_c00047{bottom:269.085000px;}
.y66_c00047{bottom:270.900000px;}
.y64_c00047{bottom:278.460000px;}
.y65_c00047{bottom:284.535000px;}
.y63_c00047{bottom:286.035000px;}
.y62_c00047{bottom:288.210000px;}
.y5f_c00047{bottom:300.435000px;}
.y61_c00047{bottom:302.160000px;}
.y60_c00047{bottom:305.775000px;}
.y5e_c00047{bottom:345.660000px;}
.y5d_c00047{bottom:345.810000px;}
.y5c_c00047{bottom:351.210000px;}
.y5b_c00047{bottom:364.125000px;}
.y5a_c00047{bottom:371.310000px;}
.y59_c00047{bottom:373.875000px;}
.y58_c00047{bottom:389.685000px;}
.y57_c00047{bottom:402.960000px;}
.y56_c00047{bottom:420.000000px;}
.y55_c00047{bottom:435.435000px;}
.y54_c00047{bottom:436.125000px;}
.y53_c00047{bottom:436.500000px;}
.y52_c00047{bottom:439.410000px;}
.y51_c00047{bottom:441.885000px;}
.y50_c00047{bottom:458.385000px;}
.y4f_c00047{bottom:471.000000px;}
.y4e_c00047{bottom:471.375000px;}
.y4d_c00047{bottom:473.250000px;}
.y4c_c00047{bottom:475.785000px;}
.y4b_c00047{bottom:489.810000px;}
.y4a_c00047{bottom:490.500000px;}
.y49_c00047{bottom:492.585000px;}
.y48_c00047{bottom:508.500000px;}
.y47_c00047{bottom:525.435000px;}
.y46_c00047{bottom:541.635000px;}
.y45_c00047{bottom:542.385000px;}
.y44_c00047{bottom:543.060000px;}
.y43_c00047{bottom:543.375000px;}
.y41_c00047{bottom:560.010000px;}
.y40_c00047{bottom:560.685000px;}
.y42_c00047{bottom:561.060000px;}
.y3f_c00047{bottom:576.885000px;}
.y3e_c00047{bottom:577.260000px;}
.y3b_c00047{bottom:577.635000px;}
.y3c_c00047{bottom:578.010000px;}
.y3d_c00047{bottom:578.685000px;}
.y39_c00047{bottom:594.510000px;}
.y3a_c00047{bottom:595.260000px;}
.y34_c00047{bottom:611.085000px;}
.y35_c00047{bottom:611.835000px;}
.y36_c00047{bottom:612.510000px;}
.y38_c00047{bottom:612.885000px;}
.y37_c00047{bottom:614.010000px;}
.y31_c00047{bottom:629.385000px;}
.y33_c00047{bottom:631.260000px;}
.y32_c00047{bottom:632.010000px;}
.y30_c00047{bottom:647.460000px;}
.y2c_c00047{bottom:661.875000px;}
.y2d_c00047{bottom:663.285000px;}
.y2e_c00047{bottom:665.460000px;}
.y2f_c00047{bottom:665.835000px;}
.y28_c00047{bottom:678.750000px;}
.y29_c00047{bottom:679.125000px;}
.y2a_c00047{bottom:679.875000px;}
.y2b_c00047{bottom:683.085000px;}
.y27_c00047{bottom:745.335000px;}
.y25_c00047{bottom:760.500000px;}
.y26_c00047{bottom:768.375000px;}
.y23_c00047{bottom:788.175000px;}
.y24_c00047{bottom:791.085000px;}
.y21_c00047{bottom:803.310000px;}
.y22_c00047{bottom:808.335000px;}
.y1f_c00047{bottom:823.500000px;}
.y20_c00047{bottom:828.900000px;}
.y1b_c00047{bottom:842.925000px;}
.y1c_c00047{bottom:843.300000px;}
.y1e_c00047{bottom:845.460000px;}
.y1d_c00047{bottom:847.650000px;}
.y17_c00047{bottom:865.560000px;}
.y18_c00047{bottom:871.050000px;}
.y19_c00047{bottom:875.685000px;}
.y1a_c00047{bottom:878.550000px;}
.y15_c00047{bottom:885.810000px;}
.y16_c00047{bottom:896.625000px;}
.y14_c00047{bottom:907.710000px;}
.y13_c00047{bottom:925.710000px;}
.yb_c00047{bottom:950.550000px;}
.yc_c00047{bottom:955.560000px;}
.yd_c00047{bottom:957.750000px;}
.ye_c00047{bottom:959.925000px;}
.yf_c00047{bottom:963.150000px;}
.y12_c00047{bottom:963.525000px;}
.y11_c00047{bottom:963.900000px;}
.y10_c00047{bottom:964.560000px;}
.y9_c00047{bottom:965.685000px;}
.ya_c00047{bottom:980.085000px;}
.y6_c00047{bottom:989.085000px;}
.y7_c00047{bottom:991.935000px;}
.y8_c00047{bottom:1003.500000px;}
.y5_c00047{bottom:1011.750000px;}
.y2_c00047{bottom:1032.300000px;}
.y3_c00047{bottom:1046.025000px;}
.y4_c00047{bottom:1050.675000px;}
.y8b_c00047{bottom:1084.125000px;}
.y1_c00047{bottom:1097.835000px;}
.ha_c00047{height:54.421875px;}
.h1_c00047{height:58.886719px;}
.h9_c00047{height:60.468750px;}
.h6_c00047{height:66.515625px;}
.h2_c00047{height:70.628906px;}
.h4_c00047{height:70.664062px;}
.h3_c00047{height:76.552734px;}
.h7_c00047{height:82.441406px;}
.h8_c00047{height:88.286133px;}
.h5_c00047{height:88.330078px;}
.h0_c00047{height:1174.500000px;}
.w0_c00047{width:731.977200px;}
.w1_c00047{width:732.000000px;}
.x0_c00047{left:0.000000px;}
.x67_c00047{left:52.540200px;}
.x31_c00047{left:55.390200px;}
.x21_c00047{left:56.515200px;}
.x5_c00047{left:58.315200px;}
.x1c_c00047{left:60.115200px;}
.x44_c00047{left:61.915200px;}
.x68_c00047{left:73.765200px;}
.x17_c00047{left:75.925200px;}
.x3f_c00047{left:78.115200px;}
.x2c_c00047{left:81.715200px;}
.x58_c00047{left:84.175200px;}
.x11_c00047{left:89.290200px;}
.x6_c00047{left:91.390200px;}
.x12_c00047{left:92.515200px;}
.x18_c00047{left:93.550200px;}
.x2_c00047{left:96.790200px;}
.x22_c00047{left:103.315200px;}
.x9_c00047{left:104.365200px;}
.x3c_c00047{left:105.490200px;}
.x27_c00047{left:109.390200px;}
.x1e_c00047{left:111.190200px;}
.x40_c00047{left:115.165200px;}
.x1d_c00047{left:121.315200px;}
.x5d_c00047{left:142.540200px;}
.x1f_c00047{left:145.390200px;}
.x32_c00047{left:152.290200px;}
.x19_c00047{left:158.740200px;}
.x59_c00047{left:160.165200px;}
.x13_c00047{left:164.140200px;}
.x14_c00047{left:168.490200px;}
.x1a_c00047{left:170.590200px;}
.x51_c00047{left:171.715200px;}
.x2b_c00047{left:180.340200px;}
.x7_c00047{left:194.740200px;}
.x8_c00047{left:203.365200px;}
.x23_c00047{left:213.490200px;}
.x20_c00047{left:224.290200px;}
.x28_c00047{left:233.965200px;}
.x3a_c00047{left:245.140200px;}
.x3_c00047{left:257.740200px;}
.x5e_c00047{left:263.515200px;}
.x33_c00047{left:266.740200px;}
.x1_c00047{left:275.365200px;}
.xa_c00047{left:280.390200px;}
.x52_c00047{left:284.740200px;}
.x36_c00047{left:296.590200px;}
.x2d_c00047{left:299.515200px;}
.x5f_c00047{left:311.740200px;}
.x5a_c00047{left:319.990200px;}
.x56_c00047{left:321.790200px;}
.x60_c00047{left:328.990200px;}
.x53_c00047{left:333.340200px;}
.x57_c00047{left:342.340200px;}
.x4a_c00047{left:353.890200px;}
.xb_c00047{left:355.315200px;}
.x5b_c00047{left:358.165200px;}
.x37_c00047{left:366.775200px;}
.x54_c00047{left:371.515200px;}
.xc_c00047{left:372.565200px;}
.x34_c00047{left:382.315200px;}
.x3b_c00047{left:390.190200px;}
.x4e_c00047{left:404.275200px;}
.x29_c00047{left:413.590200px;}
.x55_c00047{left:415.090200px;}
.x15_c00047{left:421.525200px;}
.x16_c00047{left:422.590200px;}
.x4b_c00047{left:429.775200px;}
.x41_c00047{left:435.940200px;}
.x25_c00047{left:439.915200px;}
.x49_c00047{left:442.390200px;}
.x2e_c00047{left:443.515200px;}
.xd_c00047{left:452.140200px;}
.x26_c00047{left:460.090200px;}
.x38_c00047{left:467.965200px;}
.x61_c00047{left:476.290200px;}
.x4c_c00047{left:481.990200px;}
.x35_c00047{left:483.490200px;}
.x4f_c00047{left:484.915200px;}
.x50_c00047{left:489.190200px;}
.x42_c00047{left:500.365200px;}
.x2a_c00047{left:507.190200px;}
.x43_c00047{left:517.690200px;}
.x4d_c00047{left:523.090200px;}
.xe_c00047{left:532.090200px;}
.x62_c00047{left:544.690200px;}
.x45_c00047{left:551.140200px;}
.x3d_c00047{left:553.990200px;}
.x63_c00047{left:561.940200px;}
.x47_c00047{left:564.115200px;}
.x3e_c00047{left:573.790200px;}
.x46_c00047{left:579.190200px;}
.x24_c00047{left:581.740200px;}
.x2f_c00047{left:585.340200px;}
.x1b_c00047{left:601.915200px;}
.xf_c00047{left:604.765200px;}
.x64_c00047{left:608.740200px;}
.x10_c00047{left:623.515200px;}
.x66_c00047{left:634.990200px;}
.x39_c00047{left:645.790200px;}
.x5c_c00047{left:655.915200px;}
.x4_c00047{left:657.340200px;}
.x30_c00047{left:658.765200px;}
.x48_c00047{left:662.365200px;}
.x65_c00047{left:663.490200px;}
@media print{
.v1_c00047{vertical-align:-16.533333pt;}
.v0_c00047{vertical-align:0.000000pt;}
.ls0_c00047{letter-spacing:0.000000pt;}
.ws0_c00047{word-spacing:0.000000pt;}
._0_c00047{width:34.666574pt;}
.fs6_c00047{font-size:48.000000pt;}
.fs0_c00047{font-size:53.333333pt;}
.fs4_c00047{font-size:58.666667pt;}
.fs1_c00047{font-size:64.000000pt;}
.fs2_c00047{font-size:69.333333pt;}
.fs5_c00047{font-size:74.666667pt;}
.fs3_c00047{font-size:80.000000pt;}
.y0_c00047{bottom:0.000000pt;}
.y89_c00047{bottom:88.786667pt;}
.y88_c00047{bottom:89.720000pt;}
.y8a_c00047{bottom:91.053333pt;}
.y87_c00047{bottom:93.586667pt;}
.y86_c00047{bottom:104.453333pt;}
.y85_c00047{bottom:104.786667pt;}
.y84_c00047{bottom:112.520000pt;}
.y81_c00047{bottom:121.120000pt;}
.y82_c00047{bottom:121.453333pt;}
.y83_c00047{bottom:122.053333pt;}
.y80_c00047{bottom:123.053333pt;}
.y7f_c00047{bottom:126.253333pt;}
.y7e_c00047{bottom:127.853333pt;}
.y7d_c00047{bottom:131.386667pt;}
.y7c_c00047{bottom:135.853333pt;}
.y7a_c00047{bottom:136.186667pt;}
.y7b_c00047{bottom:137.386667pt;}
.y79_c00047{bottom:140.333333pt;}
.y78_c00047{bottom:145.453333pt;}
.y77_c00047{bottom:148.666667pt;}
.y76_c00047{bottom:149.920000pt;}
.y75_c00047{bottom:175.186667pt;}
.y74_c00047{bottom:177.453333pt;}
.y6f_c00047{bottom:187.000000pt;}
.y72_c00047{bottom:187.333333pt;}
.y6e_c00047{bottom:188.000000pt;}
.y6d_c00047{bottom:191.186667pt;}
.y73_c00047{bottom:194.120000pt;}
.y71_c00047{bottom:205.920000pt;}
.y70_c00047{bottom:209.120000pt;}
.y6c_c00047{bottom:222.253333pt;}
.y6b_c00047{bottom:225.133333pt;}
.y6a_c00047{bottom:230.920000pt;}
.y69_c00047{bottom:237.000000pt;}
.y68_c00047{bottom:238.186667pt;}
.y67_c00047{bottom:239.186667pt;}
.y66_c00047{bottom:240.800000pt;}
.y64_c00047{bottom:247.520000pt;}
.y65_c00047{bottom:252.920000pt;}
.y63_c00047{bottom:254.253333pt;}
.y62_c00047{bottom:256.186667pt;}
.y5f_c00047{bottom:267.053333pt;}
.y61_c00047{bottom:268.586667pt;}
.y60_c00047{bottom:271.800000pt;}
.y5e_c00047{bottom:307.253333pt;}
.y5d_c00047{bottom:307.386667pt;}
.y5c_c00047{bottom:312.186667pt;}
.y5b_c00047{bottom:323.666667pt;}
.y5a_c00047{bottom:330.053333pt;}
.y59_c00047{bottom:332.333333pt;}
.y58_c00047{bottom:346.386667pt;}
.y57_c00047{bottom:358.186667pt;}
.y56_c00047{bottom:373.333333pt;}
.y55_c00047{bottom:387.053333pt;}
.y54_c00047{bottom:387.666667pt;}
.y53_c00047{bottom:388.000000pt;}
.y52_c00047{bottom:390.586667pt;}
.y51_c00047{bottom:392.786667pt;}
.y50_c00047{bottom:407.453333pt;}
.y4f_c00047{bottom:418.666667pt;}
.y4e_c00047{bottom:419.000000pt;}
.y4d_c00047{bottom:420.666667pt;}
.y4c_c00047{bottom:422.920000pt;}
.y4b_c00047{bottom:435.386667pt;}
.y4a_c00047{bottom:436.000000pt;}
.y49_c00047{bottom:437.853333pt;}
.y48_c00047{bottom:452.000000pt;}
.y47_c00047{bottom:467.053333pt;}
.y46_c00047{bottom:481.453333pt;}
.y45_c00047{bottom:482.120000pt;}
.y44_c00047{bottom:482.720000pt;}
.y43_c00047{bottom:483.000000pt;}
.y41_c00047{bottom:497.786667pt;}
.y40_c00047{bottom:498.386667pt;}
.y42_c00047{bottom:498.720000pt;}
.y3f_c00047{bottom:512.786667pt;}
.y3e_c00047{bottom:513.120000pt;}
.y3b_c00047{bottom:513.453333pt;}
.y3c_c00047{bottom:513.786667pt;}
.y3d_c00047{bottom:514.386667pt;}
.y39_c00047{bottom:528.453333pt;}
.y3a_c00047{bottom:529.120000pt;}
.y34_c00047{bottom:543.186667pt;}
.y35_c00047{bottom:543.853333pt;}
.y36_c00047{bottom:544.453333pt;}
.y38_c00047{bottom:544.786667pt;}
.y37_c00047{bottom:545.786667pt;}
.y31_c00047{bottom:559.453333pt;}
.y33_c00047{bottom:561.120000pt;}
.y32_c00047{bottom:561.786667pt;}
.y30_c00047{bottom:575.520000pt;}
.y2c_c00047{bottom:588.333333pt;}
.y2d_c00047{bottom:589.586667pt;}
.y2e_c00047{bottom:591.520000pt;}
.y2f_c00047{bottom:591.853333pt;}
.y28_c00047{bottom:603.333333pt;}
.y29_c00047{bottom:603.666667pt;}
.y2a_c00047{bottom:604.333333pt;}
.y2b_c00047{bottom:607.186667pt;}
.y27_c00047{bottom:662.520000pt;}
.y25_c00047{bottom:676.000000pt;}
.y26_c00047{bottom:683.000000pt;}
.y23_c00047{bottom:700.600000pt;}
.y24_c00047{bottom:703.186667pt;}
.y21_c00047{bottom:714.053333pt;}
.y22_c00047{bottom:718.520000pt;}
.y1f_c00047{bottom:732.000000pt;}
.y20_c00047{bottom:736.800000pt;}
.y1b_c00047{bottom:749.266667pt;}
.y1c_c00047{bottom:749.600000pt;}
.y1e_c00047{bottom:751.520000pt;}
.y1d_c00047{bottom:753.466667pt;}
.y17_c00047{bottom:769.386667pt;}
.y18_c00047{bottom:774.266667pt;}
.y19_c00047{bottom:778.386667pt;}
.y1a_c00047{bottom:780.933333pt;}
.y15_c00047{bottom:787.386667pt;}
.y16_c00047{bottom:797.000000pt;}
.y14_c00047{bottom:806.853333pt;}
.y13_c00047{bottom:822.853333pt;}
.yb_c00047{bottom:844.933333pt;}
.yc_c00047{bottom:849.386667pt;}
.yd_c00047{bottom:851.333333pt;}
.ye_c00047{bottom:853.266667pt;}
.yf_c00047{bottom:856.133333pt;}
.y12_c00047{bottom:856.466667pt;}
.y11_c00047{bottom:856.800000pt;}
.y10_c00047{bottom:857.386667pt;}
.y9_c00047{bottom:858.386667pt;}
.ya_c00047{bottom:871.186667pt;}
.y6_c00047{bottom:879.186667pt;}
.y7_c00047{bottom:881.720000pt;}
.y8_c00047{bottom:892.000000pt;}
.y5_c00047{bottom:899.333333pt;}
.y2_c00047{bottom:917.600000pt;}
.y3_c00047{bottom:929.800000pt;}
.y4_c00047{bottom:933.933333pt;}
.y8b_c00047{bottom:963.666667pt;}
.y1_c00047{bottom:975.853333pt;}
.ha_c00047{height:48.375000pt;}
.h1_c00047{height:52.343750pt;}
.h9_c00047{height:53.750000pt;}
.h6_c00047{height:59.125000pt;}
.h2_c00047{height:62.781250pt;}
.h4_c00047{height:62.812500pt;}
.h3_c00047{height:68.046875pt;}
.h7_c00047{height:73.281250pt;}
.h8_c00047{height:78.476562pt;}
.h5_c00047{height:78.515625pt;}
.h0_c00047{height:1044.000000pt;}
.w0_c00047{width:650.646400pt;}
.w1_c00047{width:650.666667pt;}
.x0_c00047{left:0.000000pt;}
.x67_c00047{left:46.702400pt;}
.x31_c00047{left:49.235733pt;}
.x21_c00047{left:50.235733pt;}
.x5_c00047{left:51.835733pt;}
.x1c_c00047{left:53.435733pt;}
.x44_c00047{left:55.035733pt;}
.x68_c00047{left:65.569067pt;}
.x17_c00047{left:67.489067pt;}
.x3f_c00047{left:69.435733pt;}
.x2c_c00047{left:72.635733pt;}
.x58_c00047{left:74.822400pt;}
.x11_c00047{left:79.369067pt;}
.x6_c00047{left:81.235733pt;}
.x12_c00047{left:82.235733pt;}
.x18_c00047{left:83.155733pt;}
.x2_c00047{left:86.035733pt;}
.x22_c00047{left:91.835733pt;}
.x9_c00047{left:92.769067pt;}
.x3c_c00047{left:93.769067pt;}
.x27_c00047{left:97.235733pt;}
.x1e_c00047{left:98.835733pt;}
.x40_c00047{left:102.369067pt;}
.x1d_c00047{left:107.835733pt;}
.x5d_c00047{left:126.702400pt;}
.x1f_c00047{left:129.235733pt;}
.x32_c00047{left:135.369067pt;}
.x19_c00047{left:141.102400pt;}
.x59_c00047{left:142.369067pt;}
.x13_c00047{left:145.902400pt;}
.x14_c00047{left:149.769067pt;}
.x1a_c00047{left:151.635733pt;}
.x51_c00047{left:152.635733pt;}
.x2b_c00047{left:160.302400pt;}
.x7_c00047{left:173.102400pt;}
.x8_c00047{left:180.769067pt;}
.x23_c00047{left:189.769067pt;}
.x20_c00047{left:199.369067pt;}
.x28_c00047{left:207.969067pt;}
.x3a_c00047{left:217.902400pt;}
.x3_c00047{left:229.102400pt;}
.x5e_c00047{left:234.235733pt;}
.x33_c00047{left:237.102400pt;}
.x1_c00047{left:244.769067pt;}
.xa_c00047{left:249.235733pt;}
.x52_c00047{left:253.102400pt;}
.x36_c00047{left:263.635733pt;}
.x2d_c00047{left:266.235733pt;}
.x5f_c00047{left:277.102400pt;}
.x5a_c00047{left:284.435733pt;}
.x56_c00047{left:286.035733pt;}
.x60_c00047{left:292.435733pt;}
.x53_c00047{left:296.302400pt;}
.x57_c00047{left:304.302400pt;}
.x4a_c00047{left:314.569067pt;}
.xb_c00047{left:315.835733pt;}
.x5b_c00047{left:318.369067pt;}
.x37_c00047{left:326.022400pt;}
.x54_c00047{left:330.235733pt;}
.xc_c00047{left:331.169067pt;}
.x34_c00047{left:339.835733pt;}
.x3b_c00047{left:346.835733pt;}
.x4e_c00047{left:359.355733pt;}
.x29_c00047{left:367.635733pt;}
.x55_c00047{left:368.969067pt;}
.x15_c00047{left:374.689067pt;}
.x16_c00047{left:375.635733pt;}
.x4b_c00047{left:382.022400pt;}
.x41_c00047{left:387.502400pt;}
.x25_c00047{left:391.035733pt;}
.x49_c00047{left:393.235733pt;}
.x2e_c00047{left:394.235733pt;}
.xd_c00047{left:401.902400pt;}
.x26_c00047{left:408.969067pt;}
.x38_c00047{left:415.969067pt;}
.x61_c00047{left:423.369067pt;}
.x4c_c00047{left:428.435733pt;}
.x35_c00047{left:429.769067pt;}
.x4f_c00047{left:431.035733pt;}
.x50_c00047{left:434.835733pt;}
.x42_c00047{left:444.769067pt;}
.x2a_c00047{left:450.835733pt;}
.x43_c00047{left:460.169067pt;}
.x4d_c00047{left:464.969067pt;}
.xe_c00047{left:472.969067pt;}
.x62_c00047{left:484.169067pt;}
.x45_c00047{left:489.902400pt;}
.x3d_c00047{left:492.435733pt;}
.x63_c00047{left:499.502400pt;}
.x47_c00047{left:501.435733pt;}
.x3e_c00047{left:510.035733pt;}
.x46_c00047{left:514.835733pt;}
.x24_c00047{left:517.102400pt;}
.x2f_c00047{left:520.302400pt;}
.x1b_c00047{left:535.035733pt;}
.xf_c00047{left:537.569067pt;}
.x64_c00047{left:541.102400pt;}
.x10_c00047{left:554.235733pt;}
.x66_c00047{left:564.435733pt;}
.x39_c00047{left:574.035733pt;}
.x5c_c00047{left:583.035733pt;}
.x4_c00047{left:584.302400pt;}
.x30_c00047{left:585.569067pt;}
.x48_c00047{left:588.769067pt;}
.x65_c00047{left:589.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cf1961f695f713c0222d2223.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00048;src:url('chunks/assets/font_69e20fa1604953ce1d0c06df.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00048;src:url('chunks/assets/font_5ea493a265b1e6153ebcb7d0.woff2')format("woff");}.ff3_c00048{font-family:ff3_c00048;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00048;src:url('chunks/assets/font_128599fc8b054fa109fd4dce.woff2')format("woff");}.ff4_c00048{font-family:ff4_c00048;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00048{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0_c00048{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.ma_c00048{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00048{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8_c00048{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c00048{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c00048{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6_c00048{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00048{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00048{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00048{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00048{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00048{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c00048{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00048{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00048{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00048{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00048{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_c00048{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c00048{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c00048{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m14_c00048{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m3_c00048{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1_c00048{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00048{color:transparent;}
.fs0_c00048{font-size:66.000000px;}
.fs1_c00048{font-size:72.000000px;}
.fs2_c00048{font-size:78.000000px;}
.y0_c00048{bottom:0.000000px;}
.y46_c00048{bottom:68.535000px;}
.y45_c00048{bottom:89.385000px;}
.y44_c00048{bottom:110.685000px;}
.y43_c00048{bottom:131.250000px;}
.y42_c00048{bottom:151.710000px;}
.y41_c00048{bottom:173.310000px;}
.y40_c00048{bottom:193.875000px;}
.y3f_c00048{bottom:215.085000px;}
.y3e_c00048{bottom:236.310000px;}
.y3d_c00048{bottom:257.910000px;}
.y3c_c00048{bottom:278.835000px;}
.y3b_c00048{bottom:300.810000px;}
.y39_c00048{bottom:322.035000px;}
.y3a_c00048{bottom:322.785000px;}
.y38_c00048{bottom:343.275000px;}
.y37_c00048{bottom:364.500000px;}
.y36_c00048{bottom:386.085000px;}
.y35_c00048{bottom:407.685000px;}
.y34_c00048{bottom:429.660000px;}
.y32_c00048{bottom:451.260000px;}
.y31_c00048{bottom:451.560000px;}
.y33_c00048{bottom:451.635000px;}
.y2f_c00048{bottom:473.160000px;}
.y30_c00048{bottom:473.535000px;}
.y2e_c00048{bottom:473.625000px;}
.y2d_c00048{bottom:495.210000px;}
.y2c_c00048{bottom:517.125000px;}
.y2b_c00048{bottom:538.710000px;}
.y2a_c00048{bottom:560.685000px;}
.y29_c00048{bottom:581.535000px;}
.y28_c00048{bottom:581.625000px;}
.y27_c00048{bottom:582.285000px;}
.y26_c00048{bottom:582.660000px;}
.y25_c00048{bottom:603.885000px;}
.y24_c00048{bottom:625.500000px;}
.y23_c00048{bottom:646.710000px;}
.y21_c00048{bottom:647.760000px;}
.y22_c00048{bottom:647.835000px;}
.y20_c00048{bottom:668.385000px;}
.y1f_c00048{bottom:669.060000px;}
.y1d_c00048{bottom:669.435000px;}
.y1e_c00048{bottom:669.750000px;}
.y1c_c00048{bottom:689.625000px;}
.y1b_c00048{bottom:691.710000px;}
.y1a_c00048{bottom:713.010000px;}
.y19_c00048{bottom:734.910000px;}
.y18_c00048{bottom:735.660000px;}
.y17_c00048{bottom:756.885000px;}
.y16_c00048{bottom:778.500000px;}
.y15_c00048{bottom:800.460000px;}
.y14_c00048{bottom:801.150000px;}
.y13_c00048{bottom:822.750000px;}
.y12_c00048{bottom:841.125000px;}
.y11_c00048{bottom:841.800000px;}
.y10_c00048{bottom:845.085000px;}
.yf_c00048{bottom:863.085000px;}
.ye_c00048{bottom:864.525000px;}
.yd_c00048{bottom:866.685000px;}
.yb_c00048{bottom:867.060000px;}
.yc_c00048{bottom:867.435000px;}
.ya_c00048{bottom:910.560000px;}
.y8_c00048{bottom:920.685000px;}
.y9_c00048{bottom:927.525000px;}
.y7_c00048{bottom:975.060000px;}
.y6_c00048{bottom:997.050000px;}
.y5_c00048{bottom:1017.210000px;}
.y4_c00048{bottom:1019.685000px;}
.y3_c00048{bottom:1069.710000px;}
.y1_c00048{bottom:1077.000000px;}
.y2_c00048{bottom:1083.810000px;}
.h1_c00048{height:64.775391px;}
.h3_c00048{height:66.515625px;}
.h5_c00048{height:70.628906px;}
.h2_c00048{height:70.664062px;}
.h4_c00048{height:76.514648px;}
.h0_c00048{height:1174.500000px;}
.w0_c00048{width:731.977200px;}
.w1_c00048{width:732.000000px;}
.x0_c00048{left:0.000000px;}
.x4_c00048{left:39.190200px;}
.xf_c00048{left:40.690200px;}
.x15_c00048{left:43.165200px;}
.x19_c00048{left:44.965200px;}
.x1c_c00048{left:46.090200px;}
.x28_c00048{left:47.890200px;}
.x29_c00048{left:48.940200px;}
.x2a_c00048{left:50.740200px;}
.x2b_c00048{left:52.165200px;}
.x2c_c00048{left:53.590200px;}
.x5_c00048{left:64.090200px;}
.x16_c00048{left:65.515200px;}
.x25_c00048{left:66.565200px;}
.x26_c00048{left:67.690200px;}
.x1f_c00048{left:69.490200px;}
.x12_c00048{left:71.590200px;}
.x6_c00048{left:73.765200px;}
.xa_c00048{left:75.175200px;}
.x20_c00048{left:77.365200px;}
.x2d_c00048{left:84.925200px;}
.x23_c00048{left:123.790200px;}
.x13_c00048{left:128.515200px;}
.x7_c00048{left:160.915200px;}
.x27_c00048{left:172.375200px;}
.xb_c00048{left:187.165200px;}
.x24_c00048{left:206.290200px;}
.x1a_c00048{left:212.740200px;}
.x8_c00048{left:242.290200px;}
.xc_c00048{left:253.390200px;}
.x1d_c00048{left:257.365200px;}
.x1_c00048{left:258.790200px;}
.x1b_c00048{left:301.990200px;}
.x17_c00048{left:323.965200px;}
.x9_c00048{left:387.340200px;}
.x18_c00048{left:390.565200px;}
.xd_c00048{left:423.340200px;}
.x21_c00048{left:444.940200px;}
.x2_c00048{left:457.540200px;}
.x14_c00048{left:463.990200px;}
.xe_c00048{left:504.340200px;}
.x22_c00048{left:514.090200px;}
.x10_c00048{left:534.565200px;}
.x1e_c00048{left:550.090200px;}
.x11_c00048{left:606.940200px;}
.x3_c00048{left:634.315200px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ws0_c00048{word-spacing:0.000000pt;}
.fs0_c00048{font-size:58.666667pt;}
.fs1_c00048{font-size:64.000000pt;}
.fs2_c00048{font-size:69.333333pt;}
.y0_c00048{bottom:0.000000pt;}
.y46_c00048{bottom:60.920000pt;}
.y45_c00048{bottom:79.453333pt;}
.y44_c00048{bottom:98.386667pt;}
.y43_c00048{bottom:116.666667pt;}
.y42_c00048{bottom:134.853333pt;}
.y41_c00048{bottom:154.053333pt;}
.y40_c00048{bottom:172.333333pt;}
.y3f_c00048{bottom:191.186667pt;}
.y3e_c00048{bottom:210.053333pt;}
.y3d_c00048{bottom:229.253333pt;}
.y3c_c00048{bottom:247.853333pt;}
.y3b_c00048{bottom:267.386667pt;}
.y39_c00048{bottom:286.253333pt;}
.y3a_c00048{bottom:286.920000pt;}
.y38_c00048{bottom:305.133333pt;}
.y37_c00048{bottom:324.000000pt;}
.y36_c00048{bottom:343.186667pt;}
.y35_c00048{bottom:362.386667pt;}
.y34_c00048{bottom:381.920000pt;}
.y32_c00048{bottom:401.120000pt;}
.y31_c00048{bottom:401.386667pt;}
.y33_c00048{bottom:401.453333pt;}
.y2f_c00048{bottom:420.586667pt;}
.y30_c00048{bottom:420.920000pt;}
.y2e_c00048{bottom:421.000000pt;}
.y2d_c00048{bottom:440.186667pt;}
.y2c_c00048{bottom:459.666667pt;}
.y2b_c00048{bottom:478.853333pt;}
.y2a_c00048{bottom:498.386667pt;}
.y29_c00048{bottom:516.920000pt;}
.y28_c00048{bottom:517.000000pt;}
.y27_c00048{bottom:517.586667pt;}
.y26_c00048{bottom:517.920000pt;}
.y25_c00048{bottom:536.786667pt;}
.y24_c00048{bottom:556.000000pt;}
.y23_c00048{bottom:574.853333pt;}
.y21_c00048{bottom:575.786667pt;}
.y22_c00048{bottom:575.853333pt;}
.y20_c00048{bottom:594.120000pt;}
.y1f_c00048{bottom:594.720000pt;}
.y1d_c00048{bottom:595.053333pt;}
.y1e_c00048{bottom:595.333333pt;}
.y1c_c00048{bottom:613.000000pt;}
.y1b_c00048{bottom:614.853333pt;}
.y1a_c00048{bottom:633.786667pt;}
.y19_c00048{bottom:653.253333pt;}
.y18_c00048{bottom:653.920000pt;}
.y17_c00048{bottom:672.786667pt;}
.y16_c00048{bottom:692.000000pt;}
.y15_c00048{bottom:711.520000pt;}
.y14_c00048{bottom:712.133333pt;}
.y13_c00048{bottom:731.333333pt;}
.y12_c00048{bottom:747.666667pt;}
.y11_c00048{bottom:748.266667pt;}
.y10_c00048{bottom:751.186667pt;}
.yf_c00048{bottom:767.186667pt;}
.ye_c00048{bottom:768.466667pt;}
.yd_c00048{bottom:770.386667pt;}
.yb_c00048{bottom:770.720000pt;}
.yc_c00048{bottom:771.053333pt;}
.ya_c00048{bottom:809.386667pt;}
.y8_c00048{bottom:818.386667pt;}
.y9_c00048{bottom:824.466667pt;}
.y7_c00048{bottom:866.720000pt;}
.y6_c00048{bottom:886.266667pt;}
.y5_c00048{bottom:904.186667pt;}
.y4_c00048{bottom:906.386667pt;}
.y3_c00048{bottom:950.853333pt;}
.y1_c00048{bottom:957.333333pt;}
.y2_c00048{bottom:963.386667pt;}
.h1_c00048{height:57.578125pt;}
.h3_c00048{height:59.125000pt;}
.h5_c00048{height:62.781250pt;}
.h2_c00048{height:62.812500pt;}
.h4_c00048{height:68.013021pt;}
.h0_c00048{height:1044.000000pt;}
.w0_c00048{width:650.646400pt;}
.w1_c00048{width:650.666667pt;}
.x0_c00048{left:0.000000pt;}
.x4_c00048{left:34.835733pt;}
.xf_c00048{left:36.169067pt;}
.x15_c00048{left:38.369067pt;}
.x19_c00048{left:39.969067pt;}
.x1c_c00048{left:40.969067pt;}
.x28_c00048{left:42.569067pt;}
.x29_c00048{left:43.502400pt;}
.x2a_c00048{left:45.102400pt;}
.x2b_c00048{left:46.369067pt;}
.x2c_c00048{left:47.635733pt;}
.x5_c00048{left:56.969067pt;}
.x16_c00048{left:58.235733pt;}
.x25_c00048{left:59.169067pt;}
.x26_c00048{left:60.169067pt;}
.x1f_c00048{left:61.769067pt;}
.x12_c00048{left:63.635733pt;}
.x6_c00048{left:65.569067pt;}
.xa_c00048{left:66.822400pt;}
.x20_c00048{left:68.769067pt;}
.x2d_c00048{left:75.489067pt;}
.x23_c00048{left:110.035733pt;}
.x13_c00048{left:114.235733pt;}
.x7_c00048{left:143.035733pt;}
.x27_c00048{left:153.222400pt;}
.xb_c00048{left:166.369067pt;}
.x24_c00048{left:183.369067pt;}
.x1a_c00048{left:189.102400pt;}
.x8_c00048{left:215.369067pt;}
.xc_c00048{left:225.235733pt;}
.x1d_c00048{left:228.769067pt;}
.x1_c00048{left:230.035733pt;}
.x1b_c00048{left:268.435733pt;}
.x17_c00048{left:287.969067pt;}
.x9_c00048{left:344.302400pt;}
.x18_c00048{left:347.169067pt;}
.xd_c00048{left:376.302400pt;}
.x21_c00048{left:395.502400pt;}
.x2_c00048{left:406.702400pt;}
.x14_c00048{left:412.435733pt;}
.xe_c00048{left:448.302400pt;}
.x22_c00048{left:456.969067pt;}
.x10_c00048{left:475.169067pt;}
.x1e_c00048{left:488.969067pt;}
.x11_c00048{left:539.502400pt;}
.x3_c00048{left:563.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dcaf8f7785022d65d1f9b502.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00049;src:url('chunks/assets/font_2fae734244de0c8c486cdb41.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00049;src:url('chunks/assets/font_5cf45f0d1186b2f49357cffc.woff2')format("woff");}.ff3_c00049{font-family:ff3_c00049;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00049;src:url('chunks/assets/font_005d8a3eafd7de9e1880404f.woff2')format("woff");}.ff4_c00049{font-family:ff4_c00049;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m18_c00049{transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);}
.m9_c00049{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m7_c00049{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf_c00049{transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);}
.m13_c00049{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m19_c00049{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m10_c00049{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m15_c00049{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mb_c00049{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md_c00049{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m8_c00049{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00049{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m17_c00049{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m11_c00049{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m30_c00049{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m12_c00049{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2_c00049{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma_c00049{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m14_c00049{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00049{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4_c00049{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c00049{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00049{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00049{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc_c00049{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m16_c00049{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m24_c00049{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c00049{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1_c00049{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c00049{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00049{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00049{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00049{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m20_c00049{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00049{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00049{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00049{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c00049{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m28_c00049{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m23_c00049{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m26_c00049{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m27_c00049{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m21_c00049{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00049{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00049{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00049{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00049{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m29_c00049{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m6_c00049{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.ls0_c00049{letter-spacing:0.000000px;}
.sc__c00049{text-shadow:none;}
.sc0_c00049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00049{-webkit-text-stroke:0px transparent;}
.sc0_c00049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00049{word-spacing:0.000000px;}
.fc0_c00049{color:transparent;}
.fs0_c00049{font-size:60.000000px;}
.fs4_c00049{font-size:66.000000px;}
.fs2_c00049{font-size:72.000000px;}
.fs1_c00049{font-size:78.000000px;}
.fs3_c00049{font-size:84.000000px;}
.y0_c00049{bottom:0.000000px;}
.y5d_c00049{bottom:64.935000px;}
.y5c_c00049{bottom:66.060000px;}
.y5b_c00049{bottom:70.335000px;}
.y5a_c00049{bottom:81.510000px;}
.y59_c00049{bottom:84.060000px;}
.y58_c00049{bottom:84.750000px;}
.y57_c00049{bottom:93.750000px;}
.y56_c00049{bottom:110.685000px;}
.y55_c00049{bottom:118.260000px;}
.y54_c00049{bottom:131.625000px;}
.y53_c00049{bottom:137.685000px;}
.y52_c00049{bottom:153.135000px;}
.y51_c00049{bottom:153.885000px;}
.y50_c00049{bottom:154.560000px;}
.y4f_c00049{bottom:160.035000px;}
.y4e_c00049{bottom:165.810000px;}
.y4d_c00049{bottom:175.785000px;}
.y4c_c00049{bottom:176.910000px;}
.y4b_c00049{bottom:187.410000px;}
.y4a_c00049{bottom:201.435000px;}
.y49_c00049{bottom:223.335000px;}
.y48_c00049{bottom:241.335000px;}
.y47_c00049{bottom:246.060000px;}
.y46_c00049{bottom:263.310000px;}
.y45_c00049{bottom:269.085000px;}
.y44_c00049{bottom:286.710000px;}
.y43_c00049{bottom:289.650000px;}
.y42_c00049{bottom:307.560000px;}
.y41_c00049{bottom:311.250000px;}
.y40_c00049{bottom:330.285000px;}
.y3f_c00049{bottom:332.460000px;}
.y3e_c00049{bottom:352.185000px;}
.y3d_c00049{bottom:352.275000px;}
.y3c_c00049{bottom:355.125000px;}
.y3b_c00049{bottom:374.160000px;}
.y3a_c00049{bottom:375.285000px;}
.y39_c00049{bottom:380.400000px;}
.y38_c00049{bottom:400.125000px;}
.y37_c00049{bottom:418.125000px;}
.y36_c00049{bottom:420.285000px;}
.y35_c00049{bottom:441.510000px;}
.y34_c00049{bottom:463.125000px;}
.y33_c00049{bottom:485.085000px;}
.y32_c00049{bottom:507.060000px;}
.y31_c00049{bottom:528.660000px;}
.y30_c00049{bottom:550.560000px;}
.y2f_c00049{bottom:572.160000px;}
.y2d_c00049{bottom:572.250000px;}
.y2e_c00049{bottom:572.535000px;}
.y2b_c00049{bottom:594.210000px;}
.y2c_c00049{bottom:594.510000px;}
.y2a_c00049{bottom:615.750000px;}
.y29_c00049{bottom:635.250000px;}
.y28_c00049{bottom:659.010000px;}
.y26_c00049{bottom:679.875000px;}
.y27_c00049{bottom:682.710000px;}
.y23_c00049{bottom:701.085000px;}
.y25_c00049{bottom:704.685000px;}
.y24_c00049{bottom:705.435000px;}
.y22_c00049{bottom:723.450000px;}
.y20_c00049{bottom:745.410000px;}
.y21_c00049{bottom:747.885000px;}
.y1f_c00049{bottom:767.385000px;}
.y1e_c00049{bottom:788.550000px;}
.y1d_c00049{bottom:809.460000px;}
.y1b_c00049{bottom:821.310000px;}
.y1c_c00049{bottom:831.060000px;}
.y1a_c00049{bottom:852.675000px;}
.y19_c00049{bottom:872.835000px;}
.y17_c00049{bottom:885.435000px;}
.y18_c00049{bottom:898.050000px;}
.y16_c00049{bottom:906.000000px;}
.y15_c00049{bottom:937.650000px;}
.y14_c00049{bottom:956.685000px;}
.y13_c00049{bottom:977.925000px;}
.y6_c00049{bottom:998.085000px;}
.y12_c00049{bottom:1006.710000px;}
.y7_c00049{bottom:1007.085000px;}
.y10_c00049{bottom:1007.400000px;}
.y11_c00049{bottom:1007.460000px;}
.yf_c00049{bottom:1007.775000px;}
.ye_c00049{bottom:1008.435000px;}
.y8_c00049{bottom:1008.810000px;}
.y9_c00049{bottom:1008.900000px;}
.ya_c00049{bottom:1009.185000px;}
.yb_c00049{bottom:1009.275000px;}
.yc_c00049{bottom:1009.560000px;}
.yd_c00049{bottom:1009.650000px;}
.y2_c00049{bottom:1017.900000px;}
.y5_c00049{bottom:1027.650000px;}
.y3_c00049{bottom:1029.435000px;}
.y4_c00049{bottom:1030.500000px;}
.y5e_c00049{bottom:1063.935000px;}
.y1_c00049{bottom:1078.335000px;}
.h7_c00049{height:58.857422px;}
.h1_c00049{height:58.886719px;}
.h6_c00049{height:66.515625px;}
.h4_c00049{height:72.562500px;}
.h2_c00049{height:76.552734px;}
.h3_c00049{height:78.609375px;}
.h5_c00049{height:82.400391px;}
.h0_c00049{height:1174.500000px;}
.w0_c00049{width:731.977200px;}
.w1_c00049{width:732.000000px;}
.x0_c00049{left:0.000000px;}
.x35_c00049{left:65.515200px;}
.x33_c00049{left:66.940200px;}
.x2a_c00049{left:67.990200px;}
.x28_c00049{left:69.115200px;}
.x27_c00049{left:70.165200px;}
.x24_c00049{left:71.590200px;}
.x22_c00049{left:72.715200px;}
.x1f_c00049{left:74.515200px;}
.x1c_c00049{left:75.550200px;}
.x2_c00049{left:76.990200px;}
.x21_c00049{left:82.090200px;}
.x2d_c00049{left:89.965200px;}
.x20_c00049{left:91.390200px;}
.x1d_c00049{left:94.990200px;}
.x40_c00049{left:96.490200px;}
.x29_c00049{left:98.290200px;}
.x1b_c00049{left:112.990200px;}
.x3e_c00049{left:140.365200px;}
.x3f_c00049{left:166.690200px;}
.x2e_c00049{left:179.590200px;}
.x1e_c00049{left:191.125200px;}
.x1_c00049{left:296.290200px;}
.x36_c00049{left:301.315200px;}
.x38_c00049{left:308.140200px;}
.x39_c00049{left:328.690200px;}
.x6_c00049{left:485.290200px;}
.x3c_c00049{left:496.390200px;}
.x3_c00049{left:519.115200px;}
.x4_c00049{left:527.365200px;}
.x7_c00049{left:536.365200px;}
.x8_c00049{left:538.540200px;}
.x9_c00049{left:540.340200px;}
.xa_c00049{left:544.315200px;}
.xb_c00049{left:546.790200px;}
.xc_c00049{left:554.740200px;}
.x25_c00049{left:557.290200px;}
.xd_c00049{left:561.565200px;}
.x2b_c00049{left:563.740200px;}
.xe_c00049{left:575.965200px;}
.xf_c00049{left:579.940200px;}
.x10_c00049{left:587.890200px;}
.x11_c00049{left:589.990200px;}
.x32_c00049{left:592.165200px;}
.x12_c00049{left:604.390200px;}
.x13_c00049{left:606.940200px;}
.x14_c00049{left:610.540200px;}
.x26_c00049{left:611.965200px;}
.x2c_c00049{left:616.690200px;}
.x15_c00049{left:620.965200px;}
.x16_c00049{left:625.315200px;}
.x37_c00049{left:626.740200px;}
.x17_c00049{left:634.690200px;}
.x31_c00049{left:635.740200px;}
.x3b_c00049{left:639.340200px;}
.x18_c00049{left:641.515200px;}
.x19_c00049{left:643.990200px;}
.x2f_c00049{left:645.790200px;}
.x30_c00049{left:648.340200px;}
.x1a_c00049{left:651.565200px;}
.x34_c00049{left:655.540200px;}
.x5_c00049{left:664.540200px;}
.x3a_c00049{left:666.715200px;}
.x23_c00049{left:668.890200px;}
.x3d_c00049{left:682.540200px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls0_c00049{letter-spacing:0.000000pt;}
.ws0_c00049{word-spacing:0.000000pt;}
.fs0_c00049{font-size:53.333333pt;}
.fs4_c00049{font-size:58.666667pt;}
.fs2_c00049{font-size:64.000000pt;}
.fs1_c00049{font-size:69.333333pt;}
.fs3_c00049{font-size:74.666667pt;}
.y0_c00049{bottom:0.000000pt;}
.y5d_c00049{bottom:57.720000pt;}
.y5c_c00049{bottom:58.720000pt;}
.y5b_c00049{bottom:62.520000pt;}
.y5a_c00049{bottom:72.453333pt;}
.y59_c00049{bottom:74.720000pt;}
.y58_c00049{bottom:75.333333pt;}
.y57_c00049{bottom:83.333333pt;}
.y56_c00049{bottom:98.386667pt;}
.y55_c00049{bottom:105.120000pt;}
.y54_c00049{bottom:117.000000pt;}
.y53_c00049{bottom:122.386667pt;}
.y52_c00049{bottom:136.120000pt;}
.y51_c00049{bottom:136.786667pt;}
.y50_c00049{bottom:137.386667pt;}
.y4f_c00049{bottom:142.253333pt;}
.y4e_c00049{bottom:147.386667pt;}
.y4d_c00049{bottom:156.253333pt;}
.y4c_c00049{bottom:157.253333pt;}
.y4b_c00049{bottom:166.586667pt;}
.y4a_c00049{bottom:179.053333pt;}
.y49_c00049{bottom:198.520000pt;}
.y48_c00049{bottom:214.520000pt;}
.y47_c00049{bottom:218.720000pt;}
.y46_c00049{bottom:234.053333pt;}
.y45_c00049{bottom:239.186667pt;}
.y44_c00049{bottom:254.853333pt;}
.y43_c00049{bottom:257.466667pt;}
.y42_c00049{bottom:273.386667pt;}
.y41_c00049{bottom:276.666667pt;}
.y40_c00049{bottom:293.586667pt;}
.y3f_c00049{bottom:295.520000pt;}
.y3e_c00049{bottom:313.053333pt;}
.y3d_c00049{bottom:313.133333pt;}
.y3c_c00049{bottom:315.666667pt;}
.y3b_c00049{bottom:332.586667pt;}
.y3a_c00049{bottom:333.586667pt;}
.y39_c00049{bottom:338.133333pt;}
.y38_c00049{bottom:355.666667pt;}
.y37_c00049{bottom:371.666667pt;}
.y36_c00049{bottom:373.586667pt;}
.y35_c00049{bottom:392.453333pt;}
.y34_c00049{bottom:411.666667pt;}
.y33_c00049{bottom:431.186667pt;}
.y32_c00049{bottom:450.720000pt;}
.y31_c00049{bottom:469.920000pt;}
.y30_c00049{bottom:489.386667pt;}
.y2f_c00049{bottom:508.586667pt;}
.y2d_c00049{bottom:508.666667pt;}
.y2e_c00049{bottom:508.920000pt;}
.y2b_c00049{bottom:528.186667pt;}
.y2c_c00049{bottom:528.453333pt;}
.y2a_c00049{bottom:547.333333pt;}
.y29_c00049{bottom:564.666667pt;}
.y28_c00049{bottom:585.786667pt;}
.y26_c00049{bottom:604.333333pt;}
.y27_c00049{bottom:606.853333pt;}
.y23_c00049{bottom:623.186667pt;}
.y25_c00049{bottom:626.386667pt;}
.y24_c00049{bottom:627.053333pt;}
.y22_c00049{bottom:643.066667pt;}
.y20_c00049{bottom:662.586667pt;}
.y21_c00049{bottom:664.786667pt;}
.y1f_c00049{bottom:682.120000pt;}
.y1e_c00049{bottom:700.933333pt;}
.y1d_c00049{bottom:719.520000pt;}
.y1b_c00049{bottom:730.053333pt;}
.y1c_c00049{bottom:738.720000pt;}
.y1a_c00049{bottom:757.933333pt;}
.y19_c00049{bottom:775.853333pt;}
.y17_c00049{bottom:787.053333pt;}
.y18_c00049{bottom:798.266667pt;}
.y16_c00049{bottom:805.333333pt;}
.y15_c00049{bottom:833.466667pt;}
.y14_c00049{bottom:850.386667pt;}
.y13_c00049{bottom:869.266667pt;}
.y6_c00049{bottom:887.186667pt;}
.y12_c00049{bottom:894.853333pt;}
.y7_c00049{bottom:895.186667pt;}
.y10_c00049{bottom:895.466667pt;}
.y11_c00049{bottom:895.520000pt;}
.yf_c00049{bottom:895.800000pt;}
.ye_c00049{bottom:896.386667pt;}
.y8_c00049{bottom:896.720000pt;}
.y9_c00049{bottom:896.800000pt;}
.ya_c00049{bottom:897.053333pt;}
.yb_c00049{bottom:897.133333pt;}
.yc_c00049{bottom:897.386667pt;}
.yd_c00049{bottom:897.466667pt;}
.y2_c00049{bottom:904.800000pt;}
.y5_c00049{bottom:913.466667pt;}
.y3_c00049{bottom:915.053333pt;}
.y4_c00049{bottom:916.000000pt;}
.y5e_c00049{bottom:945.720000pt;}
.y1_c00049{bottom:958.520000pt;}
.h7_c00049{height:52.317708pt;}
.h1_c00049{height:52.343750pt;}
.h6_c00049{height:59.125000pt;}
.h4_c00049{height:64.500000pt;}
.h2_c00049{height:68.046875pt;}
.h3_c00049{height:69.875000pt;}
.h5_c00049{height:73.244792pt;}
.h0_c00049{height:1044.000000pt;}
.w0_c00049{width:650.646400pt;}
.w1_c00049{width:650.666667pt;}
.x0_c00049{left:0.000000pt;}
.x35_c00049{left:58.235733pt;}
.x33_c00049{left:59.502400pt;}
.x2a_c00049{left:60.435733pt;}
.x28_c00049{left:61.435733pt;}
.x27_c00049{left:62.369067pt;}
.x24_c00049{left:63.635733pt;}
.x22_c00049{left:64.635733pt;}
.x1f_c00049{left:66.235733pt;}
.x1c_c00049{left:67.155733pt;}
.x2_c00049{left:68.435733pt;}
.x21_c00049{left:72.969067pt;}
.x2d_c00049{left:79.969067pt;}
.x20_c00049{left:81.235733pt;}
.x1d_c00049{left:84.435733pt;}
.x40_c00049{left:85.769067pt;}
.x29_c00049{left:87.369067pt;}
.x1b_c00049{left:100.435733pt;}
.x3e_c00049{left:124.769067pt;}
.x3f_c00049{left:148.169067pt;}
.x2e_c00049{left:159.635733pt;}
.x1e_c00049{left:169.889067pt;}
.x1_c00049{left:263.369067pt;}
.x36_c00049{left:267.835733pt;}
.x38_c00049{left:273.902400pt;}
.x39_c00049{left:292.169067pt;}
.x6_c00049{left:431.369067pt;}
.x3c_c00049{left:441.235733pt;}
.x3_c00049{left:461.435733pt;}
.x4_c00049{left:468.769067pt;}
.x7_c00049{left:476.769067pt;}
.x8_c00049{left:478.702400pt;}
.x9_c00049{left:480.302400pt;}
.xa_c00049{left:483.835733pt;}
.xb_c00049{left:486.035733pt;}
.xc_c00049{left:493.102400pt;}
.x25_c00049{left:495.369067pt;}
.xd_c00049{left:499.169067pt;}
.x2b_c00049{left:501.102400pt;}
.xe_c00049{left:511.969067pt;}
.xf_c00049{left:515.502400pt;}
.x10_c00049{left:522.569067pt;}
.x11_c00049{left:524.435733pt;}
.x32_c00049{left:526.369067pt;}
.x12_c00049{left:537.235733pt;}
.x13_c00049{left:539.502400pt;}
.x14_c00049{left:542.702400pt;}
.x26_c00049{left:543.969067pt;}
.x2c_c00049{left:548.169067pt;}
.x15_c00049{left:551.969067pt;}
.x16_c00049{left:555.835733pt;}
.x37_c00049{left:557.102400pt;}
.x17_c00049{left:564.169067pt;}
.x31_c00049{left:565.102400pt;}
.x3b_c00049{left:568.302400pt;}
.x18_c00049{left:570.235733pt;}
.x19_c00049{left:572.435733pt;}
.x2f_c00049{left:574.035733pt;}
.x30_c00049{left:576.302400pt;}
.x1a_c00049{left:579.169067pt;}
.x34_c00049{left:582.702400pt;}
.x5_c00049{left:590.702400pt;}
.x3a_c00049{left:592.635733pt;}
.x23_c00049{left:594.569067pt;}
.x3d_c00049{left:606.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_120fc4750e2d8ffabdb1ce22.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00050;src:url('chunks/assets/font_4ba1b89e16514075db82f277.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00050;src:url('chunks/assets/font_8eadf8a8ef78625f945d0a0f.woff2')format("woff");}.ff3_c00050{font-family:ff3_c00050;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00050;src:url('chunks/assets/font_d8f821ba965b6a6650b1207f.woff2')format("woff");}.ff4_c00050{font-family:ff4_c00050;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00050{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0_c00050{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00050{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c00050{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c00050{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m14_c00050{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c00050{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1_c00050{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00050{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00050{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00050{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00050{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c00050{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00050{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2_c00050{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00050{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c00050{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00050{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00050{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7_c00050{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me_c00050{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m10_c00050{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,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;}
.fc0_c00050{color:transparent;}
.fs0_c00050{font-size:60.000000px;}
.fs2_c00050{font-size:66.000000px;}
.fs1_c00050{font-size:72.000000px;}
.y0_c00050{bottom:0.000000px;}
.y3e_c00050{bottom:85.875000px;}
.y3d_c00050{bottom:106.785000px;}
.y3c_c00050{bottom:128.010000px;}
.y3b_c00050{bottom:149.250000px;}
.y3a_c00050{bottom:169.335000px;}
.y39_c00050{bottom:170.760000px;}
.y38_c00050{bottom:190.260000px;}
.y37_c00050{bottom:211.185000px;}
.y36_c00050{bottom:232.035000px;}
.y35_c00050{bottom:233.085000px;}
.y34_c00050{bottom:253.935000px;}
.y33_c00050{bottom:254.310000px;}
.y32_c00050{bottom:275.535000px;}
.y31_c00050{bottom:296.835000px;}
.y30_c00050{bottom:318.435000px;}
.y2f_c00050{bottom:340.335000px;}
.y2e_c00050{bottom:361.275000px;}
.y2d_c00050{bottom:382.500000px;}
.y2c_c00050{bottom:382.875000px;}
.y2b_c00050{bottom:404.460000px;}
.y2a_c00050{bottom:425.685000px;}
.y29_c00050{bottom:426.060000px;}
.y27_c00050{bottom:447.660000px;}
.y28_c00050{bottom:449.085000px;}
.y26_c00050{bottom:469.260000px;}
.y25_c00050{bottom:491.250000px;}
.y24_c00050{bottom:513.135000px;}
.y23_c00050{bottom:534.750000px;}
.y22_c00050{bottom:535.875000px;}
.y21_c00050{bottom:556.410000px;}
.y20_c00050{bottom:578.310000px;}
.y1f_c00050{bottom:599.910000px;}
.y1e_c00050{bottom:621.510000px;}
.y1d_c00050{bottom:643.125000px;}
.y1c_c00050{bottom:664.710000px;}
.y1b_c00050{bottom:665.760000px;}
.y1a_c00050{bottom:686.685000px;}
.y19_c00050{bottom:687.750000px;}
.y18_c00050{bottom:707.535000px;}
.y17_c00050{bottom:708.285000px;}
.y16_c00050{bottom:709.335000px;}
.y15_c00050{bottom:730.260000px;}
.y14_c00050{bottom:731.700000px;}
.y13_c00050{bottom:752.535000px;}
.y12_c00050{bottom:774.510000px;}
.y11_c00050{bottom:796.500000px;}
.y10_c00050{bottom:818.085000px;}
.yf_c00050{bottom:840.060000px;}
.ye_c00050{bottom:861.675000px;}
.yd_c00050{bottom:883.275000px;}
.yc_c00050{bottom:904.875000px;}
.yb_c00050{bottom:905.550000px;}
.ya_c00050{bottom:926.400000px;}
.y9_c00050{bottom:947.310000px;}
.y8_c00050{bottom:949.125000px;}
.y7_c00050{bottom:969.300000px;}
.y6_c00050{bottom:990.900000px;}
.y5_c00050{bottom:1012.500000px;}
.y4_c00050{bottom:1014.675000px;}
.y3_c00050{bottom:1033.710000px;}
.y2_c00050{bottom:1036.650000px;}
.y3f_c00050{bottom:1086.585000px;}
.y1_c00050{bottom:1094.550000px;}
.h1_c00050{height:60.468750px;}
.h4_c00050{height:64.743164px;}
.h3_c00050{height:70.664062px;}
.h2_c00050{height:72.562500px;}
.h0_c00050{height:1174.500000px;}
.w0_c00050{width:731.977200px;}
.w1_c00050{width:732.000000px;}
.x0_c00050{left:0.000000px;}
.x12_c00050{left:35.575200px;}
.x11_c00050{left:37.390200px;}
.x10_c00050{left:38.515200px;}
.xd_c00050{left:39.940200px;}
.x7_c00050{left:40.990200px;}
.x5_c00050{left:42.490200px;}
.x2_c00050{left:43.540200px;}
.xe_c00050{left:59.365200px;}
.x8_c00050{left:64.090200px;}
.x16_c00050{left:69.790200px;}
.xf_c00050{left:73.090200px;}
.x6_c00050{left:75.550200px;}
.xc_c00050{left:78.790200px;}
.x17_c00050{left:85.675200px;}
.x15_c00050{left:100.765200px;}
.x18_c00050{left:103.315200px;}
.x19_c00050{left:109.390200px;}
.x4_c00050{left:112.990200px;}
.x3_c00050{left:153.340200px;}
.x14_c00050{left:178.540200px;}
.x1_c00050{left:262.390200px;}
.x9_c00050{left:358.540200px;}
.xa_c00050{left:372.940200px;}
.xb_c00050{left:444.190200px;}
.x1a_c00050{left:637.165200px;}
.x13_c00050{left:645.115200px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls0_c00050{letter-spacing:0.000000pt;}
.ws0_c00050{word-spacing:0.000000pt;}
.fs0_c00050{font-size:53.333333pt;}
.fs2_c00050{font-size:58.666667pt;}
.fs1_c00050{font-size:64.000000pt;}
.y0_c00050{bottom:0.000000pt;}
.y3e_c00050{bottom:76.333333pt;}
.y3d_c00050{bottom:94.920000pt;}
.y3c_c00050{bottom:113.786667pt;}
.y3b_c00050{bottom:132.666667pt;}
.y3a_c00050{bottom:150.520000pt;}
.y39_c00050{bottom:151.786667pt;}
.y38_c00050{bottom:169.120000pt;}
.y37_c00050{bottom:187.720000pt;}
.y36_c00050{bottom:206.253333pt;}
.y35_c00050{bottom:207.186667pt;}
.y34_c00050{bottom:225.720000pt;}
.y33_c00050{bottom:226.053333pt;}
.y32_c00050{bottom:244.920000pt;}
.y31_c00050{bottom:263.853333pt;}
.y30_c00050{bottom:283.053333pt;}
.y2f_c00050{bottom:302.520000pt;}
.y2e_c00050{bottom:321.133333pt;}
.y2d_c00050{bottom:340.000000pt;}
.y2c_c00050{bottom:340.333333pt;}
.y2b_c00050{bottom:359.520000pt;}
.y2a_c00050{bottom:378.386667pt;}
.y29_c00050{bottom:378.720000pt;}
.y27_c00050{bottom:397.920000pt;}
.y28_c00050{bottom:399.186667pt;}
.y26_c00050{bottom:417.120000pt;}
.y25_c00050{bottom:436.666667pt;}
.y24_c00050{bottom:456.120000pt;}
.y23_c00050{bottom:475.333333pt;}
.y22_c00050{bottom:476.333333pt;}
.y21_c00050{bottom:494.586667pt;}
.y20_c00050{bottom:514.053333pt;}
.y1f_c00050{bottom:533.253333pt;}
.y1e_c00050{bottom:552.453333pt;}
.y1d_c00050{bottom:571.666667pt;}
.y1c_c00050{bottom:590.853333pt;}
.y1b_c00050{bottom:591.786667pt;}
.y1a_c00050{bottom:610.386667pt;}
.y19_c00050{bottom:611.333333pt;}
.y18_c00050{bottom:628.920000pt;}
.y17_c00050{bottom:629.586667pt;}
.y16_c00050{bottom:630.520000pt;}
.y15_c00050{bottom:649.120000pt;}
.y14_c00050{bottom:650.400000pt;}
.y13_c00050{bottom:668.920000pt;}
.y12_c00050{bottom:688.453333pt;}
.y11_c00050{bottom:708.000000pt;}
.y10_c00050{bottom:727.186667pt;}
.yf_c00050{bottom:746.720000pt;}
.ye_c00050{bottom:765.933333pt;}
.yd_c00050{bottom:785.133333pt;}
.yc_c00050{bottom:804.333333pt;}
.yb_c00050{bottom:804.933333pt;}
.ya_c00050{bottom:823.466667pt;}
.y9_c00050{bottom:842.053333pt;}
.y8_c00050{bottom:843.666667pt;}
.y7_c00050{bottom:861.600000pt;}
.y6_c00050{bottom:880.800000pt;}
.y5_c00050{bottom:900.000000pt;}
.y4_c00050{bottom:901.933333pt;}
.y3_c00050{bottom:918.853333pt;}
.y2_c00050{bottom:921.466667pt;}
.y3f_c00050{bottom:965.853333pt;}
.y1_c00050{bottom:972.933333pt;}
.h1_c00050{height:53.750000pt;}
.h4_c00050{height:57.549479pt;}
.h3_c00050{height:62.812500pt;}
.h2_c00050{height:64.500000pt;}
.h0_c00050{height:1044.000000pt;}
.w0_c00050{width:650.646400pt;}
.w1_c00050{width:650.666667pt;}
.x0_c00050{left:0.000000pt;}
.x12_c00050{left:31.622400pt;}
.x11_c00050{left:33.235733pt;}
.x10_c00050{left:34.235733pt;}
.xd_c00050{left:35.502400pt;}
.x7_c00050{left:36.435733pt;}
.x5_c00050{left:37.769067pt;}
.x2_c00050{left:38.702400pt;}
.xe_c00050{left:52.769067pt;}
.x8_c00050{left:56.969067pt;}
.x16_c00050{left:62.035733pt;}
.xf_c00050{left:64.969067pt;}
.x6_c00050{left:67.155733pt;}
.xc_c00050{left:70.035733pt;}
.x17_c00050{left:76.155733pt;}
.x15_c00050{left:89.569067pt;}
.x18_c00050{left:91.835733pt;}
.x19_c00050{left:97.235733pt;}
.x4_c00050{left:100.435733pt;}
.x3_c00050{left:136.302400pt;}
.x14_c00050{left:158.702400pt;}
.x1_c00050{left:233.235733pt;}
.x9_c00050{left:318.702400pt;}
.xa_c00050{left:331.502400pt;}
.xb_c00050{left:394.835733pt;}
.x1a_c00050{left:566.369067pt;}
.x13_c00050{left:573.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75eb64b1e58b6848db83030b.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00051;src:url('chunks/assets/font_c2940b4e5e852ac3ac1ff99e.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00051;src:url('chunks/assets/font_8e8bbeecc3a7f7228b386a21.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00051;src:url('chunks/assets/font_24b7e39df53be037f8b4b37e.woff2')format("woff");}.ff4_c00051{font-family:ff4_c00051;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00051;src:url('chunks/assets/font_1468c990e9e9be095b0ce3f6.woff2')format("woff");}.ff5_c00051{font-family:ff5_c00051;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m24_c00051{transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);}
.m22_c00051{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m4_c00051{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m20_c00051{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3_c00051{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m0_c00051{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5_c00051{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m27_c00051{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m13_c00051{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m21_c00051{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00051{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8_c00051{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.m6_c00051{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11_c00051{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md_c00051{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb_c00051{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00051{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10_c00051{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m12_c00051{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c00051{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c00051{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c00051{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00051{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00051{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m18_c00051{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m23_c00051{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c00051{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00051{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00051{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c00051{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m19_c00051{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c00051{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00051{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m26_c00051{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m28_c00051{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00051{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c00051{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mf_c00051{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00051{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1_c00051{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.v1_c00051{vertical-align:25.860000px;}
.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;}
._0_c00051{margin-left:-8.665473px;}
.fc0_c00051{color:transparent;}
.fs3_c00051{font-size:42.000000px;}
.fs1_c00051{font-size:60.000000px;}
.fs4_c00051{font-size:72.000000px;}
.fs0_c00051{font-size:78.000000px;}
.fs2_c00051{font-size:84.000000px;}
.y0_c00051{bottom:0.000000px;}
.y72_c00051{bottom:83.310000px;}
.y71_c00051{bottom:91.635000px;}
.y70_c00051{bottom:98.085000px;}
.y6f_c00051{bottom:102.810000px;}
.y6e_c00051{bottom:106.035000px;}
.y6d_c00051{bottom:112.500000px;}
.y6c_c00051{bottom:133.410000px;}
.y6b_c00051{bottom:148.875000px;}
.y6a_c00051{bottom:156.435000px;}
.y69_c00051{bottom:164.310000px;}
.y68_c00051{bottom:166.125000px;}
.y67_c00051{bottom:176.910000px;}
.y66_c00051{bottom:193.125000px;}
.y65_c00051{bottom:199.635000px;}
.y64_c00051{bottom:214.335000px;}
.y63_c00051{bottom:215.085000px;}
.y62_c00051{bottom:215.835000px;}
.y61_c00051{bottom:218.685000px;}
.y60_c00051{bottom:225.885000px;}
.y5f_c00051{bottom:239.250000px;}
.y5e_c00051{bottom:240.285000px;}
.y5d_c00051{bottom:247.125000px;}
.y5c_c00051{bottom:258.660000px;}
.y5b_c00051{bottom:266.910000px;}
.y5a_c00051{bottom:280.650000px;}
.y59_c00051{bottom:286.035000px;}
.y58_c00051{bottom:301.875000px;}
.y57_c00051{bottom:309.435000px;}
.y56_c00051{bottom:327.435000px;}
.y55_c00051{bottom:335.310000px;}
.y54_c00051{bottom:355.125000px;}
.y53_c00051{bottom:357.660000px;}
.y52_c00051{bottom:368.085000px;}
.y51_c00051{bottom:373.500000px;}
.y50_c00051{bottom:390.810000px;}
.y4f_c00051{bottom:395.835000px;}
.y4e_c00051{bottom:412.710000px;}
.y4d_c00051{bottom:417.375000px;}
.y4c_c00051{bottom:435.060000px;}
.y4b_c00051{bottom:437.910000px;}
.y4a_c00051{bottom:456.960000px;}
.y49_c00051{bottom:459.510000px;}
.y48_c00051{bottom:481.500000px;}
.y47_c00051{bottom:503.085000px;}
.y46_c00051{bottom:523.260000px;}
.y45_c00051{bottom:525.435000px;}
.y43_c00051{bottom:526.125000px;}
.y44_c00051{bottom:526.185000px;}
.y42_c00051{bottom:545.535000px;}
.y41_c00051{bottom:546.285000px;}
.y40_c00051{bottom:547.335000px;}
.y3f_c00051{bottom:568.635000px;}
.y3e_c00051{bottom:590.160000px;}
.y3d_c00051{bottom:612.135000px;}
.y3a_c00051{bottom:632.385000px;}
.y3c_c00051{bottom:633.750000px;}
.y3b_c00051{bottom:634.125000px;}
.y39_c00051{bottom:655.335000px;}
.y38_c00051{bottom:655.710000px;}
.y36_c00051{bottom:676.635000px;}
.y37_c00051{bottom:677.310000px;}
.y33_c00051{bottom:696.810000px;}
.y34_c00051{bottom:698.910000px;}
.y35_c00051{bottom:699.960000px;}
.y2f_c00051{bottom:715.125000px;}
.y30_c00051{bottom:719.085000px;}
.y31_c00051{bottom:721.950000px;}
.y32_c00051{bottom:722.010000px;}
.y2d_c00051{bottom:735.960000px;}
.y2e_c00051{bottom:737.835000px;}
.y2b_c00051{bottom:762.285000px;}
.y2c_c00051{bottom:764.460000px;}
.y26_c00051{bottom:778.125000px;}
.y27_c00051{bottom:782.460000px;}
.y28_c00051{bottom:786.435000px;}
.y29_c00051{bottom:787.125000px;}
.y2a_c00051{bottom:787.500000px;}
.y23_c00051{bottom:797.925000px;}
.y24_c00051{bottom:805.500000px;}
.y25_c00051{bottom:809.460000px;}
.y21_c00051{bottom:827.460000px;}
.y22_c00051{bottom:829.935000px;}
.y1e_c00051{bottom:839.400000px;}
.y1f_c00051{bottom:849.750000px;}
.y20_c00051{bottom:851.550000px;}
.y1b_c00051{bottom:864.210000px;}
.y1c_c00051{bottom:868.185000px;}
.y1d_c00051{bottom:873.525000px;}
.y19_c00051{bottom:881.085000px;}
.y1a_c00051{bottom:885.060000px;}
.y17_c00051{bottom:912.750000px;}
.y18_c00051{bottom:916.335000px;}
.y14_c00051{bottom:921.435000px;}
.y15_c00051{bottom:934.335000px;}
.y16_c00051{bottom:937.935000px;}
.y12_c00051{bottom:954.900000px;}
.y13_c00051{bottom:959.925000px;}
.y11_c00051{bottom:974.685000px;}
.y10_c00051{bottom:980.460000px;}
.yf_c00051{bottom:980.775000px;}
.yc_c00051{bottom:984.060000px;}
.yd_c00051{bottom:998.085000px;}
.ye_c00051{bottom:1003.185000px;}
.yb_c00051{bottom:1018.275000px;}
.ya_c00051{bottom:1023.300000px;}
.y6_c00051{bottom:1024.050000px;}
.y5_c00051{bottom:1026.525000px;}
.y4_c00051{bottom:1029.375000px;}
.y7_c00051{bottom:1040.625000px;}
.y8_c00051{bottom:1046.310000px;}
.y9_c00051{bottom:1047.435000px;}
.y1_c00051{bottom:1082.310000px;}
.y3_c00051{bottom:1096.710000px;}
.y2_c00051{bottom:1098.375000px;}
.h7_c00051{height:42.328125px;}
.h2_c00051{height:58.886719px;}
.h8_c00051{height:70.628906px;}
.h1_c00051{height:76.552734px;}
.h5_c00051{height:81.351562px;}
.h9_c00051{height:82.400391px;}
.h3_c00051{height:82.441406px;}
.h4_c00051{height:84.656250px;}
.h6_c00051{height:108.301406px;}
.h0_c00051{height:1174.500000px;}
.w0_c00051{width:731.977200px;}
.w1_c00051{width:732.000000px;}
.x0_c00051{left:0.000000px;}
.x2b_c00051{left:65.890200px;}
.x25_c00051{left:66.940200px;}
.x6_c00051{left:68.740200px;}
.x19_c00051{left:76.990200px;}
.x1_c00051{left:87.115200px;}
.x21_c00051{left:88.165200px;}
.x1b_c00051{left:90.715200px;}
.x37_c00051{left:93.550200px;}
.x2c_c00051{left:97.915200px;}
.x13_c00051{left:98.965200px;}
.x2_c00051{left:104.740200px;}
.x17_c00051{left:109.090200px;}
.x5_c00051{left:110.890200px;}
.x20_c00051{left:115.915200px;}
.x10_c00051{left:118.090200px;}
.x4_c00051{left:138.565200px;}
.x2f_c00051{left:149.365200px;}
.x42_c00051{left:156.190200px;}
.x43_c00051{left:164.890200px;}
.x22_c00051{left:170.290200px;}
.x30_c00051{left:173.125200px;}
.x29_c00051{left:194.365200px;}
.x7_c00051{left:201.565200px;}
.x46_c00051{left:209.890200px;}
.x47_c00051{left:218.515200px;}
.x14_c00051{left:257.365200px;}
.x3_c00051{left:286.915200px;}
.xb_c00051{left:295.915200px;}
.x15_c00051{left:319.690200px;}
.x2d_c00051{left:331.915200px;}
.x3c_c00051{left:348.790200px;}
.x26_c00051{left:376.525200px;}
.x23_c00051{left:388.390200px;}
.x3a_c00051{left:391.315200px;}
.x1c_c00051{left:422.965200px;}
.x3b_c00051{left:436.315200px;}
.x1d_c00051{left:439.150200px;}
.x3d_c00051{left:440.965200px;}
.x39_c00051{left:446.740200px;}
.xc_c00051{left:465.790200px;}
.x3e_c00051{left:513.715200px;}
.x3f_c00051{left:518.740200px;}
.x2e_c00051{left:524.890200px;}
.x44_c00051{left:528.490200px;}
.x31_c00051{left:535.990200px;}
.x1e_c00051{left:545.365200px;}
.x34_c00051{left:546.490200px;}
.x24_c00051{left:558.340200px;}
.x36_c00051{left:566.965200px;}
.x2a_c00051{left:569.890200px;}
.x8_c00051{left:576.715200px;}
.x1a_c00051{left:586.090200px;}
.xd_c00051{left:607.315200px;}
.x27_c00051{left:611.590200px;}
.x11_c00051{left:625.690200px;}
.x1f_c00051{left:628.915200px;}
.x38_c00051{left:631.390200px;}
.xf_c00051{left:634.990200px;}
.x16_c00051{left:641.890200px;}
.x40_c00051{left:642.940200px;}
.x18_c00051{left:645.790200px;}
.xa_c00051{left:649.765200px;}
.x12_c00051{left:653.740200px;}
.x45_c00051{left:655.540200px;}
.x9_c00051{left:656.590200px;}
.x32_c00051{left:658.765200px;}
.x33_c00051{left:659.890200px;}
.x28_c00051{left:661.690200px;}
.xe_c00051{left:665.590200px;}
.x35_c00051{left:690.790200px;}
.x41_c00051{left:700.540200px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.v1_c00051{vertical-align:22.986667pt;}
.ls0_c00051{letter-spacing:0.000000pt;}
.ws0_c00051{word-spacing:0.000000pt;}
._0_c00051{margin-left:-7.702643pt;}
.fs3_c00051{font-size:37.333333pt;}
.fs1_c00051{font-size:53.333333pt;}
.fs4_c00051{font-size:64.000000pt;}
.fs0_c00051{font-size:69.333333pt;}
.fs2_c00051{font-size:74.666667pt;}
.y0_c00051{bottom:0.000000pt;}
.y72_c00051{bottom:74.053333pt;}
.y71_c00051{bottom:81.453333pt;}
.y70_c00051{bottom:87.186667pt;}
.y6f_c00051{bottom:91.386667pt;}
.y6e_c00051{bottom:94.253333pt;}
.y6d_c00051{bottom:100.000000pt;}
.y6c_c00051{bottom:118.586667pt;}
.y6b_c00051{bottom:132.333333pt;}
.y6a_c00051{bottom:139.053333pt;}
.y69_c00051{bottom:146.053333pt;}
.y68_c00051{bottom:147.666667pt;}
.y67_c00051{bottom:157.253333pt;}
.y66_c00051{bottom:171.666667pt;}
.y65_c00051{bottom:177.453333pt;}
.y64_c00051{bottom:190.520000pt;}
.y63_c00051{bottom:191.186667pt;}
.y62_c00051{bottom:191.853333pt;}
.y61_c00051{bottom:194.386667pt;}
.y60_c00051{bottom:200.786667pt;}
.y5f_c00051{bottom:212.666667pt;}
.y5e_c00051{bottom:213.586667pt;}
.y5d_c00051{bottom:219.666667pt;}
.y5c_c00051{bottom:229.920000pt;}
.y5b_c00051{bottom:237.253333pt;}
.y5a_c00051{bottom:249.466667pt;}
.y59_c00051{bottom:254.253333pt;}
.y58_c00051{bottom:268.333333pt;}
.y57_c00051{bottom:275.053333pt;}
.y56_c00051{bottom:291.053333pt;}
.y55_c00051{bottom:298.053333pt;}
.y54_c00051{bottom:315.666667pt;}
.y53_c00051{bottom:317.920000pt;}
.y52_c00051{bottom:327.186667pt;}
.y51_c00051{bottom:332.000000pt;}
.y50_c00051{bottom:347.386667pt;}
.y4f_c00051{bottom:351.853333pt;}
.y4e_c00051{bottom:366.853333pt;}
.y4d_c00051{bottom:371.000000pt;}
.y4c_c00051{bottom:386.720000pt;}
.y4b_c00051{bottom:389.253333pt;}
.y4a_c00051{bottom:406.186667pt;}
.y49_c00051{bottom:408.453333pt;}
.y48_c00051{bottom:428.000000pt;}
.y47_c00051{bottom:447.186667pt;}
.y46_c00051{bottom:465.120000pt;}
.y45_c00051{bottom:467.053333pt;}
.y43_c00051{bottom:467.666667pt;}
.y44_c00051{bottom:467.720000pt;}
.y42_c00051{bottom:484.920000pt;}
.y41_c00051{bottom:485.586667pt;}
.y40_c00051{bottom:486.520000pt;}
.y3f_c00051{bottom:505.453333pt;}
.y3e_c00051{bottom:524.586667pt;}
.y3d_c00051{bottom:544.120000pt;}
.y3a_c00051{bottom:562.120000pt;}
.y3c_c00051{bottom:563.333333pt;}
.y3b_c00051{bottom:563.666667pt;}
.y39_c00051{bottom:582.520000pt;}
.y38_c00051{bottom:582.853333pt;}
.y36_c00051{bottom:601.453333pt;}
.y37_c00051{bottom:602.053333pt;}
.y33_c00051{bottom:619.386667pt;}
.y34_c00051{bottom:621.253333pt;}
.y35_c00051{bottom:622.186667pt;}
.y2f_c00051{bottom:635.666667pt;}
.y30_c00051{bottom:639.186667pt;}
.y31_c00051{bottom:641.733333pt;}
.y32_c00051{bottom:641.786667pt;}
.y2d_c00051{bottom:654.186667pt;}
.y2e_c00051{bottom:655.853333pt;}
.y2b_c00051{bottom:677.586667pt;}
.y2c_c00051{bottom:679.520000pt;}
.y26_c00051{bottom:691.666667pt;}
.y27_c00051{bottom:695.520000pt;}
.y28_c00051{bottom:699.053333pt;}
.y29_c00051{bottom:699.666667pt;}
.y2a_c00051{bottom:700.000000pt;}
.y23_c00051{bottom:709.266667pt;}
.y24_c00051{bottom:716.000000pt;}
.y25_c00051{bottom:719.520000pt;}
.y21_c00051{bottom:735.520000pt;}
.y22_c00051{bottom:737.720000pt;}
.y1e_c00051{bottom:746.133333pt;}
.y1f_c00051{bottom:755.333333pt;}
.y20_c00051{bottom:756.933333pt;}
.y1b_c00051{bottom:768.186667pt;}
.y1c_c00051{bottom:771.720000pt;}
.y1d_c00051{bottom:776.466667pt;}
.y19_c00051{bottom:783.186667pt;}
.y1a_c00051{bottom:786.720000pt;}
.y17_c00051{bottom:811.333333pt;}
.y18_c00051{bottom:814.520000pt;}
.y14_c00051{bottom:819.053333pt;}
.y15_c00051{bottom:830.520000pt;}
.y16_c00051{bottom:833.720000pt;}
.y12_c00051{bottom:848.800000pt;}
.y13_c00051{bottom:853.266667pt;}
.y11_c00051{bottom:866.386667pt;}
.y10_c00051{bottom:871.520000pt;}
.yf_c00051{bottom:871.800000pt;}
.yc_c00051{bottom:874.720000pt;}
.yd_c00051{bottom:887.186667pt;}
.ye_c00051{bottom:891.720000pt;}
.yb_c00051{bottom:905.133333pt;}
.ya_c00051{bottom:909.600000pt;}
.y6_c00051{bottom:910.266667pt;}
.y5_c00051{bottom:912.466667pt;}
.y4_c00051{bottom:915.000000pt;}
.y7_c00051{bottom:925.000000pt;}
.y8_c00051{bottom:930.053333pt;}
.y9_c00051{bottom:931.053333pt;}
.y1_c00051{bottom:962.053333pt;}
.y3_c00051{bottom:974.853333pt;}
.y2_c00051{bottom:976.333333pt;}
.h7_c00051{height:37.625000pt;}
.h2_c00051{height:52.343750pt;}
.h8_c00051{height:62.781250pt;}
.h1_c00051{height:68.046875pt;}
.h5_c00051{height:72.312500pt;}
.h9_c00051{height:73.244792pt;}
.h3_c00051{height:73.281250pt;}
.h4_c00051{height:75.250000pt;}
.h6_c00051{height:96.267917pt;}
.h0_c00051{height:1044.000000pt;}
.w0_c00051{width:650.646400pt;}
.w1_c00051{width:650.666667pt;}
.x0_c00051{left:0.000000pt;}
.x2b_c00051{left:58.569067pt;}
.x25_c00051{left:59.502400pt;}
.x6_c00051{left:61.102400pt;}
.x19_c00051{left:68.435733pt;}
.x1_c00051{left:77.435733pt;}
.x21_c00051{left:78.369067pt;}
.x1b_c00051{left:80.635733pt;}
.x37_c00051{left:83.155733pt;}
.x2c_c00051{left:87.035733pt;}
.x13_c00051{left:87.969067pt;}
.x2_c00051{left:93.102400pt;}
.x17_c00051{left:96.969067pt;}
.x5_c00051{left:98.569067pt;}
.x20_c00051{left:103.035733pt;}
.x10_c00051{left:104.969067pt;}
.x4_c00051{left:123.169067pt;}
.x2f_c00051{left:132.769067pt;}
.x42_c00051{left:138.835733pt;}
.x43_c00051{left:146.569067pt;}
.x22_c00051{left:151.369067pt;}
.x30_c00051{left:153.889067pt;}
.x29_c00051{left:172.769067pt;}
.x7_c00051{left:179.169067pt;}
.x46_c00051{left:186.569067pt;}
.x47_c00051{left:194.235733pt;}
.x14_c00051{left:228.769067pt;}
.x3_c00051{left:255.035733pt;}
.xb_c00051{left:263.035733pt;}
.x15_c00051{left:284.169067pt;}
.x2d_c00051{left:295.035733pt;}
.x3c_c00051{left:310.035733pt;}
.x26_c00051{left:334.689067pt;}
.x23_c00051{left:345.235733pt;}
.x3a_c00051{left:347.835733pt;}
.x1c_c00051{left:375.969067pt;}
.x3b_c00051{left:387.835733pt;}
.x1d_c00051{left:390.355733pt;}
.x3d_c00051{left:391.969067pt;}
.x39_c00051{left:397.102400pt;}
.xc_c00051{left:414.035733pt;}
.x3e_c00051{left:456.635733pt;}
.x3f_c00051{left:461.102400pt;}
.x2e_c00051{left:466.569067pt;}
.x44_c00051{left:469.769067pt;}
.x31_c00051{left:476.435733pt;}
.x1e_c00051{left:484.769067pt;}
.x34_c00051{left:485.769067pt;}
.x24_c00051{left:496.302400pt;}
.x36_c00051{left:503.969067pt;}
.x2a_c00051{left:506.569067pt;}
.x8_c00051{left:512.635733pt;}
.x1a_c00051{left:520.969067pt;}
.xd_c00051{left:539.835733pt;}
.x27_c00051{left:543.635733pt;}
.x11_c00051{left:556.169067pt;}
.x1f_c00051{left:559.035733pt;}
.x38_c00051{left:561.235733pt;}
.xf_c00051{left:564.435733pt;}
.x16_c00051{left:570.569067pt;}
.x40_c00051{left:571.502400pt;}
.x18_c00051{left:574.035733pt;}
.xa_c00051{left:577.569067pt;}
.x12_c00051{left:581.102400pt;}
.x45_c00051{left:582.702400pt;}
.x9_c00051{left:583.635733pt;}
.x32_c00051{left:585.569067pt;}
.x33_c00051{left:586.569067pt;}
.x28_c00051{left:588.169067pt;}
.xe_c00051{left:591.635733pt;}
.x35_c00051{left:614.035733pt;}
.x41_c00051{left:622.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3217eee3b191aeedad72c4d2.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00052;src:url('chunks/assets/font_a70bf75838619949ddebe51a.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00052;src:url('chunks/assets/font_219671d946b17ca82785e1a2.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00052;src:url('chunks/assets/font_fa4f661f322e1a863895fcf8.woff2')format("woff");}.ff4_c00052{font-family:ff4_c00052;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00052{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m11_c00052{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m10_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);}
.m8_c00052{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc_c00052{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c00052{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c00052{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00052{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00052{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00052{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c00052{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf_c00052{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00052{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00052{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c00052{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c00052{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00052{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c00052{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c00052{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m16_c00052{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m13_c00052{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m0_c00052{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c00052{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c00052{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c00052{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c00052{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00052{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00052{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3_c00052{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,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;}
.fc0_c00052{color:transparent;}
.fs4_c00052{font-size:60.000000px;}
.fs0_c00052{font-size:66.000000px;}
.fs3_c00052{font-size:72.000000px;}
.fs1_c00052{font-size:78.000000px;}
.fs2_c00052{font-size:84.000000px;}
.y0_c00052{bottom:0.000000px;}
.y49_c00052{bottom:72.885000px;}
.y42_c00052{bottom:90.210000px;}
.y43_c00052{bottom:90.510000px;}
.y44_c00052{bottom:91.260000px;}
.y45_c00052{bottom:91.935000px;}
.y46_c00052{bottom:92.310000px;}
.y47_c00052{bottom:93.060000px;}
.y48_c00052{bottom:95.250000px;}
.y41_c00052{bottom:106.410000px;}
.y3f_c00052{bottom:121.785000px;}
.y3e_c00052{bottom:122.910000px;}
.y40_c00052{bottom:123.960000px;}
.y3d_c00052{bottom:140.160000px;}
.y3c_c00052{bottom:156.435000px;}
.y39_c00052{bottom:172.260000px;}
.y3a_c00052{bottom:175.500000px;}
.y3b_c00052{bottom:177.585000px;}
.y38_c00052{bottom:189.510000px;}
.y36_c00052{bottom:206.385000px;}
.y37_c00052{bottom:210.750000px;}
.y34_c00052{bottom:222.285000px;}
.y35_c00052{bottom:223.035000px;}
.y31_c00052{bottom:239.910000px;}
.y32_c00052{bottom:240.285000px;}
.y30_c00052{bottom:241.035000px;}
.y33_c00052{bottom:241.710000px;}
.y2f_c00052{bottom:282.810000px;}
.y2e_c00052{bottom:304.410000px;}
.y2d_c00052{bottom:325.650000px;}
.y2b_c00052{bottom:346.875000px;}
.y2c_c00052{bottom:347.625000px;}
.y2a_c00052{bottom:347.910000px;}
.y28_c00052{bottom:368.085000px;}
.y29_c00052{bottom:371.025000px;}
.y27_c00052{bottom:390.060000px;}
.y26_c00052{bottom:412.035000px;}
.y25_c00052{bottom:433.560000px;}
.y24_c00052{bottom:455.535000px;}
.y23_c00052{bottom:477.135000px;}
.y22_c00052{bottom:499.125000px;}
.y21_c00052{bottom:520.710000px;}
.y20_c00052{bottom:542.310000px;}
.y1f_c00052{bottom:564.660000px;}
.y1e_c00052{bottom:585.510000px;}
.y1d_c00052{bottom:607.500000px;}
.y1c_c00052{bottom:628.710000px;}
.y1b_c00052{bottom:650.310000px;}
.y1a_c00052{bottom:672.285000px;}
.y19_c00052{bottom:693.885000px;}
.y18_c00052{bottom:715.500000px;}
.y17_c00052{bottom:737.460000px;}
.y16_c00052{bottom:760.125000px;}
.y15_c00052{bottom:780.675000px;}
.y14_c00052{bottom:781.710000px;}
.y13_c00052{bottom:782.460000px;}
.y12_c00052{bottom:801.900000px;}
.y11_c00052{bottom:802.935000px;}
.y10_c00052{bottom:804.435000px;}
.yf_c00052{bottom:825.300000px;}
.ye_c00052{bottom:846.900000px;}
.yd_c00052{bottom:868.500000px;}
.yc_c00052{bottom:890.085000px;}
.yb_c00052{bottom:911.310000px;}
.ya_c00052{bottom:933.300000px;}
.y9_c00052{bottom:954.900000px;}
.y8_c00052{bottom:976.500000px;}
.y7_c00052{bottom:999.525000px;}
.y6_c00052{bottom:1016.775000px;}
.y5_c00052{bottom:1019.310000px;}
.y4_c00052{bottom:1020.060000px;}
.y3_c00052{bottom:1021.875000px;}
.y2_c00052{bottom:1022.250000px;}
.y1_c00052{bottom:1074.750000px;}
.h9_c00052{height:58.857422px;}
.h8_c00052{height:58.886719px;}
.h7_c00052{height:64.775391px;}
.h1_c00052{height:66.515625px;}
.h6_c00052{height:70.628906px;}
.ha_c00052{height:72.562500px;}
.h4_c00052{height:76.514648px;}
.h2_c00052{height:76.552734px;}
.h5_c00052{height:82.400391px;}
.h3_c00052{height:82.441406px;}
.h0_c00052{height:1174.500000px;}
.w0_c00052{width:731.977200px;}
.w1_c00052{width:732.000000px;}
.x0_c00052{left:0.000000px;}
.x9_c00052{left:59.740200px;}
.xe_c00052{left:61.165200px;}
.x7_c00052{left:62.965200px;}
.x2_c00052{left:64.090200px;}
.x12_c00052{left:65.140200px;}
.x11_c00052{left:66.565200px;}
.x17_c00052{left:68.365200px;}
.x1e_c00052{left:69.490200px;}
.x1f_c00052{left:70.915200px;}
.x22_c00052{left:71.965200px;}
.x2d_c00052{left:73.090200px;}
.x3_c00052{left:74.140200px;}
.x15_c00052{left:85.675200px;}
.x1b_c00052{left:87.115200px;}
.x25_c00052{left:89.965200px;}
.x10_c00052{left:95.740200px;}
.x8_c00052{left:97.165200px;}
.xf_c00052{left:98.290200px;}
.x13_c00052{left:100.390200px;}
.x1c_c00052{left:124.540200px;}
.x18_c00052{left:125.590200px;}
.x26_c00052{left:129.940200px;}
.x23_c00052{left:225.715200px;}
.x27_c00052{left:232.165200px;}
.xc_c00052{left:238.690200px;}
.x24_c00052{left:242.290200px;}
.xa_c00052{left:247.990200px;}
.x16_c00052{left:265.315200px;}
.xd_c00052{left:321.490200px;}
.x4_c00052{left:379.390200px;}
.x5_c00052{left:440.590200px;}
.x19_c00052{left:444.190200px;}
.x28_c00052{left:471.940200px;}
.x1a_c00052{left:497.890200px;}
.x29_c00052{left:529.540200px;}
.xb_c00052{left:537.490200px;}
.x6_c00052{left:539.590200px;}
.x20_c00052{left:552.190200px;}
.x2a_c00052{left:564.490200px;}
.x14_c00052{left:585.715200px;}
.x2b_c00052{left:592.540200px;}
.x21_c00052{left:611.965200px;}
.x2c_c00052{left:649.390200px;}
.x1_c00052{left:654.790200px;}
.x1d_c00052{left:663.490200px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls0_c00052{letter-spacing:0.000000pt;}
.ws0_c00052{word-spacing:0.000000pt;}
.fs4_c00052{font-size:53.333333pt;}
.fs0_c00052{font-size:58.666667pt;}
.fs3_c00052{font-size:64.000000pt;}
.fs1_c00052{font-size:69.333333pt;}
.fs2_c00052{font-size:74.666667pt;}
.y0_c00052{bottom:0.000000pt;}
.y49_c00052{bottom:64.786667pt;}
.y42_c00052{bottom:80.186667pt;}
.y43_c00052{bottom:80.453333pt;}
.y44_c00052{bottom:81.120000pt;}
.y45_c00052{bottom:81.720000pt;}
.y46_c00052{bottom:82.053333pt;}
.y47_c00052{bottom:82.720000pt;}
.y48_c00052{bottom:84.666667pt;}
.y41_c00052{bottom:94.586667pt;}
.y3f_c00052{bottom:108.253333pt;}
.y3e_c00052{bottom:109.253333pt;}
.y40_c00052{bottom:110.186667pt;}
.y3d_c00052{bottom:124.586667pt;}
.y3c_c00052{bottom:139.053333pt;}
.y39_c00052{bottom:153.120000pt;}
.y3a_c00052{bottom:156.000000pt;}
.y3b_c00052{bottom:157.853333pt;}
.y38_c00052{bottom:168.453333pt;}
.y36_c00052{bottom:183.453333pt;}
.y37_c00052{bottom:187.333333pt;}
.y34_c00052{bottom:197.586667pt;}
.y35_c00052{bottom:198.253333pt;}
.y31_c00052{bottom:213.253333pt;}
.y32_c00052{bottom:213.586667pt;}
.y30_c00052{bottom:214.253333pt;}
.y33_c00052{bottom:214.853333pt;}
.y2f_c00052{bottom:251.386667pt;}
.y2e_c00052{bottom:270.586667pt;}
.y2d_c00052{bottom:289.466667pt;}
.y2b_c00052{bottom:308.333333pt;}
.y2c_c00052{bottom:309.000000pt;}
.y2a_c00052{bottom:309.253333pt;}
.y28_c00052{bottom:327.186667pt;}
.y29_c00052{bottom:329.800000pt;}
.y27_c00052{bottom:346.720000pt;}
.y26_c00052{bottom:366.253333pt;}
.y25_c00052{bottom:385.386667pt;}
.y24_c00052{bottom:404.920000pt;}
.y23_c00052{bottom:424.120000pt;}
.y22_c00052{bottom:443.666667pt;}
.y21_c00052{bottom:462.853333pt;}
.y20_c00052{bottom:482.053333pt;}
.y1f_c00052{bottom:501.920000pt;}
.y1e_c00052{bottom:520.453333pt;}
.y1d_c00052{bottom:540.000000pt;}
.y1c_c00052{bottom:558.853333pt;}
.y1b_c00052{bottom:578.053333pt;}
.y1a_c00052{bottom:597.586667pt;}
.y19_c00052{bottom:616.786667pt;}
.y18_c00052{bottom:636.000000pt;}
.y17_c00052{bottom:655.520000pt;}
.y16_c00052{bottom:675.666667pt;}
.y15_c00052{bottom:693.933333pt;}
.y14_c00052{bottom:694.853333pt;}
.y13_c00052{bottom:695.520000pt;}
.y12_c00052{bottom:712.800000pt;}
.y11_c00052{bottom:713.720000pt;}
.y10_c00052{bottom:715.053333pt;}
.yf_c00052{bottom:733.600000pt;}
.ye_c00052{bottom:752.800000pt;}
.yd_c00052{bottom:772.000000pt;}
.yc_c00052{bottom:791.186667pt;}
.yb_c00052{bottom:810.053333pt;}
.ya_c00052{bottom:829.600000pt;}
.y9_c00052{bottom:848.800000pt;}
.y8_c00052{bottom:868.000000pt;}
.y7_c00052{bottom:888.466667pt;}
.y6_c00052{bottom:903.800000pt;}
.y5_c00052{bottom:906.053333pt;}
.y4_c00052{bottom:906.720000pt;}
.y3_c00052{bottom:908.333333pt;}
.y2_c00052{bottom:908.666667pt;}
.y1_c00052{bottom:955.333333pt;}
.h9_c00052{height:52.317708pt;}
.h8_c00052{height:52.343750pt;}
.h7_c00052{height:57.578125pt;}
.h1_c00052{height:59.125000pt;}
.h6_c00052{height:62.781250pt;}
.ha_c00052{height:64.500000pt;}
.h4_c00052{height:68.013021pt;}
.h2_c00052{height:68.046875pt;}
.h5_c00052{height:73.244792pt;}
.h3_c00052{height:73.281250pt;}
.h0_c00052{height:1044.000000pt;}
.w0_c00052{width:650.646400pt;}
.w1_c00052{width:650.666667pt;}
.x0_c00052{left:0.000000pt;}
.x9_c00052{left:53.102400pt;}
.xe_c00052{left:54.369067pt;}
.x7_c00052{left:55.969067pt;}
.x2_c00052{left:56.969067pt;}
.x12_c00052{left:57.902400pt;}
.x11_c00052{left:59.169067pt;}
.x17_c00052{left:60.769067pt;}
.x1e_c00052{left:61.769067pt;}
.x1f_c00052{left:63.035733pt;}
.x22_c00052{left:63.969067pt;}
.x2d_c00052{left:64.969067pt;}
.x3_c00052{left:65.902400pt;}
.x15_c00052{left:76.155733pt;}
.x1b_c00052{left:77.435733pt;}
.x25_c00052{left:79.969067pt;}
.x10_c00052{left:85.102400pt;}
.x8_c00052{left:86.369067pt;}
.xf_c00052{left:87.369067pt;}
.x13_c00052{left:89.235733pt;}
.x1c_c00052{left:110.702400pt;}
.x18_c00052{left:111.635733pt;}
.x26_c00052{left:115.502400pt;}
.x23_c00052{left:200.635733pt;}
.x27_c00052{left:206.369067pt;}
.xc_c00052{left:212.169067pt;}
.x24_c00052{left:215.369067pt;}
.xa_c00052{left:220.435733pt;}
.x16_c00052{left:235.835733pt;}
.xd_c00052{left:285.769067pt;}
.x4_c00052{left:337.235733pt;}
.x5_c00052{left:391.635733pt;}
.x19_c00052{left:394.835733pt;}
.x28_c00052{left:419.502400pt;}
.x1a_c00052{left:442.569067pt;}
.x29_c00052{left:470.702400pt;}
.xb_c00052{left:477.769067pt;}
.x6_c00052{left:479.635733pt;}
.x20_c00052{left:490.835733pt;}
.x2a_c00052{left:501.769067pt;}
.x14_c00052{left:520.635733pt;}
.x2b_c00052{left:526.702400pt;}
.x21_c00052{left:543.969067pt;}
.x2c_c00052{left:577.235733pt;}
.x1_c00052{left:582.035733pt;}
.x1d_c00052{left:589.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c9c1952c23c80b328a2fe4b5.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00053;src:url('chunks/assets/font_547f9042e4893915abcc46f2.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00053{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m0_c00053{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00053{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00053{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00053{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c00053{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00053{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00053{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00053{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00053{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00053{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00053{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00053{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c00053{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mc_c00053{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma_c00053{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c00053{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00053{color:transparent;}
.fs0_c00053{font-size:60.000000px;}
.fs3_c00053{font-size:66.000000px;}
.fs2_c00053{font-size:72.000000px;}
.fs1_c00053{font-size:84.000000px;}
.y0_c00053{bottom:0.000000px;}
.y14_c00053{bottom:867.435000px;}
.y13_c00053{bottom:868.125000px;}
.y12_c00053{bottom:868.185000px;}
.y11_c00053{bottom:888.675000px;}
.yf_c00053{bottom:889.050000px;}
.y10_c00053{bottom:889.335000px;}
.yd_c00053{bottom:909.900000px;}
.ye_c00053{bottom:910.275000px;}
.yc_c00053{bottom:931.500000px;}
.yb_c00053{bottom:952.335000px;}
.ya_c00053{bottom:973.650000px;}
.y9_c00053{bottom:994.800000px;}
.y6_c00053{bottom:1013.250000px;}
.y7_c00053{bottom:1015.800000px;}
.y8_c00053{bottom:1017.150000px;}
.y4_c00053{bottom:1033.050000px;}
.y5_c00053{bottom:1037.025000px;}
.y1_c00053{bottom:1089.150000px;}
.y2_c00053{bottom:1089.525000px;}
.y3_c00053{bottom:1092.750000px;}
.h1_c00053{height:58.886719px;}
.h4_c00053{height:64.743164px;}
.h3_c00053{height:70.664062px;}
.h2_c00053{height:82.441406px;}
.h0_c00053{height:1174.500000px;}
.w0_c00053{width:731.977200px;}
.w1_c00053{width:732.000000px;}
.x0_c00053{left:0.000000px;}
.x12_c00053{left:58.690200px;}
.xf_c00053{left:60.790200px;}
.xb_c00053{left:61.915200px;}
.xa_c00053{left:62.965200px;}
.x6_c00053{left:64.090200px;}
.x9_c00053{left:65.515200px;}
.x1_c00053{left:84.175200px;}
.xc_c00053{left:91.765200px;}
.x4_c00053{left:93.940200px;}
.x2_c00053{left:103.690200px;}
.x13_c00053{left:127.765200px;}
.x14_c00053{left:172.750200px;}
.x5_c00053{left:173.875200px;}
.x10_c00053{left:220.690200px;}
.x11_c00053{left:237.565200px;}
.xd_c00053{left:278.290200px;}
.x3_c00053{left:285.115200px;}
.xe_c00053{left:302.365200px;}
.x7_c00053{left:337.690200px;}
.x15_c00053{left:399.940200px;}
.x8_c00053{left:506.140200px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.ws0_c00053{word-spacing:0.000000pt;}
.fs0_c00053{font-size:53.333333pt;}
.fs3_c00053{font-size:58.666667pt;}
.fs2_c00053{font-size:64.000000pt;}
.fs1_c00053{font-size:74.666667pt;}
.y0_c00053{bottom:0.000000pt;}
.y14_c00053{bottom:771.053333pt;}
.y13_c00053{bottom:771.666667pt;}
.y12_c00053{bottom:771.720000pt;}
.y11_c00053{bottom:789.933333pt;}
.yf_c00053{bottom:790.266667pt;}
.y10_c00053{bottom:790.520000pt;}
.yd_c00053{bottom:808.800000pt;}
.ye_c00053{bottom:809.133333pt;}
.yc_c00053{bottom:828.000000pt;}
.yb_c00053{bottom:846.520000pt;}
.ya_c00053{bottom:865.466667pt;}
.y9_c00053{bottom:884.266667pt;}
.y6_c00053{bottom:900.666667pt;}
.y7_c00053{bottom:902.933333pt;}
.y8_c00053{bottom:904.133333pt;}
.y4_c00053{bottom:918.266667pt;}
.y5_c00053{bottom:921.800000pt;}
.y1_c00053{bottom:968.133333pt;}
.y2_c00053{bottom:968.466667pt;}
.y3_c00053{bottom:971.333333pt;}
.h1_c00053{height:52.343750pt;}
.h4_c00053{height:57.549479pt;}
.h3_c00053{height:62.812500pt;}
.h2_c00053{height:73.281250pt;}
.h0_c00053{height:1044.000000pt;}
.w0_c00053{width:650.646400pt;}
.w1_c00053{width:650.666667pt;}
.x0_c00053{left:0.000000pt;}
.x12_c00053{left:52.169067pt;}
.xf_c00053{left:54.035733pt;}
.xb_c00053{left:55.035733pt;}
.xa_c00053{left:55.969067pt;}
.x6_c00053{left:56.969067pt;}
.x9_c00053{left:58.235733pt;}
.x1_c00053{left:74.822400pt;}
.xc_c00053{left:81.569067pt;}
.x4_c00053{left:83.502400pt;}
.x2_c00053{left:92.169067pt;}
.x13_c00053{left:113.569067pt;}
.x14_c00053{left:153.555733pt;}
.x5_c00053{left:154.555733pt;}
.x10_c00053{left:196.169067pt;}
.x11_c00053{left:211.169067pt;}
.xd_c00053{left:247.369067pt;}
.x3_c00053{left:253.435733pt;}
.xe_c00053{left:268.769067pt;}
.x7_c00053{left:300.169067pt;}
.x15_c00053{left:355.502400pt;}
.x8_c00053{left:449.902400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e614c19093df4b418b49aea.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00054;src:url('chunks/assets/font_42e5057c02a619569f8ffa58.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00054;src:url('chunks/assets/font_da2d9d554a0e74d7f35b24ea.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00054;src:url('chunks/assets/font_8ba7e2ebfa45791a12fdce0a.woff2')format("woff");}.ff4_c00054{font-family:ff4_c00054;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m23_c00054{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00054{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1f_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);}
.m1_c00054{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md_c00054{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00054{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m22_c00054{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m21_c00054{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00054{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00054{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c00054{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00054{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00054{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00054{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c00054{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m0_c00054{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c00054{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00054{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00054{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m13_c00054{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00054{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00054{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c00054{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c00054{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00054{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00054{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c00054{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m20_c00054{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c00054{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00054{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m16_c00054{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c00054{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00054{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m3_c00054{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m8_c00054{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.mc_c00054{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,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;}
.fc0_c00054{color:transparent;}
.fs4_c00054{font-size:42.000000px;}
.fs0_c00054{font-size:60.000000px;}
.fs1_c00054{font-size:66.000000px;}
.fs2_c00054{font-size:72.000000px;}
.fs3_c00054{font-size:84.000000px;}
.y0_c00054{bottom:0.000000px;}
.y50_c00054{bottom:34.410000px;}
.y4c_c00054{bottom:67.785000px;}
.y4d_c00054{bottom:67.875000px;}
.y4e_c00054{bottom:68.250000px;}
.y4f_c00054{bottom:68.625000px;}
.y4a_c00054{bottom:84.435000px;}
.y4b_c00054{bottom:86.250000px;}
.y49_c00054{bottom:101.685000px;}
.y48_c00054{bottom:118.560000px;}
.y47_c00054{bottom:134.835000px;}
.y46_c00054{bottom:151.335000px;}
.y43_c00054{bottom:166.875000px;}
.y42_c00054{bottom:167.535000px;}
.y44_c00054{bottom:167.625000px;}
.y41_c00054{bottom:168.660000px;}
.y45_c00054{bottom:169.410000px;}
.y3d_c00054{bottom:184.125000px;}
.y3e_c00054{bottom:185.910000px;}
.y3f_c00054{bottom:187.785000px;}
.y40_c00054{bottom:188.085000px;}
.y3b_c00054{bottom:201.375000px;}
.y3c_c00054{bottom:204.960000px;}
.y3a_c00054{bottom:218.310000px;}
.y39_c00054{bottom:235.635000px;}
.y36_c00054{bottom:252.585000px;}
.y38_c00054{bottom:255.000000px;}
.y37_c00054{bottom:255.060000px;}
.y35_c00054{bottom:269.835000px;}
.y34_c00054{bottom:270.525000px;}
.y32_c00054{bottom:344.310000px;}
.y31_c00054{bottom:345.060000px;}
.y33_c00054{bottom:346.125000px;}
.y30_c00054{bottom:366.960000px;}
.y2f_c00054{bottom:367.335000px;}
.y2e_c00054{bottom:388.650000px;}
.y2d_c00054{bottom:410.535000px;}
.y2b_c00054{bottom:431.460000px;}
.y2c_c00054{bottom:432.510000px;}
.y2a_c00054{bottom:454.125000px;}
.y29_c00054{bottom:475.710000px;}
.y27_c00054{bottom:497.310000px;}
.y28_c00054{bottom:497.685000px;}
.y24_c00054{bottom:518.910000px;}
.y25_c00054{bottom:519.285000px;}
.y26_c00054{bottom:519.660000px;}
.y23_c00054{bottom:540.885000px;}
.y20_c00054{bottom:562.125000px;}
.y21_c00054{bottom:562.500000px;}
.y22_c00054{bottom:562.875000px;}
.y1f_c00054{bottom:563.250000px;}
.y1e_c00054{bottom:584.460000px;}
.y1d_c00054{bottom:606.060000px;}
.y1c_c00054{bottom:606.810000px;}
.y1b_c00054{bottom:627.960000px;}
.y1a_c00054{bottom:649.635000px;}
.y19_c00054{bottom:650.310000px;}
.y18_c00054{bottom:670.875000px;}
.y17_c00054{bottom:671.160000px;}
.y16_c00054{bottom:671.535000px;}
.y15_c00054{bottom:693.210000px;}
.y14_c00054{bottom:693.885000px;}
.y13_c00054{bottom:714.825000px;}
.y12_c00054{bottom:737.085000px;}
.y11_c00054{bottom:757.260000px;}
.y10_c00054{bottom:758.325000px;}
.yf_c00054{bottom:759.375000px;}
.ye_c00054{bottom:759.825000px;}
.yd_c00054{bottom:778.875000px;}
.yc_c00054{bottom:780.960000px;}
.yb_c00054{bottom:801.525000px;}
.ya_c00054{bottom:802.935000px;}
.y9_c00054{bottom:803.310000px;}
.y8_c00054{bottom:824.925000px;}
.y7_c00054{bottom:883.935000px;}
.y6_c00054{bottom:900.150000px;}
.y5_c00054{bottom:915.675000px;}
.y4_c00054{bottom:917.775000px;}
.y3_c00054{bottom:918.525000px;}
.y2_c00054{bottom:1080.525000px;}
.y1_c00054{bottom:1080.900000px;}
.h9_c00054{height:41.220703px;}
.h2_c00054{height:58.886719px;}
.h1_c00054{height:60.468750px;}
.h8_c00054{height:64.743164px;}
.h3_c00054{height:64.775391px;}
.h4_c00054{height:70.628906px;}
.h7_c00054{height:70.664062px;}
.h5_c00054{height:72.562500px;}
.h6_c00054{height:82.400391px;}
.h0_c00054{height:1174.500000px;}
.w0_c00054{width:731.977200px;}
.w1_c00054{width:732.000000px;}
.x0_c00054{left:0.000000px;}
.x1f_c00054{left:50.740200px;}
.x21_c00054{left:52.165200px;}
.x11_c00054{left:54.715200px;}
.xf_c00054{left:55.765200px;}
.x3_c00054{left:57.940200px;}
.x24_c00054{left:69.490200px;}
.xc_c00054{left:79.165200px;}
.x8_c00054{left:80.965200px;}
.x1e_c00054{left:85.675200px;}
.x6_c00054{left:87.115200px;}
.x1c_c00054{left:88.165200px;}
.x10_c00054{left:89.290200px;}
.x7_c00054{left:90.715200px;}
.x15_c00054{left:98.590200px;}
.x16_c00054{left:105.790200px;}
.x25_c00054{left:107.590200px;}
.x30_c00054{left:108.715200px;}
.x17_c00054{left:119.890200px;}
.x9_c00054{left:125.590200px;}
.x2d_c00054{left:158.365200px;}
.x12_c00054{left:161.290200px;}
.x2e_c00054{left:178.915200px;}
.x32_c00054{left:188.965200px;}
.x18_c00054{left:200.500200px;}
.x1d_c00054{left:209.140200px;}
.x22_c00054{left:233.290200px;}
.x29_c00054{left:240.115200px;}
.x33_c00054{left:241.915200px;}
.x19_c00054{left:258.115200px;}
.x20_c00054{left:262.765200px;}
.x31_c00054{left:277.540200px;}
.x1_c00054{left:279.340200px;}
.x23_c00054{left:294.490200px;}
.x34_c00054{left:315.715200px;}
.xd_c00054{left:319.690200px;}
.xa_c00054{left:335.515200px;}
.x13_c00054{left:338.365200px;}
.x4_c00054{left:353.515200px;}
.x2_c00054{left:355.690200px;}
.x1a_c00054{left:367.150200px;}
.x2a_c00054{left:372.940200px;}
.x5_c00054{left:373.990200px;}
.x14_c00054{left:413.590200px;}
.xe_c00054{left:452.140200px;}
.x2f_c00054{left:460.090200px;}
.x1b_c00054{left:466.540200px;}
.xb_c00054{left:541.090200px;}
.x2b_c00054{left:604.390200px;}
.x26_c00054{left:630.715200px;}
.x28_c00054{left:636.790200px;}
.x27_c00054{left:645.490200px;}
.x2c_c00054{left:658.390200px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls0_c00054{letter-spacing:0.000000pt;}
.ws0_c00054{word-spacing:0.000000pt;}
.fs4_c00054{font-size:37.333333pt;}
.fs0_c00054{font-size:53.333333pt;}
.fs1_c00054{font-size:58.666667pt;}
.fs2_c00054{font-size:64.000000pt;}
.fs3_c00054{font-size:74.666667pt;}
.y0_c00054{bottom:0.000000pt;}
.y50_c00054{bottom:30.586667pt;}
.y4c_c00054{bottom:60.253333pt;}
.y4d_c00054{bottom:60.333333pt;}
.y4e_c00054{bottom:60.666667pt;}
.y4f_c00054{bottom:61.000000pt;}
.y4a_c00054{bottom:75.053333pt;}
.y4b_c00054{bottom:76.666667pt;}
.y49_c00054{bottom:90.386667pt;}
.y48_c00054{bottom:105.386667pt;}
.y47_c00054{bottom:119.853333pt;}
.y46_c00054{bottom:134.520000pt;}
.y43_c00054{bottom:148.333333pt;}
.y42_c00054{bottom:148.920000pt;}
.y44_c00054{bottom:149.000000pt;}
.y41_c00054{bottom:149.920000pt;}
.y45_c00054{bottom:150.586667pt;}
.y3d_c00054{bottom:163.666667pt;}
.y3e_c00054{bottom:165.253333pt;}
.y3f_c00054{bottom:166.920000pt;}
.y40_c00054{bottom:167.186667pt;}
.y3b_c00054{bottom:179.000000pt;}
.y3c_c00054{bottom:182.186667pt;}
.y3a_c00054{bottom:194.053333pt;}
.y39_c00054{bottom:209.453333pt;}
.y36_c00054{bottom:224.520000pt;}
.y38_c00054{bottom:226.666667pt;}
.y37_c00054{bottom:226.720000pt;}
.y35_c00054{bottom:239.853333pt;}
.y34_c00054{bottom:240.466667pt;}
.y32_c00054{bottom:306.053333pt;}
.y31_c00054{bottom:306.720000pt;}
.y33_c00054{bottom:307.666667pt;}
.y30_c00054{bottom:326.186667pt;}
.y2f_c00054{bottom:326.520000pt;}
.y2e_c00054{bottom:345.466667pt;}
.y2d_c00054{bottom:364.920000pt;}
.y2b_c00054{bottom:383.520000pt;}
.y2c_c00054{bottom:384.453333pt;}
.y2a_c00054{bottom:403.666667pt;}
.y29_c00054{bottom:422.853333pt;}
.y27_c00054{bottom:442.053333pt;}
.y28_c00054{bottom:442.386667pt;}
.y24_c00054{bottom:461.253333pt;}
.y25_c00054{bottom:461.586667pt;}
.y26_c00054{bottom:461.920000pt;}
.y23_c00054{bottom:480.786667pt;}
.y20_c00054{bottom:499.666667pt;}
.y21_c00054{bottom:500.000000pt;}
.y22_c00054{bottom:500.333333pt;}
.y1f_c00054{bottom:500.666667pt;}
.y1e_c00054{bottom:519.520000pt;}
.y1d_c00054{bottom:538.720000pt;}
.y1c_c00054{bottom:539.386667pt;}
.y1b_c00054{bottom:558.186667pt;}
.y1a_c00054{bottom:577.453333pt;}
.y19_c00054{bottom:578.053333pt;}
.y18_c00054{bottom:596.333333pt;}
.y17_c00054{bottom:596.586667pt;}
.y16_c00054{bottom:596.920000pt;}
.y15_c00054{bottom:616.186667pt;}
.y14_c00054{bottom:616.786667pt;}
.y13_c00054{bottom:635.400000pt;}
.y12_c00054{bottom:655.186667pt;}
.y11_c00054{bottom:673.120000pt;}
.y10_c00054{bottom:674.066667pt;}
.yf_c00054{bottom:675.000000pt;}
.ye_c00054{bottom:675.400000pt;}
.yd_c00054{bottom:692.333333pt;}
.yc_c00054{bottom:694.186667pt;}
.yb_c00054{bottom:712.466667pt;}
.ya_c00054{bottom:713.720000pt;}
.y9_c00054{bottom:714.053333pt;}
.y8_c00054{bottom:733.266667pt;}
.y7_c00054{bottom:785.720000pt;}
.y6_c00054{bottom:800.133333pt;}
.y5_c00054{bottom:813.933333pt;}
.y4_c00054{bottom:815.800000pt;}
.y3_c00054{bottom:816.466667pt;}
.y2_c00054{bottom:960.466667pt;}
.y1_c00054{bottom:960.800000pt;}
.h9_c00054{height:36.640625pt;}
.h2_c00054{height:52.343750pt;}
.h1_c00054{height:53.750000pt;}
.h8_c00054{height:57.549479pt;}
.h3_c00054{height:57.578125pt;}
.h4_c00054{height:62.781250pt;}
.h7_c00054{height:62.812500pt;}
.h5_c00054{height:64.500000pt;}
.h6_c00054{height:73.244792pt;}
.h0_c00054{height:1044.000000pt;}
.w0_c00054{width:650.646400pt;}
.w1_c00054{width:650.666667pt;}
.x0_c00054{left:0.000000pt;}
.x1f_c00054{left:45.102400pt;}
.x21_c00054{left:46.369067pt;}
.x11_c00054{left:48.635733pt;}
.xf_c00054{left:49.569067pt;}
.x3_c00054{left:51.502400pt;}
.x24_c00054{left:61.769067pt;}
.xc_c00054{left:70.369067pt;}
.x8_c00054{left:71.969067pt;}
.x1e_c00054{left:76.155733pt;}
.x6_c00054{left:77.435733pt;}
.x1c_c00054{left:78.369067pt;}
.x10_c00054{left:79.369067pt;}
.x7_c00054{left:80.635733pt;}
.x15_c00054{left:87.635733pt;}
.x16_c00054{left:94.035733pt;}
.x25_c00054{left:95.635733pt;}
.x30_c00054{left:96.635733pt;}
.x17_c00054{left:106.569067pt;}
.x9_c00054{left:111.635733pt;}
.x2d_c00054{left:140.769067pt;}
.x12_c00054{left:143.369067pt;}
.x2e_c00054{left:159.035733pt;}
.x32_c00054{left:167.969067pt;}
.x18_c00054{left:178.222400pt;}
.x1d_c00054{left:185.902400pt;}
.x22_c00054{left:207.369067pt;}
.x29_c00054{left:213.435733pt;}
.x33_c00054{left:215.035733pt;}
.x19_c00054{left:229.435733pt;}
.x20_c00054{left:233.569067pt;}
.x31_c00054{left:246.702400pt;}
.x1_c00054{left:248.302400pt;}
.x23_c00054{left:261.769067pt;}
.x34_c00054{left:280.635733pt;}
.xd_c00054{left:284.169067pt;}
.xa_c00054{left:298.235733pt;}
.x13_c00054{left:300.769067pt;}
.x4_c00054{left:314.235733pt;}
.x2_c00054{left:316.169067pt;}
.x1a_c00054{left:326.355733pt;}
.x2a_c00054{left:331.502400pt;}
.x5_c00054{left:332.435733pt;}
.x14_c00054{left:367.635733pt;}
.xe_c00054{left:401.902400pt;}
.x2f_c00054{left:408.969067pt;}
.x1b_c00054{left:414.702400pt;}
.xb_c00054{left:480.969067pt;}
.x2b_c00054{left:537.235733pt;}
.x26_c00054{left:560.635733pt;}
.x28_c00054{left:566.035733pt;}
.x27_c00054{left:573.769067pt;}
.x2c_c00054{left:585.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d238db0d9a9ce7cfb8e33080.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00055;src:url('chunks/assets/font_71b28d90da62359ddacb6f43.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00055;src:url('chunks/assets/font_745ce44425dce4df0db2d43d.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m28_c00055{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m29_c00055{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma_c00055{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m24_c00055{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00055{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m22_c00055{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m16_c00055{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c00055{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m27_c00055{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m19_c00055{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c00055{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8_c00055{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c00055{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00055{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c00055{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c00055{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1_c00055{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00055{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c00055{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00055{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c00055{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00055{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00055{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c00055{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00055{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c00055{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00055{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00055{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00055{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00055{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00055{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00055{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m23_c00055{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m20_c00055{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00055{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m17_c00055{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m9_c00055{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00055{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m18_c00055{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m25_c00055{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m21_c00055{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m26_c00055{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00055{color:transparent;}
.fs0_c00055{font-size:60.000000px;}
.fs2_c00055{font-size:66.000000px;}
.fs3_c00055{font-size:72.000000px;}
.fs1_c00055{font-size:78.000000px;}
.y0_c00055{bottom:0.000000px;}
.y69_c00055{bottom:104.535000px;}
.y68_c00055{bottom:109.935000px;}
.y67_c00055{bottom:123.660000px;}
.y66_c00055{bottom:132.660000px;}
.y65_c00055{bottom:133.335000px;}
.y64_c00055{bottom:137.385000px;}
.y63_c00055{bottom:140.250000px;}
.y62_c00055{bottom:146.685000px;}
.y61_c00055{bottom:157.875000px;}
.y60_c00055{bottom:162.885000px;}
.y5e_c00055{bottom:174.375000px;}
.y5f_c00055{bottom:174.435000px;}
.y5d_c00055{bottom:181.185000px;}
.y5c_c00055{bottom:192.060000px;}
.y5b_c00055{bottom:199.260000px;}
.y5a_c00055{bottom:209.685000px;}
.y59_c00055{bottom:212.625000px;}
.y58_c00055{bottom:219.810000px;}
.y57_c00055{bottom:223.035000px;}
.y56_c00055{bottom:232.035000px;}
.y55_c00055{bottom:241.335000px;}
.y54_c00055{bottom:244.635000px;}
.y53_c00055{bottom:249.285000px;}
.y52_c00055{bottom:256.875000px;}
.y51_c00055{bottom:262.935000px;}
.y50_c00055{bottom:263.400000px;}
.y4e_c00055{bottom:265.500000px;}
.y4d_c00055{bottom:267.285000px;}
.y4c_c00055{bottom:272.685000px;}
.y4b_c00055{bottom:275.625000px;}
.y49_c00055{bottom:279.525000px;}
.y4f_c00055{bottom:279.900000px;}
.y4a_c00055{bottom:280.185000px;}
.y48_c00055{bottom:284.250000px;}
.y47_c00055{bottom:292.500000px;}
.y46_c00055{bottom:297.585000px;}
.y45_c00055{bottom:301.875000px;}
.y44_c00055{bottom:309.375000px;}
.y43_c00055{bottom:310.125000px;}
.y42_c00055{bottom:315.900000px;}
.y41_c00055{bottom:319.500000px;}
.y40_c00055{bottom:333.900000px;}
.y3f_c00055{bottom:336.750000px;}
.y3e_c00055{bottom:343.275000px;}
.y3d_c00055{bottom:350.835000px;}
.y3c_c00055{bottom:354.810000px;}
.y3b_c00055{bottom:369.150000px;}
.y3a_c00055{bottom:370.650000px;}
.y39_c00055{bottom:375.285000px;}
.y38_c00055{bottom:376.785000px;}
.y36_c00055{bottom:386.460000px;}
.y37_c00055{bottom:386.835000px;}
.y35_c00055{bottom:390.810000px;}
.y34_c00055{bottom:406.935000px;}
.y33_c00055{bottom:424.260000px;}
.y32_c00055{bottom:441.585000px;}
.y31_c00055{bottom:457.710000px;}
.y30_c00055{bottom:459.210000px;}
.y2e_c00055{bottom:475.335000px;}
.y2f_c00055{bottom:475.710000px;}
.y2d_c00055{bottom:476.835000px;}
.y2c_c00055{bottom:478.560000px;}
.y2b_c00055{bottom:550.635000px;}
.y29_c00055{bottom:572.250000px;}
.y2a_c00055{bottom:572.625000px;}
.y27_c00055{bottom:593.835000px;}
.y28_c00055{bottom:595.260000px;}
.y26_c00055{bottom:616.125000px;}
.y22_c00055{bottom:637.035000px;}
.y23_c00055{bottom:638.460000px;}
.y24_c00055{bottom:638.760000px;}
.y25_c00055{bottom:638.835000px;}
.y20_c00055{bottom:658.635000px;}
.y21_c00055{bottom:660.750000px;}
.y1f_c00055{bottom:681.000000px;}
.y1e_c00055{bottom:702.585000px;}
.y1c_c00055{bottom:718.785000px;}
.y1d_c00055{bottom:725.250000px;}
.y1a_c00055{bottom:745.710000px;}
.y1b_c00055{bottom:748.575000px;}
.y19_c00055{bottom:764.835000px;}
.y17_c00055{bottom:788.625000px;}
.y18_c00055{bottom:791.835000px;}
.y16_c00055{bottom:810.150000px;}
.y14_c00055{bottom:830.310000px;}
.y15_c00055{bottom:836.460000px;}
.y13_c00055{bottom:852.960000px;}
.y11_c00055{bottom:872.460000px;}
.y12_c00055{bottom:879.300000px;}
.y10_c00055{bottom:895.185000px;}
.ye_c00055{bottom:915.300000px;}
.yf_c00055{bottom:923.625000px;}
.yb_c00055{bottom:935.085000px;}
.yc_c00055{bottom:944.460000px;}
.yd_c00055{bottom:945.150000px;}
.ya_c00055{bottom:955.650000px;}
.y8_c00055{bottom:977.625000px;}
.y9_c00055{bottom:988.050000px;}
.y6_c00055{bottom:1001.310000px;}
.y7_c00055{bottom:1007.775000px;}
.y3_c00055{bottom:1008.900000px;}
.y4_c00055{bottom:1013.625000px;}
.y5_c00055{bottom:1026.900000px;}
.y2_c00055{bottom:1043.460000px;}
.y6a_c00055{bottom:1085.625000px;}
.y1_c00055{bottom:1099.275000px;}
.h1_c00055{height:58.886719px;}
.h6_c00055{height:60.468750px;}
.h9_c00055{height:64.743164px;}
.h8_c00055{height:64.775391px;}
.h4_c00055{height:66.515625px;}
.h7_c00055{height:72.562500px;}
.h3_c00055{height:76.514648px;}
.h2_c00055{height:76.552734px;}
.h5_c00055{height:78.609375px;}
.h0_c00055{height:1174.500000px;}
.w0_c00055{width:731.977200px;}
.w1_c00055{width:732.000000px;}
.x0_c00055{left:0.000000px;}
.x3_c00055{left:55.765200px;}
.x6_c00055{left:57.190200px;}
.xd_c00055{left:58.315200px;}
.x11_c00055{left:59.365200px;}
.x1d_c00055{left:62.965200px;}
.x1f_c00055{left:64.090200px;}
.x26_c00055{left:65.140200px;}
.x33_c00055{left:66.565200px;}
.x3f_c00055{left:67.990200px;}
.x40_c00055{left:73.090200px;}
.x2_c00055{left:75.925200px;}
.x19_c00055{left:78.790200px;}
.x36_c00055{left:82.765200px;}
.x29_c00055{left:85.675200px;}
.x9_c00055{left:87.790200px;}
.x12_c00055{left:90.340200px;}
.x27_c00055{left:95.740200px;}
.x2d_c00055{left:96.790200px;}
.x3d_c00055{left:112.690200px;}
.x1a_c00055{left:114.490200px;}
.x37_c00055{left:117.340200px;}
.x22_c00055{left:129.190200px;}
.x13_c00055{left:134.290200px;}
.x4_c00055{left:141.490200px;}
.x2b_c00055{left:149.365200px;}
.x23_c00055{left:221.365200px;}
.x38_c00055{left:241.165200px;}
.x34_c00055{left:246.565200px;}
.x39_c00055{left:249.790200px;}
.x5_c00055{left:257.365200px;}
.x3e_c00055{left:262.090200px;}
.x1_c00055{left:271.090200px;}
.x2e_c00055{left:317.515200px;}
.x31_c00055{left:373.990200px;}
.x14_c00055{left:415.390200px;}
.x2f_c00055{left:426.190200px;}
.x20_c00055{left:482.740200px;}
.xa_c00055{left:484.540200px;}
.x35_c00055{left:525.940200px;}
.x8_c00055{left:560.890200px;}
.x15_c00055{left:592.540200px;}
.x2a_c00055{left:595.765200px;}
.x1b_c00055{left:597.190200px;}
.x3b_c00055{left:600.790200px;}
.xf_c00055{left:601.915200px;}
.x25_c00055{left:603.340200px;}
.x17_c00055{left:609.790200px;}
.x18_c00055{left:611.290200px;}
.x3a_c00055{left:613.765200px;}
.x1e_c00055{left:616.315200px;}
.x3c_c00055{left:619.165200px;}
.xe_c00055{left:620.290200px;}
.xc_c00055{left:622.765200px;}
.x2c_c00055{left:625.990200px;}
.xb_c00055{left:629.290200px;}
.x32_c00055{left:633.565200px;}
.x10_c00055{left:637.540200px;}
.x7_c00055{left:643.990200px;}
.x24_c00055{left:645.490200px;}
.x21_c00055{left:646.915200px;}
.x1c_c00055{left:660.940200px;}
.x16_c00055{left:663.490200px;}
.x28_c00055{left:666.715200px;}
.x30_c00055{left:670.690200px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls0_c00055{letter-spacing:0.000000pt;}
.ws0_c00055{word-spacing:0.000000pt;}
.fs0_c00055{font-size:53.333333pt;}
.fs2_c00055{font-size:58.666667pt;}
.fs3_c00055{font-size:64.000000pt;}
.fs1_c00055{font-size:69.333333pt;}
.y0_c00055{bottom:0.000000pt;}
.y69_c00055{bottom:92.920000pt;}
.y68_c00055{bottom:97.720000pt;}
.y67_c00055{bottom:109.920000pt;}
.y66_c00055{bottom:117.920000pt;}
.y65_c00055{bottom:118.520000pt;}
.y64_c00055{bottom:122.120000pt;}
.y63_c00055{bottom:124.666667pt;}
.y62_c00055{bottom:130.386667pt;}
.y61_c00055{bottom:140.333333pt;}
.y60_c00055{bottom:144.786667pt;}
.y5e_c00055{bottom:155.000000pt;}
.y5f_c00055{bottom:155.053333pt;}
.y5d_c00055{bottom:161.053333pt;}
.y5c_c00055{bottom:170.720000pt;}
.y5b_c00055{bottom:177.120000pt;}
.y5a_c00055{bottom:186.386667pt;}
.y59_c00055{bottom:189.000000pt;}
.y58_c00055{bottom:195.386667pt;}
.y57_c00055{bottom:198.253333pt;}
.y56_c00055{bottom:206.253333pt;}
.y55_c00055{bottom:214.520000pt;}
.y54_c00055{bottom:217.453333pt;}
.y53_c00055{bottom:221.586667pt;}
.y52_c00055{bottom:228.333333pt;}
.y51_c00055{bottom:233.720000pt;}
.y50_c00055{bottom:234.133333pt;}
.y4e_c00055{bottom:236.000000pt;}
.y4d_c00055{bottom:237.586667pt;}
.y4c_c00055{bottom:242.386667pt;}
.y4b_c00055{bottom:245.000000pt;}
.y49_c00055{bottom:248.466667pt;}
.y4f_c00055{bottom:248.800000pt;}
.y4a_c00055{bottom:249.053333pt;}
.y48_c00055{bottom:252.666667pt;}
.y47_c00055{bottom:260.000000pt;}
.y46_c00055{bottom:264.520000pt;}
.y45_c00055{bottom:268.333333pt;}
.y44_c00055{bottom:275.000000pt;}
.y43_c00055{bottom:275.666667pt;}
.y42_c00055{bottom:280.800000pt;}
.y41_c00055{bottom:284.000000pt;}
.y40_c00055{bottom:296.800000pt;}
.y3f_c00055{bottom:299.333333pt;}
.y3e_c00055{bottom:305.133333pt;}
.y3d_c00055{bottom:311.853333pt;}
.y3c_c00055{bottom:315.386667pt;}
.y3b_c00055{bottom:328.133333pt;}
.y3a_c00055{bottom:329.466667pt;}
.y39_c00055{bottom:333.586667pt;}
.y38_c00055{bottom:334.920000pt;}
.y36_c00055{bottom:343.520000pt;}
.y37_c00055{bottom:343.853333pt;}
.y35_c00055{bottom:347.386667pt;}
.y34_c00055{bottom:361.720000pt;}
.y33_c00055{bottom:377.120000pt;}
.y32_c00055{bottom:392.520000pt;}
.y31_c00055{bottom:406.853333pt;}
.y30_c00055{bottom:408.186667pt;}
.y2e_c00055{bottom:422.520000pt;}
.y2f_c00055{bottom:422.853333pt;}
.y2d_c00055{bottom:423.853333pt;}
.y2c_c00055{bottom:425.386667pt;}
.y2b_c00055{bottom:489.453333pt;}
.y29_c00055{bottom:508.666667pt;}
.y2a_c00055{bottom:509.000000pt;}
.y27_c00055{bottom:527.853333pt;}
.y28_c00055{bottom:529.120000pt;}
.y26_c00055{bottom:547.666667pt;}
.y22_c00055{bottom:566.253333pt;}
.y23_c00055{bottom:567.520000pt;}
.y24_c00055{bottom:567.786667pt;}
.y25_c00055{bottom:567.853333pt;}
.y20_c00055{bottom:585.453333pt;}
.y21_c00055{bottom:587.333333pt;}
.y1f_c00055{bottom:605.333333pt;}
.y1e_c00055{bottom:624.520000pt;}
.y1c_c00055{bottom:638.920000pt;}
.y1d_c00055{bottom:644.666667pt;}
.y1a_c00055{bottom:662.853333pt;}
.y1b_c00055{bottom:665.400000pt;}
.y19_c00055{bottom:679.853333pt;}
.y17_c00055{bottom:701.000000pt;}
.y18_c00055{bottom:703.853333pt;}
.y16_c00055{bottom:720.133333pt;}
.y14_c00055{bottom:738.053333pt;}
.y15_c00055{bottom:743.520000pt;}
.y13_c00055{bottom:758.186667pt;}
.y11_c00055{bottom:775.520000pt;}
.y12_c00055{bottom:781.600000pt;}
.y10_c00055{bottom:795.720000pt;}
.ye_c00055{bottom:813.600000pt;}
.yf_c00055{bottom:821.000000pt;}
.yb_c00055{bottom:831.186667pt;}
.yc_c00055{bottom:839.520000pt;}
.yd_c00055{bottom:840.133333pt;}
.ya_c00055{bottom:849.466667pt;}
.y8_c00055{bottom:869.000000pt;}
.y9_c00055{bottom:878.266667pt;}
.y6_c00055{bottom:890.053333pt;}
.y7_c00055{bottom:895.800000pt;}
.y3_c00055{bottom:896.800000pt;}
.y4_c00055{bottom:901.000000pt;}
.y5_c00055{bottom:912.800000pt;}
.y2_c00055{bottom:927.520000pt;}
.y6a_c00055{bottom:965.000000pt;}
.y1_c00055{bottom:977.133333pt;}
.h1_c00055{height:52.343750pt;}
.h6_c00055{height:53.750000pt;}
.h9_c00055{height:57.549479pt;}
.h8_c00055{height:57.578125pt;}
.h4_c00055{height:59.125000pt;}
.h7_c00055{height:64.500000pt;}
.h3_c00055{height:68.013021pt;}
.h2_c00055{height:68.046875pt;}
.h5_c00055{height:69.875000pt;}
.h0_c00055{height:1044.000000pt;}
.w0_c00055{width:650.646400pt;}
.w1_c00055{width:650.666667pt;}
.x0_c00055{left:0.000000pt;}
.x3_c00055{left:49.569067pt;}
.x6_c00055{left:50.835733pt;}
.xd_c00055{left:51.835733pt;}
.x11_c00055{left:52.769067pt;}
.x1d_c00055{left:55.969067pt;}
.x1f_c00055{left:56.969067pt;}
.x26_c00055{left:57.902400pt;}
.x33_c00055{left:59.169067pt;}
.x3f_c00055{left:60.435733pt;}
.x40_c00055{left:64.969067pt;}
.x2_c00055{left:67.489067pt;}
.x19_c00055{left:70.035733pt;}
.x36_c00055{left:73.569067pt;}
.x29_c00055{left:76.155733pt;}
.x9_c00055{left:78.035733pt;}
.x12_c00055{left:80.302400pt;}
.x27_c00055{left:85.102400pt;}
.x2d_c00055{left:86.035733pt;}
.x3d_c00055{left:100.169067pt;}
.x1a_c00055{left:101.769067pt;}
.x37_c00055{left:104.302400pt;}
.x22_c00055{left:114.835733pt;}
.x13_c00055{left:119.369067pt;}
.x4_c00055{left:125.769067pt;}
.x2b_c00055{left:132.769067pt;}
.x23_c00055{left:196.769067pt;}
.x38_c00055{left:214.369067pt;}
.x34_c00055{left:219.169067pt;}
.x39_c00055{left:222.035733pt;}
.x5_c00055{left:228.769067pt;}
.x3e_c00055{left:232.969067pt;}
.x1_c00055{left:240.969067pt;}
.x2e_c00055{left:282.235733pt;}
.x31_c00055{left:332.435733pt;}
.x14_c00055{left:369.235733pt;}
.x2f_c00055{left:378.835733pt;}
.x20_c00055{left:429.102400pt;}
.xa_c00055{left:430.702400pt;}
.x35_c00055{left:467.502400pt;}
.x8_c00055{left:498.569067pt;}
.x15_c00055{left:526.702400pt;}
.x2a_c00055{left:529.569067pt;}
.x1b_c00055{left:530.835733pt;}
.x3b_c00055{left:534.035733pt;}
.xf_c00055{left:535.035733pt;}
.x25_c00055{left:536.302400pt;}
.x17_c00055{left:542.035733pt;}
.x18_c00055{left:543.369067pt;}
.x3a_c00055{left:545.569067pt;}
.x1e_c00055{left:547.835733pt;}
.x3c_c00055{left:550.369067pt;}
.xe_c00055{left:551.369067pt;}
.xc_c00055{left:553.569067pt;}
.x2c_c00055{left:556.435733pt;}
.xb_c00055{left:559.369067pt;}
.x32_c00055{left:563.169067pt;}
.x10_c00055{left:566.702400pt;}
.x7_c00055{left:572.435733pt;}
.x24_c00055{left:573.769067pt;}
.x21_c00055{left:575.035733pt;}
.x1c_c00055{left:587.502400pt;}
.x16_c00055{left:589.769067pt;}
.x28_c00055{left:592.635733pt;}
.x30_c00055{left:596.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6b142f865497b5eef0c0059f.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00056;src:url('chunks/assets/font_73c1d65341805aaf6002a8d3.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00056;src:url('chunks/assets/font_72485bc5b572d59410fee50f.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00056;src:url('chunks/assets/font_130bbfb8a43c6b63006e8437.woff2')format("woff");}.ff4_c00056{font-family:ff4_c00056;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00056;src:url('chunks/assets/font_6668001a97e4b7834a96f257.woff2')format("woff");}.ff5_c00056{font-family:ff5_c00056;line-height:1.402354;font-style: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.042500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);}
.m11_c00056{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m1_c00056{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m14_c00056{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m13_c00056{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m12_c00056{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m19_c00056{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m10_c00056{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4_c00056{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c00056{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c00056{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m8_c00056{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c00056{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00056{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00056{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf_c00056{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c00056{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c00056{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc_c00056{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00056{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c00056{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00056{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00056{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c00056{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m16_c00056{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m15_c00056{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,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;}
.fc0_c00056{color:transparent;}
.fs2_c00056{font-size:60.000000px;}
.fs5_c00056{font-size:66.000000px;}
.fs1_c00056{font-size:72.000000px;}
.fs4_c00056{font-size:78.000000px;}
.fs3_c00056{font-size:84.000000px;}
.fs0_c00056{font-size:96.000000px;}
.y0_c00056{bottom:0.000000px;}
.y39_c00056{bottom:66.060000px;}
.y3a_c00056{bottom:66.810000px;}
.y3b_c00056{bottom:68.250000px;}
.y38_c00056{bottom:84.060000px;}
.y37_c00056{bottom:100.560000px;}
.y36_c00056{bottom:116.835000px;}
.y35_c00056{bottom:132.585000px;}
.y34_c00056{bottom:149.910000px;}
.y33_c00056{bottom:165.435000px;}
.y2f_c00056{bottom:179.460000px;}
.y30_c00056{bottom:179.760000px;}
.y31_c00056{bottom:180.210000px;}
.y32_c00056{bottom:183.000000px;}
.y2e_c00056{bottom:278.085000px;}
.y2d_c00056{bottom:299.400000px;}
.y2c_c00056{bottom:320.625000px;}
.y2b_c00056{bottom:341.460000px;}
.y2a_c00056{bottom:362.685000px;}
.y29_c00056{bottom:384.660000px;}
.y28_c00056{bottom:406.275000px;}
.y27_c00056{bottom:427.500000px;}
.y26_c00056{bottom:449.460000px;}
.y24_c00056{bottom:471.375000px;}
.y25_c00056{bottom:471.435000px;}
.y23_c00056{bottom:493.035000px;}
.y22_c00056{bottom:515.010000px;}
.y21_c00056{bottom:536.535000px;}
.y20_c00056{bottom:558.210000px;}
.y1f_c00056{bottom:580.125000px;}
.y1e_c00056{bottom:601.410000px;}
.y1d_c00056{bottom:623.310000px;}
.y1c_c00056{bottom:644.625000px;}
.y1b_c00056{bottom:666.210000px;}
.y1a_c00056{bottom:688.500000px;}
.y19_c00056{bottom:710.085000px;}
.y18_c00056{bottom:711.210000px;}
.y17_c00056{bottom:729.885000px;}
.y16_c00056{bottom:732.750000px;}
.y15_c00056{bottom:753.285000px;}
.y14_c00056{bottom:754.710000px;}
.y13_c00056{bottom:773.835000px;}
.y12_c00056{bottom:774.510000px;}
.y11_c00056{bottom:776.310000px;}
.y10_c00056{bottom:798.675000px;}
.yf_c00056{bottom:819.150000px;}
.ye_c00056{bottom:840.810000px;}
.yd_c00056{bottom:863.835000px;}
.yc_c00056{bottom:879.960000px;}
.yb_c00056{bottom:884.310000px;}
.y2_c00056{bottom:890.835000px;}
.ya_c00056{bottom:905.925000px;}
.y1_c00056{bottom:918.150000px;}
.y9_c00056{bottom:926.835000px;}
.y8_c00056{bottom:948.750000px;}
.y7_c00056{bottom:970.425000px;}
.y6_c00056{bottom:991.935000px;}
.y5_c00056{bottom:1013.925000px;}
.y3c_c00056{bottom:1065.375000px;}
.y4_c00056{bottom:1073.400000px;}
.y3_c00056{bottom:1074.750000px;}
.h3_c00056{height:58.886719px;}
.h8_c00056{height:64.775391px;}
.h2_c00056{height:70.664062px;}
.h6_c00056{height:76.514648px;}
.h5_c00056{height:82.441406px;}
.h4_c00056{height:84.656250px;}
.h7_c00056{height:86.338763px;}
.h1_c00056{height:94.218750px;}
.h0_c00056{height:1174.500000px;}
.w0_c00056{width:731.977200px;}
.w1_c00056{width:732.000000px;}
.x2_c00056{left:-21.259800px;}
.x1_c00056{left:-15.109800px;}
.x0_c00056{left:0.000000px;}
.x5_c00056{left:75.925200px;}
.x6_c00056{left:77.365200px;}
.xd_c00056{left:79.165200px;}
.x12_c00056{left:80.590200px;}
.x1b_c00056{left:81.715200px;}
.x13_c00056{left:83.890200px;}
.x14_c00056{left:90.340200px;}
.x16_c00056{left:98.290200px;}
.x10_c00056{left:100.390200px;}
.x9_c00056{left:101.515200px;}
.x17_c00056{left:105.115200px;}
.x1a_c00056{left:109.090200px;}
.x15_c00056{left:110.890200px;}
.x7_c00056{left:112.315200px;}
.x11_c00056{left:113.365200px;}
.x18_c00056{left:117.715200px;}
.x19_c00056{left:135.715200px;}
.xf_c00056{left:156.565200px;}
.xc_c00056{left:163.390200px;}
.x3_c00056{left:294.490200px;}
.x4_c00056{left:321.115200px;}
.x1c_c00056{left:401.740200px;}
.x1d_c00056{left:418.315200px;}
.xa_c00056{left:488.140200px;}
.xb_c00056{left:566.590200px;}
.xe_c00056{left:648.715200px;}
.x1e_c00056{left:668.515200px;}
.x8_c00056{left:690.490200px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls0_c00056{letter-spacing:0.000000pt;}
.ws0_c00056{word-spacing:0.000000pt;}
.fs2_c00056{font-size:53.333333pt;}
.fs5_c00056{font-size:58.666667pt;}
.fs1_c00056{font-size:64.000000pt;}
.fs4_c00056{font-size:69.333333pt;}
.fs3_c00056{font-size:74.666667pt;}
.fs0_c00056{font-size:85.333333pt;}
.y0_c00056{bottom:0.000000pt;}
.y39_c00056{bottom:58.720000pt;}
.y3a_c00056{bottom:59.386667pt;}
.y3b_c00056{bottom:60.666667pt;}
.y38_c00056{bottom:74.720000pt;}
.y37_c00056{bottom:89.386667pt;}
.y36_c00056{bottom:103.853333pt;}
.y35_c00056{bottom:117.853333pt;}
.y34_c00056{bottom:133.253333pt;}
.y33_c00056{bottom:147.053333pt;}
.y2f_c00056{bottom:159.520000pt;}
.y30_c00056{bottom:159.786667pt;}
.y31_c00056{bottom:160.186667pt;}
.y32_c00056{bottom:162.666667pt;}
.y2e_c00056{bottom:247.186667pt;}
.y2d_c00056{bottom:266.133333pt;}
.y2c_c00056{bottom:285.000000pt;}
.y2b_c00056{bottom:303.520000pt;}
.y2a_c00056{bottom:322.386667pt;}
.y29_c00056{bottom:341.920000pt;}
.y28_c00056{bottom:361.133333pt;}
.y27_c00056{bottom:380.000000pt;}
.y26_c00056{bottom:399.520000pt;}
.y24_c00056{bottom:419.000000pt;}
.y25_c00056{bottom:419.053333pt;}
.y23_c00056{bottom:438.253333pt;}
.y22_c00056{bottom:457.786667pt;}
.y21_c00056{bottom:476.920000pt;}
.y20_c00056{bottom:496.186667pt;}
.y1f_c00056{bottom:515.666667pt;}
.y1e_c00056{bottom:534.586667pt;}
.y1d_c00056{bottom:554.053333pt;}
.y1c_c00056{bottom:573.000000pt;}
.y1b_c00056{bottom:592.186667pt;}
.y1a_c00056{bottom:612.000000pt;}
.y19_c00056{bottom:631.186667pt;}
.y18_c00056{bottom:632.186667pt;}
.y17_c00056{bottom:648.786667pt;}
.y16_c00056{bottom:651.333333pt;}
.y15_c00056{bottom:669.586667pt;}
.y14_c00056{bottom:670.853333pt;}
.y13_c00056{bottom:687.853333pt;}
.y12_c00056{bottom:688.453333pt;}
.y11_c00056{bottom:690.053333pt;}
.y10_c00056{bottom:709.933333pt;}
.yf_c00056{bottom:728.133333pt;}
.ye_c00056{bottom:747.386667pt;}
.yd_c00056{bottom:767.853333pt;}
.yc_c00056{bottom:782.186667pt;}
.yb_c00056{bottom:786.053333pt;}
.y2_c00056{bottom:791.853333pt;}
.ya_c00056{bottom:805.266667pt;}
.y1_c00056{bottom:816.133333pt;}
.y9_c00056{bottom:823.853333pt;}
.y8_c00056{bottom:843.333333pt;}
.y7_c00056{bottom:862.600000pt;}
.y6_c00056{bottom:881.720000pt;}
.y5_c00056{bottom:901.266667pt;}
.y3c_c00056{bottom:947.000000pt;}
.y4_c00056{bottom:954.133333pt;}
.y3_c00056{bottom:955.333333pt;}
.h3_c00056{height:52.343750pt;}
.h8_c00056{height:57.578125pt;}
.h2_c00056{height:62.812500pt;}
.h6_c00056{height:68.013021pt;}
.h5_c00056{height:73.281250pt;}
.h4_c00056{height:75.250000pt;}
.h7_c00056{height:76.745567pt;}
.h1_c00056{height:83.750000pt;}
.h0_c00056{height:1044.000000pt;}
.w0_c00056{width:650.646400pt;}
.w1_c00056{width:650.666667pt;}
.x2_c00056{left:-18.897600pt;}
.x1_c00056{left:-13.430933pt;}
.x0_c00056{left:0.000000pt;}
.x5_c00056{left:67.489067pt;}
.x6_c00056{left:68.769067pt;}
.xd_c00056{left:70.369067pt;}
.x12_c00056{left:71.635733pt;}
.x1b_c00056{left:72.635733pt;}
.x13_c00056{left:74.569067pt;}
.x14_c00056{left:80.302400pt;}
.x16_c00056{left:87.369067pt;}
.x10_c00056{left:89.235733pt;}
.x9_c00056{left:90.235733pt;}
.x17_c00056{left:93.435733pt;}
.x1a_c00056{left:96.969067pt;}
.x15_c00056{left:98.569067pt;}
.x7_c00056{left:99.835733pt;}
.x11_c00056{left:100.769067pt;}
.x18_c00056{left:104.635733pt;}
.x19_c00056{left:120.635733pt;}
.xf_c00056{left:139.169067pt;}
.xc_c00056{left:145.235733pt;}
.x3_c00056{left:261.769067pt;}
.x4_c00056{left:285.435733pt;}
.x1c_c00056{left:357.102400pt;}
.x1d_c00056{left:371.835733pt;}
.xa_c00056{left:433.902400pt;}
.xb_c00056{left:503.635733pt;}
.xe_c00056{left:576.635733pt;}
.x1e_c00056{left:594.235733pt;}
.x8_c00056{left:613.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba1e0679f87a8d875b7fdf0b.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00057;src:url('chunks/assets/font_8c15162e09e2a1317811fa5e.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00057;src:url('chunks/assets/font_646a2fcf3d3628e86261984a.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14_c00057{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00057{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c00057{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00057{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c00057{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00057{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c00057{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c00057{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16_c00057{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00057{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c00057{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00057{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00057{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00057{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00057{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00057{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00057{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c00057{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00057{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c00057{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00057{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00057{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c00057{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.ls0_c00057{letter-spacing:0.000000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00057{word-spacing:0.000000px;}
.fc0_c00057{color:transparent;}
.fs1_c00057{font-size:60.000000px;}
.fs0_c00057{font-size:66.000000px;}
.fs2_c00057{font-size:72.000000px;}
.y0_c00057{bottom:0.000000px;}
.y2a_c00057{bottom:508.500000px;}
.y29_c00057{bottom:519.660000px;}
.y28_c00057{bottom:526.785000px;}
.y27_c00057{bottom:537.285000px;}
.y26_c00057{bottom:554.625000px;}
.y25_c00057{bottom:572.160000px;}
.y24_c00057{bottom:587.310000px;}
.y23_c00057{bottom:591.960000px;}
.y22_c00057{bottom:609.660000px;}
.y21_c00057{bottom:624.060000px;}
.y20_c00057{bottom:641.010000px;}
.y1f_c00057{bottom:643.785000px;}
.y1e_c00057{bottom:644.160000px;}
.y1d_c00057{bottom:660.750000px;}
.y1c_c00057{bottom:675.885000px;}
.y1b_c00057{bottom:693.510000px;}
.y1a_c00057{bottom:693.885000px;}
.y19_c00057{bottom:710.760000px;}
.y16_c00057{bottom:727.335000px;}
.y18_c00057{bottom:727.710000px;}
.y17_c00057{bottom:727.785000px;}
.y14_c00057{bottom:744.285000px;}
.y15_c00057{bottom:745.335000px;}
.y13_c00057{bottom:760.875000px;}
.y10_c00057{bottom:777.435000px;}
.y11_c00057{bottom:777.810000px;}
.y12_c00057{bottom:779.625000px;}
.yf_c00057{bottom:794.400000px;}
.yc_c00057{bottom:812.310000px;}
.ye_c00057{bottom:814.125000px;}
.yd_c00057{bottom:815.250000px;}
.yb_c00057{bottom:897.675000px;}
.ya_c00057{bottom:922.125000px;}
.y9_c00057{bottom:944.085000px;}
.y8_c00057{bottom:964.935000px;}
.y7_c00057{bottom:986.925000px;}
.y6_c00057{bottom:1008.210000px;}
.y5_c00057{bottom:1024.800000px;}
.y4_c00057{bottom:1048.875000px;}
.y1_c00057{bottom:1095.675000px;}
.y3_c00057{bottom:1106.085000px;}
.y2_c00057{bottom:1110.435000px;}
.h2_c00057{height:58.886719px;}
.h4_c00057{height:64.743164px;}
.h1_c00057{height:64.775391px;}
.h5_c00057{height:66.515625px;}
.h3_c00057{height:70.664062px;}
.h0_c00057{height:1174.500000px;}
.w0_c00057{width:731.977200px;}
.w1_c00057{width:732.000000px;}
.x0_c00057{left:0.000000px;}
.x1a_c00057{left:34.165200px;}
.x16_c00057{left:41.740200px;}
.x13_c00057{left:42.790200px;}
.xf_c00057{left:44.590200px;}
.xb_c00057{left:45.715200px;}
.x7_c00057{left:48.940200px;}
.x6_c00057{left:49.990200px;}
.x4_c00057{left:51.490200px;}
.x19_c00057{left:57.565200px;}
.x8_c00057{left:62.290200px;}
.x17_c00057{left:65.890200px;}
.x1_c00057{left:67.315200px;}
.xc_c00057{left:69.115200px;}
.x5_c00057{left:82.765200px;}
.x2_c00057{left:85.990200px;}
.x14_c00057{left:87.790200px;}
.xd_c00057{left:91.090200px;}
.xe_c00057{left:135.340200px;}
.x11_c00057{left:146.890200px;}
.x10_c00057{left:156.190200px;}
.x15_c00057{left:160.165200px;}
.x12_c00057{left:167.365200px;}
.x3_c00057{left:267.490200px;}
.x18_c00057{left:315.715200px;}
.x9_c00057{left:350.290200px;}
.xa_c00057{left:536.740200px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls0_c00057{letter-spacing:0.000000pt;}
.ws0_c00057{word-spacing:0.000000pt;}
.fs1_c00057{font-size:53.333333pt;}
.fs0_c00057{font-size:58.666667pt;}
.fs2_c00057{font-size:64.000000pt;}
.y0_c00057{bottom:0.000000pt;}
.y2a_c00057{bottom:452.000000pt;}
.y29_c00057{bottom:461.920000pt;}
.y28_c00057{bottom:468.253333pt;}
.y27_c00057{bottom:477.586667pt;}
.y26_c00057{bottom:493.000000pt;}
.y25_c00057{bottom:508.586667pt;}
.y24_c00057{bottom:522.053333pt;}
.y23_c00057{bottom:526.186667pt;}
.y22_c00057{bottom:541.920000pt;}
.y21_c00057{bottom:554.720000pt;}
.y20_c00057{bottom:569.786667pt;}
.y1f_c00057{bottom:572.253333pt;}
.y1e_c00057{bottom:572.586667pt;}
.y1d_c00057{bottom:587.333333pt;}
.y1c_c00057{bottom:600.786667pt;}
.y1b_c00057{bottom:616.453333pt;}
.y1a_c00057{bottom:616.786667pt;}
.y19_c00057{bottom:631.786667pt;}
.y16_c00057{bottom:646.520000pt;}
.y18_c00057{bottom:646.853333pt;}
.y17_c00057{bottom:646.920000pt;}
.y14_c00057{bottom:661.586667pt;}
.y15_c00057{bottom:662.520000pt;}
.y13_c00057{bottom:676.333333pt;}
.y10_c00057{bottom:691.053333pt;}
.y11_c00057{bottom:691.386667pt;}
.y12_c00057{bottom:693.000000pt;}
.yf_c00057{bottom:706.133333pt;}
.yc_c00057{bottom:722.053333pt;}
.ye_c00057{bottom:723.666667pt;}
.yd_c00057{bottom:724.666667pt;}
.yb_c00057{bottom:797.933333pt;}
.ya_c00057{bottom:819.666667pt;}
.y9_c00057{bottom:839.186667pt;}
.y8_c00057{bottom:857.720000pt;}
.y7_c00057{bottom:877.266667pt;}
.y6_c00057{bottom:896.186667pt;}
.y5_c00057{bottom:910.933333pt;}
.y4_c00057{bottom:932.333333pt;}
.y1_c00057{bottom:973.933333pt;}
.y3_c00057{bottom:983.186667pt;}
.y2_c00057{bottom:987.053333pt;}
.h2_c00057{height:52.343750pt;}
.h4_c00057{height:57.549479pt;}
.h1_c00057{height:57.578125pt;}
.h5_c00057{height:59.125000pt;}
.h3_c00057{height:62.812500pt;}
.h0_c00057{height:1044.000000pt;}
.w0_c00057{width:650.646400pt;}
.w1_c00057{width:650.666667pt;}
.x0_c00057{left:0.000000pt;}
.x1a_c00057{left:30.369067pt;}
.x16_c00057{left:37.102400pt;}
.x13_c00057{left:38.035733pt;}
.xf_c00057{left:39.635733pt;}
.xb_c00057{left:40.635733pt;}
.x7_c00057{left:43.502400pt;}
.x6_c00057{left:44.435733pt;}
.x4_c00057{left:45.769067pt;}
.x19_c00057{left:51.169067pt;}
.x8_c00057{left:55.369067pt;}
.x17_c00057{left:58.569067pt;}
.x1_c00057{left:59.835733pt;}
.xc_c00057{left:61.435733pt;}
.x5_c00057{left:73.569067pt;}
.x2_c00057{left:76.435733pt;}
.x14_c00057{left:78.035733pt;}
.xd_c00057{left:80.969067pt;}
.xe_c00057{left:120.302400pt;}
.x11_c00057{left:130.569067pt;}
.x10_c00057{left:138.835733pt;}
.x15_c00057{left:142.369067pt;}
.x12_c00057{left:148.769067pt;}
.x3_c00057{left:237.769067pt;}
.x18_c00057{left:280.635733pt;}
.x9_c00057{left:311.369067pt;}
.xa_c00057{left:477.102400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_571cef680e9cf9540386e70f.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00058;src:url('chunks/assets/font_da0a42a0ce9e0774ce2d5e5d.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00058;src:url('chunks/assets/font_9a8ab3c3d392c14e571d4eba.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00058;src:url('chunks/assets/font_9b64807b59d6b83a9a61ff58.woff2')format("woff");}.ff4_c00058{font-family:ff4_c00058;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00058{transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);}
.m10_c00058{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m17_c00058{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mb_c00058{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3_c00058{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m0_c00058{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00058{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c00058{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c00058{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c00058{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c00058{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m14_c00058{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00058{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c00058{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00058{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00058{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00058{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00058{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00058{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m15_c00058{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c00058{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c00058{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c00058{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c00058{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m19_c00058{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00058{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00058{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00058{color:transparent;}
.fs6_c00058{font-size:42.000000px;}
.fs4_c00058{font-size:48.000000px;}
.fs5_c00058{font-size:54.000000px;}
.fs0_c00058{font-size:60.000000px;}
.fs2_c00058{font-size:66.000000px;}
.fs3_c00058{font-size:72.000000px;}
.fs1_c00058{font-size:78.000000px;}
.y0_c00058{bottom:0.000000px;}
.y40_c00058{bottom:64.935000px;}
.y3f_c00058{bottom:85.500000px;}
.y3d_c00058{bottom:106.785000px;}
.y3e_c00058{bottom:109.635000px;}
.y3a_c00058{bottom:126.510000px;}
.y39_c00058{bottom:127.260000px;}
.y3b_c00058{bottom:128.310000px;}
.y3c_c00058{bottom:130.125000px;}
.y37_c00058{bottom:147.000000px;}
.y38_c00058{bottom:148.875000px;}
.y35_c00058{bottom:168.660000px;}
.y36_c00058{bottom:172.260000px;}
.y34_c00058{bottom:189.885000px;}
.y33_c00058{bottom:210.435000px;}
.y31_c00058{bottom:232.035000px;}
.y32_c00058{bottom:234.885000px;}
.y30_c00058{bottom:253.275000px;}
.y2f_c00058{bottom:274.875000px;}
.y2e_c00058{bottom:296.460000px;}
.y2d_c00058{bottom:317.685000px;}
.y2c_c00058{bottom:338.910000px;}
.y29_c00058{bottom:360.150000px;}
.y2a_c00058{bottom:360.210000px;}
.y2b_c00058{bottom:361.560000px;}
.y26_c00058{bottom:381.435000px;}
.y28_c00058{bottom:381.750000px;}
.y27_c00058{bottom:381.810000px;}
.y25_c00058{bottom:403.410000px;}
.y24_c00058{bottom:425.010000px;}
.y23_c00058{bottom:446.910000px;}
.y22_c00058{bottom:468.885000px;}
.y21_c00058{bottom:490.500000px;}
.y20_c00058{bottom:512.085000px;}
.y1f_c00058{bottom:534.060000px;}
.y1e_c00058{bottom:555.660000px;}
.y1d_c00058{bottom:577.260000px;}
.y1c_c00058{bottom:598.875000px;}
.y1b_c00058{bottom:599.535000px;}
.y1a_c00058{bottom:619.335000px;}
.y19_c00058{bottom:620.460000px;}
.y18_c00058{bottom:642.375000px;}
.y17_c00058{bottom:663.960000px;}
.y16_c00058{bottom:685.935000px;}
.y15_c00058{bottom:707.535000px;}
.y13_c00058{bottom:757.200000px;}
.y14_c00058{bottom:757.260000px;}
.y12_c00058{bottom:783.885000px;}
.y11_c00058{bottom:785.310000px;}
.y10_c00058{bottom:797.250000px;}
.yf_c00058{bottom:798.675000px;}
.ye_c00058{bottom:799.050000px;}
.yd_c00058{bottom:810.900000px;}
.yc_c00058{bottom:812.310000px;}
.yb_c00058{bottom:865.935000px;}
.ya_c00058{bottom:867.060000px;}
.y9_c00058{bottom:867.750000px;}
.y8_c00058{bottom:884.310000px;}
.y7_c00058{bottom:901.560000px;}
.y6_c00058{bottom:918.525000px;}
.y5_c00058{bottom:935.835000px;}
.y4_c00058{bottom:981.525000px;}
.y3_c00058{bottom:1059.675000px;}
.y1_c00058{bottom:1066.875000px;}
.y2_c00058{bottom:1074.060000px;}
.h8_c00058{height:41.220703px;}
.h7_c00058{height:42.328125px;}
.h9_c00058{height:47.109375px;}
.h5_c00058{height:50.062500px;}
.h6_c00058{height:52.971680px;}
.ha_c00058{height:58.886719px;}
.h1_c00058{height:60.468750px;}
.h3_c00058{height:64.775391px;}
.h4_c00058{height:70.628906px;}
.hb_c00058{height:70.664062px;}
.hc_c00058{height:72.562500px;}
.h2_c00058{height:76.552734px;}
.h0_c00058{height:1174.500000px;}
.w0_c00058{width:731.977200px;}
.w1_c00058{width:732.000000px;}
.x0_c00058{left:0.000000px;}
.x11_c00058{left:49.315200px;}
.x12_c00058{left:51.115200px;}
.x15_c00058{left:52.165200px;}
.x5_c00058{left:53.290200px;}
.x1a_c00058{left:54.715200px;}
.x1e_c00058{left:55.765200px;}
.x21_c00058{left:57.190200px;}
.x6_c00058{left:80.290200px;}
.x10_c00058{left:84.550200px;}
.x1d_c00058{left:88.165200px;}
.x27_c00058{left:90.715200px;}
.x16_c00058{left:106.165200px;}
.x22_c00058{left:123.490200px;}
.x14_c00058{left:124.915200px;}
.x18_c00058{left:271.390200px;}
.x20_c00058{left:274.315200px;}
.x1_c00058{left:298.390200px;}
.x23_c00058{left:307.090200px;}
.x7_c00058{left:335.890200px;}
.x17_c00058{left:340.915200px;}
.x8_c00058{left:353.140200px;}
.x4_c00058{left:362.140200px;}
.x24_c00058{left:372.565200px;}
.x9_c00058{left:390.565200px;}
.x19_c00058{left:406.390200px;}
.xb_c00058{left:418.990200px;}
.xa_c00058{left:461.890200px;}
.x2_c00058{left:470.140200px;}
.x25_c00058{left:512.590200px;}
.xe_c00058{left:514.390200px;}
.xd_c00058{left:544.690200px;}
.xc_c00058{left:546.490200px;}
.xf_c00058{left:613.090200px;}
.x1f_c00058{left:623.890200px;}
.x1b_c00058{left:630.715200px;}
.x26_c00058{left:633.565200px;}
.x3_c00058{left:644.365200px;}
.x1c_c00058{left:653.740200px;}
.x13_c00058{left:667.090200px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls0_c00058{letter-spacing:0.000000pt;}
.ws0_c00058{word-spacing:0.000000pt;}
.fs6_c00058{font-size:37.333333pt;}
.fs4_c00058{font-size:42.666667pt;}
.fs5_c00058{font-size:48.000000pt;}
.fs0_c00058{font-size:53.333333pt;}
.fs2_c00058{font-size:58.666667pt;}
.fs3_c00058{font-size:64.000000pt;}
.fs1_c00058{font-size:69.333333pt;}
.y0_c00058{bottom:0.000000pt;}
.y40_c00058{bottom:57.720000pt;}
.y3f_c00058{bottom:76.000000pt;}
.y3d_c00058{bottom:94.920000pt;}
.y3e_c00058{bottom:97.453333pt;}
.y3a_c00058{bottom:112.453333pt;}
.y39_c00058{bottom:113.120000pt;}
.y3b_c00058{bottom:114.053333pt;}
.y3c_c00058{bottom:115.666667pt;}
.y37_c00058{bottom:130.666667pt;}
.y38_c00058{bottom:132.333333pt;}
.y35_c00058{bottom:149.920000pt;}
.y36_c00058{bottom:153.120000pt;}
.y34_c00058{bottom:168.786667pt;}
.y33_c00058{bottom:187.053333pt;}
.y31_c00058{bottom:206.253333pt;}
.y32_c00058{bottom:208.786667pt;}
.y30_c00058{bottom:225.133333pt;}
.y2f_c00058{bottom:244.333333pt;}
.y2e_c00058{bottom:263.520000pt;}
.y2d_c00058{bottom:282.386667pt;}
.y2c_c00058{bottom:301.253333pt;}
.y29_c00058{bottom:320.133333pt;}
.y2a_c00058{bottom:320.186667pt;}
.y2b_c00058{bottom:321.386667pt;}
.y26_c00058{bottom:339.053333pt;}
.y28_c00058{bottom:339.333333pt;}
.y27_c00058{bottom:339.386667pt;}
.y25_c00058{bottom:358.586667pt;}
.y24_c00058{bottom:377.786667pt;}
.y23_c00058{bottom:397.253333pt;}
.y22_c00058{bottom:416.786667pt;}
.y21_c00058{bottom:436.000000pt;}
.y20_c00058{bottom:455.186667pt;}
.y1f_c00058{bottom:474.720000pt;}
.y1e_c00058{bottom:493.920000pt;}
.y1d_c00058{bottom:513.120000pt;}
.y1c_c00058{bottom:532.333333pt;}
.y1b_c00058{bottom:532.920000pt;}
.y1a_c00058{bottom:550.520000pt;}
.y19_c00058{bottom:551.520000pt;}
.y18_c00058{bottom:571.000000pt;}
.y17_c00058{bottom:590.186667pt;}
.y16_c00058{bottom:609.720000pt;}
.y15_c00058{bottom:628.920000pt;}
.y13_c00058{bottom:673.066667pt;}
.y14_c00058{bottom:673.120000pt;}
.y12_c00058{bottom:696.786667pt;}
.y11_c00058{bottom:698.053333pt;}
.y10_c00058{bottom:708.666667pt;}
.yf_c00058{bottom:709.933333pt;}
.ye_c00058{bottom:710.266667pt;}
.yd_c00058{bottom:720.800000pt;}
.yc_c00058{bottom:722.053333pt;}
.yb_c00058{bottom:769.720000pt;}
.ya_c00058{bottom:770.720000pt;}
.y9_c00058{bottom:771.333333pt;}
.y8_c00058{bottom:786.053333pt;}
.y7_c00058{bottom:801.386667pt;}
.y6_c00058{bottom:816.466667pt;}
.y5_c00058{bottom:831.853333pt;}
.y4_c00058{bottom:872.466667pt;}
.y3_c00058{bottom:941.933333pt;}
.y1_c00058{bottom:948.333333pt;}
.y2_c00058{bottom:954.720000pt;}
.h8_c00058{height:36.640625pt;}
.h7_c00058{height:37.625000pt;}
.h9_c00058{height:41.875000pt;}
.h5_c00058{height:44.500000pt;}
.h6_c00058{height:47.085938pt;}
.ha_c00058{height:52.343750pt;}
.h1_c00058{height:53.750000pt;}
.h3_c00058{height:57.578125pt;}
.h4_c00058{height:62.781250pt;}
.hb_c00058{height:62.812500pt;}
.hc_c00058{height:64.500000pt;}
.h2_c00058{height:68.046875pt;}
.h0_c00058{height:1044.000000pt;}
.w0_c00058{width:650.646400pt;}
.w1_c00058{width:650.666667pt;}
.x0_c00058{left:0.000000pt;}
.x11_c00058{left:43.835733pt;}
.x12_c00058{left:45.435733pt;}
.x15_c00058{left:46.369067pt;}
.x5_c00058{left:47.369067pt;}
.x1a_c00058{left:48.635733pt;}
.x1e_c00058{left:49.569067pt;}
.x21_c00058{left:50.835733pt;}
.x6_c00058{left:71.369067pt;}
.x10_c00058{left:75.155733pt;}
.x1d_c00058{left:78.369067pt;}
.x27_c00058{left:80.635733pt;}
.x16_c00058{left:94.369067pt;}
.x22_c00058{left:109.769067pt;}
.x14_c00058{left:111.035733pt;}
.x18_c00058{left:241.235733pt;}
.x20_c00058{left:243.835733pt;}
.x1_c00058{left:265.235733pt;}
.x23_c00058{left:272.969067pt;}
.x7_c00058{left:298.569067pt;}
.x17_c00058{left:303.035733pt;}
.x8_c00058{left:313.902400pt;}
.x4_c00058{left:321.902400pt;}
.x24_c00058{left:331.169067pt;}
.x9_c00058{left:347.169067pt;}
.x19_c00058{left:361.235733pt;}
.xb_c00058{left:372.435733pt;}
.xa_c00058{left:410.569067pt;}
.x2_c00058{left:417.902400pt;}
.x25_c00058{left:455.635733pt;}
.xe_c00058{left:457.235733pt;}
.xd_c00058{left:484.169067pt;}
.xc_c00058{left:485.769067pt;}
.xf_c00058{left:544.969067pt;}
.x1f_c00058{left:554.569067pt;}
.x1b_c00058{left:560.635733pt;}
.x26_c00058{left:563.169067pt;}
.x3_c00058{left:572.769067pt;}
.x1c_c00058{left:581.102400pt;}
.x13_c00058{left:592.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00059 {
    display:none;
  }
  .loading-indicator_c00059.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00059 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00059 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00059" -> "#page-container .classname_c00059")
 */
.pf_c00059 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00059 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00059 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00059 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00059 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00059 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00059 {overflow:visible;}
  }
}
.c_c00059 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00059 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00059:after { /* webkit #35443 */
  content: '';
}
.t_c00059:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00059 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00059 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00059 { /* info for Javascript */
  display:none;
}
.l_c00059 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00059 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00059 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00059:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00059 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00059.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00059 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00059;src:url('chunks/assets/font_f7a08198b34869932683fb1d.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00059;src:url('chunks/assets/font_64c25022186a41ef1ff7d59a.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00059;src:url('chunks/assets/font_6c0eb999c022fcec3cde14ec.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00059{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.me_c00059{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m1_c00059{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00059{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m22_c00059{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6_c00059{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md_c00059{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3_c00059{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c00059{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00059{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m8_c00059{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00059{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c00059{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00059{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00059{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c00059{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00059{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00059{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00059{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00059{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m24_c00059{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00059{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00059{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00059{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00059{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c00059{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c00059{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m18_c00059{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m19_c00059{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c00059{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00059{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m21_c00059{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m23_c00059{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00059{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5_c00059{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m16_c00059{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls0_c00059{letter-spacing:0.000000px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00059{word-spacing:0.000000px;}
.fc0_c00059{color:transparent;}
.fs0_c00059{font-size:60.000000px;}
.fs2_c00059{font-size:66.000000px;}
.fs3_c00059{font-size:72.000000px;}
.fs1_c00059{font-size:84.000000px;}
.y0_c00059{bottom:0.000000px;}
.y55_c00059{bottom:85.500000px;}
.y54_c00059{bottom:94.125000px;}
.y53_c00059{bottom:99.210000px;}
.y52_c00059{bottom:102.060000px;}
.y51_c00059{bottom:112.785000px;}
.y50_c00059{bottom:116.085000px;}
.y4f_c00059{bottom:121.500000px;}
.y4c_c00059{bottom:131.535000px;}
.y4e_c00059{bottom:133.035000px;}
.y4b_c00059{bottom:133.410000px;}
.y4d_c00059{bottom:134.835000px;}
.y4a_c00059{bottom:142.410000px;}
.y49_c00059{bottom:150.660000px;}
.y48_c00059{bottom:159.000000px;}
.y47_c00059{bottom:175.185000px;}
.y46_c00059{bottom:189.885000px;}
.y45_c00059{bottom:200.685000px;}
.y44_c00059{bottom:203.910000px;}
.y43_c00059{bottom:210.435000px;}
.y42_c00059{bottom:227.010000px;}
.y41_c00059{bottom:236.010000px;}
.y40_c00059{bottom:243.585000px;}
.y3f_c00059{bottom:251.760000px;}
.y3e_c00059{bottom:252.885000px;}
.y3d_c00059{bottom:256.500000px;}
.y3c_c00059{bottom:261.210000px;}
.y3b_c00059{bottom:265.185000px;}
.y3a_c00059{bottom:267.660000px;}
.y39_c00059{bottom:269.835000px;}
.y38_c00059{bottom:279.525000px;}
.y37_c00059{bottom:296.835000px;}
.y36_c00059{bottom:309.435000px;}
.y35_c00059{bottom:309.750000px;}
.y34_c00059{bottom:316.560000px;}
.y32_c00059{bottom:327.000000px;}
.y33_c00059{bottom:327.435000px;}
.y31_c00059{bottom:328.500000px;}
.y30_c00059{bottom:334.560000px;}
.y2f_c00059{bottom:345.060000px;}
.y2e_c00059{bottom:345.285000px;}
.y2d_c00059{bottom:347.250000px;}
.y2c_c00059{bottom:353.310000px;}
.y2b_c00059{bottom:363.060000px;}
.y2a_c00059{bottom:366.660000px;}
.y29_c00059{bottom:383.625000px;}
.y28_c00059{bottom:460.635000px;}
.y27_c00059{bottom:481.500000px;}
.y26_c00059{bottom:503.460000px;}
.y25_c00059{bottom:524.685000px;}
.y24_c00059{bottom:525.060000px;}
.y23_c00059{bottom:546.660000px;}
.y22_c00059{bottom:568.635000px;}
.y21_c00059{bottom:590.535000px;}
.y20_c00059{bottom:610.785000px;}
.y1d_c00059{bottom:632.685000px;}
.y1e_c00059{bottom:634.710000px;}
.y1f_c00059{bottom:635.250000px;}
.y1c_c00059{bottom:656.085000px;}
.y1b_c00059{bottom:678.060000px;}
.y1a_c00059{bottom:699.285000px;}
.y19_c00059{bottom:721.635000px;}
.y18_c00059{bottom:742.500000px;}
.y17_c00059{bottom:764.460000px;}
.y16_c00059{bottom:786.060000px;}
.y15_c00059{bottom:806.925000px;}
.y14_c00059{bottom:829.935000px;}
.y13_c00059{bottom:850.125000px;}
.y12_c00059{bottom:872.085000px;}
.y11_c00059{bottom:890.460000px;}
.y10_c00059{bottom:914.250000px;}
.yf_c00059{bottom:936.210000px;}
.ya_c00059{bottom:945.525000px;}
.yb_c00059{bottom:949.875000px;}
.yc_c00059{bottom:957.060000px;}
.yd_c00059{bottom:963.150000px;}
.ye_c00059{bottom:963.210000px;}
.y9_c00059{bottom:977.625000px;}
.y6_c00059{bottom:993.060000px;}
.y7_c00059{bottom:1006.335000px;}
.y8_c00059{bottom:1006.425000px;}
.y5_c00059{bottom:1020.810000px;}
.y2_c00059{bottom:1027.935000px;}
.y3_c00059{bottom:1033.050000px;}
.y4_c00059{bottom:1045.650000px;}
.y56_c00059{bottom:1082.685000px;}
.y1_c00059{bottom:1098.900000px;}
.h1_c00059{height:58.886719px;}
.h5_c00059{height:64.743164px;}
.h3_c00059{height:64.775391px;}
.h6_c00059{height:66.515625px;}
.h4_c00059{height:70.628906px;}
.h2_c00059{height:82.441406px;}
.h0_c00059{height:1174.500000px;}
.w0_c00059{width:731.977200px;}
.w1_c00059{width:732.000000px;}
.x0_c00059{left:0.000000px;}
.x2_c00059{left:44.590200px;}
.xb_c00059{left:46.090200px;}
.xd_c00059{left:47.515200px;}
.x14_c00059{left:52.165200px;}
.x1f_c00059{left:53.290200px;}
.x1c_c00059{left:54.715200px;}
.x34_c00059{left:62.590200px;}
.x13_c00059{left:67.690200px;}
.x27_c00059{left:73.390200px;}
.x10_c00059{left:75.550200px;}
.xc_c00059{left:76.990200px;}
.x25_c00059{left:78.490200px;}
.x31_c00059{left:83.515200px;}
.x20_c00059{left:89.965200px;}
.x2d_c00059{left:100.090200px;}
.x26_c00059{left:145.765200px;}
.x2e_c00059{left:147.565200px;}
.x32_c00059{left:166.690200px;}
.x7_c00059{left:184.315200px;}
.x29_c00059{left:190.090200px;}
.x8_c00059{left:192.190200px;}
.x2f_c00059{left:197.590200px;}
.x3_c00059{left:199.375200px;}
.x16_c00059{left:203.740200px;}
.x4_c00059{left:208.375200px;}
.x30_c00059{left:212.365200px;}
.x21_c00059{left:246.190200px;}
.x22_c00059{left:256.315200px;}
.x11_c00059{left:259.915200px;}
.x1_c00059{left:264.940200px;}
.x33_c00059{left:300.190200px;}
.x12_c00059{left:338.740200px;}
.x19_c00059{left:385.900200px;}
.x5_c00059{left:418.690200px;}
.xe_c00059{left:443.515200px;}
.xf_c00059{left:449.590200px;}
.x9_c00059{left:465.790200px;}
.x1d_c00059{left:475.165200px;}
.x23_c00059{left:514.090200px;}
.xa_c00059{left:559.390200px;}
.x2b_c00059{left:564.490200px;}
.x1e_c00059{left:578.890200px;}
.x6_c00059{left:586.765200px;}
.x2a_c00059{left:610.540200px;}
.x2c_c00059{left:623.890200px;}
.x1a_c00059{left:632.890200px;}
.x17_c00059{left:634.990200px;}
.x18_c00059{left:637.165200px;}
.x1b_c00059{left:638.590200px;}
.x28_c00059{left:640.765200px;}
.x24_c00059{left:651.940200px;}
.x15_c00059{left:652.990200px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls0_c00059{letter-spacing:0.000000pt;}
.ws0_c00059{word-spacing:0.000000pt;}
.fs0_c00059{font-size:53.333333pt;}
.fs2_c00059{font-size:58.666667pt;}
.fs3_c00059{font-size:64.000000pt;}
.fs1_c00059{font-size:74.666667pt;}
.y0_c00059{bottom:0.000000pt;}
.y55_c00059{bottom:76.000000pt;}
.y54_c00059{bottom:83.666667pt;}
.y53_c00059{bottom:88.186667pt;}
.y52_c00059{bottom:90.720000pt;}
.y51_c00059{bottom:100.253333pt;}
.y50_c00059{bottom:103.186667pt;}
.y4f_c00059{bottom:108.000000pt;}
.y4c_c00059{bottom:116.920000pt;}
.y4e_c00059{bottom:118.253333pt;}
.y4b_c00059{bottom:118.586667pt;}
.y4d_c00059{bottom:119.853333pt;}
.y4a_c00059{bottom:126.586667pt;}
.y49_c00059{bottom:133.920000pt;}
.y48_c00059{bottom:141.333333pt;}
.y47_c00059{bottom:155.720000pt;}
.y46_c00059{bottom:168.786667pt;}
.y45_c00059{bottom:178.386667pt;}
.y44_c00059{bottom:181.253333pt;}
.y43_c00059{bottom:187.053333pt;}
.y42_c00059{bottom:201.786667pt;}
.y41_c00059{bottom:209.786667pt;}
.y40_c00059{bottom:216.520000pt;}
.y3f_c00059{bottom:223.786667pt;}
.y3e_c00059{bottom:224.786667pt;}
.y3d_c00059{bottom:228.000000pt;}
.y3c_c00059{bottom:232.186667pt;}
.y3b_c00059{bottom:235.720000pt;}
.y3a_c00059{bottom:237.920000pt;}
.y39_c00059{bottom:239.853333pt;}
.y38_c00059{bottom:248.466667pt;}
.y37_c00059{bottom:263.853333pt;}
.y36_c00059{bottom:275.053333pt;}
.y35_c00059{bottom:275.333333pt;}
.y34_c00059{bottom:281.386667pt;}
.y32_c00059{bottom:290.666667pt;}
.y33_c00059{bottom:291.053333pt;}
.y31_c00059{bottom:292.000000pt;}
.y30_c00059{bottom:297.386667pt;}
.y2f_c00059{bottom:306.720000pt;}
.y2e_c00059{bottom:306.920000pt;}
.y2d_c00059{bottom:308.666667pt;}
.y2c_c00059{bottom:314.053333pt;}
.y2b_c00059{bottom:322.720000pt;}
.y2a_c00059{bottom:325.920000pt;}
.y29_c00059{bottom:341.000000pt;}
.y28_c00059{bottom:409.453333pt;}
.y27_c00059{bottom:428.000000pt;}
.y26_c00059{bottom:447.520000pt;}
.y25_c00059{bottom:466.386667pt;}
.y24_c00059{bottom:466.720000pt;}
.y23_c00059{bottom:485.920000pt;}
.y22_c00059{bottom:505.453333pt;}
.y21_c00059{bottom:524.920000pt;}
.y20_c00059{bottom:542.920000pt;}
.y1d_c00059{bottom:562.386667pt;}
.y1e_c00059{bottom:564.186667pt;}
.y1f_c00059{bottom:564.666667pt;}
.y1c_c00059{bottom:583.186667pt;}
.y1b_c00059{bottom:602.720000pt;}
.y1a_c00059{bottom:621.586667pt;}
.y19_c00059{bottom:641.453333pt;}
.y18_c00059{bottom:660.000000pt;}
.y17_c00059{bottom:679.520000pt;}
.y16_c00059{bottom:698.720000pt;}
.y15_c00059{bottom:717.266667pt;}
.y14_c00059{bottom:737.720000pt;}
.y13_c00059{bottom:755.666667pt;}
.y12_c00059{bottom:775.186667pt;}
.y11_c00059{bottom:791.520000pt;}
.y10_c00059{bottom:812.666667pt;}
.yf_c00059{bottom:832.186667pt;}
.ya_c00059{bottom:840.466667pt;}
.yb_c00059{bottom:844.333333pt;}
.yc_c00059{bottom:850.720000pt;}
.yd_c00059{bottom:856.133333pt;}
.ye_c00059{bottom:856.186667pt;}
.y9_c00059{bottom:869.000000pt;}
.y6_c00059{bottom:882.720000pt;}
.y7_c00059{bottom:894.520000pt;}
.y8_c00059{bottom:894.600000pt;}
.y5_c00059{bottom:907.386667pt;}
.y2_c00059{bottom:913.720000pt;}
.y3_c00059{bottom:918.266667pt;}
.y4_c00059{bottom:929.466667pt;}
.y56_c00059{bottom:962.386667pt;}
.y1_c00059{bottom:976.800000pt;}
.h1_c00059{height:52.343750pt;}
.h5_c00059{height:57.549479pt;}
.h3_c00059{height:57.578125pt;}
.h6_c00059{height:59.125000pt;}
.h4_c00059{height:62.781250pt;}
.h2_c00059{height:73.281250pt;}
.h0_c00059{height:1044.000000pt;}
.w0_c00059{width:650.646400pt;}
.w1_c00059{width:650.666667pt;}
.x0_c00059{left:0.000000pt;}
.x2_c00059{left:39.635733pt;}
.xb_c00059{left:40.969067pt;}
.xd_c00059{left:42.235733pt;}
.x14_c00059{left:46.369067pt;}
.x1f_c00059{left:47.369067pt;}
.x1c_c00059{left:48.635733pt;}
.x34_c00059{left:55.635733pt;}
.x13_c00059{left:60.169067pt;}
.x27_c00059{left:65.235733pt;}
.x10_c00059{left:67.155733pt;}
.xc_c00059{left:68.435733pt;}
.x25_c00059{left:69.769067pt;}
.x31_c00059{left:74.235733pt;}
.x20_c00059{left:79.969067pt;}
.x2d_c00059{left:88.969067pt;}
.x26_c00059{left:129.569067pt;}
.x2e_c00059{left:131.169067pt;}
.x32_c00059{left:148.169067pt;}
.x7_c00059{left:163.835733pt;}
.x29_c00059{left:168.969067pt;}
.x8_c00059{left:170.835733pt;}
.x2f_c00059{left:175.635733pt;}
.x3_c00059{left:177.222400pt;}
.x16_c00059{left:181.102400pt;}
.x4_c00059{left:185.222400pt;}
.x30_c00059{left:188.769067pt;}
.x21_c00059{left:218.835733pt;}
.x22_c00059{left:227.835733pt;}
.x11_c00059{left:231.035733pt;}
.x1_c00059{left:235.502400pt;}
.x33_c00059{left:266.835733pt;}
.x12_c00059{left:301.102400pt;}
.x19_c00059{left:343.022400pt;}
.x5_c00059{left:372.169067pt;}
.xe_c00059{left:394.235733pt;}
.xf_c00059{left:399.635733pt;}
.x9_c00059{left:414.035733pt;}
.x1d_c00059{left:422.369067pt;}
.x23_c00059{left:456.969067pt;}
.xa_c00059{left:497.235733pt;}
.x2b_c00059{left:501.769067pt;}
.x1e_c00059{left:514.569067pt;}
.x6_c00059{left:521.569067pt;}
.x2a_c00059{left:542.702400pt;}
.x2c_c00059{left:554.569067pt;}
.x1a_c00059{left:562.569067pt;}
.x17_c00059{left:564.435733pt;}
.x18_c00059{left:566.369067pt;}
.x1b_c00059{left:567.635733pt;}
.x28_c00059{left:569.569067pt;}
.x24_c00059{left:579.502400pt;}
.x15_c00059{left:580.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c4c4517e36c528f316ad9183.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00060;src:url('chunks/assets/font_44a8eef894d0d03f53c131b0.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00060;src:url('chunks/assets/font_4b4dff618aca3ae6593f353b.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00060;src:url('chunks/assets/font_eefc1146ae4ba06fcb435cfa.woff2')format("woff");}.ff4_c00060{font-family:ff4_c00060;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00060{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m16_c00060{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00060{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.md_c00060{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me_c00060{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_c00060{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3_c00060{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00060{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00060{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c00060{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c00060{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c00060{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c00060{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00060{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00060{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00060{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00060{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00060{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00060{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00060{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00060{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m17_c00060{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c00060{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c00060{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mc_c00060{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00060{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c00060{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m19_c00060{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2_c00060{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.ma_c00060{transform:matrix(4.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.085000,0.000000,0.000000,0.250000,0,0);}
.m12_c00060{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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.000000px;}
.fc0_c00060{color:transparent;}
.fs5_c00060{font-size:48.000000px;}
.fs0_c00060{font-size:60.000000px;}
.fs1_c00060{font-size:66.000000px;}
.fs3_c00060{font-size:72.000000px;}
.fs4_c00060{font-size:78.000000px;}
.fs2_c00060{font-size:84.000000px;}
.y0_c00060{bottom:0.000000px;}
.y43_c00060{bottom:68.625000px;}
.y41_c00060{bottom:85.125000px;}
.y42_c00060{bottom:87.285000px;}
.y3f_c00060{bottom:101.685000px;}
.y40_c00060{bottom:111.435000px;}
.y3e_c00060{bottom:119.685000px;}
.y3d_c00060{bottom:172.635000px;}
.y3a_c00060{bottom:193.125000px;}
.y3b_c00060{bottom:196.710000px;}
.y3c_c00060{bottom:198.510000px;}
.y39_c00060{bottom:214.035000px;}
.y38_c00060{bottom:236.010000px;}
.y37_c00060{bottom:256.875000px;}
.y35_c00060{bottom:278.835000px;}
.y36_c00060{bottom:282.060000px;}
.y34_c00060{bottom:300.435000px;}
.y33_c00060{bottom:321.285000px;}
.y31_c00060{bottom:342.525000px;}
.y32_c00060{bottom:343.275000px;}
.y30_c00060{bottom:364.500000px;}
.y2f_c00060{bottom:386.085000px;}
.y2e_c00060{bottom:407.685000px;}
.y2d_c00060{bottom:428.910000px;}
.y2c_c00060{bottom:450.885000px;}
.y2b_c00060{bottom:472.125000px;}
.y2a_c00060{bottom:494.460000px;}
.y29_c00060{bottom:516.435000px;}
.y28_c00060{bottom:538.035000px;}
.y27_c00060{bottom:559.560000px;}
.y26_c00060{bottom:581.250000px;}
.y25_c00060{bottom:602.835000px;}
.y24_c00060{bottom:624.750000px;}
.y23_c00060{bottom:645.660000px;}
.y22_c00060{bottom:647.085000px;}
.y21_c00060{bottom:687.435000px;}
.y1c_c00060{bottom:697.185000px;}
.y20_c00060{bottom:697.500000px;}
.y1f_c00060{bottom:704.310000px;}
.y1e_c00060{bottom:705.060000px;}
.y1d_c00060{bottom:706.125000px;}
.y44_c00060{bottom:719.085000px;}
.y1b_c00060{bottom:722.325000px;}
.y1a_c00060{bottom:739.260000px;}
.y19_c00060{bottom:740.700000px;}
.y18_c00060{bottom:756.585000px;}
.y17_c00060{bottom:758.325000px;}
.y16_c00060{bottom:798.300000px;}
.y15_c00060{bottom:819.900000px;}
.y14_c00060{bottom:820.935000px;}
.y13_c00060{bottom:841.500000px;}
.y12_c00060{bottom:843.300000px;}
.y11_c00060{bottom:863.775000px;}
.y10_c00060{bottom:883.650000px;}
.yf_c00060{bottom:885.810000px;}
.yd_c00060{bottom:886.125000px;}
.ye_c00060{bottom:886.500000px;}
.yc_c00060{bottom:906.675000px;}
.yb_c00060{bottom:927.525000px;}
.ya_c00060{bottom:949.500000px;}
.y9_c00060{bottom:970.425000px;}
.y8_c00060{bottom:972.900000px;}
.y7_c00060{bottom:992.685000px;}
.y6_c00060{bottom:1013.550000px;}
.y5_c00060{bottom:1014.960000px;}
.y4_c00060{bottom:1016.085000px;}
.y2_c00060{bottom:1068.300000px;}
.y1_c00060{bottom:1074.750000px;}
.y3_c00060{bottom:1157.925000px;}
.h7_c00060{height:47.109375px;}
.h1_c00060{height:58.886719px;}
.h2_c00060{height:64.775391px;}
.h5_c00060{height:70.664062px;}
.h4_c00060{height:72.562500px;}
.h6_c00060{height:76.514648px;}
.h3_c00060{height:82.400391px;}
.h0_c00060{height:1174.500000px;}
.w0_c00060{width:731.977200px;}
.w1_c00060{width:732.000000px;}
.x0_c00060{left:0.000000px;}
.x7_c00060{left:40.690200px;}
.x8_c00060{left:42.490200px;}
.xb_c00060{left:43.915200px;}
.x21_c00060{left:46.765200px;}
.x23_c00060{left:49.690200px;}
.x24_c00060{left:50.740200px;}
.x27_c00060{left:53.965200px;}
.x29_c00060{left:56.515200px;}
.x2a_c00060{left:57.565200px;}
.x2c_c00060{left:59.740200px;}
.x30_c00060{left:61.915200px;}
.x4_c00060{left:74.140200px;}
.xa_c00060{left:75.925200px;}
.x33_c00060{left:77.740200px;}
.x1f_c00060{left:79.165200px;}
.x22_c00060{left:81.340200px;}
.x25_c00060{left:83.515200px;}
.x26_c00060{left:84.925200px;}
.x28_c00060{left:89.590200px;}
.x2d_c00060{left:92.140200px;}
.x2f_c00060{left:94.690200px;}
.x2b_c00060{left:99.340200px;}
.x9_c00060{left:106.165200px;}
.xc_c00060{left:110.515200px;}
.x10_c00060{left:127.390200px;}
.xf_c00060{left:135.715200px;}
.x3_c00060{left:138.565200px;}
.x11_c00060{left:144.340200px;}
.x1c_c00060{left:151.540200px;}
.x1d_c00060{left:162.715200px;}
.x15_c00060{left:163.765200px;}
.x20_c00060{left:171.715200px;}
.x19_c00060{left:226.765200px;}
.x16_c00060{left:228.940200px;}
.x13_c00060{left:235.765200px;}
.x18_c00060{left:237.190200px;}
.x1a_c00060{left:241.540200px;}
.x14_c00060{left:249.115200px;}
.x1_c00060{left:256.990200px;}
.x5_c00060{left:260.590200px;}
.x12_c00060{left:263.890200px;}
.x17_c00060{left:266.365200px;}
.x1e_c00060{left:267.490200px;}
.x6_c00060{left:289.090200px;}
.x35_c00060{left:305.590200px;}
.xd_c00060{left:321.790200px;}
.xe_c00060{left:346.315200px;}
.x1b_c00060{left:369.715200px;}
.x31_c00060{left:562.990200px;}
.x32_c00060{left:604.765200px;}
.x2_c00060{left:629.965200px;}
.x2e_c00060{left:668.890200px;}
.x34_c00060{left:671.365200px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls0_c00060{letter-spacing:0.000000pt;}
.ws0_c00060{word-spacing:0.000000pt;}
.fs5_c00060{font-size:42.666667pt;}
.fs0_c00060{font-size:53.333333pt;}
.fs1_c00060{font-size:58.666667pt;}
.fs3_c00060{font-size:64.000000pt;}
.fs4_c00060{font-size:69.333333pt;}
.fs2_c00060{font-size:74.666667pt;}
.y0_c00060{bottom:0.000000pt;}
.y43_c00060{bottom:61.000000pt;}
.y41_c00060{bottom:75.666667pt;}
.y42_c00060{bottom:77.586667pt;}
.y3f_c00060{bottom:90.386667pt;}
.y40_c00060{bottom:99.053333pt;}
.y3e_c00060{bottom:106.386667pt;}
.y3d_c00060{bottom:153.453333pt;}
.y3a_c00060{bottom:171.666667pt;}
.y3b_c00060{bottom:174.853333pt;}
.y3c_c00060{bottom:176.453333pt;}
.y39_c00060{bottom:190.253333pt;}
.y38_c00060{bottom:209.786667pt;}
.y37_c00060{bottom:228.333333pt;}
.y35_c00060{bottom:247.853333pt;}
.y36_c00060{bottom:250.720000pt;}
.y34_c00060{bottom:267.053333pt;}
.y33_c00060{bottom:285.586667pt;}
.y31_c00060{bottom:304.466667pt;}
.y32_c00060{bottom:305.133333pt;}
.y30_c00060{bottom:324.000000pt;}
.y2f_c00060{bottom:343.186667pt;}
.y2e_c00060{bottom:362.386667pt;}
.y2d_c00060{bottom:381.253333pt;}
.y2c_c00060{bottom:400.786667pt;}
.y2b_c00060{bottom:419.666667pt;}
.y2a_c00060{bottom:439.520000pt;}
.y29_c00060{bottom:459.053333pt;}
.y28_c00060{bottom:478.253333pt;}
.y27_c00060{bottom:497.386667pt;}
.y26_c00060{bottom:516.666667pt;}
.y25_c00060{bottom:535.853333pt;}
.y24_c00060{bottom:555.333333pt;}
.y23_c00060{bottom:573.920000pt;}
.y22_c00060{bottom:575.186667pt;}
.y21_c00060{bottom:611.053333pt;}
.y1c_c00060{bottom:619.720000pt;}
.y20_c00060{bottom:620.000000pt;}
.y1f_c00060{bottom:626.053333pt;}
.y1e_c00060{bottom:626.720000pt;}
.y1d_c00060{bottom:627.666667pt;}
.y44_c00060{bottom:639.186667pt;}
.y1b_c00060{bottom:642.066667pt;}
.y1a_c00060{bottom:657.120000pt;}
.y19_c00060{bottom:658.400000pt;}
.y18_c00060{bottom:672.520000pt;}
.y17_c00060{bottom:674.066667pt;}
.y16_c00060{bottom:709.600000pt;}
.y15_c00060{bottom:728.800000pt;}
.y14_c00060{bottom:729.720000pt;}
.y13_c00060{bottom:748.000000pt;}
.y12_c00060{bottom:749.600000pt;}
.y11_c00060{bottom:767.800000pt;}
.y10_c00060{bottom:785.466667pt;}
.yf_c00060{bottom:787.386667pt;}
.yd_c00060{bottom:787.666667pt;}
.ye_c00060{bottom:788.000000pt;}
.yc_c00060{bottom:805.933333pt;}
.yb_c00060{bottom:824.466667pt;}
.ya_c00060{bottom:844.000000pt;}
.y9_c00060{bottom:862.600000pt;}
.y8_c00060{bottom:864.800000pt;}
.y7_c00060{bottom:882.386667pt;}
.y6_c00060{bottom:900.933333pt;}
.y5_c00060{bottom:902.186667pt;}
.y4_c00060{bottom:903.186667pt;}
.y2_c00060{bottom:949.600000pt;}
.y1_c00060{bottom:955.333333pt;}
.y3_c00060{bottom:1029.266667pt;}
.h7_c00060{height:41.875000pt;}
.h1_c00060{height:52.343750pt;}
.h2_c00060{height:57.578125pt;}
.h5_c00060{height:62.812500pt;}
.h4_c00060{height:64.500000pt;}
.h6_c00060{height:68.013021pt;}
.h3_c00060{height:73.244792pt;}
.h0_c00060{height:1044.000000pt;}
.w0_c00060{width:650.646400pt;}
.w1_c00060{width:650.666667pt;}
.x0_c00060{left:0.000000pt;}
.x7_c00060{left:36.169067pt;}
.x8_c00060{left:37.769067pt;}
.xb_c00060{left:39.035733pt;}
.x21_c00060{left:41.569067pt;}
.x23_c00060{left:44.169067pt;}
.x24_c00060{left:45.102400pt;}
.x27_c00060{left:47.969067pt;}
.x29_c00060{left:50.235733pt;}
.x2a_c00060{left:51.169067pt;}
.x2c_c00060{left:53.102400pt;}
.x30_c00060{left:55.035733pt;}
.x4_c00060{left:65.902400pt;}
.xa_c00060{left:67.489067pt;}
.x33_c00060{left:69.102400pt;}
.x1f_c00060{left:70.369067pt;}
.x22_c00060{left:72.302400pt;}
.x25_c00060{left:74.235733pt;}
.x26_c00060{left:75.489067pt;}
.x28_c00060{left:79.635733pt;}
.x2d_c00060{left:81.902400pt;}
.x2f_c00060{left:84.169067pt;}
.x2b_c00060{left:88.302400pt;}
.x9_c00060{left:94.369067pt;}
.xc_c00060{left:98.235733pt;}
.x10_c00060{left:113.235733pt;}
.xf_c00060{left:120.635733pt;}
.x3_c00060{left:123.169067pt;}
.x11_c00060{left:128.302400pt;}
.x1c_c00060{left:134.702400pt;}
.x1d_c00060{left:144.635733pt;}
.x15_c00060{left:145.569067pt;}
.x20_c00060{left:152.635733pt;}
.x19_c00060{left:201.569067pt;}
.x16_c00060{left:203.502400pt;}
.x13_c00060{left:209.569067pt;}
.x18_c00060{left:210.835733pt;}
.x1a_c00060{left:214.702400pt;}
.x14_c00060{left:221.435733pt;}
.x1_c00060{left:228.435733pt;}
.x5_c00060{left:231.635733pt;}
.x12_c00060{left:234.569067pt;}
.x17_c00060{left:236.769067pt;}
.x1e_c00060{left:237.769067pt;}
.x6_c00060{left:256.969067pt;}
.x35_c00060{left:271.635733pt;}
.xd_c00060{left:286.035733pt;}
.xe_c00060{left:307.835733pt;}
.x1b_c00060{left:328.635733pt;}
.x31_c00060{left:500.435733pt;}
.x32_c00060{left:537.569067pt;}
.x2_c00060{left:559.969067pt;}
.x2e_c00060{left:594.569067pt;}
.x34_c00060{left:596.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00061 {
    display:none;
  }
  .loading-indicator_c00061.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00061 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00061 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00061" -> "#page-container .classname_c00061")
 */
.pf_c00061 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00061 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00061 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00061 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00061 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00061 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00061 {overflow:visible;}
  }
}
.c_c00061 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00061 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00061:after { /* webkit #35443 */
  content: '';
}
.t_c00061:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00061 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00061 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00061 { /* info for Javascript */
  display:none;
}
.l_c00061 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00061 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00061 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00061:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00061 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00061.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00061 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00061;src:url('chunks/assets/font_c467e8e02d814b4dc9ab6c11.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00061;src:url('chunks/assets/font_48fe66678869ad0559029ec0.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00061;src:url('chunks/assets/font_e8ccd6936a378ec308e93a4b.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00061;src:url('chunks/assets/font_f24130daef228143ae0b859d.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2a_c00061{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00061{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m30_c00061{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m27_c00061{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m29_c00061{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00061{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5_c00061{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8_c00061{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m15_c00061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7_c00061{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m17_c00061{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00061{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_c00061{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00061{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c00061{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m12_c00061{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c00061{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m13_c00061{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9_c00061{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me_c00061{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00061{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m23_c00061{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c00061{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00061{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00061{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00061{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00061{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m22_c00061{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14_c00061{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m28_c00061{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00061{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m24_c00061{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00061{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19_c00061{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00061{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00061{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00061{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00061{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00061{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00061{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00061{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md_c00061{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m21_c00061{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00061{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m20_c00061{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m25_c00061{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m26_c00061{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4_c00061{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m11_c00061{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls0_c00061{letter-spacing:0.000000px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00061{word-spacing:0.000000px;}
._0_c00061{margin-left:-1.985698px;}
.fc0_c00061{color:transparent;}
.fs4_c00061{font-size:54.000000px;}
.fs0_c00061{font-size:60.000000px;}
.fs2_c00061{font-size:66.000000px;}
.fs5_c00061{font-size:72.000000px;}
.fs3_c00061{font-size:78.000000px;}
.fs1_c00061{font-size:84.000000px;}
.y0_c00061{bottom:0.000000px;}
.y8a_c00061{bottom:108.885000px;}
.y8b_c00061{bottom:113.250000px;}
.y89_c00061{bottom:120.060000px;}
.y88_c00061{bottom:121.500000px;}
.y87_c00061{bottom:122.250000px;}
.y86_c00061{bottom:133.710000px;}
.y85_c00061{bottom:143.460000px;}
.y84_c00061{bottom:143.835000px;}
.y83_c00061{bottom:145.185000px;}
.y82_c00061{bottom:147.060000px;}
.y81_c00061{bottom:150.000000px;}
.y80_c00061{bottom:151.710000px;}
.y7f_c00061{bottom:155.685000px;}
.y7e_c00061{bottom:159.660000px;}
.y7a_c00061{bottom:161.085000px;}
.y79_c00061{bottom:161.460000px;}
.y7b_c00061{bottom:161.760000px;}
.y7d_c00061{bottom:162.510000px;}
.y7c_c00061{bottom:165.000000px;}
.y78_c00061{bottom:170.085000px;}
.y77_c00061{bottom:178.335000px;}
.y76_c00061{bottom:178.710000px;}
.y75_c00061{bottom:184.875000px;}
.y74_c00061{bottom:195.585000px;}
.y73_c00061{bottom:197.760000px;}
.y72_c00061{bottom:202.125000px;}
.y71_c00061{bottom:210.435000px;}
.y70_c00061{bottom:211.500000px;}
.y6f_c00061{bottom:212.910000px;}
.y6e_c00061{bottom:220.500000px;}
.y6d_c00061{bottom:242.760000px;}
.y6c_c00061{bottom:247.875000px;}
.y6b_c00061{bottom:248.625000px;}
.y6a_c00061{bottom:252.885000px;}
.y69_c00061{bottom:262.185000px;}
.y68_c00061{bottom:263.685000px;}
.y67_c00061{bottom:269.460000px;}
.y66_c00061{bottom:276.285000px;}
.y65_c00061{bottom:282.375000px;}
.y64_c00061{bottom:283.500000px;}
.y63_c00061{bottom:289.275000px;}
.y62_c00061{bottom:299.025000px;}
.y61_c00061{bottom:301.500000px;}
.y60_c00061{bottom:304.035000px;}
.y5f_c00061{bottom:307.275000px;}
.y5e_c00061{bottom:310.500000px;}
.y5d_c00061{bottom:314.400000px;}
.y5c_c00061{bottom:354.060000px;}
.y5b_c00061{bottom:356.535000px;}
.y5a_c00061{bottom:361.275000px;}
.y59_c00061{bottom:375.960000px;}
.y58_c00061{bottom:376.335000px;}
.y57_c00061{bottom:376.710000px;}
.y56_c00061{bottom:377.460000px;}
.y55_c00061{bottom:381.375000px;}
.y54_c00061{bottom:403.035000px;}
.y53_c00061{bottom:407.010000px;}
.y52_c00061{bottom:420.285000px;}
.y51_c00061{bottom:423.885000px;}
.y50_c00061{bottom:442.635000px;}
.y4f_c00061{bottom:443.310000px;}
.y4e_c00061{bottom:445.500000px;}
.y4d_c00061{bottom:448.785000px;}
.y4c_c00061{bottom:464.535000px;}
.y4b_c00061{bottom:465.000000px;}
.y4a_c00061{bottom:465.660000px;}
.y49_c00061{bottom:467.835000px;}
.y48_c00061{bottom:486.885000px;}
.y47_c00061{bottom:487.935000px;}
.y46_c00061{bottom:491.250000px;}
.y45_c00061{bottom:508.875000px;}
.y44_c00061{bottom:509.910000px;}
.y43_c00061{bottom:510.660000px;}
.y42_c00061{bottom:511.410000px;}
.y41_c00061{bottom:531.510000px;}
.y40_c00061{bottom:533.310000px;}
.y3f_c00061{bottom:553.125000px;}
.y3e_c00061{bottom:553.500000px;}
.y3c_c00061{bottom:574.785000px;}
.y3d_c00061{bottom:575.085000px;}
.y3b_c00061{bottom:596.310000px;}
.y39_c00061{bottom:618.285000px;}
.y3a_c00061{bottom:618.960000px;}
.y38_c00061{bottom:639.135000px;}
.y37_c00061{bottom:661.500000px;}
.y34_c00061{bottom:681.000000px;}
.y35_c00061{bottom:682.410000px;}
.y36_c00061{bottom:684.885000px;}
.y31_c00061{bottom:704.310000px;}
.y33_c00061{bottom:706.500000px;}
.y32_c00061{bottom:707.910000px;}
.y30_c00061{bottom:722.325000px;}
.y2d_c00061{bottom:743.250000px;}
.y2e_c00061{bottom:746.085000px;}
.y2f_c00061{bottom:751.500000px;}
.y2b_c00061{bottom:768.810000px;}
.y2c_c00061{bottom:773.085000px;}
.y27_c00061{bottom:787.500000px;}
.y28_c00061{bottom:792.210000px;}
.y2a_c00061{bottom:794.025000px;}
.y29_c00061{bottom:795.375000px;}
.y26_c00061{bottom:808.425000px;}
.y23_c00061{bottom:826.800000px;}
.y24_c00061{bottom:835.800000px;}
.y25_c00061{bottom:838.650000px;}
.y1f_c00061{bottom:847.650000px;}
.y20_c00061{bottom:852.675000px;}
.y22_c00061{bottom:859.500000px;}
.y21_c00061{bottom:860.250000px;}
.y1e_c00061{bottom:876.435000px;}
.y1a_c00061{bottom:890.775000px;}
.y1b_c00061{bottom:895.500000px;}
.y1d_c00061{bottom:903.435000px;}
.y1c_c00061{bottom:903.750000px;}
.y19_c00061{bottom:915.300000px;}
.y13_c00061{bottom:938.025000px;}
.y14_c00061{bottom:945.900000px;}
.y18_c00061{bottom:946.560000px;}
.y15_c00061{bottom:946.650000px;}
.y16_c00061{bottom:947.025000px;}
.y17_c00061{bottom:947.310000px;}
.y11_c00061{bottom:950.925000px;}
.y12_c00061{bottom:959.925000px;}
.yc_c00061{bottom:971.460000px;}
.yd_c00061{bottom:973.185000px;}
.ye_c00061{bottom:984.060000px;}
.y10_c00061{bottom:988.800000px;}
.yf_c00061{bottom:990.150000px;}
.y6_c00061{bottom:996.300000px;}
.y7_c00061{bottom:1002.810000px;}
.y8_c00061{bottom:1003.875000px;}
.y9_c00061{bottom:1009.650000px;}
.yb_c00061{bottom:1010.025000px;}
.ya_c00061{bottom:1010.310000px;}
.y4_c00061{bottom:1023.675000px;}
.y5_c00061{bottom:1034.460000px;}
.y2_c00061{bottom:1043.835000px;}
.y3_c00061{bottom:1054.275000px;}
.y8c_c00061{bottom:1089.585000px;}
.y1_c00061{bottom:1102.875000px;}
.h7_c00061{height:52.998047px;}
.ha_c00061{height:58.857422px;}
.h1_c00061{height:58.886719px;}
.hb_c00061{height:64.743164px;}
.h4_c00061{height:64.775391px;}
.h6_c00061{height:66.515625px;}
.hc_c00061{height:70.664062px;}
.h9_c00061{height:76.514648px;}
.h8_c00061{height:76.552734px;}
.h5_c00061{height:78.609375px;}
.h2_c00061{height:82.441406px;}
.h3_c00061{height:84.656250px;}
.h0_c00061{height:1174.500000px;}
.w0_c00061{width:731.977200px;}
.w1_c00061{width:732.000000px;}
.x0_c00061{left:0.000000px;}
.x67_c00061{left:34.540200px;}
.x48_c00061{left:35.575200px;}
.x52_c00061{left:37.090200px;}
.x30_c00061{left:39.190200px;}
.x3f_c00061{left:40.315200px;}
.x2d_c00061{left:41.365200px;}
.x26_c00061{left:44.290200px;}
.x20_c00061{left:45.340200px;}
.x1d_c00061{left:47.140200px;}
.x10_c00061{left:48.565200px;}
.x2_c00061{left:49.690200px;}
.x4_c00061{left:50.740200px;}
.x4a_c00061{left:55.390200px;}
.x58_c00061{left:61.540200px;}
.x54_c00061{left:62.965200px;}
.x44_c00061{left:69.790200px;}
.x31_c00061{left:71.290200px;}
.x2a_c00061{left:73.765200px;}
.x23_c00061{left:75.175200px;}
.x12_c00061{left:77.740200px;}
.x4f_c00061{left:79.915200px;}
.x57_c00061{left:86.740200px;}
.xb_c00061{left:91.090200px;}
.x43_c00061{left:97.915200px;}
.x3b_c00061{left:101.515200px;}
.x11_c00061{left:102.565200px;}
.x5c_c00061{left:106.915200px;}
.x28_c00061{left:112.690200px;}
.x36_c00061{left:114.490200px;}
.x21_c00061{left:115.915200px;}
.x60_c00061{left:124.165200px;}
.x55_c00061{left:130.690200px;}
.x56_c00061{left:136.390200px;}
.xc_c00061{left:139.990200px;}
.x4b_c00061{left:142.915200px;}
.x1e_c00061{left:152.290200px;}
.x1a_c00061{left:159.790200px;}
.x61_c00061{left:163.390200px;}
.x37_c00061{left:215.290200px;}
.x4c_c00061{left:232.165200px;}
.x2e_c00061{left:251.590200px;}
.x1_c00061{left:267.790200px;}
.x6_c00061{left:297.340200px;}
.x38_c00061{left:301.315200px;}
.x7_c00061{left:305.965200px;}
.x53_c00061{left:314.290200px;}
.x39_c00061{left:328.690200px;}
.x62_c00061{left:333.340200px;}
.x63_c00061{left:344.140200px;}
.x4d_c00061{left:351.715200px;}
.x8_c00061{left:353.515200px;}
.x1f_c00061{left:355.990200px;}
.x3d_c00061{left:379.090200px;}
.x24_c00061{left:406.390200px;}
.x1b_c00061{left:412.900200px;}
.x34_c00061{left:416.890200px;}
.x29_c00061{left:418.690200px;}
.x68_c00061{left:424.390200px;}
.x40_c00061{left:440.590200px;}
.x3a_c00061{left:455.365200px;}
.x49_c00061{left:460.765200px;}
.x13_c00061{left:469.090200px;}
.x14_c00061{left:477.340200px;}
.x4e_c00061{left:483.790200px;}
.x15_c00061{left:486.715200px;}
.x45_c00061{left:490.990200px;}
.x64_c00061{left:493.915200px;}
.x16_c00061{left:503.590200px;}
.x65_c00061{left:510.790200px;}
.x5e_c00061{left:516.190200px;}
.x2b_c00061{left:518.365200px;}
.x17_c00061{left:525.565200px;}
.x46_c00061{left:536.740200px;}
.x5f_c00061{left:542.140200px;}
.x32_c00061{left:546.490200px;}
.x50_c00061{left:559.390200px;}
.x3_c00061{left:562.990200px;}
.x9_c00061{left:564.490200px;}
.x47_c00061{left:566.965200px;}
.xd_c00061{left:569.140200px;}
.x59_c00061{left:574.165200px;}
.x18_c00061{left:575.965200px;}
.x3e_c00061{left:577.390200px;}
.x1c_c00061{left:581.740200px;}
.x51_c00061{left:583.540200px;}
.x41_c00061{left:585.340200px;}
.xe_c00061{left:589.315200px;}
.x33_c00061{left:590.365200px;}
.x35_c00061{left:593.590200px;}
.x5d_c00061{left:596.890200px;}
.x27_c00061{left:598.990200px;}
.x5a_c00061{left:605.140200px;}
.x42_c00061{left:606.940200px;}
.x66_c00061{left:610.915200px;}
.x25_c00061{left:624.190200px;}
.xa_c00061{left:628.915200px;}
.x5_c00061{left:630.715200px;}
.x2f_c00061{left:633.940200px;}
.x2c_c00061{left:636.490200px;}
.xf_c00061{left:638.290200px;}
.x5b_c00061{left:641.890200px;}
.x22_c00061{left:643.690200px;}
.x3c_c00061{left:648.715200px;}
.x19_c00061{left:654.490200px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls0_c00061{letter-spacing:0.000000pt;}
.ws0_c00061{word-spacing:0.000000pt;}
._0_c00061{margin-left:-1.765065pt;}
.fs4_c00061{font-size:48.000000pt;}
.fs0_c00061{font-size:53.333333pt;}
.fs2_c00061{font-size:58.666667pt;}
.fs5_c00061{font-size:64.000000pt;}
.fs3_c00061{font-size:69.333333pt;}
.fs1_c00061{font-size:74.666667pt;}
.y0_c00061{bottom:0.000000pt;}
.y8a_c00061{bottom:96.786667pt;}
.y8b_c00061{bottom:100.666667pt;}
.y89_c00061{bottom:106.720000pt;}
.y88_c00061{bottom:108.000000pt;}
.y87_c00061{bottom:108.666667pt;}
.y86_c00061{bottom:118.853333pt;}
.y85_c00061{bottom:127.520000pt;}
.y84_c00061{bottom:127.853333pt;}
.y83_c00061{bottom:129.053333pt;}
.y82_c00061{bottom:130.720000pt;}
.y81_c00061{bottom:133.333333pt;}
.y80_c00061{bottom:134.853333pt;}
.y7f_c00061{bottom:138.386667pt;}
.y7e_c00061{bottom:141.920000pt;}
.y7a_c00061{bottom:143.186667pt;}
.y79_c00061{bottom:143.520000pt;}
.y7b_c00061{bottom:143.786667pt;}
.y7d_c00061{bottom:144.453333pt;}
.y7c_c00061{bottom:146.666667pt;}
.y78_c00061{bottom:151.186667pt;}
.y77_c00061{bottom:158.520000pt;}
.y76_c00061{bottom:158.853333pt;}
.y75_c00061{bottom:164.333333pt;}
.y74_c00061{bottom:173.853333pt;}
.y73_c00061{bottom:175.786667pt;}
.y72_c00061{bottom:179.666667pt;}
.y71_c00061{bottom:187.053333pt;}
.y70_c00061{bottom:188.000000pt;}
.y6f_c00061{bottom:189.253333pt;}
.y6e_c00061{bottom:196.000000pt;}
.y6d_c00061{bottom:215.786667pt;}
.y6c_c00061{bottom:220.333333pt;}
.y6b_c00061{bottom:221.000000pt;}
.y6a_c00061{bottom:224.786667pt;}
.y69_c00061{bottom:233.053333pt;}
.y68_c00061{bottom:234.386667pt;}
.y67_c00061{bottom:239.520000pt;}
.y66_c00061{bottom:245.586667pt;}
.y65_c00061{bottom:251.000000pt;}
.y64_c00061{bottom:252.000000pt;}
.y63_c00061{bottom:257.133333pt;}
.y62_c00061{bottom:265.800000pt;}
.y61_c00061{bottom:268.000000pt;}
.y60_c00061{bottom:270.253333pt;}
.y5f_c00061{bottom:273.133333pt;}
.y5e_c00061{bottom:276.000000pt;}
.y5d_c00061{bottom:279.466667pt;}
.y5c_c00061{bottom:314.720000pt;}
.y5b_c00061{bottom:316.920000pt;}
.y5a_c00061{bottom:321.133333pt;}
.y59_c00061{bottom:334.186667pt;}
.y58_c00061{bottom:334.520000pt;}
.y57_c00061{bottom:334.853333pt;}
.y56_c00061{bottom:335.520000pt;}
.y55_c00061{bottom:339.000000pt;}
.y54_c00061{bottom:358.253333pt;}
.y53_c00061{bottom:361.786667pt;}
.y52_c00061{bottom:373.586667pt;}
.y51_c00061{bottom:376.786667pt;}
.y50_c00061{bottom:393.453333pt;}
.y4f_c00061{bottom:394.053333pt;}
.y4e_c00061{bottom:396.000000pt;}
.y4d_c00061{bottom:398.920000pt;}
.y4c_c00061{bottom:412.920000pt;}
.y4b_c00061{bottom:413.333333pt;}
.y4a_c00061{bottom:413.920000pt;}
.y49_c00061{bottom:415.853333pt;}
.y48_c00061{bottom:432.786667pt;}
.y47_c00061{bottom:433.720000pt;}
.y46_c00061{bottom:436.666667pt;}
.y45_c00061{bottom:452.333333pt;}
.y44_c00061{bottom:453.253333pt;}
.y43_c00061{bottom:453.920000pt;}
.y42_c00061{bottom:454.586667pt;}
.y41_c00061{bottom:472.453333pt;}
.y40_c00061{bottom:474.053333pt;}
.y3f_c00061{bottom:491.666667pt;}
.y3e_c00061{bottom:492.000000pt;}
.y3c_c00061{bottom:510.920000pt;}
.y3d_c00061{bottom:511.186667pt;}
.y3b_c00061{bottom:530.053333pt;}
.y39_c00061{bottom:549.586667pt;}
.y3a_c00061{bottom:550.186667pt;}
.y38_c00061{bottom:568.120000pt;}
.y37_c00061{bottom:588.000000pt;}
.y34_c00061{bottom:605.333333pt;}
.y35_c00061{bottom:606.586667pt;}
.y36_c00061{bottom:608.786667pt;}
.y31_c00061{bottom:626.053333pt;}
.y33_c00061{bottom:628.000000pt;}
.y32_c00061{bottom:629.253333pt;}
.y30_c00061{bottom:642.066667pt;}
.y2d_c00061{bottom:660.666667pt;}
.y2e_c00061{bottom:663.186667pt;}
.y2f_c00061{bottom:668.000000pt;}
.y2b_c00061{bottom:683.386667pt;}
.y2c_c00061{bottom:687.186667pt;}
.y27_c00061{bottom:700.000000pt;}
.y28_c00061{bottom:704.186667pt;}
.y2a_c00061{bottom:705.800000pt;}
.y29_c00061{bottom:707.000000pt;}
.y26_c00061{bottom:718.600000pt;}
.y23_c00061{bottom:734.933333pt;}
.y24_c00061{bottom:742.933333pt;}
.y25_c00061{bottom:745.466667pt;}
.y1f_c00061{bottom:753.466667pt;}
.y20_c00061{bottom:757.933333pt;}
.y22_c00061{bottom:764.000000pt;}
.y21_c00061{bottom:764.666667pt;}
.y1e_c00061{bottom:779.053333pt;}
.y1a_c00061{bottom:791.800000pt;}
.y1b_c00061{bottom:796.000000pt;}
.y1d_c00061{bottom:803.053333pt;}
.y1c_c00061{bottom:803.333333pt;}
.y19_c00061{bottom:813.600000pt;}
.y13_c00061{bottom:833.800000pt;}
.y14_c00061{bottom:840.800000pt;}
.y18_c00061{bottom:841.386667pt;}
.y15_c00061{bottom:841.466667pt;}
.y16_c00061{bottom:841.800000pt;}
.y17_c00061{bottom:842.053333pt;}
.y11_c00061{bottom:845.266667pt;}
.y12_c00061{bottom:853.266667pt;}
.yc_c00061{bottom:863.520000pt;}
.yd_c00061{bottom:865.053333pt;}
.ye_c00061{bottom:874.720000pt;}
.y10_c00061{bottom:878.933333pt;}
.yf_c00061{bottom:880.133333pt;}
.y6_c00061{bottom:885.600000pt;}
.y7_c00061{bottom:891.386667pt;}
.y8_c00061{bottom:892.333333pt;}
.y9_c00061{bottom:897.466667pt;}
.yb_c00061{bottom:897.800000pt;}
.ya_c00061{bottom:898.053333pt;}
.y4_c00061{bottom:909.933333pt;}
.y5_c00061{bottom:919.520000pt;}
.y2_c00061{bottom:927.853333pt;}
.y3_c00061{bottom:937.133333pt;}
.y8c_c00061{bottom:968.520000pt;}
.y1_c00061{bottom:980.333333pt;}
.h7_c00061{height:47.109375pt;}
.ha_c00061{height:52.317708pt;}
.h1_c00061{height:52.343750pt;}
.hb_c00061{height:57.549479pt;}
.h4_c00061{height:57.578125pt;}
.h6_c00061{height:59.125000pt;}
.hc_c00061{height:62.812500pt;}
.h9_c00061{height:68.013021pt;}
.h8_c00061{height:68.046875pt;}
.h5_c00061{height:69.875000pt;}
.h2_c00061{height:73.281250pt;}
.h3_c00061{height:75.250000pt;}
.h0_c00061{height:1044.000000pt;}
.w0_c00061{width:650.646400pt;}
.w1_c00061{width:650.666667pt;}
.x0_c00061{left:0.000000pt;}
.x67_c00061{left:30.702400pt;}
.x48_c00061{left:31.622400pt;}
.x52_c00061{left:32.969067pt;}
.x30_c00061{left:34.835733pt;}
.x3f_c00061{left:35.835733pt;}
.x2d_c00061{left:36.769067pt;}
.x26_c00061{left:39.369067pt;}
.x20_c00061{left:40.302400pt;}
.x1d_c00061{left:41.902400pt;}
.x10_c00061{left:43.169067pt;}
.x2_c00061{left:44.169067pt;}
.x4_c00061{left:45.102400pt;}
.x4a_c00061{left:49.235733pt;}
.x58_c00061{left:54.702400pt;}
.x54_c00061{left:55.969067pt;}
.x44_c00061{left:62.035733pt;}
.x31_c00061{left:63.369067pt;}
.x2a_c00061{left:65.569067pt;}
.x23_c00061{left:66.822400pt;}
.x12_c00061{left:69.102400pt;}
.x4f_c00061{left:71.035733pt;}
.x57_c00061{left:77.102400pt;}
.xb_c00061{left:80.969067pt;}
.x43_c00061{left:87.035733pt;}
.x3b_c00061{left:90.235733pt;}
.x11_c00061{left:91.169067pt;}
.x5c_c00061{left:95.035733pt;}
.x28_c00061{left:100.169067pt;}
.x36_c00061{left:101.769067pt;}
.x21_c00061{left:103.035733pt;}
.x60_c00061{left:110.369067pt;}
.x55_c00061{left:116.169067pt;}
.x56_c00061{left:121.235733pt;}
.xc_c00061{left:124.435733pt;}
.x4b_c00061{left:127.035733pt;}
.x1e_c00061{left:135.369067pt;}
.x1a_c00061{left:142.035733pt;}
.x61_c00061{left:145.235733pt;}
.x37_c00061{left:191.369067pt;}
.x4c_c00061{left:206.369067pt;}
.x2e_c00061{left:223.635733pt;}
.x1_c00061{left:238.035733pt;}
.x6_c00061{left:264.302400pt;}
.x38_c00061{left:267.835733pt;}
.x7_c00061{left:271.969067pt;}
.x53_c00061{left:279.369067pt;}
.x39_c00061{left:292.169067pt;}
.x62_c00061{left:296.302400pt;}
.x63_c00061{left:305.902400pt;}
.x4d_c00061{left:312.635733pt;}
.x8_c00061{left:314.235733pt;}
.x1f_c00061{left:316.435733pt;}
.x3d_c00061{left:336.969067pt;}
.x24_c00061{left:361.235733pt;}
.x1b_c00061{left:367.022400pt;}
.x34_c00061{left:370.569067pt;}
.x29_c00061{left:372.169067pt;}
.x68_c00061{left:377.235733pt;}
.x40_c00061{left:391.635733pt;}
.x3a_c00061{left:404.769067pt;}
.x49_c00061{left:409.569067pt;}
.x13_c00061{left:416.969067pt;}
.x14_c00061{left:424.302400pt;}
.x4e_c00061{left:430.035733pt;}
.x15_c00061{left:432.635733pt;}
.x45_c00061{left:436.435733pt;}
.x64_c00061{left:439.035733pt;}
.x16_c00061{left:447.635733pt;}
.x65_c00061{left:454.035733pt;}
.x5e_c00061{left:458.835733pt;}
.x2b_c00061{left:460.769067pt;}
.x17_c00061{left:467.169067pt;}
.x46_c00061{left:477.102400pt;}
.x5f_c00061{left:481.902400pt;}
.x32_c00061{left:485.769067pt;}
.x50_c00061{left:497.235733pt;}
.x3_c00061{left:500.435733pt;}
.x9_c00061{left:501.769067pt;}
.x47_c00061{left:503.969067pt;}
.xd_c00061{left:505.902400pt;}
.x59_c00061{left:510.369067pt;}
.x18_c00061{left:511.969067pt;}
.x3e_c00061{left:513.235733pt;}
.x1c_c00061{left:517.102400pt;}
.x51_c00061{left:518.702400pt;}
.x41_c00061{left:520.302400pt;}
.xe_c00061{left:523.835733pt;}
.x33_c00061{left:524.769067pt;}
.x35_c00061{left:527.635733pt;}
.x5d_c00061{left:530.569067pt;}
.x27_c00061{left:532.435733pt;}
.x5a_c00061{left:537.902400pt;}
.x42_c00061{left:539.502400pt;}
.x66_c00061{left:543.035733pt;}
.x25_c00061{left:554.835733pt;}
.xa_c00061{left:559.035733pt;}
.x5_c00061{left:560.635733pt;}
.x2f_c00061{left:563.502400pt;}
.x2c_c00061{left:565.769067pt;}
.xf_c00061{left:567.369067pt;}
.x5b_c00061{left:570.569067pt;}
.x22_c00061{left:572.169067pt;}
.x3c_c00061{left:576.635733pt;}
.x19_c00061{left:581.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_905d2110735f2ad93d6912e6.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00062;src:url('chunks/assets/font_0d50f43d6e6ff59075241299.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00062;src:url('chunks/assets/font_a2dfb91c7032a12aef8d3b36.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m18_c00062{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m15_c00062{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3_c00062{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12_c00062{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c00062{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00062{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mb_c00062{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c00062{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c00062{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c00062{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00062{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c00062{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c00062{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00062{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00062{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c00062{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c00062{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00062{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c00062{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00062{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00062{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00062{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m14_c00062{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c00062{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00062{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.ls0_c00062{letter-spacing:0.000000px;}
.sc__c00062{text-shadow:none;}
.sc0_c00062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00062{-webkit-text-stroke:0px transparent;}
.sc0_c00062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00062{word-spacing:0.000000px;}
.fc0_c00062{color:transparent;}
.fs4_c00062{font-size:48.000000px;}
.fs0_c00062{font-size:54.000000px;}
.fs1_c00062{font-size:66.000000px;}
.fs3_c00062{font-size:72.000000px;}
.fs2_c00062{font-size:84.000000px;}
.y0_c00062{bottom:0.000000px;}
.y32_c00062{bottom:26.085000px;}
.y31_c00062{bottom:45.135000px;}
.y2e_c00062{bottom:63.210000px;}
.y2f_c00062{bottom:64.560000px;}
.y30_c00062{bottom:66.060000px;}
.y2d_c00062{bottom:131.910000px;}
.y2c_c00062{bottom:151.335000px;}
.y2b_c00062{bottom:173.385000px;}
.y2a_c00062{bottom:193.500000px;}
.y29_c00062{bottom:213.660000px;}
.y28_c00062{bottom:235.635000px;}
.y27_c00062{bottom:256.500000px;}
.y24_c00062{bottom:278.085000px;}
.y25_c00062{bottom:278.400000px;}
.y26_c00062{bottom:278.835000px;}
.y23_c00062{bottom:299.685000px;}
.y22_c00062{bottom:321.285000px;}
.y21_c00062{bottom:342.210000px;}
.y20_c00062{bottom:363.810000px;}
.y1d_c00062{bottom:384.285000px;}
.y1c_c00062{bottom:385.035000px;}
.y1e_c00062{bottom:385.710000px;}
.y1f_c00062{bottom:386.085000px;}
.y1b_c00062{bottom:406.275000px;}
.y1a_c00062{bottom:428.250000px;}
.y19_c00062{bottom:450.135000px;}
.y18_c00062{bottom:471.750000px;}
.y16_c00062{bottom:493.335000px;}
.y17_c00062{bottom:493.710000px;}
.y15_c00062{bottom:515.310000px;}
.y14_c00062{bottom:536.910000px;}
.y13_c00062{bottom:558.510000px;}
.y12_c00062{bottom:580.185000px;}
.y11_c00062{bottom:601.710000px;}
.y10_c00062{bottom:623.685000px;}
.yf_c00062{bottom:645.660000px;}
.ye_c00062{bottom:664.710000px;}
.yd_c00062{bottom:665.760000px;}
.yc_c00062{bottom:667.260000px;}
.yb_c00062{bottom:688.500000px;}
.ya_c00062{bottom:710.460000px;}
.y9_c00062{bottom:732.450000px;}
.y8_c00062{bottom:805.125000px;}
.y7_c00062{bottom:822.435000px;}
.y6_c00062{bottom:839.685000px;}
.y5_c00062{bottom:856.650000px;}
.y4_c00062{bottom:914.925000px;}
.y3_c00062{bottom:1045.275000px;}
.y1_c00062{bottom:1051.710000px;}
.y2_c00062{bottom:1059.525000px;}
.h5_c00062{height:47.109375px;}
.h1_c00062{height:54.421875px;}
.h2_c00062{height:64.775391px;}
.h4_c00062{height:70.628906px;}
.h3_c00062{height:82.441406px;}
.h0_c00062{height:1174.500000px;}
.w0_c00062{width:731.977200px;}
.w1_c00062{width:732.000000px;}
.x0_c00062{left:0.000000px;}
.xe_c00062{left:46.090200px;}
.x5_c00062{left:47.140200px;}
.xf_c00062{left:48.565200px;}
.x14_c00062{left:49.690200px;}
.x15_c00062{left:50.740200px;}
.x16_c00062{left:51.790200px;}
.x1c_c00062{left:53.590200px;}
.x21_c00062{left:55.765200px;}
.x7_c00062{left:64.390200px;}
.x6_c00062{left:65.515200px;}
.x1e_c00062{left:72.715200px;}
.x1a_c00062{left:73.765200px;}
.x1b_c00062{left:75.550200px;}
.xd_c00062{left:79.540200px;}
.x8_c00062{left:80.590200px;}
.x17_c00062{left:84.175200px;}
.xb_c00062{left:85.675200px;}
.x1d_c00062{left:87.115200px;}
.x1_c00062{left:269.290200px;}
.x10_c00062{left:292.315200px;}
.x4_c00062{left:355.315200px;}
.x11_c00062{left:367.525200px;}
.xc_c00062{left:376.525200px;}
.x18_c00062{left:421.525200px;}
.x19_c00062{left:439.150200px;}
.x9_c00062{left:445.315200px;}
.x1f_c00062{left:455.365200px;}
.x2_c00062{left:466.540200px;}
.x12_c00062{left:497.515200px;}
.xa_c00062{left:540.340200px;}
.x20_c00062{left:551.515200px;}
.x13_c00062{left:596.515200px;}
.x22_c00062{left:604.090200px;}
.x3_c00062{left:641.515200px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls0_c00062{letter-spacing:0.000000pt;}
.ws0_c00062{word-spacing:0.000000pt;}
.fs4_c00062{font-size:42.666667pt;}
.fs0_c00062{font-size:48.000000pt;}
.fs1_c00062{font-size:58.666667pt;}
.fs3_c00062{font-size:64.000000pt;}
.fs2_c00062{font-size:74.666667pt;}
.y0_c00062{bottom:0.000000pt;}
.y32_c00062{bottom:23.186667pt;}
.y31_c00062{bottom:40.120000pt;}
.y2e_c00062{bottom:56.186667pt;}
.y2f_c00062{bottom:57.386667pt;}
.y30_c00062{bottom:58.720000pt;}
.y2d_c00062{bottom:117.253333pt;}
.y2c_c00062{bottom:134.520000pt;}
.y2b_c00062{bottom:154.120000pt;}
.y2a_c00062{bottom:172.000000pt;}
.y29_c00062{bottom:189.920000pt;}
.y28_c00062{bottom:209.453333pt;}
.y27_c00062{bottom:228.000000pt;}
.y24_c00062{bottom:247.186667pt;}
.y25_c00062{bottom:247.466667pt;}
.y26_c00062{bottom:247.853333pt;}
.y23_c00062{bottom:266.386667pt;}
.y22_c00062{bottom:285.586667pt;}
.y21_c00062{bottom:304.186667pt;}
.y20_c00062{bottom:323.386667pt;}
.y1d_c00062{bottom:341.586667pt;}
.y1c_c00062{bottom:342.253333pt;}
.y1e_c00062{bottom:342.853333pt;}
.y1f_c00062{bottom:343.186667pt;}
.y1b_c00062{bottom:361.133333pt;}
.y1a_c00062{bottom:380.666667pt;}
.y19_c00062{bottom:400.120000pt;}
.y18_c00062{bottom:419.333333pt;}
.y16_c00062{bottom:438.520000pt;}
.y17_c00062{bottom:438.853333pt;}
.y15_c00062{bottom:458.053333pt;}
.y14_c00062{bottom:477.253333pt;}
.y13_c00062{bottom:496.453333pt;}
.y12_c00062{bottom:515.720000pt;}
.y11_c00062{bottom:534.853333pt;}
.y10_c00062{bottom:554.386667pt;}
.yf_c00062{bottom:573.920000pt;}
.ye_c00062{bottom:590.853333pt;}
.yd_c00062{bottom:591.786667pt;}
.yc_c00062{bottom:593.120000pt;}
.yb_c00062{bottom:612.000000pt;}
.ya_c00062{bottom:631.520000pt;}
.y9_c00062{bottom:651.066667pt;}
.y8_c00062{bottom:715.666667pt;}
.y7_c00062{bottom:731.053333pt;}
.y6_c00062{bottom:746.386667pt;}
.y5_c00062{bottom:761.466667pt;}
.y4_c00062{bottom:813.266667pt;}
.y3_c00062{bottom:929.133333pt;}
.y1_c00062{bottom:934.853333pt;}
.y2_c00062{bottom:941.800000pt;}
.h5_c00062{height:41.875000pt;}
.h1_c00062{height:48.375000pt;}
.h2_c00062{height:57.578125pt;}
.h4_c00062{height:62.781250pt;}
.h3_c00062{height:73.281250pt;}
.h0_c00062{height:1044.000000pt;}
.w0_c00062{width:650.646400pt;}
.w1_c00062{width:650.666667pt;}
.x0_c00062{left:0.000000pt;}
.xe_c00062{left:40.969067pt;}
.x5_c00062{left:41.902400pt;}
.xf_c00062{left:43.169067pt;}
.x14_c00062{left:44.169067pt;}
.x15_c00062{left:45.102400pt;}
.x16_c00062{left:46.035733pt;}
.x1c_c00062{left:47.635733pt;}
.x21_c00062{left:49.569067pt;}
.x7_c00062{left:57.235733pt;}
.x6_c00062{left:58.235733pt;}
.x1e_c00062{left:64.635733pt;}
.x1a_c00062{left:65.569067pt;}
.x1b_c00062{left:67.155733pt;}
.xd_c00062{left:70.702400pt;}
.x8_c00062{left:71.635733pt;}
.x17_c00062{left:74.822400pt;}
.xb_c00062{left:76.155733pt;}
.x1d_c00062{left:77.435733pt;}
.x1_c00062{left:239.369067pt;}
.x10_c00062{left:259.835733pt;}
.x4_c00062{left:315.835733pt;}
.x11_c00062{left:326.689067pt;}
.xc_c00062{left:334.689067pt;}
.x18_c00062{left:374.689067pt;}
.x19_c00062{left:390.355733pt;}
.x9_c00062{left:395.835733pt;}
.x1f_c00062{left:404.769067pt;}
.x2_c00062{left:414.702400pt;}
.x12_c00062{left:442.235733pt;}
.xa_c00062{left:480.302400pt;}
.x20_c00062{left:490.235733pt;}
.x13_c00062{left:530.235733pt;}
.x22_c00062{left:536.969067pt;}
.x3_c00062{left:570.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61223a08a7639c5d08386f96.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00063;src:url('chunks/assets/font_61072244199791a728e3af3e.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00063;src:url('chunks/assets/font_cc1d84b9cab51db82aee1252.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00063{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00063{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00063{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m15_c00063{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m17_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);}
.m0_c00063{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11_c00063{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00063{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c00063{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c00063{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c00063{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c00063{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma_c00063{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00063{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c00063{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c00063{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c00063{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00063{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00063{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4_c00063{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00063{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c00063{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m16_c00063{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00063{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00063{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00063{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00063{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m19_c00063{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00063{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00063{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c00063{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1_c00063{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls0_c00063{letter-spacing:0.000000px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00063{word-spacing:0.000000px;}
.fc0_c00063{color:transparent;}
.fs3_c00063{font-size:48.000000px;}
.fs1_c00063{font-size:60.000000px;}
.fs4_c00063{font-size:66.000000px;}
.fs0_c00063{font-size:72.000000px;}
.fs2_c00063{font-size:78.000000px;}
.y0_c00063{bottom:0.000000px;}
.y39_c00063{bottom:392.910000px;}
.y38_c00063{bottom:396.585000px;}
.y37_c00063{bottom:397.560000px;}
.y36_c00063{bottom:399.750000px;}
.y35_c00063{bottom:403.410000px;}
.y34_c00063{bottom:410.535000px;}
.y33_c00063{bottom:422.835000px;}
.y32_c00063{bottom:435.750000px;}
.y31_c00063{bottom:441.135000px;}
.y30_c00063{bottom:444.435000px;}
.y2f_c00063{bottom:445.125000px;}
.y2e_c00063{bottom:446.910000px;}
.y2d_c00063{bottom:447.585000px;}
.y2c_c00063{bottom:452.685000px;}
.y2b_c00063{bottom:458.085000px;}
.y2a_c00063{bottom:470.385000px;}
.y29_c00063{bottom:470.685000px;}
.y28_c00063{bottom:475.410000px;}
.y27_c00063{bottom:489.060000px;}
.y26_c00063{bottom:492.285000px;}
.y25_c00063{bottom:493.035000px;}
.y24_c00063{bottom:496.260000px;}
.y23_c00063{bottom:505.935000px;}
.y22_c00063{bottom:506.310000px;}
.y21_c00063{bottom:510.285000px;}
.y20_c00063{bottom:588.750000px;}
.y1f_c00063{bottom:589.500000px;}
.y1e_c00063{bottom:607.125000px;}
.y1d_c00063{bottom:628.710000px;}
.y1c_c00063{bottom:652.875000px;}
.y1b_c00063{bottom:672.285000px;}
.y1a_c00063{bottom:694.260000px;}
.y19_c00063{bottom:715.500000px;}
.y18_c00063{bottom:737.085000px;}
.y16_c00063{bottom:757.260000px;}
.y17_c00063{bottom:757.575000px;}
.y13_c00063{bottom:779.175000px;}
.y14_c00063{bottom:780.675000px;}
.y15_c00063{bottom:781.710000px;}
.y12_c00063{bottom:801.900000px;}
.y11_c00063{bottom:823.500000px;}
.y10_c00063{bottom:844.710000px;}
.yf_c00063{bottom:866.310000px;}
.ye_c00063{bottom:887.175000px;}
.yd_c00063{bottom:908.835000px;}
.yc_c00063{bottom:930.750000px;}
.yb_c00063{bottom:950.925000px;}
.ya_c00063{bottom:972.150000px;}
.y7_c00063{bottom:985.500000px;}
.y8_c00063{bottom:991.650000px;}
.y9_c00063{bottom:997.425000px;}
.y4_c00063{bottom:1005.300000px;}
.y5_c00063{bottom:1011.810000px;}
.y6_c00063{bottom:1018.935000px;}
.y1_c00063{bottom:1061.775000px;}
.y3_c00063{bottom:1071.900000px;}
.y2_c00063{bottom:1076.925000px;}
.h5_c00063{height:47.109375px;}
.h2_c00063{height:58.886719px;}
.h8_c00063{height:64.743164px;}
.h6_c00063{height:64.775391px;}
.h7_c00063{height:66.515625px;}
.h3_c00063{height:70.628906px;}
.h1_c00063{height:72.562500px;}
.h4_c00063{height:76.552734px;}
.h0_c00063{height:1174.500000px;}
.w0_c00063{width:731.977200px;}
.w1_c00063{width:732.000000px;}
.x0_c00063{left:0.000000px;}
.x14_c00063{left:47.890200px;}
.x1e_c00063{left:49.990200px;}
.x12_c00063{left:51.115200px;}
.x11_c00063{left:52.540200px;}
.xd_c00063{left:55.390200px;}
.xc_c00063{left:56.890200px;}
.xa_c00063{left:58.990200px;}
.x7_c00063{left:60.115200px;}
.x4_c00063{left:61.165200px;}
.x16_c00063{left:64.765200px;}
.x15_c00063{left:67.315200px;}
.xf_c00063{left:70.915200px;}
.x1_c00063{left:78.490200px;}
.x13_c00063{left:79.540200px;}
.x10_c00063{left:84.550200px;}
.xb_c00063{left:88.915200px;}
.x2_c00063{left:96.790200px;}
.x1f_c00063{left:108.715200px;}
.x25_c00063{left:119.515200px;}
.x20_c00063{left:124.165200px;}
.x5_c00063{left:128.140200px;}
.x21_c00063{left:190.090200px;}
.x8_c00063{left:202.990200px;}
.x3_c00063{left:277.915200px;}
.x19_c00063{left:319.690200px;}
.x23_c00063{left:332.965200px;}
.x9_c00063{left:337.690200px;}
.x1a_c00063{left:343.090200px;}
.x22_c00063{left:383.740200px;}
.x1b_c00063{left:388.765200px;}
.x6_c00063{left:393.115200px;}
.xe_c00063{left:410.740200px;}
.x24_c00063{left:452.515200px;}
.x17_c00063{left:583.915200px;}
.x18_c00063{left:602.965200px;}
.x1c_c00063{left:620.290200px;}
.x1d_c00063{left:640.390200px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls0_c00063{letter-spacing:0.000000pt;}
.ws0_c00063{word-spacing:0.000000pt;}
.fs3_c00063{font-size:42.666667pt;}
.fs1_c00063{font-size:53.333333pt;}
.fs4_c00063{font-size:58.666667pt;}
.fs0_c00063{font-size:64.000000pt;}
.fs2_c00063{font-size:69.333333pt;}
.y0_c00063{bottom:0.000000pt;}
.y39_c00063{bottom:349.253333pt;}
.y38_c00063{bottom:352.520000pt;}
.y37_c00063{bottom:353.386667pt;}
.y36_c00063{bottom:355.333333pt;}
.y35_c00063{bottom:358.586667pt;}
.y34_c00063{bottom:364.920000pt;}
.y33_c00063{bottom:375.853333pt;}
.y32_c00063{bottom:387.333333pt;}
.y31_c00063{bottom:392.120000pt;}
.y30_c00063{bottom:395.053333pt;}
.y2f_c00063{bottom:395.666667pt;}
.y2e_c00063{bottom:397.253333pt;}
.y2d_c00063{bottom:397.853333pt;}
.y2c_c00063{bottom:402.386667pt;}
.y2b_c00063{bottom:407.186667pt;}
.y2a_c00063{bottom:418.120000pt;}
.y29_c00063{bottom:418.386667pt;}
.y28_c00063{bottom:422.586667pt;}
.y27_c00063{bottom:434.720000pt;}
.y26_c00063{bottom:437.586667pt;}
.y25_c00063{bottom:438.253333pt;}
.y24_c00063{bottom:441.120000pt;}
.y23_c00063{bottom:449.720000pt;}
.y22_c00063{bottom:450.053333pt;}
.y21_c00063{bottom:453.586667pt;}
.y20_c00063{bottom:523.333333pt;}
.y1f_c00063{bottom:524.000000pt;}
.y1e_c00063{bottom:539.666667pt;}
.y1d_c00063{bottom:558.853333pt;}
.y1c_c00063{bottom:580.333333pt;}
.y1b_c00063{bottom:597.586667pt;}
.y1a_c00063{bottom:617.120000pt;}
.y19_c00063{bottom:636.000000pt;}
.y18_c00063{bottom:655.186667pt;}
.y16_c00063{bottom:673.120000pt;}
.y17_c00063{bottom:673.400000pt;}
.y13_c00063{bottom:692.600000pt;}
.y14_c00063{bottom:693.933333pt;}
.y15_c00063{bottom:694.853333pt;}
.y12_c00063{bottom:712.800000pt;}
.y11_c00063{bottom:732.000000pt;}
.y10_c00063{bottom:750.853333pt;}
.yf_c00063{bottom:770.053333pt;}
.ye_c00063{bottom:788.600000pt;}
.yd_c00063{bottom:807.853333pt;}
.yc_c00063{bottom:827.333333pt;}
.yb_c00063{bottom:845.266667pt;}
.ya_c00063{bottom:864.133333pt;}
.y7_c00063{bottom:876.000000pt;}
.y8_c00063{bottom:881.466667pt;}
.y9_c00063{bottom:886.600000pt;}
.y4_c00063{bottom:893.600000pt;}
.y5_c00063{bottom:899.386667pt;}
.y6_c00063{bottom:905.720000pt;}
.y1_c00063{bottom:943.800000pt;}
.y3_c00063{bottom:952.800000pt;}
.y2_c00063{bottom:957.266667pt;}
.h5_c00063{height:41.875000pt;}
.h2_c00063{height:52.343750pt;}
.h8_c00063{height:57.549479pt;}
.h6_c00063{height:57.578125pt;}
.h7_c00063{height:59.125000pt;}
.h3_c00063{height:62.781250pt;}
.h1_c00063{height:64.500000pt;}
.h4_c00063{height:68.046875pt;}
.h0_c00063{height:1044.000000pt;}
.w0_c00063{width:650.646400pt;}
.w1_c00063{width:650.666667pt;}
.x0_c00063{left:0.000000pt;}
.x14_c00063{left:42.569067pt;}
.x1e_c00063{left:44.435733pt;}
.x12_c00063{left:45.435733pt;}
.x11_c00063{left:46.702400pt;}
.xd_c00063{left:49.235733pt;}
.xc_c00063{left:50.569067pt;}
.xa_c00063{left:52.435733pt;}
.x7_c00063{left:53.435733pt;}
.x4_c00063{left:54.369067pt;}
.x16_c00063{left:57.569067pt;}
.x15_c00063{left:59.835733pt;}
.xf_c00063{left:63.035733pt;}
.x1_c00063{left:69.769067pt;}
.x13_c00063{left:70.702400pt;}
.x10_c00063{left:75.155733pt;}
.xb_c00063{left:79.035733pt;}
.x2_c00063{left:86.035733pt;}
.x1f_c00063{left:96.635733pt;}
.x25_c00063{left:106.235733pt;}
.x20_c00063{left:110.369067pt;}
.x5_c00063{left:113.902400pt;}
.x21_c00063{left:168.969067pt;}
.x8_c00063{left:180.435733pt;}
.x3_c00063{left:247.035733pt;}
.x19_c00063{left:284.169067pt;}
.x23_c00063{left:295.969067pt;}
.x9_c00063{left:300.169067pt;}
.x1a_c00063{left:304.969067pt;}
.x22_c00063{left:341.102400pt;}
.x1b_c00063{left:345.569067pt;}
.x6_c00063{left:349.435733pt;}
.xe_c00063{left:365.102400pt;}
.x24_c00063{left:402.235733pt;}
.x17_c00063{left:519.035733pt;}
.x18_c00063{left:535.969067pt;}
.x1c_c00063{left:551.369067pt;}
.x1d_c00063{left:569.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc54f25c1bd704d1cc7b63f5.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00064;src:url('chunks/assets/font_ac6fe2969e2d8ec2d14be4d7.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00064;src:url('chunks/assets/font_41e5719a7cd1a46e48a422e2.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00064{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3_c00064{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.ma_c00064{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00064{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c00064{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00064{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8_c00064{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c00064{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00064{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00064{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00064{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c00064{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m17_c00064{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m19_c00064{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m15_c00064{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c00064{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00064{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m14_c00064{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00064{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c00064{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00064{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m18_c00064{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c00064{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c00064{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00064{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00064{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00064{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00064{color:transparent;}
.fs0_c00064{font-size:60.000000px;}
.fs4_c00064{font-size:66.000000px;}
.fs3_c00064{font-size:72.000000px;}
.fs1_c00064{font-size:78.000000px;}
.fs2_c00064{font-size:120.000000px;}
.y0_c00064{bottom:0.000000px;}
.y32_c00064{bottom:41.535000px;}
.y33_c00064{bottom:44.085000px;}
.y2f_c00064{bottom:62.460000px;}
.y30_c00064{bottom:64.260000px;}
.y31_c00064{bottom:65.310000px;}
.y2e_c00064{bottom:86.250000px;}
.y2d_c00064{bottom:107.460000px;}
.y2c_c00064{bottom:128.010000px;}
.y2b_c00064{bottom:148.875000px;}
.y2a_c00064{bottom:169.410000px;}
.y29_c00064{bottom:190.260000px;}
.y28_c00064{bottom:211.500000px;}
.y27_c00064{bottom:232.710000px;}
.y26_c00064{bottom:254.025000px;}
.y25_c00064{bottom:275.625000px;}
.y24_c00064{bottom:297.210000px;}
.y23_c00064{bottom:318.750000px;}
.y22_c00064{bottom:340.335000px;}
.y21_c00064{bottom:361.650000px;}
.y20_c00064{bottom:383.250000px;}
.y1f_c00064{bottom:404.835000px;}
.y1e_c00064{bottom:426.435000px;}
.y1d_c00064{bottom:448.710000px;}
.y1c_c00064{bottom:470.685000px;}
.y1b_c00064{bottom:492.285000px;}
.y1a_c00064{bottom:492.585000px;}
.y19_c00064{bottom:513.885000px;}
.y18_c00064{bottom:535.875000px;}
.y17_c00064{bottom:556.335000px;}
.y16_c00064{bottom:558.135000px;}
.y15_c00064{bottom:580.125000px;}
.y14_c00064{bottom:601.710000px;}
.y13_c00064{bottom:623.310000px;}
.y12_c00064{bottom:645.660000px;}
.y11_c00064{bottom:665.085000px;}
.y10_c00064{bottom:665.460000px;}
.yf_c00064{bottom:666.510000px;}
.yd_c00064{bottom:667.935000px;}
.ye_c00064{bottom:668.010000px;}
.yc_c00064{bottom:687.060000px;}
.yb_c00064{bottom:687.435000px;}
.ya_c00064{bottom:687.750000px;}
.y9_c00064{bottom:688.500000px;}
.y8_c00064{bottom:688.785000px;}
.y7_c00064{bottom:690.285000px;}
.y6_c00064{bottom:761.250000px;}
.y5_c00064{bottom:778.875000px;}
.y4_c00064{bottom:890.085000px;}
.y3_c00064{bottom:1059.675000px;}
.y1_c00064{bottom:1065.750000px;}
.y2_c00064{bottom:1074.435000px;}
.h1_c00064{height:58.886719px;}
.h6_c00064{height:64.775391px;}
.h7_c00064{height:66.515625px;}
.h5_c00064{height:70.664062px;}
.h4_c00064{height:76.514648px;}
.h2_c00064{height:78.609375px;}
.h3_c00064{height:117.773438px;}
.h0_c00064{height:1174.500000px;}
.w0_c00064{width:731.977200px;}
.w1_c00064{width:732.000000px;}
.x0_c00064{left:0.000000px;}
.x5_c00064{left:42.490200px;}
.x11_c00064{left:43.540200px;}
.x13_c00064{left:44.590200px;}
.x14_c00064{left:46.090200px;}
.x17_c00064{left:47.515200px;}
.x1a_c00064{left:48.940200px;}
.x1b_c00064{left:50.365200px;}
.x1c_c00064{left:51.790200px;}
.x1d_c00064{left:52.915200px;}
.x1e_c00064{left:55.090200px;}
.x1f_c00064{left:56.140200px;}
.x20_c00064{left:57.190200px;}
.x21_c00064{left:58.690200px;}
.x22_c00064{left:59.740200px;}
.x25_c00064{left:61.165200px;}
.x7_c00064{left:74.890200px;}
.x12_c00064{left:76.990200px;}
.x15_c00064{left:78.790200px;}
.x18_c00064{left:79.915200px;}
.x26_c00064{left:84.925200px;}
.x23_c00064{left:88.915200px;}
.xd_c00064{left:120.565200px;}
.x4_c00064{left:158.740200px;}
.x6_c00064{left:165.565200px;}
.x19_c00064{left:183.940200px;}
.xe_c00064{left:221.740200px;}
.x1_c00064{left:255.565200px;}
.x8_c00064{left:377.965200px;}
.x24_c00064{left:415.390200px;}
.x2_c00064{left:455.740200px;}
.x9_c00064{left:457.540200px;}
.xa_c00064{left:474.790200px;}
.xf_c00064{left:476.290200px;}
.xb_c00064{left:557.290200px;}
.x10_c00064{left:562.990200px;}
.xc_c00064{left:579.565200px;}
.x16_c00064{left:620.290200px;}
.x3_c00064{left:628.915200px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls0_c00064{letter-spacing:0.000000pt;}
.ws0_c00064{word-spacing:0.000000pt;}
.fs0_c00064{font-size:53.333333pt;}
.fs4_c00064{font-size:58.666667pt;}
.fs3_c00064{font-size:64.000000pt;}
.fs1_c00064{font-size:69.333333pt;}
.fs2_c00064{font-size:106.666667pt;}
.y0_c00064{bottom:0.000000pt;}
.y32_c00064{bottom:36.920000pt;}
.y33_c00064{bottom:39.186667pt;}
.y2f_c00064{bottom:55.520000pt;}
.y30_c00064{bottom:57.120000pt;}
.y31_c00064{bottom:58.053333pt;}
.y2e_c00064{bottom:76.666667pt;}
.y2d_c00064{bottom:95.520000pt;}
.y2c_c00064{bottom:113.786667pt;}
.y2b_c00064{bottom:132.333333pt;}
.y2a_c00064{bottom:150.586667pt;}
.y29_c00064{bottom:169.120000pt;}
.y28_c00064{bottom:188.000000pt;}
.y27_c00064{bottom:206.853333pt;}
.y26_c00064{bottom:225.800000pt;}
.y25_c00064{bottom:245.000000pt;}
.y24_c00064{bottom:264.186667pt;}
.y23_c00064{bottom:283.333333pt;}
.y22_c00064{bottom:302.520000pt;}
.y21_c00064{bottom:321.466667pt;}
.y20_c00064{bottom:340.666667pt;}
.y1f_c00064{bottom:359.853333pt;}
.y1e_c00064{bottom:379.053333pt;}
.y1d_c00064{bottom:398.853333pt;}
.y1c_c00064{bottom:418.386667pt;}
.y1b_c00064{bottom:437.586667pt;}
.y1a_c00064{bottom:437.853333pt;}
.y19_c00064{bottom:456.786667pt;}
.y18_c00064{bottom:476.333333pt;}
.y17_c00064{bottom:494.520000pt;}
.y16_c00064{bottom:496.120000pt;}
.y15_c00064{bottom:515.666667pt;}
.y14_c00064{bottom:534.853333pt;}
.y13_c00064{bottom:554.053333pt;}
.y12_c00064{bottom:573.920000pt;}
.y11_c00064{bottom:591.186667pt;}
.y10_c00064{bottom:591.520000pt;}
.yf_c00064{bottom:592.453333pt;}
.yd_c00064{bottom:593.720000pt;}
.ye_c00064{bottom:593.786667pt;}
.yc_c00064{bottom:610.720000pt;}
.yb_c00064{bottom:611.053333pt;}
.ya_c00064{bottom:611.333333pt;}
.y9_c00064{bottom:612.000000pt;}
.y8_c00064{bottom:612.253333pt;}
.y7_c00064{bottom:613.586667pt;}
.y6_c00064{bottom:676.666667pt;}
.y5_c00064{bottom:692.333333pt;}
.y4_c00064{bottom:791.186667pt;}
.y3_c00064{bottom:941.933333pt;}
.y1_c00064{bottom:947.333333pt;}
.y2_c00064{bottom:955.053333pt;}
.h1_c00064{height:52.343750pt;}
.h6_c00064{height:57.578125pt;}
.h7_c00064{height:59.125000pt;}
.h5_c00064{height:62.812500pt;}
.h4_c00064{height:68.013021pt;}
.h2_c00064{height:69.875000pt;}
.h3_c00064{height:104.687500pt;}
.h0_c00064{height:1044.000000pt;}
.w0_c00064{width:650.646400pt;}
.w1_c00064{width:650.666667pt;}
.x0_c00064{left:0.000000pt;}
.x5_c00064{left:37.769067pt;}
.x11_c00064{left:38.702400pt;}
.x13_c00064{left:39.635733pt;}
.x14_c00064{left:40.969067pt;}
.x17_c00064{left:42.235733pt;}
.x1a_c00064{left:43.502400pt;}
.x1b_c00064{left:44.769067pt;}
.x1c_c00064{left:46.035733pt;}
.x1d_c00064{left:47.035733pt;}
.x1e_c00064{left:48.969067pt;}
.x1f_c00064{left:49.902400pt;}
.x20_c00064{left:50.835733pt;}
.x21_c00064{left:52.169067pt;}
.x22_c00064{left:53.102400pt;}
.x25_c00064{left:54.369067pt;}
.x7_c00064{left:66.569067pt;}
.x12_c00064{left:68.435733pt;}
.x15_c00064{left:70.035733pt;}
.x18_c00064{left:71.035733pt;}
.x26_c00064{left:75.489067pt;}
.x23_c00064{left:79.035733pt;}
.xd_c00064{left:107.169067pt;}
.x4_c00064{left:141.102400pt;}
.x6_c00064{left:147.169067pt;}
.x19_c00064{left:163.502400pt;}
.xe_c00064{left:197.102400pt;}
.x1_c00064{left:227.169067pt;}
.x8_c00064{left:335.969067pt;}
.x24_c00064{left:369.235733pt;}
.x2_c00064{left:405.102400pt;}
.x9_c00064{left:406.702400pt;}
.xa_c00064{left:422.035733pt;}
.xf_c00064{left:423.369067pt;}
.xb_c00064{left:495.369067pt;}
.x10_c00064{left:500.435733pt;}
.xc_c00064{left:515.169067pt;}
.x16_c00064{left:551.369067pt;}
.x3_c00064{left:559.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d486d5884aded995d9b229ba.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00065;src:url('chunks/assets/font_719793ca679a5daf2f27d485.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.284180;font-style:normal;font-weight:normal;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_2bb706844bc5011ec80f6658.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m25_c00065{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00065{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m15_c00065{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8_c00065{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00065{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m11_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00065{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m28_c00065{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19_c00065{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00065{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00065{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m22_c00065{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c00065{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00065{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10_c00065{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m6_c00065{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m27_c00065{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00065{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c00065{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m23_c00065{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c00065{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m24_c00065{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c00065{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c00065{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c00065{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00065{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m18_c00065{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00065{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c00065{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c00065{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00065{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c00065{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00065{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m13_c00065{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c00065{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5_c00065{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c00065{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c00065{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m20_c00065{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00065{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m21_c00065{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m12_c00065{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma_c00065{transform:matrix(1.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.610000,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.000000px;}
.fc0_c00065{color:transparent;}
.fs0_c00065{font-size:54.000000px;}
.fs1_c00065{font-size:66.000000px;}
.fs3_c00065{font-size:78.000000px;}
.fs2_c00065{font-size:84.000000px;}
.y0_c00065{bottom:0.000000px;}
.y54_c00065{bottom:64.560000px;}
.y53_c00065{bottom:73.935000px;}
.y52_c00065{bottom:79.335000px;}
.y51_c00065{bottom:86.250000px;}
.y50_c00065{bottom:90.135000px;}
.y4f_c00065{bottom:104.910000px;}
.y4e_c00065{bottom:108.210000px;}
.y4d_c00065{bottom:114.660000px;}
.y4c_c00065{bottom:134.835000px;}
.y4b_c00065{bottom:156.750000px;}
.y4a_c00065{bottom:174.750000px;}
.y49_c00065{bottom:180.135000px;}
.y48_c00065{bottom:196.710000px;}
.y47_c00065{bottom:198.510000px;}
.y46_c00065{bottom:208.260000px;}
.y45_c00065{bottom:210.750000px;}
.y44_c00065{bottom:221.535000px;}
.y43_c00065{bottom:243.510000px;}
.y42_c00065{bottom:265.185000px;}
.y41_c00065{bottom:287.460000px;}
.y40_c00065{bottom:309.435000px;}
.y3f_c00065{bottom:331.335000px;}
.y3e_c00065{bottom:352.935000px;}
.y3d_c00065{bottom:374.910000px;}
.y3c_c00065{bottom:397.275000px;}
.y3b_c00065{bottom:418.875000px;}
.y3a_c00065{bottom:439.035000px;}
.y39_c00065{bottom:442.635000px;}
.y38_c00065{bottom:464.250000px;}
.y37_c00065{bottom:485.085000px;}
.y36_c00065{bottom:506.685000px;}
.y35_c00065{bottom:529.035000px;}
.y34_c00065{bottom:551.310000px;}
.y33_c00065{bottom:572.910000px;}
.y31_c00065{bottom:594.510000px;}
.y32_c00065{bottom:595.185000px;}
.y30_c00065{bottom:616.500000px;}
.y2f_c00065{bottom:638.760000px;}
.y2e_c00065{bottom:660.750000px;}
.y2a_c00065{bottom:679.500000px;}
.y2b_c00065{bottom:679.875000px;}
.y2c_c00065{bottom:681.285000px;}
.y2d_c00065{bottom:683.835000px;}
.y29_c00065{bottom:703.935000px;}
.y28_c00065{bottom:726.285000px;}
.y24_c00065{bottom:742.125000px;}
.y25_c00065{bottom:744.660000px;}
.y26_c00065{bottom:748.950000px;}
.y27_c00065{bottom:750.750000px;}
.y23_c00065{bottom:769.875000px;}
.y21_c00065{bottom:787.500000px;}
.y22_c00065{bottom:791.460000px;}
.y1f_c00065{bottom:811.275000px;}
.y20_c00065{bottom:816.585000px;}
.y1e_c00065{bottom:833.625000px;}
.y1d_c00065{bottom:855.210000px;}
.y1a_c00065{bottom:874.275000px;}
.y1b_c00065{bottom:881.835000px;}
.y1c_c00065{bottom:882.525000px;}
.y18_c00065{bottom:897.675000px;}
.y19_c00065{bottom:903.000000px;}
.y13_c00065{bottom:910.275000px;}
.y14_c00065{bottom:913.125000px;}
.y15_c00065{bottom:916.050000px;}
.y16_c00065{bottom:918.150000px;}
.y17_c00065{bottom:924.675000px;}
.y11_c00065{bottom:937.935000px;}
.y12_c00065{bottom:947.685000px;}
.yc_c00065{bottom:961.710000px;}
.y10_c00065{bottom:962.085000px;}
.ya_c00065{bottom:976.125000px;}
.yb_c00065{bottom:980.835000px;}
.yd_c00065{bottom:984.000000px;}
.ye_c00065{bottom:986.250000px;}
.yf_c00065{bottom:990.525000px;}
.y8_c00065{bottom:1005.675000px;}
.y9_c00065{bottom:1012.875000px;}
.y2_c00065{bottom:1015.425000px;}
.y3_c00065{bottom:1019.025000px;}
.y4_c00065{bottom:1021.875000px;}
.y5_c00065{bottom:1025.775000px;}
.y6_c00065{bottom:1028.685000px;}
.y7_c00065{bottom:1033.335000px;}
.y55_c00065{bottom:1070.775000px;}
.y1_c00065{bottom:1084.125000px;}
.h1_c00065{height:52.998047px;}
.h2_c00065{height:64.775391px;}
.h4_c00065{height:76.514648px;}
.h5_c00065{height:78.609375px;}
.h3_c00065{height:82.441406px;}
.h0_c00065{height:1174.500000px;}
.w0_c00065{width:731.977200px;}
.w1_c00065{width:732.000000px;}
.x0_c00065{left:0.000000px;}
.x2e_c00065{left:63.340200px;}
.x28_c00065{left:64.390200px;}
.x27_c00065{left:66.190200px;}
.x22_c00065{left:67.315200px;}
.x1e_c00065{left:68.365200px;}
.x1a_c00065{left:69.490200px;}
.xe_c00065{left:70.915200px;}
.x2_c00065{left:72.715200px;}
.x1f_c00065{left:84.175200px;}
.x33_c00065{left:91.390200px;}
.x25_c00065{left:97.915200px;}
.x19_c00065{left:100.090200px;}
.x1b_c00065{left:135.715200px;}
.x2f_c00065{left:148.990200px;}
.x29_c00065{left:153.340200px;}
.x20_c00065{left:160.165200px;}
.x10_c00065{left:165.940200px;}
.x2a_c00065{left:168.490200px;}
.x23_c00065{left:196.915200px;}
.x3_c00065{left:202.690200px;}
.x11_c00065{left:206.965200px;}
.x24_c00065{left:231.790200px;}
.x4_c00065{left:232.915200px;}
.x31_c00065{left:255.190200px;}
.x32_c00065{left:283.690200px;}
.x9_c00065{left:286.915200px;}
.x1_c00065{left:289.765200px;}
.xb_c00065{left:296.590200px;}
.x12_c00065{left:307.090200px;}
.x13_c00065{left:329.365200px;}
.xa_c00065{left:331.540200px;}
.x18_c00065{left:333.715200px;}
.x5_c00065{left:341.290200px;}
.x1c_c00065{left:346.690200px;}
.x6_c00065{left:370.390200px;}
.xc_c00065{left:413.275200px;}
.x21_c00065{left:427.990200px;}
.xd_c00065{left:433.090200px;}
.x26_c00065{left:439.915200px;}
.x7_c00065{left:449.965200px;}
.xf_c00065{left:497.890200px;}
.x15_c00065{left:510.490200px;}
.x1d_c00065{left:530.965200px;}
.x16_c00065{left:538.540200px;}
.x2d_c00065{left:560.890200px;}
.x17_c00065{left:576.715200px;}
.x2c_c00065{left:583.165200px;}
.x30_c00065{left:614.140200px;}
.x2b_c00065{left:662.365200px;}
.x14_c00065{left:663.790200px;}
.x8_c00065{left:669.940200px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls0_c00065{letter-spacing:0.000000pt;}
.ws0_c00065{word-spacing:0.000000pt;}
.fs0_c00065{font-size:48.000000pt;}
.fs1_c00065{font-size:58.666667pt;}
.fs3_c00065{font-size:69.333333pt;}
.fs2_c00065{font-size:74.666667pt;}
.y0_c00065{bottom:0.000000pt;}
.y54_c00065{bottom:57.386667pt;}
.y53_c00065{bottom:65.720000pt;}
.y52_c00065{bottom:70.520000pt;}
.y51_c00065{bottom:76.666667pt;}
.y50_c00065{bottom:80.120000pt;}
.y4f_c00065{bottom:93.253333pt;}
.y4e_c00065{bottom:96.186667pt;}
.y4d_c00065{bottom:101.920000pt;}
.y4c_c00065{bottom:119.853333pt;}
.y4b_c00065{bottom:139.333333pt;}
.y4a_c00065{bottom:155.333333pt;}
.y49_c00065{bottom:160.120000pt;}
.y48_c00065{bottom:174.853333pt;}
.y47_c00065{bottom:176.453333pt;}
.y46_c00065{bottom:185.120000pt;}
.y45_c00065{bottom:187.333333pt;}
.y44_c00065{bottom:196.920000pt;}
.y43_c00065{bottom:216.453333pt;}
.y42_c00065{bottom:235.720000pt;}
.y41_c00065{bottom:255.520000pt;}
.y40_c00065{bottom:275.053333pt;}
.y3f_c00065{bottom:294.520000pt;}
.y3e_c00065{bottom:313.720000pt;}
.y3d_c00065{bottom:333.253333pt;}
.y3c_c00065{bottom:353.133333pt;}
.y3b_c00065{bottom:372.333333pt;}
.y3a_c00065{bottom:390.253333pt;}
.y39_c00065{bottom:393.453333pt;}
.y38_c00065{bottom:412.666667pt;}
.y37_c00065{bottom:431.186667pt;}
.y36_c00065{bottom:450.386667pt;}
.y35_c00065{bottom:470.253333pt;}
.y34_c00065{bottom:490.053333pt;}
.y33_c00065{bottom:509.253333pt;}
.y31_c00065{bottom:528.453333pt;}
.y32_c00065{bottom:529.053333pt;}
.y30_c00065{bottom:548.000000pt;}
.y2f_c00065{bottom:567.786667pt;}
.y2e_c00065{bottom:587.333333pt;}
.y2a_c00065{bottom:604.000000pt;}
.y2b_c00065{bottom:604.333333pt;}
.y2c_c00065{bottom:605.586667pt;}
.y2d_c00065{bottom:607.853333pt;}
.y29_c00065{bottom:625.720000pt;}
.y28_c00065{bottom:645.586667pt;}
.y24_c00065{bottom:659.666667pt;}
.y25_c00065{bottom:661.920000pt;}
.y26_c00065{bottom:665.733333pt;}
.y27_c00065{bottom:667.333333pt;}
.y23_c00065{bottom:684.333333pt;}
.y21_c00065{bottom:700.000000pt;}
.y22_c00065{bottom:703.520000pt;}
.y1f_c00065{bottom:721.133333pt;}
.y20_c00065{bottom:725.853333pt;}
.y1e_c00065{bottom:741.000000pt;}
.y1d_c00065{bottom:760.186667pt;}
.y1a_c00065{bottom:777.133333pt;}
.y1b_c00065{bottom:783.853333pt;}
.y1c_c00065{bottom:784.466667pt;}
.y18_c00065{bottom:797.933333pt;}
.y19_c00065{bottom:802.666667pt;}
.y13_c00065{bottom:809.133333pt;}
.y14_c00065{bottom:811.666667pt;}
.y15_c00065{bottom:814.266667pt;}
.y16_c00065{bottom:816.133333pt;}
.y17_c00065{bottom:821.933333pt;}
.y11_c00065{bottom:833.720000pt;}
.y12_c00065{bottom:842.386667pt;}
.yc_c00065{bottom:854.853333pt;}
.y10_c00065{bottom:855.186667pt;}
.ya_c00065{bottom:867.666667pt;}
.yb_c00065{bottom:871.853333pt;}
.yd_c00065{bottom:874.666667pt;}
.ye_c00065{bottom:876.666667pt;}
.yf_c00065{bottom:880.466667pt;}
.y8_c00065{bottom:893.933333pt;}
.y9_c00065{bottom:900.333333pt;}
.y2_c00065{bottom:902.600000pt;}
.y3_c00065{bottom:905.800000pt;}
.y4_c00065{bottom:908.333333pt;}
.y5_c00065{bottom:911.800000pt;}
.y6_c00065{bottom:914.386667pt;}
.y7_c00065{bottom:918.520000pt;}
.y55_c00065{bottom:951.800000pt;}
.y1_c00065{bottom:963.666667pt;}
.h1_c00065{height:47.109375pt;}
.h2_c00065{height:57.578125pt;}
.h4_c00065{height:68.013021pt;}
.h5_c00065{height:69.875000pt;}
.h3_c00065{height:73.281250pt;}
.h0_c00065{height:1044.000000pt;}
.w0_c00065{width:650.646400pt;}
.w1_c00065{width:650.666667pt;}
.x0_c00065{left:0.000000pt;}
.x2e_c00065{left:56.302400pt;}
.x28_c00065{left:57.235733pt;}
.x27_c00065{left:58.835733pt;}
.x22_c00065{left:59.835733pt;}
.x1e_c00065{left:60.769067pt;}
.x1a_c00065{left:61.769067pt;}
.xe_c00065{left:63.035733pt;}
.x2_c00065{left:64.635733pt;}
.x1f_c00065{left:74.822400pt;}
.x33_c00065{left:81.235733pt;}
.x25_c00065{left:87.035733pt;}
.x19_c00065{left:88.969067pt;}
.x1b_c00065{left:120.635733pt;}
.x2f_c00065{left:132.435733pt;}
.x29_c00065{left:136.302400pt;}
.x20_c00065{left:142.369067pt;}
.x10_c00065{left:147.502400pt;}
.x2a_c00065{left:149.769067pt;}
.x23_c00065{left:175.035733pt;}
.x3_c00065{left:180.169067pt;}
.x11_c00065{left:183.969067pt;}
.x24_c00065{left:206.035733pt;}
.x4_c00065{left:207.035733pt;}
.x31_c00065{left:226.835733pt;}
.x32_c00065{left:252.169067pt;}
.x9_c00065{left:255.035733pt;}
.x1_c00065{left:257.569067pt;}
.xb_c00065{left:263.635733pt;}
.x12_c00065{left:272.969067pt;}
.x13_c00065{left:292.769067pt;}
.xa_c00065{left:294.702400pt;}
.x18_c00065{left:296.635733pt;}
.x5_c00065{left:303.369067pt;}
.x1c_c00065{left:308.169067pt;}
.x6_c00065{left:329.235733pt;}
.xc_c00065{left:367.355733pt;}
.x21_c00065{left:380.435733pt;}
.xd_c00065{left:384.969067pt;}
.x26_c00065{left:391.035733pt;}
.x7_c00065{left:399.969067pt;}
.xf_c00065{left:442.569067pt;}
.x15_c00065{left:453.769067pt;}
.x1d_c00065{left:471.969067pt;}
.x16_c00065{left:478.702400pt;}
.x2d_c00065{left:498.569067pt;}
.x17_c00065{left:512.635733pt;}
.x2c_c00065{left:518.369067pt;}
.x30_c00065{left:545.902400pt;}
.x2b_c00065{left:588.769067pt;}
.x14_c00065{left:590.035733pt;}
.x8_c00065{left:595.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_90fb4e9aac44eaa59bb66e07.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00066;src:url('chunks/assets/font_6f2930d11a02d64bb44a35a2.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00066;src:url('chunks/assets/font_bf064e43cbede06dedbe9fc9.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00066;src:url('chunks/assets/font_4b9af5b5db815537206f9828.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00066{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00066{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0_c00066{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c00066{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00066{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c00066{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00066{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c00066{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00066{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00066{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00066{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00066{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00066{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00066{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00066{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00066{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00066{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00066{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m11_c00066{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00066{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls0_c00066{letter-spacing:0.000000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00066{word-spacing:0.000000px;}
.fc0_c00066{color:transparent;}
.fs1_c00066{font-size:54.000000px;}
.fs0_c00066{font-size:60.000000px;}
.fs6_c00066{font-size:66.000000px;}
.fs4_c00066{font-size:72.000000px;}
.fs2_c00066{font-size:78.000000px;}
.fs3_c00066{font-size:84.000000px;}
.fs5_c00066{font-size:90.000000px;}
.y0_c00066{bottom:0.000000px;}
.y33_c00066{bottom:75.375000px;}
.y32_c00066{bottom:97.035000px;}
.y31_c00066{bottom:117.885000px;}
.y30_c00066{bottom:138.375000px;}
.y2f_c00066{bottom:158.910000px;}
.y2e_c00066{bottom:179.460000px;}
.y2d_c00066{bottom:201.000000px;}
.y2c_c00066{bottom:222.285000px;}
.y2b_c00066{bottom:243.210000px;}
.y2a_c00066{bottom:264.750000px;}
.y29_c00066{bottom:286.710000px;}
.y27_c00066{bottom:307.650000px;}
.y28_c00066{bottom:308.025000px;}
.y25_c00066{bottom:329.535000px;}
.y26_c00066{bottom:332.835000px;}
.y24_c00066{bottom:351.210000px;}
.y23_c00066{bottom:371.685000px;}
.y22_c00066{bottom:393.960000px;}
.y21_c00066{bottom:415.635000px;}
.y20_c00066{bottom:437.250000px;}
.y1f_c00066{bottom:459.135000px;}
.y1e_c00066{bottom:481.500000px;}
.y1d_c00066{bottom:503.385000px;}
.y1c_c00066{bottom:525.060000px;}
.y1b_c00066{bottom:547.035000px;}
.y1a_c00066{bottom:568.635000px;}
.y19_c00066{bottom:590.250000px;}
.y18_c00066{bottom:611.835000px;}
.y17_c00066{bottom:633.750000px;}
.y16_c00066{bottom:655.710000px;}
.y15_c00066{bottom:677.685000px;}
.y14_c00066{bottom:699.660000px;}
.y13_c00066{bottom:721.635000px;}
.y12_c00066{bottom:743.535000px;}
.y11_c00066{bottom:765.510000px;}
.y10_c00066{bottom:787.500000px;}
.yf_c00066{bottom:809.460000px;}
.ye_c00066{bottom:831.435000px;}
.yd_c00066{bottom:853.050000px;}
.yc_c00066{bottom:874.560000px;}
.ya_c00066{bottom:896.175000px;}
.yb_c00066{bottom:896.250000px;}
.y9_c00066{bottom:917.775000px;}
.y8_c00066{bottom:939.750000px;}
.y7_c00066{bottom:960.300000px;}
.y6_c00066{bottom:962.085000px;}
.y5_c00066{bottom:984.000000px;}
.y4_c00066{bottom:1004.550000px;}
.y3_c00066{bottom:1027.185000px;}
.y2_c00066{bottom:1079.460000px;}
.y1_c00066{bottom:1086.675000px;}
.h2_c00066{height:54.421875px;}
.h1_c00066{height:60.468750px;}
.h7_c00066{height:64.775391px;}
.h5_c00066{height:70.664062px;}
.h3_c00066{height:78.609375px;}
.h4_c00066{height:82.400391px;}
.h6_c00066{height:88.286133px;}
.h0_c00066{height:1174.500000px;}
.w0_c00066{width:731.977200px;}
.w1_c00066{width:732.000000px;}
.x0_c00066{left:0.000000px;}
.xe_c00066{left:40.990200px;}
.xd_c00066{left:42.115200px;}
.xb_c00066{left:43.165200px;}
.xa_c00066{left:44.965200px;}
.x4_c00066{left:46.090200px;}
.x5_c00066{left:47.140200px;}
.x3_c00066{left:51.115200px;}
.x6_c00066{left:69.115200px;}
.xf_c00066{left:72.340200px;}
.x11_c00066{left:74.140200px;}
.xc_c00066{left:75.175200px;}
.x8_c00066{left:101.890200px;}
.x9_c00066{left:124.165200px;}
.x7_c00066{left:172.375200px;}
.x1_c00066{left:263.890200px;}
.x2_c00066{left:633.940200px;}
.x10_c00066{left:641.890200px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls0_c00066{letter-spacing:0.000000pt;}
.ws0_c00066{word-spacing:0.000000pt;}
.fs1_c00066{font-size:48.000000pt;}
.fs0_c00066{font-size:53.333333pt;}
.fs6_c00066{font-size:58.666667pt;}
.fs4_c00066{font-size:64.000000pt;}
.fs2_c00066{font-size:69.333333pt;}
.fs3_c00066{font-size:74.666667pt;}
.fs5_c00066{font-size:80.000000pt;}
.y0_c00066{bottom:0.000000pt;}
.y33_c00066{bottom:67.000000pt;}
.y32_c00066{bottom:86.253333pt;}
.y31_c00066{bottom:104.786667pt;}
.y30_c00066{bottom:123.000000pt;}
.y2f_c00066{bottom:141.253333pt;}
.y2e_c00066{bottom:159.520000pt;}
.y2d_c00066{bottom:178.666667pt;}
.y2c_c00066{bottom:197.586667pt;}
.y2b_c00066{bottom:216.186667pt;}
.y2a_c00066{bottom:235.333333pt;}
.y29_c00066{bottom:254.853333pt;}
.y27_c00066{bottom:273.466667pt;}
.y28_c00066{bottom:273.800000pt;}
.y25_c00066{bottom:292.920000pt;}
.y26_c00066{bottom:295.853333pt;}
.y24_c00066{bottom:312.186667pt;}
.y23_c00066{bottom:330.386667pt;}
.y22_c00066{bottom:350.186667pt;}
.y21_c00066{bottom:369.453333pt;}
.y20_c00066{bottom:388.666667pt;}
.y1f_c00066{bottom:408.120000pt;}
.y1e_c00066{bottom:428.000000pt;}
.y1d_c00066{bottom:447.453333pt;}
.y1c_c00066{bottom:466.720000pt;}
.y1b_c00066{bottom:486.253333pt;}
.y1a_c00066{bottom:505.453333pt;}
.y19_c00066{bottom:524.666667pt;}
.y18_c00066{bottom:543.853333pt;}
.y17_c00066{bottom:563.333333pt;}
.y16_c00066{bottom:582.853333pt;}
.y15_c00066{bottom:602.386667pt;}
.y14_c00066{bottom:621.920000pt;}
.y13_c00066{bottom:641.453333pt;}
.y12_c00066{bottom:660.920000pt;}
.y11_c00066{bottom:680.453333pt;}
.y10_c00066{bottom:700.000000pt;}
.yf_c00066{bottom:719.520000pt;}
.ye_c00066{bottom:739.053333pt;}
.yd_c00066{bottom:758.266667pt;}
.yc_c00066{bottom:777.386667pt;}
.ya_c00066{bottom:796.600000pt;}
.yb_c00066{bottom:796.666667pt;}
.y9_c00066{bottom:815.800000pt;}
.y8_c00066{bottom:835.333333pt;}
.y7_c00066{bottom:853.600000pt;}
.y6_c00066{bottom:855.186667pt;}
.y5_c00066{bottom:874.666667pt;}
.y4_c00066{bottom:892.933333pt;}
.y3_c00066{bottom:913.053333pt;}
.y2_c00066{bottom:959.520000pt;}
.y1_c00066{bottom:965.933333pt;}
.h2_c00066{height:48.375000pt;}
.h1_c00066{height:53.750000pt;}
.h7_c00066{height:57.578125pt;}
.h5_c00066{height:62.812500pt;}
.h3_c00066{height:69.875000pt;}
.h4_c00066{height:73.244792pt;}
.h6_c00066{height:78.476562pt;}
.h0_c00066{height:1044.000000pt;}
.w0_c00066{width:650.646400pt;}
.w1_c00066{width:650.666667pt;}
.x0_c00066{left:0.000000pt;}
.xe_c00066{left:36.435733pt;}
.xd_c00066{left:37.435733pt;}
.xb_c00066{left:38.369067pt;}
.xa_c00066{left:39.969067pt;}
.x4_c00066{left:40.969067pt;}
.x5_c00066{left:41.902400pt;}
.x3_c00066{left:45.435733pt;}
.x6_c00066{left:61.435733pt;}
.xf_c00066{left:64.302400pt;}
.x11_c00066{left:65.902400pt;}
.xc_c00066{left:66.822400pt;}
.x8_c00066{left:90.569067pt;}
.x9_c00066{left:110.369067pt;}
.x7_c00066{left:153.222400pt;}
.x1_c00066{left:234.569067pt;}
.x2_c00066{left:563.502400pt;}
.x10_c00066{left:570.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_79fde8bed3c87b94d30cb0b4.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00067;src:url('chunks/assets/font_d46bfb096e19d1b84738ee37.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00067{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m0_c00067{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8_c00067{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m2_c00067{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c00067{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00067{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5_c00067{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00067{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00067{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc_c00067{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00067{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c00067{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c00067{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00067{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00067{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10_c00067{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00067{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00067{color:transparent;}
.fs1_c00067{font-size:60.000000px;}
.fs3_c00067{font-size:66.000000px;}
.fs0_c00067{font-size:78.000000px;}
.fs2_c00067{font-size:84.000000px;}
.y0_c00067{bottom:0.000000px;}
.y2a_c00067{bottom:369.900000px;}
.y29_c00067{bottom:442.635000px;}
.y28_c00067{bottom:454.500000px;}
.y27_c00067{bottom:461.685000px;}
.y26_c00067{bottom:476.835000px;}
.y25_c00067{bottom:477.510000px;}
.y24_c00067{bottom:483.285000px;}
.y23_c00067{bottom:503.460000px;}
.y22_c00067{bottom:523.935000px;}
.y21_c00067{bottom:529.035000px;}
.y20_c00067{bottom:547.035000px;}
.y1f_c00067{bottom:569.310000px;}
.y1e_c00067{bottom:591.285000px;}
.y1d_c00067{bottom:614.010000px;}
.y1c_c00067{bottom:635.250000px;}
.y1b_c00067{bottom:656.835000px;}
.y1a_c00067{bottom:678.810000px;}
.y19_c00067{bottom:698.160000px;}
.y18_c00067{bottom:700.335000px;}
.y17_c00067{bottom:722.010000px;}
.y16_c00067{bottom:743.250000px;}
.y15_c00067{bottom:765.135000px;}
.y14_c00067{bottom:786.750000px;}
.y13_c00067{bottom:808.710000px;}
.y12_c00067{bottom:830.025000px;}
.y11_c00067{bottom:851.925000px;}
.y10_c00067{bottom:873.525000px;}
.yf_c00067{bottom:894.810000px;}
.ye_c00067{bottom:916.425000px;}
.yd_c00067{bottom:938.310000px;}
.ya_c00067{bottom:951.300000px;}
.yb_c00067{bottom:951.960000px;}
.yc_c00067{bottom:960.300000px;}
.y9_c00067{bottom:980.835000px;}
.y8_c00067{bottom:1002.810000px;}
.y7_c00067{bottom:1021.875000px;}
.y4_c00067{bottom:1037.310000px;}
.y5_c00067{bottom:1041.675000px;}
.y6_c00067{bottom:1047.060000px;}
.y1_c00067{bottom:1091.310000px;}
.y3_c00067{bottom:1101.750000px;}
.y2_c00067{bottom:1107.000000px;}
.h2_c00067{height:58.886719px;}
.h4_c00067{height:64.775391px;}
.h1_c00067{height:76.552734px;}
.h5_c00067{height:82.400391px;}
.h3_c00067{height:82.441406px;}
.h0_c00067{height:1174.500000px;}
.w0_c00067{width:731.977200px;}
.w1_c00067{width:732.000000px;}
.x0_c00067{left:0.000000px;}
.xe_c00067{left:57.940200px;}
.xd_c00067{left:58.990200px;}
.xb_c00067{left:60.490200px;}
.xa_c00067{left:61.540200px;}
.x9_c00067{left:62.965200px;}
.x4_c00067{left:64.390200px;}
.x15_c00067{left:74.140200px;}
.x11_c00067{left:79.165200px;}
.x1_c00067{left:83.515200px;}
.x8_c00067{left:84.925200px;}
.xf_c00067{left:87.790200px;}
.x7_c00067{left:94.315200px;}
.x2_c00067{left:100.765200px;}
.x3_c00067{left:282.190200px;}
.x5_c00067{left:285.490200px;}
.x10_c00067{left:294.790200px;}
.x6_c00067{left:327.190200px;}
.x14_c00067{left:521.290200px;}
.x12_c00067{left:525.565200px;}
.x13_c00067{left:543.565200px;}
.xc_c00067{left:662.740200px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls0_c00067{letter-spacing:0.000000pt;}
.ws0_c00067{word-spacing:0.000000pt;}
.fs1_c00067{font-size:53.333333pt;}
.fs3_c00067{font-size:58.666667pt;}
.fs0_c00067{font-size:69.333333pt;}
.fs2_c00067{font-size:74.666667pt;}
.y0_c00067{bottom:0.000000pt;}
.y2a_c00067{bottom:328.800000pt;}
.y29_c00067{bottom:393.453333pt;}
.y28_c00067{bottom:404.000000pt;}
.y27_c00067{bottom:410.386667pt;}
.y26_c00067{bottom:423.853333pt;}
.y25_c00067{bottom:424.453333pt;}
.y24_c00067{bottom:429.586667pt;}
.y23_c00067{bottom:447.520000pt;}
.y22_c00067{bottom:465.720000pt;}
.y21_c00067{bottom:470.253333pt;}
.y20_c00067{bottom:486.253333pt;}
.y1f_c00067{bottom:506.053333pt;}
.y1e_c00067{bottom:525.586667pt;}
.y1d_c00067{bottom:545.786667pt;}
.y1c_c00067{bottom:564.666667pt;}
.y1b_c00067{bottom:583.853333pt;}
.y1a_c00067{bottom:603.386667pt;}
.y19_c00067{bottom:620.586667pt;}
.y18_c00067{bottom:622.520000pt;}
.y17_c00067{bottom:641.786667pt;}
.y16_c00067{bottom:660.666667pt;}
.y15_c00067{bottom:680.120000pt;}
.y14_c00067{bottom:699.333333pt;}
.y13_c00067{bottom:718.853333pt;}
.y12_c00067{bottom:737.800000pt;}
.y11_c00067{bottom:757.266667pt;}
.y10_c00067{bottom:776.466667pt;}
.yf_c00067{bottom:795.386667pt;}
.ye_c00067{bottom:814.600000pt;}
.yd_c00067{bottom:834.053333pt;}
.ya_c00067{bottom:845.600000pt;}
.yb_c00067{bottom:846.186667pt;}
.yc_c00067{bottom:853.600000pt;}
.y9_c00067{bottom:871.853333pt;}
.y8_c00067{bottom:891.386667pt;}
.y7_c00067{bottom:908.333333pt;}
.y4_c00067{bottom:922.053333pt;}
.y5_c00067{bottom:925.933333pt;}
.y6_c00067{bottom:930.720000pt;}
.y1_c00067{bottom:970.053333pt;}
.y3_c00067{bottom:979.333333pt;}
.y2_c00067{bottom:984.000000pt;}
.h2_c00067{height:52.343750pt;}
.h4_c00067{height:57.578125pt;}
.h1_c00067{height:68.046875pt;}
.h5_c00067{height:73.244792pt;}
.h3_c00067{height:73.281250pt;}
.h0_c00067{height:1044.000000pt;}
.w0_c00067{width:650.646400pt;}
.w1_c00067{width:650.666667pt;}
.x0_c00067{left:0.000000pt;}
.xe_c00067{left:51.502400pt;}
.xd_c00067{left:52.435733pt;}
.xb_c00067{left:53.769067pt;}
.xa_c00067{left:54.702400pt;}
.x9_c00067{left:55.969067pt;}
.x4_c00067{left:57.235733pt;}
.x15_c00067{left:65.902400pt;}
.x11_c00067{left:70.369067pt;}
.x1_c00067{left:74.235733pt;}
.x8_c00067{left:75.489067pt;}
.xf_c00067{left:78.035733pt;}
.x7_c00067{left:83.835733pt;}
.x2_c00067{left:89.569067pt;}
.x3_c00067{left:250.835733pt;}
.x5_c00067{left:253.769067pt;}
.x10_c00067{left:262.035733pt;}
.x6_c00067{left:290.835733pt;}
.x14_c00067{left:463.369067pt;}
.x12_c00067{left:467.169067pt;}
.x13_c00067{left:483.169067pt;}
.xc_c00067{left:589.102400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d74200ab2d3c7233e1c22c02.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00068;src:url('chunks/assets/font_037efb44960d5e6ce6b6bbef.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00068;src:url('chunks/assets/font_2dc52daa31b6f4bf48f62e6e.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00068;src:url('chunks/assets/font_7635e382d68062b0a753d0e9.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00068{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mc_c00068{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m4_c00068{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m2_c00068{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m7_c00068{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m0_c00068{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m21_c00068{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m16_c00068{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m23_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);}
.m14_c00068{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5_c00068{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m12_c00068{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m18_c00068{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.me_c00068{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m13_c00068{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m15_c00068{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00068{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00068{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m17_c00068{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10_c00068{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00068{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00068{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00068{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00068{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00068{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m19_c00068{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00068{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c00068{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00068{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m22_c00068{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c00068{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00068{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c00068{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1_c00068{transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);}
.m3_c00068{transform:matrix(3.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.250000,0.000000,0.000000,0.250000,0,0);}
.m6_c00068{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.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:0.000000px;}
.fc0_c00068{color:transparent;}
.fs0_c00068{font-size:18.000000px;}
.fs5_c00068{font-size:42.000000px;}
.fs4_c00068{font-size:54.000000px;}
.fs1_c00068{font-size:60.000000px;}
.fs8_c00068{font-size:66.000000px;}
.fs7_c00068{font-size:72.000000px;}
.fs6_c00068{font-size:78.000000px;}
.fs2_c00068{font-size:84.000000px;}
.fs3_c00068{font-size:90.000000px;}
.y0_c00068{bottom:0.000000px;}
.y37_c00068{bottom:76.500000px;}
.y36_c00068{bottom:76.785000px;}
.y33_c00068{bottom:93.750000px;}
.y34_c00068{bottom:94.500000px;}
.y35_c00068{bottom:96.960000px;}
.y32_c00068{bottom:162.885000px;}
.y31_c00068{bottom:183.750000px;}
.y2f_c00068{bottom:204.000000px;}
.y30_c00068{bottom:206.385000px;}
.y2e_c00068{bottom:225.510000px;}
.y2d_c00068{bottom:247.500000px;}
.y2c_c00068{bottom:269.085000px;}
.y29_c00068{bottom:290.310000px;}
.y2a_c00068{bottom:291.750000px;}
.y2b_c00068{bottom:292.500000px;}
.y28_c00068{bottom:312.000000px;}
.y27_c00068{bottom:333.525000px;}
.y26_c00068{bottom:354.810000px;}
.y25_c00068{bottom:376.335000px;}
.y24_c00068{bottom:397.935000px;}
.y23_c00068{bottom:419.625000px;}
.y22_c00068{bottom:441.510000px;}
.y21_c00068{bottom:463.125000px;}
.y20_c00068{bottom:485.460000px;}
.y1f_c00068{bottom:506.685000px;}
.y1e_c00068{bottom:507.060000px;}
.y1d_c00068{bottom:507.750000px;}
.y1c_c00068{bottom:528.660000px;}
.y1b_c00068{bottom:550.260000px;}
.y1a_c00068{bottom:550.635000px;}
.y19_c00068{bottom:551.685000px;}
.y18_c00068{bottom:572.160000px;}
.y17_c00068{bottom:594.135000px;}
.y16_c00068{bottom:614.685000px;}
.y15_c00068{bottom:615.375000px;}
.y14_c00068{bottom:615.750000px;}
.y13_c00068{bottom:616.875000px;}
.y12_c00068{bottom:617.535000px;}
.y11_c00068{bottom:636.660000px;}
.y10_c00068{bottom:637.335000px;}
.yf_c00068{bottom:638.460000px;}
.ye_c00068{bottom:639.135000px;}
.yd_c00068{bottom:659.685000px;}
.yc_c00068{bottom:681.585000px;}
.yb_c00068{bottom:755.835000px;}
.ya_c00068{bottom:809.085000px;}
.y9_c00068{bottom:876.435000px;}
.y8_c00068{bottom:923.550000px;}
.y7_c00068{bottom:956.685000px;}
.y6_c00068{bottom:1084.500000px;}
.y4_c00068{bottom:1092.000000px;}
.y5_c00068{bottom:1100.550000px;}
.y1_c00068{bottom:1163.310000px;}
.y2_c00068{bottom:1163.400000px;}
.y3_c00068{bottom:1163.685000px;}
.h1_c00068{height:17.666016px;}
.h7_c00068{height:41.220703px;}
.h5_c00068{height:52.998047px;}
.h6_c00068{height:54.421875px;}
.h2_c00068{height:60.468750px;}
.hb_c00068{height:64.775391px;}
.ha_c00068{height:70.664062px;}
.hc_c00068{height:76.514648px;}
.h8_c00068{height:78.609375px;}
.h9_c00068{height:82.400391px;}
.h3_c00068{height:82.441406px;}
.h4_c00068{height:88.330078px;}
.h0_c00068{height:1174.500000px;}
.w0_c00068{width:731.977200px;}
.w1_c00068{width:732.000000px;}
.x9_c00068{left:-21.259800px;}
.x0_c00068{left:0.000000px;}
.xf_c00068{left:55.390200px;}
.x1f_c00068{left:56.515200px;}
.x1e_c00068{left:57.940200px;}
.x22_c00068{left:58.990200px;}
.x24_c00068{left:60.490200px;}
.x26_c00068{left:61.915200px;}
.x2b_c00068{left:63.340200px;}
.x18_c00068{left:74.140200px;}
.xa_c00068{left:77.740200px;}
.x27_c00068{left:80.590200px;}
.xe_c00068{left:88.540200px;}
.x10_c00068{left:90.340200px;}
.x23_c00068{left:92.140200px;}
.x2c_c00068{left:113.365200px;}
.xd_c00068{left:119.890200px;}
.x11_c00068{left:121.990200px;}
.x2d_c00068{left:145.090200px;}
.x2e_c00068{left:161.290200px;}
.x14_c00068{left:164.140200px;}
.x19_c00068{left:170.965200px;}
.x1_c00068{left:177.490200px;}
.x2_c00068{left:178.915200px;}
.x3_c00068{left:187.540200px;}
.x4_c00068{left:188.590200px;}
.x5_c00068{left:208.090200px;}
.xb_c00068{left:218.140200px;}
.xc_c00068{left:235.090200px;}
.x15_c00068{left:244.090200px;}
.x1c_c00068{left:256.690200px;}
.x1a_c00068{left:262.090200px;}
.x1d_c00068{left:292.690200px;}
.x6_c00068{left:299.515200px;}
.x28_c00068{left:346.690200px;}
.x12_c00068{left:362.140200px;}
.x16_c00068{left:403.525200px;}
.x25_c00068{left:427.690200px;}
.x13_c00068{left:439.150200px;}
.x29_c00068{left:443.515200px;}
.x7_c00068{left:469.090200px;}
.x17_c00068{left:480.940200px;}
.x1b_c00068{left:509.740200px;}
.x20_c00068{left:546.115200px;}
.x21_c00068{left:583.165200px;}
.x8_c00068{left:642.190200px;}
.x2a_c00068{left:653.365200px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls0_c00068{letter-spacing:0.000000pt;}
.ws0_c00068{word-spacing:0.000000pt;}
.fs0_c00068{font-size:16.000000pt;}
.fs5_c00068{font-size:37.333333pt;}
.fs4_c00068{font-size:48.000000pt;}
.fs1_c00068{font-size:53.333333pt;}
.fs8_c00068{font-size:58.666667pt;}
.fs7_c00068{font-size:64.000000pt;}
.fs6_c00068{font-size:69.333333pt;}
.fs2_c00068{font-size:74.666667pt;}
.fs3_c00068{font-size:80.000000pt;}
.y0_c00068{bottom:0.000000pt;}
.y37_c00068{bottom:68.000000pt;}
.y36_c00068{bottom:68.253333pt;}
.y33_c00068{bottom:83.333333pt;}
.y34_c00068{bottom:84.000000pt;}
.y35_c00068{bottom:86.186667pt;}
.y32_c00068{bottom:144.786667pt;}
.y31_c00068{bottom:163.333333pt;}
.y2f_c00068{bottom:181.333333pt;}
.y30_c00068{bottom:183.453333pt;}
.y2e_c00068{bottom:200.453333pt;}
.y2d_c00068{bottom:220.000000pt;}
.y2c_c00068{bottom:239.186667pt;}
.y29_c00068{bottom:258.053333pt;}
.y2a_c00068{bottom:259.333333pt;}
.y2b_c00068{bottom:260.000000pt;}
.y28_c00068{bottom:277.333333pt;}
.y27_c00068{bottom:296.466667pt;}
.y26_c00068{bottom:315.386667pt;}
.y25_c00068{bottom:334.520000pt;}
.y24_c00068{bottom:353.720000pt;}
.y23_c00068{bottom:373.000000pt;}
.y22_c00068{bottom:392.453333pt;}
.y21_c00068{bottom:411.666667pt;}
.y20_c00068{bottom:431.520000pt;}
.y1f_c00068{bottom:450.386667pt;}
.y1e_c00068{bottom:450.720000pt;}
.y1d_c00068{bottom:451.333333pt;}
.y1c_c00068{bottom:469.920000pt;}
.y1b_c00068{bottom:489.120000pt;}
.y1a_c00068{bottom:489.453333pt;}
.y19_c00068{bottom:490.386667pt;}
.y18_c00068{bottom:508.586667pt;}
.y17_c00068{bottom:528.120000pt;}
.y16_c00068{bottom:546.386667pt;}
.y15_c00068{bottom:547.000000pt;}
.y14_c00068{bottom:547.333333pt;}
.y13_c00068{bottom:548.333333pt;}
.y12_c00068{bottom:548.920000pt;}
.y11_c00068{bottom:565.920000pt;}
.y10_c00068{bottom:566.520000pt;}
.yf_c00068{bottom:567.520000pt;}
.ye_c00068{bottom:568.120000pt;}
.yd_c00068{bottom:586.386667pt;}
.yc_c00068{bottom:605.853333pt;}
.yb_c00068{bottom:671.853333pt;}
.ya_c00068{bottom:719.186667pt;}
.y9_c00068{bottom:779.053333pt;}
.y8_c00068{bottom:820.933333pt;}
.y7_c00068{bottom:850.386667pt;}
.y6_c00068{bottom:964.000000pt;}
.y4_c00068{bottom:970.666667pt;}
.y5_c00068{bottom:978.266667pt;}
.y1_c00068{bottom:1034.053333pt;}
.y2_c00068{bottom:1034.133333pt;}
.y3_c00068{bottom:1034.386667pt;}
.h1_c00068{height:15.703125pt;}
.h7_c00068{height:36.640625pt;}
.h5_c00068{height:47.109375pt;}
.h6_c00068{height:48.375000pt;}
.h2_c00068{height:53.750000pt;}
.hb_c00068{height:57.578125pt;}
.ha_c00068{height:62.812500pt;}
.hc_c00068{height:68.013021pt;}
.h8_c00068{height:69.875000pt;}
.h9_c00068{height:73.244792pt;}
.h3_c00068{height:73.281250pt;}
.h4_c00068{height:78.515625pt;}
.h0_c00068{height:1044.000000pt;}
.w0_c00068{width:650.646400pt;}
.w1_c00068{width:650.666667pt;}
.x9_c00068{left:-18.897600pt;}
.x0_c00068{left:0.000000pt;}
.xf_c00068{left:49.235733pt;}
.x1f_c00068{left:50.235733pt;}
.x1e_c00068{left:51.502400pt;}
.x22_c00068{left:52.435733pt;}
.x24_c00068{left:53.769067pt;}
.x26_c00068{left:55.035733pt;}
.x2b_c00068{left:56.302400pt;}
.x18_c00068{left:65.902400pt;}
.xa_c00068{left:69.102400pt;}
.x27_c00068{left:71.635733pt;}
.xe_c00068{left:78.702400pt;}
.x10_c00068{left:80.302400pt;}
.x23_c00068{left:81.902400pt;}
.x2c_c00068{left:100.769067pt;}
.xd_c00068{left:106.569067pt;}
.x11_c00068{left:108.435733pt;}
.x2d_c00068{left:128.969067pt;}
.x2e_c00068{left:143.369067pt;}
.x14_c00068{left:145.902400pt;}
.x19_c00068{left:151.969067pt;}
.x1_c00068{left:157.769067pt;}
.x2_c00068{left:159.035733pt;}
.x3_c00068{left:166.702400pt;}
.x4_c00068{left:167.635733pt;}
.x5_c00068{left:184.969067pt;}
.xb_c00068{left:193.902400pt;}
.xc_c00068{left:208.969067pt;}
.x15_c00068{left:216.969067pt;}
.x1c_c00068{left:228.169067pt;}
.x1a_c00068{left:232.969067pt;}
.x1d_c00068{left:260.169067pt;}
.x6_c00068{left:266.235733pt;}
.x28_c00068{left:308.169067pt;}
.x12_c00068{left:321.902400pt;}
.x16_c00068{left:358.689067pt;}
.x25_c00068{left:380.169067pt;}
.x13_c00068{left:390.355733pt;}
.x29_c00068{left:394.235733pt;}
.x7_c00068{left:416.969067pt;}
.x17_c00068{left:427.502400pt;}
.x1b_c00068{left:453.102400pt;}
.x20_c00068{left:485.435733pt;}
.x21_c00068{left:518.369067pt;}
.x8_c00068{left:570.835733pt;}
.x2a_c00068{left:580.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69522e51a4af13268d531cd2.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00069;src:url('chunks/assets/font_fde47e22aa9081d1051ea81a.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00069;src:url('chunks/assets/font_446c9925086f17c66a8473ae.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00069;src:url('chunks/assets/font_1f5286b2678340b9948636ea.woff2')format("woff");}.ff4_c00069{font-family:ff4_c00069;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00069{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me_c00069{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb_c00069{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c00069{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c00069{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma_c00069{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c00069{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00069{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c00069{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c00069{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2_c00069{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00069{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00069{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8_c00069{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1_c00069{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.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;}
}
.ws0_c00069{word-spacing:0.000000px;}
.fc0_c00069{color:transparent;}
.fs1_c00069{font-size:54.000000px;}
.fs2_c00069{font-size:60.000000px;}
.fs3_c00069{font-size:72.000000px;}
.fs0_c00069{font-size:78.000000px;}
.y0_c00069{bottom:0.000000px;}
.y18_c00069{bottom:854.460000px;}
.y17_c00069{bottom:855.900000px;}
.y16_c00069{bottom:856.650000px;}
.y15_c00069{bottom:877.500000px;}
.y14_c00069{bottom:899.085000px;}
.y13_c00069{bottom:920.310000px;}
.y12_c00069{bottom:941.925000px;}
.y11_c00069{bottom:963.210000px;}
.y10_c00069{bottom:984.375000px;}
.yb_c00069{bottom:1002.060000px;}
.yc_c00069{bottom:1004.250000px;}
.yd_c00069{bottom:1004.925000px;}
.ye_c00069{bottom:1006.050000px;}
.yf_c00069{bottom:1006.335000px;}
.y7_c00069{bottom:1022.550000px;}
.y8_c00069{bottom:1024.335000px;}
.y9_c00069{bottom:1025.835000px;}
.ya_c00069{bottom:1027.275000px;}
.y6_c00069{bottom:1046.025000px;}
.y4_c00069{bottom:1047.435000px;}
.y5_c00069{bottom:1048.185000px;}
.y1_c00069{bottom:1101.060000px;}
.y2_c00069{bottom:1101.435000px;}
.y3_c00069{bottom:1105.335000px;}
.h2_c00069{height:52.998047px;}
.h3_c00069{height:60.468750px;}
.h4_c00069{height:70.628906px;}
.h1_c00069{height:76.552734px;}
.h0_c00069{height:1174.500000px;}
.w0_c00069{width:731.977200px;}
.w1_c00069{width:732.000000px;}
.x0_c00069{left:0.000000px;}
.x10_c00069{left:56.515200px;}
.xf_c00069{left:57.940200px;}
.xe_c00069{left:58.990200px;}
.x4_c00069{left:61.165200px;}
.x1_c00069{left:82.090200px;}
.xd_c00069{left:89.590200px;}
.x2_c00069{left:100.090200px;}
.x7_c00069{left:136.765200px;}
.xa_c00069{left:147.565200px;}
.x8_c00069{left:249.490200px;}
.xb_c00069{left:260.965200px;}
.x11_c00069{left:266.365200px;}
.x9_c00069{left:274.690200px;}
.x3_c00069{left:280.765200px;}
.xc_c00069{left:422.275200px;}
.x12_c00069{left:434.140200px;}
.x5_c00069{left:579.940200px;}
.x6_c00069{left:613.765200px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls0_c00069{letter-spacing:0.000000pt;}
.ws0_c00069{word-spacing:0.000000pt;}
.fs1_c00069{font-size:48.000000pt;}
.fs2_c00069{font-size:53.333333pt;}
.fs3_c00069{font-size:64.000000pt;}
.fs0_c00069{font-size:69.333333pt;}
.y0_c00069{bottom:0.000000pt;}
.y18_c00069{bottom:759.520000pt;}
.y17_c00069{bottom:760.800000pt;}
.y16_c00069{bottom:761.466667pt;}
.y15_c00069{bottom:780.000000pt;}
.y14_c00069{bottom:799.186667pt;}
.y13_c00069{bottom:818.053333pt;}
.y12_c00069{bottom:837.266667pt;}
.y11_c00069{bottom:856.186667pt;}
.y10_c00069{bottom:875.000000pt;}
.yb_c00069{bottom:890.720000pt;}
.yc_c00069{bottom:892.666667pt;}
.yd_c00069{bottom:893.266667pt;}
.ye_c00069{bottom:894.266667pt;}
.yf_c00069{bottom:894.520000pt;}
.y7_c00069{bottom:908.933333pt;}
.y8_c00069{bottom:910.520000pt;}
.y9_c00069{bottom:911.853333pt;}
.ya_c00069{bottom:913.133333pt;}
.y6_c00069{bottom:929.800000pt;}
.y4_c00069{bottom:931.053333pt;}
.y5_c00069{bottom:931.720000pt;}
.y1_c00069{bottom:978.720000pt;}
.y2_c00069{bottom:979.053333pt;}
.y3_c00069{bottom:982.520000pt;}
.h2_c00069{height:47.109375pt;}
.h3_c00069{height:53.750000pt;}
.h4_c00069{height:62.781250pt;}
.h1_c00069{height:68.046875pt;}
.h0_c00069{height:1044.000000pt;}
.w0_c00069{width:650.646400pt;}
.w1_c00069{width:650.666667pt;}
.x0_c00069{left:0.000000pt;}
.x10_c00069{left:50.235733pt;}
.xf_c00069{left:51.502400pt;}
.xe_c00069{left:52.435733pt;}
.x4_c00069{left:54.369067pt;}
.x1_c00069{left:72.969067pt;}
.xd_c00069{left:79.635733pt;}
.x2_c00069{left:88.969067pt;}
.x7_c00069{left:121.569067pt;}
.xa_c00069{left:131.169067pt;}
.x8_c00069{left:221.769067pt;}
.xb_c00069{left:231.969067pt;}
.x11_c00069{left:236.769067pt;}
.x9_c00069{left:244.169067pt;}
.x3_c00069{left:249.569067pt;}
.xc_c00069{left:375.355733pt;}
.x12_c00069{left:385.902400pt;}
.x5_c00069{left:515.502400pt;}
.x6_c00069{left:545.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dda7b352f253753614f8afa7.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00070;src:url('chunks/assets/font_92ef78534f9ae139f46681d2.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00070;src:url('chunks/assets/font_beb53b89755659dafa6e1317.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00070;src:url('chunks/assets/font_e9dfa96bde8aa1ebbf017fe4.woff2')format("woff");}.ff4_c00070{font-family:ff4_c00070;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00070{transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);}
.m2_c00070{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m4_c00070{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m3_c00070{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m12_c00070{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me_c00070{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00070{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf_c00070{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc_c00070{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m18_c00070{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md_c00070{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c00070{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c00070{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m10_c00070{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00070{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m19_c00070{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c00070{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c00070{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00070{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00070{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c00070{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c00070{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00070{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c00070{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c00070{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c00070{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c00070{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00070{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma_c00070{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00070{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m21_c00070{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c00070{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5_c00070{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00070{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.v1_c00070{vertical-align:3.000000px;}
.v2_c00070{vertical-align:8.400000px;}
.v3_c00070{vertical-align:15.900000px;}
.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;}
}
.ws5_c00070{word-spacing:0.000000px;}
.ws3_c00070{word-spacing:191.551442px;}
.ws2_c00070{word-spacing:224.604842px;}
.ws1_c00070{word-spacing:224.765041px;}
.ws4_c00070{word-spacing:225.886436px;}
.ws0_c00070{word-spacing:255.332410px;}
._0_c00070{margin-left:-11.332391px;}
.fc0_c00070{color:transparent;}
.fs6_c00070{font-size:48.000000px;}
.fs3_c00070{font-size:54.000000px;}
.fs0_c00070{font-size:60.000000px;}
.fs4_c00070{font-size:66.000000px;}
.fs5_c00070{font-size:72.000000px;}
.fs1_c00070{font-size:78.000000px;}
.fs2_c00070{font-size:84.000000px;}
.y0_c00070{bottom:0.000000px;}
.y41_c00070{bottom:67.500000px;}
.y3e_c00070{bottom:89.460000px;}
.y3f_c00070{bottom:89.760000px;}
.y40_c00070{bottom:91.260000px;}
.y3d_c00070{bottom:110.685000px;}
.y3c_c00070{bottom:131.625000px;}
.y3b_c00070{bottom:152.460000px;}
.y37_c00070{bottom:201.810000px;}
.y38_c00070{bottom:202.185000px;}
.y36_c00070{bottom:202.500000px;}
.y39_c00070{bottom:202.785000px;}
.y35_c00070{bottom:203.250000px;}
.y3a_c00070{bottom:206.760000px;}
.y34_c00070{bottom:219.060000px;}
.y33_c00070{bottom:219.810000px;}
.y32_c00070{bottom:220.125000px;}
.y2e_c00070{bottom:253.560000px;}
.y2c_c00070{bottom:253.935000px;}
.y2d_c00070{bottom:254.025000px;}
.y2f_c00070{bottom:254.310000px;}
.y30_c00070{bottom:255.435000px;}
.y31_c00070{bottom:257.910000px;}
.y2b_c00070{bottom:270.900000px;}
.y2a_c00070{bottom:271.650000px;}
.y27_c00070{bottom:317.685000px;}
.y28_c00070{bottom:319.125000px;}
.y29_c00070{bottom:321.660000px;}
.y26_c00070{bottom:366.285000px;}
.y25_c00070{bottom:367.410000px;}
.y24_c00070{bottom:388.560000px;}
.y22_c00070{bottom:409.875000px;}
.y23_c00070{bottom:410.160000px;}
.y1e_c00070{bottom:431.460000px;}
.y1f_c00070{bottom:431.760000px;}
.y20_c00070{bottom:431.835000px;}
.y21_c00070{bottom:432.135000px;}
.y1b_c00070{bottom:453.375000px;}
.y1c_c00070{bottom:453.435000px;}
.y1d_c00070{bottom:453.810000px;}
.y18_c00070{bottom:475.335000px;}
.y19_c00070{bottom:475.710000px;}
.y1a_c00070{bottom:476.085000px;}
.y17_c00070{bottom:497.685000px;}
.y16_c00070{bottom:519.660000px;}
.y15_c00070{bottom:541.560000px;}
.y12_c00070{bottom:562.875000px;}
.y13_c00070{bottom:563.160000px;}
.y14_c00070{bottom:563.250000px;}
.y10_c00070{bottom:584.835000px;}
.y11_c00070{bottom:585.210000px;}
.yf_c00070{bottom:606.810000px;}
.yd_c00070{bottom:628.335000px;}
.ye_c00070{bottom:628.410000px;}
.yc_c00070{bottom:694.635000px;}
.yb_c00070{bottom:712.935000px;}
.ya_c00070{bottom:808.050000px;}
.y9_c00070{bottom:827.835000px;}
.y8_c00070{bottom:829.275000px;}
.y7_c00070{bottom:847.650000px;}
.y6_c00070{bottom:865.650000px;}
.y3_c00070{bottom:867.375000px;}
.y4_c00070{bottom:867.435000px;}
.y5_c00070{bottom:867.750000px;}
.y2_c00070{bottom:904.125000px;}
.y1_c00070{bottom:1077.675000px;}
.h9_c00070{height:47.109375px;}
.h4_c00070{height:54.421875px;}
.h1_c00070{height:58.886719px;}
.h6_c00070{height:64.775391px;}
.h7_c00070{height:70.628906px;}
.hb_c00070{height:72.275391px;}
.h5_c00070{height:76.514648px;}
.h2_c00070{height:76.552734px;}
.h8_c00070{height:78.609375px;}
.ha_c00070{height:80.675391px;}
.h3_c00070{height:82.441406px;}
.h0_c00070{height:1174.500000px;}
.w0_c00070{width:731.977200px;}
.w1_c00070{width:732.000000px;}
.x0_c00070{left:0.000000px;}
.xb_c00070{left:52.165200px;}
.x3_c00070{left:53.290200px;}
.x18_c00070{left:54.340200px;}
.x4_c00070{left:55.390200px;}
.x28_c00070{left:56.515200px;}
.x34_c00070{left:57.565200px;}
.x5_c00070{left:58.990200px;}
.x6_c00070{left:63.340200px;}
.x7_c00070{left:74.140200px;}
.xd_c00070{left:76.675200px;}
.x24_c00070{left:84.175200px;}
.xf_c00070{left:86.365200px;}
.x15_c00070{left:88.165200px;}
.x33_c00070{left:89.590200px;}
.xc_c00070{left:93.550200px;}
.x30_c00070{left:103.690200px;}
.x8_c00070{left:121.990200px;}
.x2b_c00070{left:135.340200px;}
.x35_c00070{left:138.565200px;}
.x1f_c00070{left:150.115200px;}
.x22_c00070{left:153.340200px;}
.xe_c00070{left:157.315200px;}
.x2e_c00070{left:159.790200px;}
.x31_c00070{left:170.965200px;}
.x1b_c00070{left:173.500200px;}
.x1e_c00070{left:176.365200px;}
.x16_c00070{left:190.375200px;}
.x2f_c00070{left:192.190200px;}
.x19_c00070{left:193.315200px;}
.x2_c00070{left:198.340200px;}
.x11_c00070{left:226.090200px;}
.x29_c00070{left:231.790200px;}
.x1a_c00070{left:233.590200px;}
.x20_c00070{left:240.115200px;}
.x23_c00070{left:243.340200px;}
.x36_c00070{left:244.765200px;}
.x1c_c00070{left:264.940200px;}
.x1_c00070{left:266.740200px;}
.x25_c00070{left:270.340200px;}
.x37_c00070{left:272.515200px;}
.x32_c00070{left:275.740200px;}
.x2a_c00070{left:276.790200px;}
.x1d_c00070{left:325.765200px;}
.x12_c00070{left:327.940200px;}
.x38_c00070{left:331.540200px;}
.x9_c00070{left:344.140200px;}
.xa_c00070{left:349.165200px;}
.x10_c00070{left:375.775200px;}
.x2c_c00070{left:386.965200px;}
.x21_c00070{left:394.525200px;}
.x17_c00070{left:412.150200px;}
.x13_c00070{left:469.090200px;}
.x2d_c00070{left:496.390200px;}
.x26_c00070{left:497.515200px;}
.x14_c00070{left:515.890200px;}
.x27_c00070{left:605.515200px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.v1_c00070{vertical-align:2.666667pt;}
.v2_c00070{vertical-align:7.466667pt;}
.v3_c00070{vertical-align:14.133333pt;}
.ls0_c00070{letter-spacing:0.000000pt;}
.ws5_c00070{word-spacing:0.000000pt;}
.ws3_c00070{word-spacing:170.267948pt;}
.ws2_c00070{word-spacing:199.648748pt;}
.ws1_c00070{word-spacing:199.791148pt;}
.ws4_c00070{word-spacing:200.787944pt;}
.ws0_c00070{word-spacing:226.962142pt;}
._0_c00070{margin-left:-10.073236pt;}
.fs6_c00070{font-size:42.666667pt;}
.fs3_c00070{font-size:48.000000pt;}
.fs0_c00070{font-size:53.333333pt;}
.fs4_c00070{font-size:58.666667pt;}
.fs5_c00070{font-size:64.000000pt;}
.fs1_c00070{font-size:69.333333pt;}
.fs2_c00070{font-size:74.666667pt;}
.y0_c00070{bottom:0.000000pt;}
.y41_c00070{bottom:60.000000pt;}
.y3e_c00070{bottom:79.520000pt;}
.y3f_c00070{bottom:79.786667pt;}
.y40_c00070{bottom:81.120000pt;}
.y3d_c00070{bottom:98.386667pt;}
.y3c_c00070{bottom:117.000000pt;}
.y3b_c00070{bottom:135.520000pt;}
.y37_c00070{bottom:179.386667pt;}
.y38_c00070{bottom:179.720000pt;}
.y36_c00070{bottom:180.000000pt;}
.y39_c00070{bottom:180.253333pt;}
.y35_c00070{bottom:180.666667pt;}
.y3a_c00070{bottom:183.786667pt;}
.y34_c00070{bottom:194.720000pt;}
.y33_c00070{bottom:195.386667pt;}
.y32_c00070{bottom:195.666667pt;}
.y2e_c00070{bottom:225.386667pt;}
.y2c_c00070{bottom:225.720000pt;}
.y2d_c00070{bottom:225.800000pt;}
.y2f_c00070{bottom:226.053333pt;}
.y30_c00070{bottom:227.053333pt;}
.y31_c00070{bottom:229.253333pt;}
.y2b_c00070{bottom:240.800000pt;}
.y2a_c00070{bottom:241.466667pt;}
.y27_c00070{bottom:282.386667pt;}
.y28_c00070{bottom:283.666667pt;}
.y29_c00070{bottom:285.920000pt;}
.y26_c00070{bottom:325.586667pt;}
.y25_c00070{bottom:326.586667pt;}
.y24_c00070{bottom:345.386667pt;}
.y22_c00070{bottom:364.333333pt;}
.y23_c00070{bottom:364.586667pt;}
.y1e_c00070{bottom:383.520000pt;}
.y1f_c00070{bottom:383.786667pt;}
.y20_c00070{bottom:383.853333pt;}
.y21_c00070{bottom:384.120000pt;}
.y1b_c00070{bottom:403.000000pt;}
.y1c_c00070{bottom:403.053333pt;}
.y1d_c00070{bottom:403.386667pt;}
.y18_c00070{bottom:422.520000pt;}
.y19_c00070{bottom:422.853333pt;}
.y1a_c00070{bottom:423.186667pt;}
.y17_c00070{bottom:442.386667pt;}
.y16_c00070{bottom:461.920000pt;}
.y15_c00070{bottom:481.386667pt;}
.y12_c00070{bottom:500.333333pt;}
.y13_c00070{bottom:500.586667pt;}
.y14_c00070{bottom:500.666667pt;}
.y10_c00070{bottom:519.853333pt;}
.y11_c00070{bottom:520.186667pt;}
.yf_c00070{bottom:539.386667pt;}
.yd_c00070{bottom:558.520000pt;}
.ye_c00070{bottom:558.586667pt;}
.yc_c00070{bottom:617.453333pt;}
.yb_c00070{bottom:633.720000pt;}
.ya_c00070{bottom:718.266667pt;}
.y9_c00070{bottom:735.853333pt;}
.y8_c00070{bottom:737.133333pt;}
.y7_c00070{bottom:753.466667pt;}
.y6_c00070{bottom:769.466667pt;}
.y3_c00070{bottom:771.000000pt;}
.y4_c00070{bottom:771.053333pt;}
.y5_c00070{bottom:771.333333pt;}
.y2_c00070{bottom:803.666667pt;}
.y1_c00070{bottom:957.933333pt;}
.h9_c00070{height:41.875000pt;}
.h4_c00070{height:48.375000pt;}
.h1_c00070{height:52.343750pt;}
.h6_c00070{height:57.578125pt;}
.h7_c00070{height:62.781250pt;}
.hb_c00070{height:64.244792pt;}
.h5_c00070{height:68.013021pt;}
.h2_c00070{height:68.046875pt;}
.h8_c00070{height:69.875000pt;}
.ha_c00070{height:71.711458pt;}
.h3_c00070{height:73.281250pt;}
.h0_c00070{height:1044.000000pt;}
.w0_c00070{width:650.646400pt;}
.w1_c00070{width:650.666667pt;}
.x0_c00070{left:0.000000pt;}
.xb_c00070{left:46.369067pt;}
.x3_c00070{left:47.369067pt;}
.x18_c00070{left:48.302400pt;}
.x4_c00070{left:49.235733pt;}
.x28_c00070{left:50.235733pt;}
.x34_c00070{left:51.169067pt;}
.x5_c00070{left:52.435733pt;}
.x6_c00070{left:56.302400pt;}
.x7_c00070{left:65.902400pt;}
.xd_c00070{left:68.155733pt;}
.x24_c00070{left:74.822400pt;}
.xf_c00070{left:76.769067pt;}
.x15_c00070{left:78.369067pt;}
.x33_c00070{left:79.635733pt;}
.xc_c00070{left:83.155733pt;}
.x30_c00070{left:92.169067pt;}
.x8_c00070{left:108.435733pt;}
.x2b_c00070{left:120.302400pt;}
.x35_c00070{left:123.169067pt;}
.x1f_c00070{left:133.435733pt;}
.x22_c00070{left:136.302400pt;}
.xe_c00070{left:139.835733pt;}
.x2e_c00070{left:142.035733pt;}
.x31_c00070{left:151.969067pt;}
.x1b_c00070{left:154.222400pt;}
.x1e_c00070{left:156.769067pt;}
.x16_c00070{left:169.222400pt;}
.x2f_c00070{left:170.835733pt;}
.x19_c00070{left:171.835733pt;}
.x2_c00070{left:176.302400pt;}
.x11_c00070{left:200.969067pt;}
.x29_c00070{left:206.035733pt;}
.x1a_c00070{left:207.635733pt;}
.x20_c00070{left:213.435733pt;}
.x23_c00070{left:216.302400pt;}
.x36_c00070{left:217.569067pt;}
.x1c_c00070{left:235.502400pt;}
.x1_c00070{left:237.102400pt;}
.x25_c00070{left:240.302400pt;}
.x37_c00070{left:242.235733pt;}
.x32_c00070{left:245.102400pt;}
.x2a_c00070{left:246.035733pt;}
.x1d_c00070{left:289.569067pt;}
.x12_c00070{left:291.502400pt;}
.x38_c00070{left:294.702400pt;}
.x9_c00070{left:305.902400pt;}
.xa_c00070{left:310.369067pt;}
.x10_c00070{left:334.022400pt;}
.x2c_c00070{left:343.969067pt;}
.x21_c00070{left:350.689067pt;}
.x17_c00070{left:366.355733pt;}
.x13_c00070{left:416.969067pt;}
.x2d_c00070{left:441.235733pt;}
.x26_c00070{left:442.235733pt;}
.x14_c00070{left:458.569067pt;}
.x27_c00070{left:538.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9ec662d422f6f27d39366f9c.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.432129;font-style:normal;font-weight:normal;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_a0f222f856133eebe5ae4d19.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00071;src:url('chunks/assets/font_6a129dd14e5831de1cf72222.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00071;src:url('chunks/assets/font_72ffd99852c9f5fa6e516a2b.woff2')format("woff");}.ff4_c00071{font-family:ff4_c00071;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00071;src:url('chunks/assets/font_5667b23f9bd8eec9fcd81e03.woff2')format("woff");}.ff5_c00071{font-family:ff5_c00071;line-height:1.284180;font-style: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.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.m5_c00071{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m2_c00071{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m22_c00071{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00071{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m18_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);}
.m1a_c00071{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m19_c00071{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c00071{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m11_c00071{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6_c00071{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c00071{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c00071{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c00071{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c00071{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9_c00071{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c00071{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00071{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c00071{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00071{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m15_c00071{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00071{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c00071{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c00071{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c00071{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00071{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00071{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00071{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m23_c00071{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00071{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00071{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m21_c00071{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00071{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mb_c00071{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m20_c00071{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3_c00071{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00071{color:transparent;}
.fs1_c00071{font-size:30.000000px;}
.fs0_c00071{font-size:36.000000px;}
.fs3_c00071{font-size:54.000000px;}
.fs5_c00071{font-size:66.000000px;}
.fs4_c00071{font-size:72.000000px;}
.fs2_c00071{font-size:78.000000px;}
.y0_c00071{bottom:0.000000px;}
.y5e_c00071{bottom:77.535000px;}
.y5d_c00071{bottom:80.460000px;}
.y5c_c00071{bottom:84.750000px;}
.y5b_c00071{bottom:88.035000px;}
.y5a_c00071{bottom:89.835000px;}
.y59_c00071{bottom:90.885000px;}
.y58_c00071{bottom:94.875000px;}
.y57_c00071{bottom:156.810000px;}
.y56_c00071{bottom:164.685000px;}
.y55_c00071{bottom:184.500000px;}
.y54_c00071{bottom:191.310000px;}
.y53_c00071{bottom:195.285000px;}
.y52_c00071{bottom:208.635000px;}
.y51_c00071{bottom:227.010000px;}
.y50_c00071{bottom:227.310000px;}
.y4f_c00071{bottom:234.885000px;}
.y4e_c00071{bottom:248.910000px;}
.y4d_c00071{bottom:251.760000px;}
.y4c_c00071{bottom:257.250000px;}
.y4b_c00071{bottom:263.685000px;}
.y4a_c00071{bottom:271.935000px;}
.y49_c00071{bottom:275.910000px;}
.y48_c00071{bottom:278.460000px;}
.y47_c00071{bottom:280.275000px;}
.y46_c00071{bottom:283.500000px;}
.y45_c00071{bottom:299.685000px;}
.y44_c00071{bottom:317.685000px;}
.y43_c00071{bottom:326.025000px;}
.y42_c00071{bottom:327.060000px;}
.y41_c00071{bottom:339.285000px;}
.y40_c00071{bottom:364.125000px;}
.y3f_c00071{bottom:385.035000px;}
.y3e_c00071{bottom:412.035000px;}
.y3d_c00071{bottom:427.125000px;}
.y3c_c00071{bottom:451.635000px;}
.y3b_c00071{bottom:454.875000px;}
.y2_c00071{bottom:467.085000px;}
.y3a_c00071{bottom:471.750000px;}
.y1_c00071{bottom:477.135000px;}
.y39_c00071{bottom:495.510000px;}
.y37_c00071{bottom:547.035000px;}
.y38_c00071{bottom:547.410000px;}
.y36_c00071{bottom:548.085000px;}
.y35_c00071{bottom:548.835000px;}
.y33_c00071{bottom:564.660000px;}
.y34_c00071{bottom:565.410000px;}
.y32_c00071{bottom:566.085000px;}
.y2f_c00071{bottom:581.910000px;}
.y31_c00071{bottom:582.285000px;}
.y30_c00071{bottom:582.660000px;}
.y2e_c00071{bottom:583.035000px;}
.y2d_c00071{bottom:583.335000px;}
.y2b_c00071{bottom:599.625000px;}
.y2a_c00071{bottom:600.285000px;}
.y2c_c00071{bottom:600.660000px;}
.y27_c00071{bottom:617.160000px;}
.y26_c00071{bottom:617.250000px;}
.y29_c00071{bottom:617.910000px;}
.y28_c00071{bottom:618.285000px;}
.y22_c00071{bottom:663.285000px;}
.y23_c00071{bottom:664.035000px;}
.y24_c00071{bottom:665.085000px;}
.y25_c00071{bottom:665.460000px;}
.y21_c00071{bottom:715.875000px;}
.y20_c00071{bottom:740.325000px;}
.y1e_c00071{bottom:757.950000px;}
.y1f_c00071{bottom:762.960000px;}
.y1d_c00071{bottom:782.085000px;}
.y1c_c00071{bottom:805.185000px;}
.y1b_c00071{bottom:826.710000px;}
.y18_c00071{bottom:844.800000px;}
.y19_c00071{bottom:848.310000px;}
.y1a_c00071{bottom:852.300000px;}
.y17_c00071{bottom:870.300000px;}
.y16_c00071{bottom:887.925000px;}
.y14_c00071{bottom:900.150000px;}
.y15_c00071{bottom:912.435000px;}
.y13_c00071{bottom:934.050000px;}
.y12_c00071{bottom:956.025000px;}
.yf_c00071{bottom:967.875000px;}
.y10_c00071{bottom:970.050000px;}
.y11_c00071{bottom:979.335000px;}
.ye_c00071{bottom:987.675000px;}
.ya_c00071{bottom:1008.150000px;}
.yb_c00071{bottom:1013.625000px;}
.yc_c00071{bottom:1016.835000px;}
.yd_c00071{bottom:1024.425000px;}
.y8_c00071{bottom:1036.650000px;}
.y9_c00071{bottom:1047.060000px;}
.y3_c00071{bottom:1086.585000px;}
.y5_c00071{bottom:1096.710000px;}
.y6_c00071{bottom:1099.935000px;}
.y7_c00071{bottom:1100.310000px;}
.y4_c00071{bottom:1101.585000px;}
.h2_c00071{height:31.289062px;}
.h1_c00071{height:37.546875px;}
.h4_c00071{height:52.998047px;}
.h8_c00071{height:54.421875px;}
.ha_c00071{height:64.775391px;}
.h9_c00071{height:66.515625px;}
.h6_c00071{height:70.628906px;}
.h7_c00071{height:70.664062px;}
.h3_c00071{height:76.552734px;}
.h5_c00071{height:78.609375px;}
.h0_c00071{height:1174.500000px;}
.w0_c00071{width:731.977200px;}
.w1_c00071{width:732.000000px;}
.x0_c00071{left:0.000000px;}
.x11_c00071{left:47.890200px;}
.xe_c00071{left:48.940200px;}
.xa_c00071{left:49.990200px;}
.x2a_c00071{left:51.790200px;}
.x2f_c00071{left:53.590200px;}
.x3_c00071{left:65.890200px;}
.x2b_c00071{left:70.165200px;}
.x2c_c00071{left:71.965200px;}
.x29_c00071{left:73.090200px;}
.x1a_c00071{left:74.515200px;}
.x8_c00071{left:78.115200px;}
.x13_c00071{left:79.165200px;}
.x28_c00071{left:80.965200px;}
.x12_c00071{left:82.090200px;}
.x4_c00071{left:83.515200px;}
.x16_c00071{left:94.990200px;}
.x1b_c00071{left:96.115200px;}
.x2d_c00071{left:107.965200px;}
.x1c_c00071{left:110.515200px;}
.x2e_c00071{left:113.365200px;}
.x21_c00071{left:129.190200px;}
.x23_c00071{left:130.315200px;}
.xf_c00071{left:159.115200px;}
.x30_c00071{left:160.165200px;}
.x3a_c00071{left:165.190200px;}
.x1d_c00071{left:171.340200px;}
.xb_c00071{left:174.565200px;}
.x24_c00071{left:188.290200px;}
.x10_c00071{left:190.750200px;}
.x3b_c00071{left:201.190200px;}
.x31_c00071{left:204.490200px;}
.x3c_c00071{left:220.690200px;}
.x32_c00071{left:255.190200px;}
.x38_c00071{left:256.990200px;}
.x5_c00071{left:263.140200px;}
.xc_c00071{left:264.565200px;}
.x39_c00071{left:267.115200px;}
.x3d_c00071{left:283.990200px;}
.x17_c00071{left:293.740200px;}
.x1e_c00071{left:307.765200px;}
.x25_c00071{left:309.190200px;}
.x3e_c00071{left:323.290200px;}
.xd_c00071{left:327.940200px;}
.x33_c00071{left:343.765200px;}
.x14_c00071{left:359.590200px;}
.x15_c00071{left:378.715200px;}
.x34_c00071{left:381.565200px;}
.x6_c00071{left:403.150200px;}
.x7_c00071{left:412.525200px;}
.x18_c00071{left:433.390200px;}
.x1f_c00071{left:444.565200px;}
.x26_c00071{left:445.690200px;}
.x35_c00071{left:460.090200px;}
.x3f_c00071{left:483.490200px;}
.x9_c00071{left:485.965200px;}
.x36_c00071{left:487.390200px;}
.x19_c00071{left:533.515200px;}
.x37_c00071{left:545.740200px;}
.x22_c00071{left:587.140200px;}
.x27_c00071{left:588.190200px;}
.x20_c00071{left:595.765200px;}
.x2_c00071{left:746.950200px;}
.x1_c00071{left:759.190200px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls0_c00071{letter-spacing:0.000000pt;}
.ws0_c00071{word-spacing:0.000000pt;}
.fs1_c00071{font-size:26.666667pt;}
.fs0_c00071{font-size:32.000000pt;}
.fs3_c00071{font-size:48.000000pt;}
.fs5_c00071{font-size:58.666667pt;}
.fs4_c00071{font-size:64.000000pt;}
.fs2_c00071{font-size:69.333333pt;}
.y0_c00071{bottom:0.000000pt;}
.y5e_c00071{bottom:68.920000pt;}
.y5d_c00071{bottom:71.520000pt;}
.y5c_c00071{bottom:75.333333pt;}
.y5b_c00071{bottom:78.253333pt;}
.y5a_c00071{bottom:79.853333pt;}
.y59_c00071{bottom:80.786667pt;}
.y58_c00071{bottom:84.333333pt;}
.y57_c00071{bottom:139.386667pt;}
.y56_c00071{bottom:146.386667pt;}
.y55_c00071{bottom:164.000000pt;}
.y54_c00071{bottom:170.053333pt;}
.y53_c00071{bottom:173.586667pt;}
.y52_c00071{bottom:185.453333pt;}
.y51_c00071{bottom:201.786667pt;}
.y50_c00071{bottom:202.053333pt;}
.y4f_c00071{bottom:208.786667pt;}
.y4e_c00071{bottom:221.253333pt;}
.y4d_c00071{bottom:223.786667pt;}
.y4c_c00071{bottom:228.666667pt;}
.y4b_c00071{bottom:234.386667pt;}
.y4a_c00071{bottom:241.720000pt;}
.y49_c00071{bottom:245.253333pt;}
.y48_c00071{bottom:247.520000pt;}
.y47_c00071{bottom:249.133333pt;}
.y46_c00071{bottom:252.000000pt;}
.y45_c00071{bottom:266.386667pt;}
.y44_c00071{bottom:282.386667pt;}
.y43_c00071{bottom:289.800000pt;}
.y42_c00071{bottom:290.720000pt;}
.y41_c00071{bottom:301.586667pt;}
.y40_c00071{bottom:323.666667pt;}
.y3f_c00071{bottom:342.253333pt;}
.y3e_c00071{bottom:366.253333pt;}
.y3d_c00071{bottom:379.666667pt;}
.y3c_c00071{bottom:401.453333pt;}
.y3b_c00071{bottom:404.333333pt;}
.y2_c00071{bottom:415.186667pt;}
.y3a_c00071{bottom:419.333333pt;}
.y1_c00071{bottom:424.120000pt;}
.y39_c00071{bottom:440.453333pt;}
.y37_c00071{bottom:486.253333pt;}
.y38_c00071{bottom:486.586667pt;}
.y36_c00071{bottom:487.186667pt;}
.y35_c00071{bottom:487.853333pt;}
.y33_c00071{bottom:501.920000pt;}
.y34_c00071{bottom:502.586667pt;}
.y32_c00071{bottom:503.186667pt;}
.y2f_c00071{bottom:517.253333pt;}
.y31_c00071{bottom:517.586667pt;}
.y30_c00071{bottom:517.920000pt;}
.y2e_c00071{bottom:518.253333pt;}
.y2d_c00071{bottom:518.520000pt;}
.y2b_c00071{bottom:533.000000pt;}
.y2a_c00071{bottom:533.586667pt;}
.y2c_c00071{bottom:533.920000pt;}
.y27_c00071{bottom:548.586667pt;}
.y26_c00071{bottom:548.666667pt;}
.y29_c00071{bottom:549.253333pt;}
.y28_c00071{bottom:549.586667pt;}
.y22_c00071{bottom:589.586667pt;}
.y23_c00071{bottom:590.253333pt;}
.y24_c00071{bottom:591.186667pt;}
.y25_c00071{bottom:591.520000pt;}
.y21_c00071{bottom:636.333333pt;}
.y20_c00071{bottom:658.066667pt;}
.y1e_c00071{bottom:673.733333pt;}
.y1f_c00071{bottom:678.186667pt;}
.y1d_c00071{bottom:695.186667pt;}
.y1c_c00071{bottom:715.720000pt;}
.y1b_c00071{bottom:734.853333pt;}
.y18_c00071{bottom:750.933333pt;}
.y19_c00071{bottom:754.053333pt;}
.y1a_c00071{bottom:757.600000pt;}
.y17_c00071{bottom:773.600000pt;}
.y16_c00071{bottom:789.266667pt;}
.y14_c00071{bottom:800.133333pt;}
.y15_c00071{bottom:811.053333pt;}
.y13_c00071{bottom:830.266667pt;}
.y12_c00071{bottom:849.800000pt;}
.yf_c00071{bottom:860.333333pt;}
.y10_c00071{bottom:862.266667pt;}
.y11_c00071{bottom:870.520000pt;}
.ye_c00071{bottom:877.933333pt;}
.ya_c00071{bottom:896.133333pt;}
.yb_c00071{bottom:901.000000pt;}
.yc_c00071{bottom:903.853333pt;}
.yd_c00071{bottom:910.600000pt;}
.y8_c00071{bottom:921.466667pt;}
.y9_c00071{bottom:930.720000pt;}
.y3_c00071{bottom:965.853333pt;}
.y5_c00071{bottom:974.853333pt;}
.y6_c00071{bottom:977.720000pt;}
.y7_c00071{bottom:978.053333pt;}
.y4_c00071{bottom:979.186667pt;}
.h2_c00071{height:27.812500pt;}
.h1_c00071{height:33.375000pt;}
.h4_c00071{height:47.109375pt;}
.h8_c00071{height:48.375000pt;}
.ha_c00071{height:57.578125pt;}
.h9_c00071{height:59.125000pt;}
.h6_c00071{height:62.781250pt;}
.h7_c00071{height:62.812500pt;}
.h3_c00071{height:68.046875pt;}
.h5_c00071{height:69.875000pt;}
.h0_c00071{height:1044.000000pt;}
.w0_c00071{width:650.646400pt;}
.w1_c00071{width:650.666667pt;}
.x0_c00071{left:0.000000pt;}
.x11_c00071{left:42.569067pt;}
.xe_c00071{left:43.502400pt;}
.xa_c00071{left:44.435733pt;}
.x2a_c00071{left:46.035733pt;}
.x2f_c00071{left:47.635733pt;}
.x3_c00071{left:58.569067pt;}
.x2b_c00071{left:62.369067pt;}
.x2c_c00071{left:63.969067pt;}
.x29_c00071{left:64.969067pt;}
.x1a_c00071{left:66.235733pt;}
.x8_c00071{left:69.435733pt;}
.x13_c00071{left:70.369067pt;}
.x28_c00071{left:71.969067pt;}
.x12_c00071{left:72.969067pt;}
.x4_c00071{left:74.235733pt;}
.x16_c00071{left:84.435733pt;}
.x1b_c00071{left:85.435733pt;}
.x2d_c00071{left:95.969067pt;}
.x1c_c00071{left:98.235733pt;}
.x2e_c00071{left:100.769067pt;}
.x21_c00071{left:114.835733pt;}
.x23_c00071{left:115.835733pt;}
.xf_c00071{left:141.435733pt;}
.x30_c00071{left:142.369067pt;}
.x3a_c00071{left:146.835733pt;}
.x1d_c00071{left:152.302400pt;}
.xb_c00071{left:155.169067pt;}
.x24_c00071{left:167.369067pt;}
.x10_c00071{left:169.555733pt;}
.x3b_c00071{left:178.835733pt;}
.x31_c00071{left:181.769067pt;}
.x3c_c00071{left:196.169067pt;}
.x32_c00071{left:226.835733pt;}
.x38_c00071{left:228.435733pt;}
.x5_c00071{left:233.902400pt;}
.xc_c00071{left:235.169067pt;}
.x39_c00071{left:237.435733pt;}
.x3d_c00071{left:252.435733pt;}
.x17_c00071{left:261.102400pt;}
.x1e_c00071{left:273.569067pt;}
.x25_c00071{left:274.835733pt;}
.x3e_c00071{left:287.369067pt;}
.xd_c00071{left:291.502400pt;}
.x33_c00071{left:305.569067pt;}
.x14_c00071{left:319.635733pt;}
.x15_c00071{left:336.635733pt;}
.x34_c00071{left:339.169067pt;}
.x6_c00071{left:358.355733pt;}
.x7_c00071{left:366.689067pt;}
.x18_c00071{left:385.235733pt;}
.x1f_c00071{left:395.169067pt;}
.x26_c00071{left:396.169067pt;}
.x35_c00071{left:408.969067pt;}
.x3f_c00071{left:429.769067pt;}
.x9_c00071{left:431.969067pt;}
.x36_c00071{left:433.235733pt;}
.x19_c00071{left:474.235733pt;}
.x37_c00071{left:485.102400pt;}
.x22_c00071{left:521.902400pt;}
.x27_c00071{left:522.835733pt;}
.x20_c00071{left:529.569067pt;}
.x2_c00071{left:663.955733pt;}
.x1_c00071{left:674.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_41cc59c92908713a0c888d14.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00072;src:url('chunks/assets/font_fb01a0a5f99535016a8a770f.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00072;src:url('chunks/assets/font_21f6385166638553fe631a5a.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00072;src:url('chunks/assets/font_1353079ef9572918a0fd4104.woff2')format("woff");}.ff4_c00072{font-family:ff4_c00072;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c00072{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00072{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m18_c00072{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.ma_c00072{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m36_c00072{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m8_c00072{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m17_c00072{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m16_c00072{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m15_c00072{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m21_c00072{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m14_c00072{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m23_c00072{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m19_c00072{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m22_c00072{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m13_c00072{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m10_c00072{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m12_c00072{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00072{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00072{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00072{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00072{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6_c00072{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c00072{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc_c00072{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m0_c00072{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5_c00072{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c00072{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00072{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m30_c00072{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c00072{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m32_c00072{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00072{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00072{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11_c00072{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c00072{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00072{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m28_c00072{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00072{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m24_c00072{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00072{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m26_c00072{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00072{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m25_c00072{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m31_c00072{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c00072{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m29_c00072{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00072{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m33_c00072{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf_c00072{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m34_c00072{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mb_c00072{transform:matrix(1.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.235000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00072{transform:matrix(2.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.397500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00072{transform:matrix(2.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.525000,0.000000,0.000000,0.250000,0,0);}
.m20_c00072{transform:matrix(4.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.762500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00072{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.ls0_c00072{letter-spacing:0.000000px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00072{word-spacing:0.000000px;}
.fc0_c00072{color:transparent;}
.fs3_c00072{font-size:30.000000px;}
.fs5_c00072{font-size:48.000000px;}
.fs6_c00072{font-size:66.000000px;}
.fs1_c00072{font-size:72.000000px;}
.fs2_c00072{font-size:78.000000px;}
.fs0_c00072{font-size:84.000000px;}
.fs4_c00072{font-size:114.000000px;}
.y0_c00072{bottom:0.000000px;}
.y4f_c00072{bottom:68.535000px;}
.y50_c00072{bottom:68.910000px;}
.y4e_c00072{bottom:85.875000px;}
.y4d_c00072{bottom:86.160000px;}
.y4b_c00072{bottom:103.185000px;}
.y4c_c00072{bottom:103.500000px;}
.y48_c00072{bottom:119.685000px;}
.y49_c00072{bottom:120.000000px;}
.y4a_c00072{bottom:121.875000px;}
.y47_c00072{bottom:136.560000px;}
.y46_c00072{bottom:136.935000px;}
.y44_c00072{bottom:152.835000px;}
.y43_c00072{bottom:153.510000px;}
.y45_c00072{bottom:156.435000px;}
.y42_c00072{bottom:169.335000px;}
.y41_c00072{bottom:169.710000px;}
.y3f_c00072{bottom:186.000000px;}
.y40_c00072{bottom:186.585000px;}
.y3e_c00072{bottom:202.500000px;}
.y3d_c00072{bottom:203.625000px;}
.y3c_c00072{bottom:294.585000px;}
.y3b_c00072{bottom:316.275000px;}
.y3a_c00072{bottom:337.875000px;}
.y39_c00072{bottom:359.085000px;}
.y38_c00072{bottom:380.310000px;}
.y37_c00072{bottom:402.000000px;}
.y35_c00072{bottom:423.885000px;}
.y36_c00072{bottom:425.685000px;}
.y33_c00072{bottom:445.500000px;}
.y34_c00072{bottom:446.250000px;}
.y2f_c00072{bottom:486.885000px;}
.y2e_c00072{bottom:487.185000px;}
.y31_c00072{bottom:487.635000px;}
.y32_c00072{bottom:488.310000px;}
.y2c_c00072{bottom:491.910000px;}
.y2d_c00072{bottom:496.260000px;}
.y55_c00072{bottom:497.685000px;}
.y2a_c00072{bottom:499.500000px;}
.y2b_c00072{bottom:504.885000px;}
.y30_c00072{bottom:505.935000px;}
.y29_c00072{bottom:508.875000px;}
.y28_c00072{bottom:509.250000px;}
.y27_c00072{bottom:509.535000px;}
.y26_c00072{bottom:509.625000px;}
.y1f_c00072{bottom:526.875000px;}
.y20_c00072{bottom:531.210000px;}
.y22_c00072{bottom:531.885000px;}
.y24_c00072{bottom:532.260000px;}
.y52_c00072{bottom:535.500000px;}
.y1e_c00072{bottom:539.760000px;}
.y23_c00072{bottom:540.135000px;}
.y25_c00072{bottom:540.210000px;}
.y53_c00072{bottom:540.885000px;}
.y54_c00072{bottom:541.635000px;}
.y1d_c00072{bottom:543.000000px;}
.y1c_c00072{bottom:544.500000px;}
.y1b_c00072{bottom:548.835000px;}
.y21_c00072{bottom:549.510000px;}
.y1a_c00072{bottom:579.000000px;}
.y51_c00072{bottom:579.060000px;}
.y19_c00072{bottom:625.125000px;}
.y18_c00072{bottom:647.085000px;}
.y17_c00072{bottom:669.750000px;}
.y16_c00072{bottom:690.660000px;}
.y15_c00072{bottom:712.935000px;}
.y14_c00072{bottom:713.685000px;}
.y13_c00072{bottom:735.660000px;}
.y12_c00072{bottom:756.885000px;}
.y11_c00072{bottom:779.175000px;}
.y10_c00072{bottom:800.460000px;}
.yf_c00072{bottom:802.185000px;}
.ye_c00072{bottom:802.275000px;}
.yd_c00072{bottom:823.125000px;}
.yc_c00072{bottom:845.085000px;}
.ya_c00072{bottom:845.775000px;}
.yb_c00072{bottom:845.835000px;}
.y9_c00072{bottom:867.060000px;}
.y8_c00072{bottom:888.300000px;}
.y7_c00072{bottom:909.900000px;}
.y6_c00072{bottom:932.250000px;}
.y5_c00072{bottom:952.710000px;}
.y4_c00072{bottom:974.685000px;}
.y3_c00072{bottom:996.675000px;}
.y2_c00072{bottom:1017.150000px;}
.y1_c00072{bottom:1019.310000px;}
.h5_c00072{height:30.234375px;}
.h8_c00072{height:47.109375px;}
.h9_c00072{height:64.775391px;}
.h3_c00072{height:70.664062px;}
.h4_c00072{height:76.514648px;}
.h6_c00072{height:81.351562px;}
.h2_c00072{height:82.441406px;}
.h1_c00072{height:84.656250px;}
.h7_c00072{height:111.884766px;}
.h0_c00072{height:1174.500000px;}
.w0_c00072{width:731.977200px;}
.w1_c00072{width:732.000000px;}
.x1e_c00072{left:-21.259800px;}
.x0_c00072{left:0.000000px;}
.x3_c00072{left:65.515200px;}
.x4_c00072{left:66.565200px;}
.x29_c00072{left:68.365200px;}
.xf_c00072{left:82.390200px;}
.x24_c00072{left:84.175200px;}
.x2b_c00072{left:85.300200px;}
.x33_c00072{left:86.740200px;}
.x5_c00072{left:89.590200px;}
.x27_c00072{left:93.175200px;}
.x2e_c00072{left:95.365200px;}
.xa_c00072{left:97.540200px;}
.x1_c00072{left:98.965200px;}
.x6_c00072{left:104.365200px;}
.x7_c00072{left:111.565200px;}
.x1f_c00072{left:115.915200px;}
.x1c_c00072{left:120.190200px;}
.x25_c00072{left:121.315200px;}
.x2c_c00072{left:123.790200px;}
.x31_c00072{left:126.715200px;}
.x8_c00072{left:133.165200px;}
.x32_c00072{left:145.090200px;}
.x17_c00072{left:164.140200px;}
.x2a_c00072{left:176.740200px;}
.x18_c00072{left:179.290200px;}
.x19_c00072{left:194.365200px;}
.x1a_c00072{left:208.750200px;}
.xd_c00072{left:236.890200px;}
.x9_c00072{left:238.990200px;}
.x28_c00072{left:243.340200px;}
.x1d_c00072{left:244.390200px;}
.x1b_c00072{left:246.190200px;}
.x2f_c00072{left:252.340200px;}
.xe_c00072{left:254.890200px;}
.x26_c00072{left:271.390200px;}
.x10_c00072{left:333.340200px;}
.xc_c00072{left:339.115200px;}
.x2_c00072{left:448.915200px;}
.xb_c00072{left:460.090200px;}
.x20_c00072{left:461.890200px;}
.x11_c00072{left:468.715200px;}
.x22_c00072{left:470.140200px;}
.x14_c00072{left:530.590200px;}
.x21_c00072{left:532.390200px;}
.x12_c00072{left:539.290200px;}
.x15_c00072{left:544.990200px;}
.x16_c00072{left:548.590200px;}
.x13_c00072{left:554.365200px;}
.x30_c00072{left:555.790200px;}
.x34_c00072{left:587.140200px;}
.x35_c00072{left:593.290200px;}
.x36_c00072{left:611.965200px;}
.x37_c00072{left:632.890200px;}
.x2d_c00072{left:645.490200px;}
.x23_c00072{left:665.290200px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls0_c00072{letter-spacing:0.000000pt;}
.ws0_c00072{word-spacing:0.000000pt;}
.fs3_c00072{font-size:26.666667pt;}
.fs5_c00072{font-size:42.666667pt;}
.fs6_c00072{font-size:58.666667pt;}
.fs1_c00072{font-size:64.000000pt;}
.fs2_c00072{font-size:69.333333pt;}
.fs0_c00072{font-size:74.666667pt;}
.fs4_c00072{font-size:101.333333pt;}
.y0_c00072{bottom:0.000000pt;}
.y4f_c00072{bottom:60.920000pt;}
.y50_c00072{bottom:61.253333pt;}
.y4e_c00072{bottom:76.333333pt;}
.y4d_c00072{bottom:76.586667pt;}
.y4b_c00072{bottom:91.720000pt;}
.y4c_c00072{bottom:92.000000pt;}
.y48_c00072{bottom:106.386667pt;}
.y49_c00072{bottom:106.666667pt;}
.y4a_c00072{bottom:108.333333pt;}
.y47_c00072{bottom:121.386667pt;}
.y46_c00072{bottom:121.720000pt;}
.y44_c00072{bottom:135.853333pt;}
.y43_c00072{bottom:136.453333pt;}
.y45_c00072{bottom:139.053333pt;}
.y42_c00072{bottom:150.520000pt;}
.y41_c00072{bottom:150.853333pt;}
.y3f_c00072{bottom:165.333333pt;}
.y40_c00072{bottom:165.853333pt;}
.y3e_c00072{bottom:180.000000pt;}
.y3d_c00072{bottom:181.000000pt;}
.y3c_c00072{bottom:261.853333pt;}
.y3b_c00072{bottom:281.133333pt;}
.y3a_c00072{bottom:300.333333pt;}
.y39_c00072{bottom:319.186667pt;}
.y38_c00072{bottom:338.053333pt;}
.y37_c00072{bottom:357.333333pt;}
.y35_c00072{bottom:376.786667pt;}
.y36_c00072{bottom:378.386667pt;}
.y33_c00072{bottom:396.000000pt;}
.y34_c00072{bottom:396.666667pt;}
.y2f_c00072{bottom:432.786667pt;}
.y2e_c00072{bottom:433.053333pt;}
.y31_c00072{bottom:433.453333pt;}
.y32_c00072{bottom:434.053333pt;}
.y2c_c00072{bottom:437.253333pt;}
.y2d_c00072{bottom:441.120000pt;}
.y55_c00072{bottom:442.386667pt;}
.y2a_c00072{bottom:444.000000pt;}
.y2b_c00072{bottom:448.786667pt;}
.y30_c00072{bottom:449.720000pt;}
.y29_c00072{bottom:452.333333pt;}
.y28_c00072{bottom:452.666667pt;}
.y27_c00072{bottom:452.920000pt;}
.y26_c00072{bottom:453.000000pt;}
.y1f_c00072{bottom:468.333333pt;}
.y20_c00072{bottom:472.186667pt;}
.y22_c00072{bottom:472.786667pt;}
.y24_c00072{bottom:473.120000pt;}
.y52_c00072{bottom:476.000000pt;}
.y1e_c00072{bottom:479.786667pt;}
.y23_c00072{bottom:480.120000pt;}
.y25_c00072{bottom:480.186667pt;}
.y53_c00072{bottom:480.786667pt;}
.y54_c00072{bottom:481.453333pt;}
.y1d_c00072{bottom:482.666667pt;}
.y1c_c00072{bottom:484.000000pt;}
.y1b_c00072{bottom:487.853333pt;}
.y21_c00072{bottom:488.453333pt;}
.y1a_c00072{bottom:514.666667pt;}
.y51_c00072{bottom:514.720000pt;}
.y19_c00072{bottom:555.666667pt;}
.y18_c00072{bottom:575.186667pt;}
.y17_c00072{bottom:595.333333pt;}
.y16_c00072{bottom:613.920000pt;}
.y15_c00072{bottom:633.720000pt;}
.y14_c00072{bottom:634.386667pt;}
.y13_c00072{bottom:653.920000pt;}
.y12_c00072{bottom:672.786667pt;}
.y11_c00072{bottom:692.600000pt;}
.y10_c00072{bottom:711.520000pt;}
.yf_c00072{bottom:713.053333pt;}
.ye_c00072{bottom:713.133333pt;}
.yd_c00072{bottom:731.666667pt;}
.yc_c00072{bottom:751.186667pt;}
.ya_c00072{bottom:751.800000pt;}
.yb_c00072{bottom:751.853333pt;}
.y9_c00072{bottom:770.720000pt;}
.y8_c00072{bottom:789.600000pt;}
.y7_c00072{bottom:808.800000pt;}
.y6_c00072{bottom:828.666667pt;}
.y5_c00072{bottom:846.853333pt;}
.y4_c00072{bottom:866.386667pt;}
.y3_c00072{bottom:885.933333pt;}
.y2_c00072{bottom:904.133333pt;}
.y1_c00072{bottom:906.053333pt;}
.h5_c00072{height:26.875000pt;}
.h8_c00072{height:41.875000pt;}
.h9_c00072{height:57.578125pt;}
.h3_c00072{height:62.812500pt;}
.h4_c00072{height:68.013021pt;}
.h6_c00072{height:72.312500pt;}
.h2_c00072{height:73.281250pt;}
.h1_c00072{height:75.250000pt;}
.h7_c00072{height:99.453125pt;}
.h0_c00072{height:1044.000000pt;}
.w0_c00072{width:650.646400pt;}
.w1_c00072{width:650.666667pt;}
.x1e_c00072{left:-18.897600pt;}
.x0_c00072{left:0.000000pt;}
.x3_c00072{left:58.235733pt;}
.x4_c00072{left:59.169067pt;}
.x29_c00072{left:60.769067pt;}
.xf_c00072{left:73.235733pt;}
.x24_c00072{left:74.822400pt;}
.x2b_c00072{left:75.822400pt;}
.x33_c00072{left:77.102400pt;}
.x5_c00072{left:79.635733pt;}
.x27_c00072{left:82.822400pt;}
.x2e_c00072{left:84.769067pt;}
.xa_c00072{left:86.702400pt;}
.x1_c00072{left:87.969067pt;}
.x6_c00072{left:92.769067pt;}
.x7_c00072{left:99.169067pt;}
.x1f_c00072{left:103.035733pt;}
.x1c_c00072{left:106.835733pt;}
.x25_c00072{left:107.835733pt;}
.x2c_c00072{left:110.035733pt;}
.x31_c00072{left:112.635733pt;}
.x8_c00072{left:118.369067pt;}
.x32_c00072{left:128.969067pt;}
.x17_c00072{left:145.902400pt;}
.x2a_c00072{left:157.102400pt;}
.x18_c00072{left:159.369067pt;}
.x19_c00072{left:172.769067pt;}
.x1a_c00072{left:185.555733pt;}
.xd_c00072{left:210.569067pt;}
.x9_c00072{left:212.435733pt;}
.x28_c00072{left:216.302400pt;}
.x1d_c00072{left:217.235733pt;}
.x1b_c00072{left:218.835733pt;}
.x2f_c00072{left:224.302400pt;}
.xe_c00072{left:226.569067pt;}
.x26_c00072{left:241.235733pt;}
.x10_c00072{left:296.302400pt;}
.xc_c00072{left:301.435733pt;}
.x2_c00072{left:399.035733pt;}
.xb_c00072{left:408.969067pt;}
.x20_c00072{left:410.569067pt;}
.x11_c00072{left:416.635733pt;}
.x22_c00072{left:417.902400pt;}
.x14_c00072{left:471.635733pt;}
.x21_c00072{left:473.235733pt;}
.x12_c00072{left:479.369067pt;}
.x15_c00072{left:484.435733pt;}
.x16_c00072{left:487.635733pt;}
.x13_c00072{left:492.769067pt;}
.x30_c00072{left:494.035733pt;}
.x34_c00072{left:521.902400pt;}
.x35_c00072{left:527.369067pt;}
.x36_c00072{left:543.969067pt;}
.x37_c00072{left:562.569067pt;}
.x2d_c00072{left:573.769067pt;}
.x23_c00072{left:591.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0cf7aade6fe96cc0ba3c8565.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00073;src:url('chunks/assets/font_f2c6f61726b3f1ab3a580673.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00073;src:url('chunks/assets/font_2bb796d277c6964d8e85c1ac.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:1.432129;font-style:normal;font-weight:normal;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_d3b8556c65e9fa2e2c81e116.woff2')format("woff");}.ff4_c00073{font-family:ff4_c00073;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00073;src:url('chunks/assets/font_b4eb192423c0d7e92943418c.woff2')format("woff");}.ff5_c00073{font-family:ff5_c00073;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m25_c00073{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc_c00073{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mf_c00073{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m26_c00073{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00073{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5_c00073{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.ma_c00073{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c00073{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c00073{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c00073{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c00073{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00073{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md_c00073{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m27_c00073{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m18_c00073{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00073{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m22_c00073{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m17_c00073{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c00073{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c00073{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m21_c00073{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00073{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m29_c00073{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m24_c00073{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00073{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c00073{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m23_c00073{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m20_c00073{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00073{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00073{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00073{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m19_c00073{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00073{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c00073{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00073{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m13_c00073{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m15_c00073{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m28_c00073{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00073{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.mb_c00073{transform:matrix(3.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.537500,0.000000,0.000000,0.250000,0,0);}
.me_c00073{transform:matrix(3.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.650000,0.000000,0.000000,0.250000,0,0);}
.m1_c00073{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls0_c00073{letter-spacing:0.000000px;}
.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;}
.fc0_c00073{color:transparent;}
.fs0_c00073{font-size:54.000000px;}
.fs4_c00073{font-size:60.000000px;}
.fs2_c00073{font-size:66.000000px;}
.fs3_c00073{font-size:72.000000px;}
.fs5_c00073{font-size:78.000000px;}
.fs1_c00073{font-size:84.000000px;}
.fs6_c00073{font-size:90.000000px;}
.fs7_c00073{font-size:102.000000px;}
.y0_c00073{bottom:0.000000px;}
.y4e_c00073{bottom:87.660000px;}
.y4d_c00073{bottom:92.685000px;}
.y4c_c00073{bottom:93.000000px;}
.y4b_c00073{bottom:107.835000px;}
.y4a_c00073{bottom:111.060000px;}
.y49_c00073{bottom:141.960000px;}
.y48_c00073{bottom:144.135000px;}
.y47_c00073{bottom:148.125000px;}
.y46_c00073{bottom:151.335000px;}
.y45_c00073{bottom:156.750000px;}
.y44_c00073{bottom:241.335000px;}
.y43_c00073{bottom:253.650000px;}
.y42_c00073{bottom:257.250000px;}
.y41_c00073{bottom:261.900000px;}
.y40_c00073{bottom:265.125000px;}
.y3f_c00073{bottom:276.285000px;}
.y3e_c00073{bottom:277.035000px;}
.y3d_c00073{bottom:281.025000px;}
.y3c_c00073{bottom:286.710000px;}
.y3b_c00073{bottom:288.900000px;}
.y3a_c00073{bottom:391.500000px;}
.y39_c00073{bottom:393.285000px;}
.y38_c00073{bottom:395.460000px;}
.y37_c00073{bottom:408.750000px;}
.y36_c00073{bottom:411.660000px;}
.y35_c00073{bottom:415.635000px;}
.y34_c00073{bottom:432.885000px;}
.y33_c00073{bottom:436.125000px;}
.y32_c00073{bottom:453.375000px;}
.y31_c00073{bottom:454.125000px;}
.y30_c00073{bottom:456.585000px;}
.y2f_c00073{bottom:459.135000px;}
.y2e_c00073{bottom:564.660000px;}
.y2d_c00073{bottom:584.835000px;}
.y2c_c00073{bottom:585.885000px;}
.y2b_c00073{bottom:586.260000px;}
.y2a_c00073{bottom:586.635000px;}
.y29_c00073{bottom:587.685000px;}
.y28_c00073{bottom:608.160000px;}
.y27_c00073{bottom:608.535000px;}
.y26_c00073{bottom:608.910000px;}
.y25_c00073{bottom:609.285000px;}
.y24_c00073{bottom:715.500000px;}
.y23_c00073{bottom:739.635000px;}
.y22_c00073{bottom:761.910000px;}
.y1c_c00073{bottom:778.500000px;}
.y1d_c00073{bottom:781.050000px;}
.y1e_c00073{bottom:783.510000px;}
.y1f_c00073{bottom:784.260000px;}
.y20_c00073{bottom:785.685000px;}
.y21_c00073{bottom:786.375000px;}
.y1b_c00073{bottom:805.500000px;}
.y19_c00073{bottom:823.185000px;}
.y1a_c00073{bottom:827.085000px;}
.y18_c00073{bottom:848.310000px;}
.y17_c00073{bottom:869.925000px;}
.yc_c00073{bottom:909.585000px;}
.yf_c00073{bottom:914.625000px;}
.y14_c00073{bottom:917.835000px;}
.y15_c00073{bottom:918.150000px;}
.y16_c00073{bottom:918.900000px;}
.yb_c00073{bottom:925.710000px;}
.ye_c00073{bottom:931.500000px;}
.y11_c00073{bottom:935.085000px;}
.y12_c00073{bottom:935.835000px;}
.y13_c00073{bottom:936.525000px;}
.ya_c00073{bottom:943.710000px;}
.yd_c00073{bottom:948.750000px;}
.y10_c00073{bottom:953.460000px;}
.y6_c00073{bottom:972.150000px;}
.y7_c00073{bottom:972.525000px;}
.y8_c00073{bottom:977.550000px;}
.y9_c00073{bottom:982.650000px;}
.y5_c00073{bottom:1017.900000px;}
.y4_c00073{bottom:1039.125000px;}
.y1_c00073{bottom:1085.925000px;}
.y3_c00073{bottom:1096.050000px;}
.y2_c00073{bottom:1101.060000px;}
.h2_c00073{height:52.998047px;}
.h1_c00073{height:54.421875px;}
.h7_c00073{height:58.886719px;}
.h4_c00073{height:64.775391px;}
.h5_c00073{height:68.835938px;}
.hb_c00073{height:70.628906px;}
.h6_c00073{height:70.664062px;}
.h8_c00073{height:76.514648px;}
.h9_c00073{height:76.552734px;}
.h3_c00073{height:82.441406px;}
.ha_c00073{height:88.330078px;}
.hc_c00073{height:102.796875px;}
.h0_c00073{height:1174.500000px;}
.w0_c00073{width:731.977200px;}
.w1_c00073{width:732.000000px;}
.x0_c00073{left:0.000000px;}
.x1a_c00073{left:39.565200px;}
.x14_c00073{left:40.990200px;}
.x11_c00073{left:42.115200px;}
.x4_c00073{left:44.590200px;}
.x27_c00073{left:55.390200px;}
.x3b_c00073{left:56.515200px;}
.x1_c00073{left:63.340200px;}
.x1b_c00073{left:68.740200px;}
.x28_c00073{left:70.165200px;}
.x13_c00073{left:72.715200px;}
.x10_c00073{left:73.765200px;}
.x15_c00073{left:79.165200px;}
.x2_c00073{left:80.965200px;}
.x3c_c00073{left:91.390200px;}
.x3d_c00073{left:93.175200px;}
.x3e_c00073{left:114.490200px;}
.x9_c00073{left:115.915200px;}
.x2f_c00073{left:123.115200px;}
.x31_c00073{left:134.965200px;}
.x5_c00073{left:158.740200px;}
.x37_c00073{left:183.940200px;}
.x6_c00073{left:196.540200px;}
.x1c_c00073{left:200.125200px;}
.x29_c00073{left:205.915200px;}
.x2d_c00073{left:215.290200px;}
.x30_c00073{left:218.140200px;}
.x32_c00073{left:233.590200px;}
.x22_c00073{left:236.515200px;}
.x1d_c00073{left:259.165200px;}
.x3_c00073{left:262.090200px;}
.x1e_c00073{left:266.740200px;}
.x7_c00073{left:271.090200px;}
.x35_c00073{left:300.190200px;}
.x23_c00073{left:308.515200px;}
.x38_c00073{left:312.790200px;}
.x16_c00073{left:317.140200px;}
.xa_c00073{left:331.915200px;}
.xb_c00073{left:339.490200px;}
.x17_c00073{left:343.390200px;}
.x12_c00073{left:353.515200px;}
.x39_c00073{left:354.940200px;}
.x1f_c00073{left:368.590200px;}
.x24_c00073{left:372.190200px;}
.x2c_c00073{left:375.775200px;}
.x20_c00073{left:396.715200px;}
.x2a_c00073{left:404.590200px;}
.x21_c00073{left:442.765200px;}
.xc_c00073{left:443.890200px;}
.x25_c00073{left:447.115200px;}
.x8_c00073{left:454.315200px;}
.x18_c00073{left:473.740200px;}
.x33_c00073{left:480.190200px;}
.xd_c00073{left:483.115200px;}
.x34_c00073{left:498.190200px;}
.x19_c00073{left:501.790200px;}
.xe_c00073{left:504.340200px;}
.xf_c00073{left:505.390200px;}
.x2e_c00073{left:519.490200px;}
.x3a_c00073{left:520.915200px;}
.x2b_c00073{left:535.690200px;}
.x36_c00073{left:538.165200px;}
.x26_c00073{left:605.140200px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls0_c00073{letter-spacing:0.000000pt;}
.ws0_c00073{word-spacing:0.000000pt;}
.fs0_c00073{font-size:48.000000pt;}
.fs4_c00073{font-size:53.333333pt;}
.fs2_c00073{font-size:58.666667pt;}
.fs3_c00073{font-size:64.000000pt;}
.fs5_c00073{font-size:69.333333pt;}
.fs1_c00073{font-size:74.666667pt;}
.fs6_c00073{font-size:80.000000pt;}
.fs7_c00073{font-size:90.666667pt;}
.y0_c00073{bottom:0.000000pt;}
.y4e_c00073{bottom:77.920000pt;}
.y4d_c00073{bottom:82.386667pt;}
.y4c_c00073{bottom:82.666667pt;}
.y4b_c00073{bottom:95.853333pt;}
.y4a_c00073{bottom:98.720000pt;}
.y49_c00073{bottom:126.186667pt;}
.y48_c00073{bottom:128.120000pt;}
.y47_c00073{bottom:131.666667pt;}
.y46_c00073{bottom:134.520000pt;}
.y45_c00073{bottom:139.333333pt;}
.y44_c00073{bottom:214.520000pt;}
.y43_c00073{bottom:225.466667pt;}
.y42_c00073{bottom:228.666667pt;}
.y41_c00073{bottom:232.800000pt;}
.y40_c00073{bottom:235.666667pt;}
.y3f_c00073{bottom:245.586667pt;}
.y3e_c00073{bottom:246.253333pt;}
.y3d_c00073{bottom:249.800000pt;}
.y3c_c00073{bottom:254.853333pt;}
.y3b_c00073{bottom:256.800000pt;}
.y3a_c00073{bottom:348.000000pt;}
.y39_c00073{bottom:349.586667pt;}
.y38_c00073{bottom:351.520000pt;}
.y37_c00073{bottom:363.333333pt;}
.y36_c00073{bottom:365.920000pt;}
.y35_c00073{bottom:369.453333pt;}
.y34_c00073{bottom:384.786667pt;}
.y33_c00073{bottom:387.666667pt;}
.y32_c00073{bottom:403.000000pt;}
.y31_c00073{bottom:403.666667pt;}
.y30_c00073{bottom:405.853333pt;}
.y2f_c00073{bottom:408.120000pt;}
.y2e_c00073{bottom:501.920000pt;}
.y2d_c00073{bottom:519.853333pt;}
.y2c_c00073{bottom:520.786667pt;}
.y2b_c00073{bottom:521.120000pt;}
.y2a_c00073{bottom:521.453333pt;}
.y29_c00073{bottom:522.386667pt;}
.y28_c00073{bottom:540.586667pt;}
.y27_c00073{bottom:540.920000pt;}
.y26_c00073{bottom:541.253333pt;}
.y25_c00073{bottom:541.586667pt;}
.y24_c00073{bottom:636.000000pt;}
.y23_c00073{bottom:657.453333pt;}
.y22_c00073{bottom:677.253333pt;}
.y1c_c00073{bottom:692.000000pt;}
.y1d_c00073{bottom:694.266667pt;}
.y1e_c00073{bottom:696.453333pt;}
.y1f_c00073{bottom:697.120000pt;}
.y20_c00073{bottom:698.386667pt;}
.y21_c00073{bottom:699.000000pt;}
.y1b_c00073{bottom:716.000000pt;}
.y19_c00073{bottom:731.720000pt;}
.y1a_c00073{bottom:735.186667pt;}
.y18_c00073{bottom:754.053333pt;}
.y17_c00073{bottom:773.266667pt;}
.yc_c00073{bottom:808.520000pt;}
.yf_c00073{bottom:813.000000pt;}
.y14_c00073{bottom:815.853333pt;}
.y15_c00073{bottom:816.133333pt;}
.y16_c00073{bottom:816.800000pt;}
.yb_c00073{bottom:822.853333pt;}
.ye_c00073{bottom:828.000000pt;}
.y11_c00073{bottom:831.186667pt;}
.y12_c00073{bottom:831.853333pt;}
.y13_c00073{bottom:832.466667pt;}
.ya_c00073{bottom:838.853333pt;}
.yd_c00073{bottom:843.333333pt;}
.y10_c00073{bottom:847.520000pt;}
.y6_c00073{bottom:864.133333pt;}
.y7_c00073{bottom:864.466667pt;}
.y8_c00073{bottom:868.933333pt;}
.y9_c00073{bottom:873.466667pt;}
.y5_c00073{bottom:904.800000pt;}
.y4_c00073{bottom:923.666667pt;}
.y1_c00073{bottom:965.266667pt;}
.y3_c00073{bottom:974.266667pt;}
.y2_c00073{bottom:978.720000pt;}
.h2_c00073{height:47.109375pt;}
.h1_c00073{height:48.375000pt;}
.h7_c00073{height:52.343750pt;}
.h4_c00073{height:57.578125pt;}
.h5_c00073{height:61.187500pt;}
.hb_c00073{height:62.781250pt;}
.h6_c00073{height:62.812500pt;}
.h8_c00073{height:68.013021pt;}
.h9_c00073{height:68.046875pt;}
.h3_c00073{height:73.281250pt;}
.ha_c00073{height:78.515625pt;}
.hc_c00073{height:91.375000pt;}
.h0_c00073{height:1044.000000pt;}
.w0_c00073{width:650.646400pt;}
.w1_c00073{width:650.666667pt;}
.x0_c00073{left:0.000000pt;}
.x1a_c00073{left:35.169067pt;}
.x14_c00073{left:36.435733pt;}
.x11_c00073{left:37.435733pt;}
.x4_c00073{left:39.635733pt;}
.x27_c00073{left:49.235733pt;}
.x3b_c00073{left:50.235733pt;}
.x1_c00073{left:56.302400pt;}
.x1b_c00073{left:61.102400pt;}
.x28_c00073{left:62.369067pt;}
.x13_c00073{left:64.635733pt;}
.x10_c00073{left:65.569067pt;}
.x15_c00073{left:70.369067pt;}
.x2_c00073{left:71.969067pt;}
.x3c_c00073{left:81.235733pt;}
.x3d_c00073{left:82.822400pt;}
.x3e_c00073{left:101.769067pt;}
.x9_c00073{left:103.035733pt;}
.x2f_c00073{left:109.435733pt;}
.x31_c00073{left:119.969067pt;}
.x5_c00073{left:141.102400pt;}
.x37_c00073{left:163.502400pt;}
.x6_c00073{left:174.702400pt;}
.x1c_c00073{left:177.889067pt;}
.x29_c00073{left:183.035733pt;}
.x2d_c00073{left:191.369067pt;}
.x30_c00073{left:193.902400pt;}
.x32_c00073{left:207.635733pt;}
.x22_c00073{left:210.235733pt;}
.x1d_c00073{left:230.369067pt;}
.x3_c00073{left:232.969067pt;}
.x1e_c00073{left:237.102400pt;}
.x7_c00073{left:240.969067pt;}
.x35_c00073{left:266.835733pt;}
.x23_c00073{left:274.235733pt;}
.x38_c00073{left:278.035733pt;}
.x16_c00073{left:281.902400pt;}
.xa_c00073{left:295.035733pt;}
.xb_c00073{left:301.769067pt;}
.x17_c00073{left:305.235733pt;}
.x12_c00073{left:314.235733pt;}
.x39_c00073{left:315.502400pt;}
.x1f_c00073{left:327.635733pt;}
.x24_c00073{left:330.835733pt;}
.x2c_c00073{left:334.022400pt;}
.x20_c00073{left:352.635733pt;}
.x2a_c00073{left:359.635733pt;}
.x21_c00073{left:393.569067pt;}
.xc_c00073{left:394.569067pt;}
.x25_c00073{left:397.435733pt;}
.x8_c00073{left:403.835733pt;}
.x18_c00073{left:421.102400pt;}
.x33_c00073{left:426.835733pt;}
.xd_c00073{left:429.435733pt;}
.x34_c00073{left:442.835733pt;}
.x19_c00073{left:446.035733pt;}
.xe_c00073{left:448.302400pt;}
.xf_c00073{left:449.235733pt;}
.x2e_c00073{left:461.769067pt;}
.x3a_c00073{left:463.035733pt;}
.x2b_c00073{left:476.169067pt;}
.x36_c00073{left:478.369067pt;}
.x26_c00073{left:537.902400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c39cea2ffe6cec8ef802ef3.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00074;src:url('chunks/assets/font_c71589622c10a61be77153aa.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00074;src:url('chunks/assets/font_b0b03048bd05905ba4825d88.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00074;src:url('chunks/assets/font_e9373f54569898279b437388.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00074;src:url('chunks/assets/font_7ec8d2af263916d1f3a68602.woff2')format("woff");}.ff5_c00074{font-family:ff5_c00074;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00074;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff6_c00074{font-family:ff6_c00074;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1a_c00074{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.m3_c00074{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00074{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m19_c00074{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00074{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m2_c00074{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m13_c00074{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m25_c00074{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m24_c00074{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m22_c00074{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.m7_c00074{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md_c00074{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10_c00074{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c00074{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00074{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00074{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c00074{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c00074{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c00074{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c00074{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00074{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c00074{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c00074{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00074{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00074{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c00074{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00074{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c00074{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c00074{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c00074{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m27_c00074{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m21_c00074{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00074{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m23_c00074{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m26_c00074{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m20_c00074{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00074{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00074{transform:matrix(1.042500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.042500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.042500,0.000000,0.000000,0.250000,0,0);}
.m1_c00074{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00074{color:transparent;}
.fs5_c00074{font-size:24.000000px;}
.fs6_c00074{font-size:48.000000px;}
.fs2_c00074{font-size:60.000000px;}
.fs0_c00074{font-size:66.000000px;}
.fs3_c00074{font-size:72.000000px;}
.fs4_c00074{font-size:78.000000px;}
.fs1_c00074{font-size:84.000000px;}
.y0_c00074{bottom:0.000000px;}
.y42_c00074{bottom:58.500000px;}
.y3d_c00074{bottom:82.560000px;}
.y3e_c00074{bottom:85.500000px;}
.y3f_c00074{bottom:85.875000px;}
.y40_c00074{bottom:86.535000px;}
.y41_c00074{bottom:87.660000px;}
.y3c_c00074{bottom:102.750000px;}
.y39_c00074{bottom:123.660000px;}
.y3a_c00074{bottom:125.835000px;}
.y3b_c00074{bottom:127.935000px;}
.y38_c00074{bottom:144.885000px;}
.y32_c00074{bottom:165.810000px;}
.y33_c00074{bottom:166.875000px;}
.y34_c00074{bottom:167.910000px;}
.y35_c00074{bottom:168.660000px;}
.y36_c00074{bottom:169.710000px;}
.y37_c00074{bottom:171.135000px;}
.y2e_c00074{bottom:223.710000px;}
.y2f_c00074{bottom:224.085000px;}
.y30_c00074{bottom:225.135000px;}
.y31_c00074{bottom:225.210000px;}
.y2c_c00074{bottom:272.685000px;}
.y2d_c00074{bottom:274.500000px;}
.y2b_c00074{bottom:294.660000px;}
.y29_c00074{bottom:315.150000px;}
.y2a_c00074{bottom:316.935000px;}
.y26_c00074{bottom:336.750000px;}
.y27_c00074{bottom:337.875000px;}
.y28_c00074{bottom:338.250000px;}
.y25_c00074{bottom:359.085000px;}
.y21_c00074{bottom:379.935000px;}
.y22_c00074{bottom:381.375000px;}
.y23_c00074{bottom:383.160000px;}
.y24_c00074{bottom:383.625000px;}
.y1e_c00074{bottom:489.000000px;}
.y1f_c00074{bottom:489.435000px;}
.y20_c00074{bottom:490.125000px;}
.y1d_c00074{bottom:511.710000px;}
.y1c_c00074{bottom:533.685000px;}
.y1b_c00074{bottom:555.285000px;}
.y1a_c00074{bottom:663.660000px;}
.y19_c00074{bottom:664.035000px;}
.y18_c00074{bottom:685.935000px;}
.y17_c00074{bottom:707.250000px;}
.y16_c00074{bottom:729.135000px;}
.y15_c00074{bottom:729.885000px;}
.y14_c00074{bottom:751.500000px;}
.y13_c00074{bottom:772.335000px;}
.y12_c00074{bottom:773.460000px;}
.y11_c00074{bottom:795.750000px;}
.y10_c00074{bottom:814.500000px;}
.yf_c00074{bottom:816.300000px;}
.ye_c00074{bottom:817.050000px;}
.yc_c00074{bottom:838.935000px;}
.yd_c00074{bottom:839.685000px;}
.yb_c00074{bottom:858.435000px;}
.ya_c00074{bottom:860.175000px;}
.y9_c00074{bottom:861.300000px;}
.y8_c00074{bottom:968.925000px;}
.y7_c00074{bottom:991.185000px;}
.y6_c00074{bottom:1007.085000px;}
.y5_c00074{bottom:1012.125000px;}
.y4_c00074{bottom:1036.185000px;}
.y3_c00074{bottom:1066.125000px;}
.y1_c00074{bottom:1072.650000px;}
.y2_c00074{bottom:1080.750000px;}
.h8_c00074{height:25.031250px;}
.h9_c00074{height:25.608000px;}
.ha_c00074{height:47.109375px;}
.h3_c00074{height:60.468750px;}
.h1_c00074{height:64.775391px;}
.h6_c00074{height:70.664062px;}
.h7_c00074{height:76.514648px;}
.h5_c00074{height:82.400391px;}
.h2_c00074{height:82.441406px;}
.h4_c00074{height:84.656250px;}
.h0_c00074{height:1174.500000px;}
.w0_c00074{width:731.977200px;}
.w1_c00074{width:732.000000px;}
.x4_c00074{left:-12.634800px;}
.x0_c00074{left:0.000000px;}
.x5_c00074{left:64.390200px;}
.xe_c00074{left:65.890200px;}
.x16_c00074{left:67.315200px;}
.x14_c00074{left:68.365200px;}
.x21_c00074{left:70.165200px;}
.x31_c00074{left:72.340200px;}
.x3b_c00074{left:73.390200px;}
.xf_c00074{left:96.115200px;}
.x7_c00074{left:97.540200px;}
.x12_c00074{left:98.965200px;}
.x19_c00074{left:100.390200px;}
.x1f_c00074{left:101.890200px;}
.x2b_c00074{left:103.990200px;}
.x36_c00074{left:105.490200px;}
.xb_c00074{left:106.540200px;}
.xc_c00074{left:134.965200px;}
.x15_c00074{left:145.090200px;}
.x8_c00074{left:166.315200px;}
.x13_c00074{left:179.290200px;}
.x10_c00074{left:190.375200px;}
.x32_c00074{left:197.965200px;}
.x20_c00074{left:226.090200px;}
.x17_c00074{left:251.290200px;}
.x11_c00074{left:264.565200px;}
.x1_c00074{left:279.715200px;}
.x18_c00074{left:280.765200px;}
.x9_c00074{left:283.990200px;}
.x33_c00074{left:292.315200px;}
.x2c_c00074{left:297.715200px;}
.x23_c00074{left:321.790200px;}
.x24_c00074{left:332.290200px;}
.x25_c00074{left:333.340200px;}
.x26_c00074{left:340.165200px;}
.x1d_c00074{left:341.290200px;}
.x27_c00074{left:350.590200px;}
.x28_c00074{left:352.090200px;}
.x29_c00074{left:359.290200px;}
.x34_c00074{left:365.365200px;}
.x1a_c00074{left:372.940200px;}
.x35_c00074{left:374.740200px;}
.x1e_c00074{left:385.900200px;}
.x37_c00074{left:394.525200px;}
.x2d_c00074{left:404.965200px;}
.xa_c00074{left:413.590200px;}
.x2a_c00074{left:421.525200px;}
.x38_c00074{left:424.090200px;}
.x2e_c00074{left:443.890200px;}
.xd_c00074{left:451.090200px;}
.x2_c00074{left:478.090200px;}
.x22_c00074{left:482.740200px;}
.x2f_c00074{left:483.790200px;}
.x1b_c00074{left:582.790200px;}
.x39_c00074{left:592.165200px;}
.x3a_c00074{left:622.090200px;}
.x1c_c00074{left:625.315200px;}
.x3_c00074{left:649.390200px;}
.x30_c00074{left:663.490200px;}
.x6_c00074{left:667.765200px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls0_c00074{letter-spacing:0.000000pt;}
.ws0_c00074{word-spacing:0.000000pt;}
.fs5_c00074{font-size:21.333333pt;}
.fs6_c00074{font-size:42.666667pt;}
.fs2_c00074{font-size:53.333333pt;}
.fs0_c00074{font-size:58.666667pt;}
.fs3_c00074{font-size:64.000000pt;}
.fs4_c00074{font-size:69.333333pt;}
.fs1_c00074{font-size:74.666667pt;}
.y0_c00074{bottom:0.000000pt;}
.y42_c00074{bottom:52.000000pt;}
.y3d_c00074{bottom:73.386667pt;}
.y3e_c00074{bottom:76.000000pt;}
.y3f_c00074{bottom:76.333333pt;}
.y40_c00074{bottom:76.920000pt;}
.y41_c00074{bottom:77.920000pt;}
.y3c_c00074{bottom:91.333333pt;}
.y39_c00074{bottom:109.920000pt;}
.y3a_c00074{bottom:111.853333pt;}
.y3b_c00074{bottom:113.720000pt;}
.y38_c00074{bottom:128.786667pt;}
.y32_c00074{bottom:147.386667pt;}
.y33_c00074{bottom:148.333333pt;}
.y34_c00074{bottom:149.253333pt;}
.y35_c00074{bottom:149.920000pt;}
.y36_c00074{bottom:150.853333pt;}
.y37_c00074{bottom:152.120000pt;}
.y2e_c00074{bottom:198.853333pt;}
.y2f_c00074{bottom:199.186667pt;}
.y30_c00074{bottom:200.120000pt;}
.y31_c00074{bottom:200.186667pt;}
.y2c_c00074{bottom:242.386667pt;}
.y2d_c00074{bottom:244.000000pt;}
.y2b_c00074{bottom:261.920000pt;}
.y29_c00074{bottom:280.133333pt;}
.y2a_c00074{bottom:281.720000pt;}
.y26_c00074{bottom:299.333333pt;}
.y27_c00074{bottom:300.333333pt;}
.y28_c00074{bottom:300.666667pt;}
.y25_c00074{bottom:319.186667pt;}
.y21_c00074{bottom:337.720000pt;}
.y22_c00074{bottom:339.000000pt;}
.y23_c00074{bottom:340.586667pt;}
.y24_c00074{bottom:341.000000pt;}
.y1e_c00074{bottom:434.666667pt;}
.y1f_c00074{bottom:435.053333pt;}
.y20_c00074{bottom:435.666667pt;}
.y1d_c00074{bottom:454.853333pt;}
.y1c_c00074{bottom:474.386667pt;}
.y1b_c00074{bottom:493.586667pt;}
.y1a_c00074{bottom:589.920000pt;}
.y19_c00074{bottom:590.253333pt;}
.y18_c00074{bottom:609.720000pt;}
.y17_c00074{bottom:628.666667pt;}
.y16_c00074{bottom:648.120000pt;}
.y15_c00074{bottom:648.786667pt;}
.y14_c00074{bottom:668.000000pt;}
.y13_c00074{bottom:686.520000pt;}
.y12_c00074{bottom:687.520000pt;}
.y11_c00074{bottom:707.333333pt;}
.y10_c00074{bottom:724.000000pt;}
.yf_c00074{bottom:725.600000pt;}
.ye_c00074{bottom:726.266667pt;}
.yc_c00074{bottom:745.720000pt;}
.yd_c00074{bottom:746.386667pt;}
.yb_c00074{bottom:763.053333pt;}
.ya_c00074{bottom:764.600000pt;}
.y9_c00074{bottom:765.600000pt;}
.y8_c00074{bottom:861.266667pt;}
.y7_c00074{bottom:881.053333pt;}
.y6_c00074{bottom:895.186667pt;}
.y5_c00074{bottom:899.666667pt;}
.y4_c00074{bottom:921.053333pt;}
.y3_c00074{bottom:947.666667pt;}
.y1_c00074{bottom:953.466667pt;}
.y2_c00074{bottom:960.666667pt;}
.h8_c00074{height:22.250000pt;}
.h9_c00074{height:22.762667pt;}
.ha_c00074{height:41.875000pt;}
.h3_c00074{height:53.750000pt;}
.h1_c00074{height:57.578125pt;}
.h6_c00074{height:62.812500pt;}
.h7_c00074{height:68.013021pt;}
.h5_c00074{height:73.244792pt;}
.h2_c00074{height:73.281250pt;}
.h4_c00074{height:75.250000pt;}
.h0_c00074{height:1044.000000pt;}
.w0_c00074{width:650.646400pt;}
.w1_c00074{width:650.666667pt;}
.x4_c00074{left:-11.230933pt;}
.x0_c00074{left:0.000000pt;}
.x5_c00074{left:57.235733pt;}
.xe_c00074{left:58.569067pt;}
.x16_c00074{left:59.835733pt;}
.x14_c00074{left:60.769067pt;}
.x21_c00074{left:62.369067pt;}
.x31_c00074{left:64.302400pt;}
.x3b_c00074{left:65.235733pt;}
.xf_c00074{left:85.435733pt;}
.x7_c00074{left:86.702400pt;}
.x12_c00074{left:87.969067pt;}
.x19_c00074{left:89.235733pt;}
.x1f_c00074{left:90.569067pt;}
.x2b_c00074{left:92.435733pt;}
.x36_c00074{left:93.769067pt;}
.xb_c00074{left:94.702400pt;}
.xc_c00074{left:119.969067pt;}
.x15_c00074{left:128.969067pt;}
.x8_c00074{left:147.835733pt;}
.x13_c00074{left:159.369067pt;}
.x10_c00074{left:169.222400pt;}
.x32_c00074{left:175.969067pt;}
.x20_c00074{left:200.969067pt;}
.x17_c00074{left:223.369067pt;}
.x11_c00074{left:235.169067pt;}
.x1_c00074{left:248.635733pt;}
.x18_c00074{left:249.569067pt;}
.x9_c00074{left:252.435733pt;}
.x33_c00074{left:259.835733pt;}
.x2c_c00074{left:264.635733pt;}
.x23_c00074{left:286.035733pt;}
.x24_c00074{left:295.369067pt;}
.x25_c00074{left:296.302400pt;}
.x26_c00074{left:302.369067pt;}
.x1d_c00074{left:303.369067pt;}
.x27_c00074{left:311.635733pt;}
.x28_c00074{left:312.969067pt;}
.x29_c00074{left:319.369067pt;}
.x34_c00074{left:324.769067pt;}
.x1a_c00074{left:331.502400pt;}
.x35_c00074{left:333.102400pt;}
.x1e_c00074{left:343.022400pt;}
.x37_c00074{left:350.689067pt;}
.x2d_c00074{left:359.969067pt;}
.xa_c00074{left:367.635733pt;}
.x2a_c00074{left:374.689067pt;}
.x38_c00074{left:376.969067pt;}
.x2e_c00074{left:394.569067pt;}
.xd_c00074{left:400.969067pt;}
.x2_c00074{left:424.969067pt;}
.x22_c00074{left:429.102400pt;}
.x2f_c00074{left:430.035733pt;}
.x1b_c00074{left:518.035733pt;}
.x39_c00074{left:526.369067pt;}
.x3a_c00074{left:552.969067pt;}
.x1c_c00074{left:555.835733pt;}
.x3_c00074{left:577.235733pt;}
.x30_c00074{left:589.769067pt;}
.x6_c00074{left:593.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_31ba393dec4606319db720bd.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00075;src:url('chunks/assets/font_cbe94549d4340e0943e97807.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00075;src:url('chunks/assets/font_912cb371f141e21b579aa962.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00075;src:url('chunks/assets/font_ff5d86f364323fb3657045f4.woff2')format("woff");}.ff4_c00075{font-family:ff4_c00075;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00075;src:url('chunks/assets/font_8802357b2614f2c39dbe3613.woff2')format("woff");}.ff5_c00075{font-family:ff5_c00075;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1b_c00075{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1_c00075{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10_c00075{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.mc_c00075{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7_c00075{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9_c00075{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c00075{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00075{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4_c00075{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_c00075{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m15_c00075{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0_c00075{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c00075{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00075{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m19_c00075{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00075{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11_c00075{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c00075{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m14_c00075{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c00075{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c00075{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00075{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00075{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17_c00075{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00075{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00075{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00075{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00075{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00075{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c00075{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c00075{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.ls0_c00075{letter-spacing:0.000000px;}
.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;}
.fc0_c00075{color:transparent;}
.fs3_c00075{font-size:54.000000px;}
.fs0_c00075{font-size:60.000000px;}
.fs5_c00075{font-size:66.000000px;}
.fs4_c00075{font-size:72.000000px;}
.fs2_c00075{font-size:78.000000px;}
.fs1_c00075{font-size:84.000000px;}
.fs6_c00075{font-size:90.000000px;}
.y0_c00075{bottom:0.000000px;}
.y47_c00075{bottom:90.510000px;}
.y41_c00075{bottom:91.635000px;}
.y45_c00075{bottom:94.125000px;}
.y46_c00075{bottom:94.785000px;}
.y44_c00075{bottom:95.535000px;}
.y43_c00075{bottom:101.010000px;}
.y42_c00075{bottom:107.835000px;}
.y40_c00075{bottom:131.250000px;}
.y3f_c00075{bottom:140.910000px;}
.y3e_c00075{bottom:154.260000px;}
.y3d_c00075{bottom:172.260000px;}
.y3c_c00075{bottom:182.010000px;}
.y3b_c00075{bottom:185.250000px;}
.y3a_c00075{bottom:194.910000px;}
.y39_c00075{bottom:205.410000px;}
.y38_c00075{bottom:210.810000px;}
.y37_c00075{bottom:212.910000px;}
.y36_c00075{bottom:218.385000px;}
.y35_c00075{bottom:232.035000px;}
.y34_c00075{bottom:254.025000px;}
.y33_c00075{bottom:273.810000px;}
.y32_c00075{bottom:281.685000px;}
.y31_c00075{bottom:282.060000px;}
.y30_c00075{bottom:282.750000px;}
.y2f_c00075{bottom:386.400000px;}
.y2e_c00075{bottom:405.585000px;}
.y2d_c00075{bottom:409.125000px;}
.y2c_c00075{bottom:412.035000px;}
.y2b_c00075{bottom:430.410000px;}
.y29_c00075{bottom:450.510000px;}
.y2a_c00075{bottom:451.260000px;}
.y28_c00075{bottom:453.060000px;}
.y27_c00075{bottom:474.285000px;}
.y26_c00075{bottom:496.260000px;}
.y25_c00075{bottom:518.250000px;}
.y21_c00075{bottom:539.760000px;}
.y22_c00075{bottom:540.135000px;}
.y23_c00075{bottom:540.210000px;}
.y24_c00075{bottom:540.510000px;}
.y1f_c00075{bottom:561.060000px;}
.y20_c00075{bottom:562.785000px;}
.y1e_c00075{bottom:669.375000px;}
.y1b_c00075{bottom:691.710000px;}
.y1c_c00075{bottom:694.260000px;}
.y1d_c00075{bottom:696.060000px;}
.y18_c00075{bottom:712.935000px;}
.y19_c00075{bottom:717.660000px;}
.y1a_c00075{bottom:718.410000px;}
.y17_c00075{bottom:732.750000px;}
.y16_c00075{bottom:759.075000px;}
.y15_c00075{bottom:775.635000px;}
.y10_c00075{bottom:798.300000px;}
.y11_c00075{bottom:801.150000px;}
.y12_c00075{bottom:801.525000px;}
.y13_c00075{bottom:805.500000px;}
.y14_c00075{bottom:806.550000px;}
.ye_c00075{bottom:820.275000px;}
.yf_c00075{bottom:828.210000px;}
.yd_c00075{bottom:842.925000px;}
.ya_c00075{bottom:860.550000px;}
.yb_c00075{bottom:867.375000px;}
.yc_c00075{bottom:872.460000px;}
.y8_c00075{bottom:990.210000px;}
.y9_c00075{bottom:1001.685000px;}
.y7_c00075{bottom:1006.710000px;}
.y2_c00075{bottom:1031.925000px;}
.y3_c00075{bottom:1039.500000px;}
.y4_c00075{bottom:1041.300000px;}
.y5_c00075{bottom:1042.335000px;}
.y6_c00075{bottom:1045.275000px;}
.y1_c00075{bottom:1095.675000px;}
.h4_c00075{height:52.971680px;}
.ha_c00075{height:52.998047px;}
.h1_c00075{height:58.886719px;}
.h8_c00075{height:64.775391px;}
.h9_c00075{height:70.664062px;}
.h7_c00075{height:75.093750px;}
.h3_c00075{height:76.552734px;}
.h6_c00075{height:78.609375px;}
.h2_c00075{height:82.400391px;}
.h5_c00075{height:84.656250px;}
.hb_c00075{height:90.703125px;}
.h0_c00075{height:1174.500000px;}
.w0_c00075{width:731.977200px;}
.w1_c00075{width:732.000000px;}
.x0_c00075{left:0.000000px;}
.x19_c00075{left:43.540200px;}
.x13_c00075{left:44.590200px;}
.x7_c00075{left:46.090200px;}
.xb_c00075{left:47.515200px;}
.x14_c00075{left:73.765200px;}
.xc_c00075{left:75.175200px;}
.x2_c00075{left:76.675200px;}
.x2c_c00075{left:77.740200px;}
.x21_c00075{left:82.090200px;}
.x31_c00075{left:84.925200px;}
.x1b_c00075{left:135.340200px;}
.x23_c00075{left:136.765200px;}
.x24_c00075{left:139.690200px;}
.x9_c00075{left:156.940200px;}
.x1c_c00075{left:163.390200px;}
.x25_c00075{left:173.125200px;}
.x2b_c00075{left:174.190200px;}
.x26_c00075{left:211.990200px;}
.xe_c00075{left:252.715200px;}
.xf_c00075{left:259.915200px;}
.x1_c00075{left:261.715200px;}
.x10_c00075{left:277.915200px;}
.x1a_c00075{left:281.890200px;}
.x2d_c00075{left:284.365200px;}
.x27_c00075{left:293.365200px;}
.x8_c00075{left:296.590200px;}
.x29_c00075{left:307.090200px;}
.x3_c00075{left:310.315200px;}
.x15_c00075{left:317.140200px;}
.xd_c00075{left:325.090200px;}
.x17_c00075{left:332.965200px;}
.x28_c00075{left:353.890200px;}
.x2e_c00075{left:361.090200px;}
.x18_c00075{left:389.140200px;}
.x4_c00075{left:391.315200px;}
.x5_c00075{left:400.990200px;}
.x6_c00075{left:429.115200px;}
.x22_c00075{left:497.890200px;}
.x1f_c00075{left:528.490200px;}
.x2a_c00075{left:541.390200px;}
.xa_c00075{left:555.790200px;}
.x2f_c00075{left:561.190200px;}
.x1d_c00075{left:582.115200px;}
.x1e_c00075{left:611.590200px;}
.x20_c00075{left:616.315200px;}
.x30_c00075{left:618.490200px;}
.x11_c00075{left:620.965200px;}
.x12_c00075{left:647.290200px;}
.x16_c00075{left:649.765200px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls0_c00075{letter-spacing:0.000000pt;}
.ws0_c00075{word-spacing:0.000000pt;}
.fs3_c00075{font-size:48.000000pt;}
.fs0_c00075{font-size:53.333333pt;}
.fs5_c00075{font-size:58.666667pt;}
.fs4_c00075{font-size:64.000000pt;}
.fs2_c00075{font-size:69.333333pt;}
.fs1_c00075{font-size:74.666667pt;}
.fs6_c00075{font-size:80.000000pt;}
.y0_c00075{bottom:0.000000pt;}
.y47_c00075{bottom:80.453333pt;}
.y41_c00075{bottom:81.453333pt;}
.y45_c00075{bottom:83.666667pt;}
.y46_c00075{bottom:84.253333pt;}
.y44_c00075{bottom:84.920000pt;}
.y43_c00075{bottom:89.786667pt;}
.y42_c00075{bottom:95.853333pt;}
.y40_c00075{bottom:116.666667pt;}
.y3f_c00075{bottom:125.253333pt;}
.y3e_c00075{bottom:137.120000pt;}
.y3d_c00075{bottom:153.120000pt;}
.y3c_c00075{bottom:161.786667pt;}
.y3b_c00075{bottom:164.666667pt;}
.y3a_c00075{bottom:173.253333pt;}
.y39_c00075{bottom:182.586667pt;}
.y38_c00075{bottom:187.386667pt;}
.y37_c00075{bottom:189.253333pt;}
.y36_c00075{bottom:194.120000pt;}
.y35_c00075{bottom:206.253333pt;}
.y34_c00075{bottom:225.800000pt;}
.y33_c00075{bottom:243.386667pt;}
.y32_c00075{bottom:250.386667pt;}
.y31_c00075{bottom:250.720000pt;}
.y30_c00075{bottom:251.333333pt;}
.y2f_c00075{bottom:343.466667pt;}
.y2e_c00075{bottom:360.520000pt;}
.y2d_c00075{bottom:363.666667pt;}
.y2c_c00075{bottom:366.253333pt;}
.y2b_c00075{bottom:382.586667pt;}
.y29_c00075{bottom:400.453333pt;}
.y2a_c00075{bottom:401.120000pt;}
.y28_c00075{bottom:402.720000pt;}
.y27_c00075{bottom:421.586667pt;}
.y26_c00075{bottom:441.120000pt;}
.y25_c00075{bottom:460.666667pt;}
.y21_c00075{bottom:479.786667pt;}
.y22_c00075{bottom:480.120000pt;}
.y23_c00075{bottom:480.186667pt;}
.y24_c00075{bottom:480.453333pt;}
.y1f_c00075{bottom:498.720000pt;}
.y20_c00075{bottom:500.253333pt;}
.y1e_c00075{bottom:595.000000pt;}
.y1b_c00075{bottom:614.853333pt;}
.y1c_c00075{bottom:617.120000pt;}
.y1d_c00075{bottom:618.720000pt;}
.y18_c00075{bottom:633.720000pt;}
.y19_c00075{bottom:637.920000pt;}
.y1a_c00075{bottom:638.586667pt;}
.y17_c00075{bottom:651.333333pt;}
.y16_c00075{bottom:674.733333pt;}
.y15_c00075{bottom:689.453333pt;}
.y10_c00075{bottom:709.600000pt;}
.y11_c00075{bottom:712.133333pt;}
.y12_c00075{bottom:712.466667pt;}
.y13_c00075{bottom:716.000000pt;}
.y14_c00075{bottom:716.933333pt;}
.ye_c00075{bottom:729.133333pt;}
.yf_c00075{bottom:736.186667pt;}
.yd_c00075{bottom:749.266667pt;}
.ya_c00075{bottom:764.933333pt;}
.yb_c00075{bottom:771.000000pt;}
.yc_c00075{bottom:775.520000pt;}
.y8_c00075{bottom:880.186667pt;}
.y9_c00075{bottom:890.386667pt;}
.y7_c00075{bottom:894.853333pt;}
.y2_c00075{bottom:917.266667pt;}
.y3_c00075{bottom:924.000000pt;}
.y4_c00075{bottom:925.600000pt;}
.y5_c00075{bottom:926.520000pt;}
.y6_c00075{bottom:929.133333pt;}
.y1_c00075{bottom:973.933333pt;}
.h4_c00075{height:47.085938pt;}
.ha_c00075{height:47.109375pt;}
.h1_c00075{height:52.343750pt;}
.h8_c00075{height:57.578125pt;}
.h9_c00075{height:62.812500pt;}
.h7_c00075{height:66.750000pt;}
.h3_c00075{height:68.046875pt;}
.h6_c00075{height:69.875000pt;}
.h2_c00075{height:73.244792pt;}
.h5_c00075{height:75.250000pt;}
.hb_c00075{height:80.625000pt;}
.h0_c00075{height:1044.000000pt;}
.w0_c00075{width:650.646400pt;}
.w1_c00075{width:650.666667pt;}
.x0_c00075{left:0.000000pt;}
.x19_c00075{left:38.702400pt;}
.x13_c00075{left:39.635733pt;}
.x7_c00075{left:40.969067pt;}
.xb_c00075{left:42.235733pt;}
.x14_c00075{left:65.569067pt;}
.xc_c00075{left:66.822400pt;}
.x2_c00075{left:68.155733pt;}
.x2c_c00075{left:69.102400pt;}
.x21_c00075{left:72.969067pt;}
.x31_c00075{left:75.489067pt;}
.x1b_c00075{left:120.302400pt;}
.x23_c00075{left:121.569067pt;}
.x24_c00075{left:124.169067pt;}
.x9_c00075{left:139.502400pt;}
.x1c_c00075{left:145.235733pt;}
.x25_c00075{left:153.889067pt;}
.x2b_c00075{left:154.835733pt;}
.x26_c00075{left:188.435733pt;}
.xe_c00075{left:224.635733pt;}
.xf_c00075{left:231.035733pt;}
.x1_c00075{left:232.635733pt;}
.x10_c00075{left:247.035733pt;}
.x1a_c00075{left:250.569067pt;}
.x2d_c00075{left:252.769067pt;}
.x27_c00075{left:260.769067pt;}
.x8_c00075{left:263.635733pt;}
.x29_c00075{left:272.969067pt;}
.x3_c00075{left:275.835733pt;}
.x15_c00075{left:281.902400pt;}
.xd_c00075{left:288.969067pt;}
.x17_c00075{left:295.969067pt;}
.x28_c00075{left:314.569067pt;}
.x2e_c00075{left:320.969067pt;}
.x18_c00075{left:345.902400pt;}
.x4_c00075{left:347.835733pt;}
.x5_c00075{left:356.435733pt;}
.x6_c00075{left:381.435733pt;}
.x22_c00075{left:442.569067pt;}
.x1f_c00075{left:469.769067pt;}
.x2a_c00075{left:481.235733pt;}
.xa_c00075{left:494.035733pt;}
.x2f_c00075{left:498.835733pt;}
.x1d_c00075{left:517.435733pt;}
.x1e_c00075{left:543.635733pt;}
.x20_c00075{left:547.835733pt;}
.x30_c00075{left:549.769067pt;}
.x11_c00075{left:551.969067pt;}
.x12_c00075{left:575.369067pt;}
.x16_c00075{left:577.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6430aaea4eff02b435ab926.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00076;src:url('chunks/assets/font_341e6d7e26e2f0fe64d217c9.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00076;src:url('chunks/assets/font_6b65a012c14853008c0956c2.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00076;src:url('chunks/assets/font_759c4cf2ecb324a4d51ac836.woff2')format("woff");}.ff4_c00076{font-family:ff4_c00076;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00076{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m6_c00076{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m13_c00076{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4_c00076{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3_c00076{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c00076{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5_c00076{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8_c00076{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00076{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00076{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m18_c00076{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mf_c00076{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10_c00076{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m0_c00076{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c00076{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c00076{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c00076{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m14_c00076{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00076{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00076{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c00076{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00076{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00076{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m19_c00076{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2_c00076{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c00076{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c00076{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00076{color:transparent;}
.fs1_c00076{font-size:54.000000px;}
.fs0_c00076{font-size:60.000000px;}
.fs6_c00076{font-size:66.000000px;}
.fs4_c00076{font-size:72.000000px;}
.fs3_c00076{font-size:78.000000px;}
.fs2_c00076{font-size:84.000000px;}
.fs5_c00076{font-size:96.000000px;}
.y0_c00076{bottom:0.000000px;}
.y26_c00076{bottom:50.160000px;}
.y22_c00076{bottom:69.585000px;}
.y23_c00076{bottom:71.460000px;}
.y24_c00076{bottom:74.385000px;}
.y25_c00076{bottom:75.810000px;}
.y21_c00076{bottom:93.060000px;}
.y20_c00076{bottom:237.060000px;}
.y1d_c00076{bottom:257.625000px;}
.y1e_c00076{bottom:257.910000px;}
.y1c_c00076{bottom:258.660000px;}
.y1f_c00076{bottom:259.035000px;}
.y1b_c00076{bottom:279.900000px;}
.y1a_c00076{bottom:301.125000px;}
.y19_c00076{bottom:322.710000px;}
.y17_c00076{bottom:343.275000px;}
.y18_c00076{bottom:345.060000px;}
.y14_c00076{bottom:493.335000px;}
.y15_c00076{bottom:493.710000px;}
.y16_c00076{bottom:494.085000px;}
.y12_c00076{bottom:515.310000px;}
.y13_c00076{bottom:515.685000px;}
.y10_c00076{bottom:536.535000px;}
.y11_c00076{bottom:536.910000px;}
.yf_c00076{bottom:558.510000px;}
.ye_c00076{bottom:709.710000px;}
.yd_c00076{bottom:730.950000px;}
.yc_c00076{bottom:753.285000px;}
.yb_c00076{bottom:755.460000px;}
.ya_c00076{bottom:774.135000px;}
.y9_c00076{bottom:795.375000px;}
.y8_c00076{bottom:796.875000px;}
.y7_c00076{bottom:797.175000px;}
.y6_c00076{bottom:817.335000px;}
.y5_c00076{bottom:968.925000px;}
.y4_c00076{bottom:989.460000px;}
.y3_c00076{bottom:1044.900000px;}
.y1_c00076{bottom:1049.925000px;}
.y2_c00076{bottom:1058.625000px;}
.h2_c00076{height:54.421875px;}
.h1_c00076{height:58.886719px;}
.h9_c00076{height:64.775391px;}
.h6_c00076{height:70.628906px;}
.h7_c00076{height:70.664062px;}
.h5_c00076{height:78.609375px;}
.h4_c00076{height:82.441406px;}
.h3_c00076{height:84.656250px;}
.h8_c00076{height:94.218750px;}
.h0_c00076{height:1174.500000px;}
.w0_c00076{width:731.977200px;}
.w1_c00076{width:732.000000px;}
.x9_c00076{left:-21.259800px;}
.xa_c00076{left:-16.609800px;}
.x0_c00076{left:0.000000px;}
.xc_c00076{left:49.990200px;}
.x8_c00076{left:51.790200px;}
.x5_c00076{left:53.290200px;}
.x14_c00076{left:81.715200px;}
.xb_c00076{left:83.515200px;}
.xf_c00076{left:85.300200px;}
.x4_c00076{left:86.365200px;}
.xd_c00076{left:88.540200px;}
.x1b_c00076{left:95.740200px;}
.xe_c00076{left:108.340200px;}
.x1a_c00076{left:125.590200px;}
.x16_c00076{left:173.875200px;}
.x17_c00076{left:181.750200px;}
.x6_c00076{left:197.965200px;}
.x7_c00076{left:206.290200px;}
.x11_c00076{left:260.590200px;}
.x1_c00076{left:271.090200px;}
.x12_c00076{left:287.965200px;}
.x13_c00076{left:305.965200px;}
.x18_c00076{left:350.590200px;}
.x10_c00076{left:355.690200px;}
.x19_c00076{left:377.965200px;}
.x15_c00076{left:456.115200px;}
.x2_c00076{left:468.715200px;}
.x1c_c00076{left:568.090200px;}
.x3_c00076{left:642.190200px;}
.x1d_c00076{left:645.115200px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls0_c00076{letter-spacing:0.000000pt;}
.ws0_c00076{word-spacing:0.000000pt;}
.fs1_c00076{font-size:48.000000pt;}
.fs0_c00076{font-size:53.333333pt;}
.fs6_c00076{font-size:58.666667pt;}
.fs4_c00076{font-size:64.000000pt;}
.fs3_c00076{font-size:69.333333pt;}
.fs2_c00076{font-size:74.666667pt;}
.fs5_c00076{font-size:85.333333pt;}
.y0_c00076{bottom:0.000000pt;}
.y26_c00076{bottom:44.586667pt;}
.y22_c00076{bottom:61.853333pt;}
.y23_c00076{bottom:63.520000pt;}
.y24_c00076{bottom:66.120000pt;}
.y25_c00076{bottom:67.386667pt;}
.y21_c00076{bottom:82.720000pt;}
.y20_c00076{bottom:210.720000pt;}
.y1d_c00076{bottom:229.000000pt;}
.y1e_c00076{bottom:229.253333pt;}
.y1c_c00076{bottom:229.920000pt;}
.y1f_c00076{bottom:230.253333pt;}
.y1b_c00076{bottom:248.800000pt;}
.y1a_c00076{bottom:267.666667pt;}
.y19_c00076{bottom:286.853333pt;}
.y17_c00076{bottom:305.133333pt;}
.y18_c00076{bottom:306.720000pt;}
.y14_c00076{bottom:438.520000pt;}
.y15_c00076{bottom:438.853333pt;}
.y16_c00076{bottom:439.186667pt;}
.y12_c00076{bottom:458.053333pt;}
.y13_c00076{bottom:458.386667pt;}
.y10_c00076{bottom:476.920000pt;}
.y11_c00076{bottom:477.253333pt;}
.yf_c00076{bottom:496.453333pt;}
.ye_c00076{bottom:630.853333pt;}
.yd_c00076{bottom:649.733333pt;}
.yc_c00076{bottom:669.586667pt;}
.yb_c00076{bottom:671.520000pt;}
.ya_c00076{bottom:688.120000pt;}
.y9_c00076{bottom:707.000000pt;}
.y8_c00076{bottom:708.333333pt;}
.y7_c00076{bottom:708.600000pt;}
.y6_c00076{bottom:726.520000pt;}
.y5_c00076{bottom:861.266667pt;}
.y4_c00076{bottom:879.520000pt;}
.y3_c00076{bottom:928.800000pt;}
.y1_c00076{bottom:933.266667pt;}
.y2_c00076{bottom:941.000000pt;}
.h2_c00076{height:48.375000pt;}
.h1_c00076{height:52.343750pt;}
.h9_c00076{height:57.578125pt;}
.h6_c00076{height:62.781250pt;}
.h7_c00076{height:62.812500pt;}
.h5_c00076{height:69.875000pt;}
.h4_c00076{height:73.281250pt;}
.h3_c00076{height:75.250000pt;}
.h8_c00076{height:83.750000pt;}
.h0_c00076{height:1044.000000pt;}
.w0_c00076{width:650.646400pt;}
.w1_c00076{width:650.666667pt;}
.x9_c00076{left:-18.897600pt;}
.xa_c00076{left:-14.764267pt;}
.x0_c00076{left:0.000000pt;}
.xc_c00076{left:44.435733pt;}
.x8_c00076{left:46.035733pt;}
.x5_c00076{left:47.369067pt;}
.x14_c00076{left:72.635733pt;}
.xb_c00076{left:74.235733pt;}
.xf_c00076{left:75.822400pt;}
.x4_c00076{left:76.769067pt;}
.xd_c00076{left:78.702400pt;}
.x1b_c00076{left:85.102400pt;}
.xe_c00076{left:96.302400pt;}
.x1a_c00076{left:111.635733pt;}
.x16_c00076{left:154.555733pt;}
.x17_c00076{left:161.555733pt;}
.x6_c00076{left:175.969067pt;}
.x7_c00076{left:183.369067pt;}
.x11_c00076{left:231.635733pt;}
.x1_c00076{left:240.969067pt;}
.x12_c00076{left:255.969067pt;}
.x13_c00076{left:271.969067pt;}
.x18_c00076{left:311.635733pt;}
.x10_c00076{left:316.169067pt;}
.x19_c00076{left:335.969067pt;}
.x15_c00076{left:405.435733pt;}
.x2_c00076{left:416.635733pt;}
.x1c_c00076{left:504.969067pt;}
.x3_c00076{left:570.835733pt;}
.x1d_c00076{left:573.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_313a5755310d4f1cb61e3a01.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00077;src:url('chunks/assets/font_ad84c80b7c6818aa02a7a77e.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00077{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m12_c00077{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8_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);}
.mb_c00077{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me_c00077{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00077{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m6_c00077{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c00077{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c00077{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00077{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00077{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c00077{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00077{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00077{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00077{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c00077{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c00077{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c00077{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00077{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00077{color:transparent;}
.fs1_c00077{font-size:60.000000px;}
.fs2_c00077{font-size:72.000000px;}
.fs0_c00077{font-size:78.000000px;}
.y0_c00077{bottom:0.000000px;}
.y1c_c00077{bottom:609.285000px;}
.y1b_c00077{bottom:626.910000px;}
.y1a_c00077{bottom:643.125000px;}
.y19_c00077{bottom:649.260000px;}
.y18_c00077{bottom:668.310000px;}
.y17_c00077{bottom:670.500000px;}
.y16_c00077{bottom:672.285000px;}
.y15_c00077{bottom:692.085000px;}
.y14_c00077{bottom:713.685000px;}
.y13_c00077{bottom:735.660000px;}
.y12_c00077{bottom:756.885000px;}
.y11_c00077{bottom:775.635000px;}
.y10_c00077{bottom:778.500000px;}
.yf_c00077{bottom:799.050000px;}
.ye_c00077{bottom:820.935000px;}
.yd_c00077{bottom:842.250000px;}
.yc_c00077{bottom:860.925000px;}
.yb_c00077{bottom:884.685000px;}
.ya_c00077{bottom:906.300000px;}
.y9_c00077{bottom:926.085000px;}
.y8_c00077{bottom:928.275000px;}
.y7_c00077{bottom:947.400000px;}
.y6_c00077{bottom:970.710000px;}
.y5_c00077{bottom:991.275000px;}
.y4_c00077{bottom:1012.500000px;}
.y1_c00077{bottom:1061.775000px;}
.y3_c00077{bottom:1069.335000px;}
.y2_c00077{bottom:1076.025000px;}
.h2_c00077{height:58.886719px;}
.h4_c00077{height:70.628906px;}
.h3_c00077{height:70.664062px;}
.h1_c00077{height:76.552734px;}
.h0_c00077{height:1174.500000px;}
.w0_c00077{width:731.977200px;}
.w1_c00077{width:732.000000px;}
.x0_c00077{left:0.000000px;}
.x16_c00077{left:48.565200px;}
.x14_c00077{left:49.690200px;}
.x11_c00077{left:51.115200px;}
.x10_c00077{left:52.165200px;}
.xe_c00077{left:54.715200px;}
.xb_c00077{left:57.565200px;}
.x9_c00077{left:60.490200px;}
.x8_c00077{left:62.290200px;}
.x5_c00077{left:65.515200px;}
.x4_c00077{left:67.315200px;}
.xf_c00077{left:83.515200px;}
.xc_c00077{left:85.990200px;}
.x1_c00077{left:87.790200px;}
.xa_c00077{left:91.390200px;}
.x6_c00077{left:94.315200px;}
.x2_c00077{left:105.490200px;}
.x12_c00077{left:271.765200px;}
.x3_c00077{left:287.590200px;}
.x13_c00077{left:428.740200px;}
.x15_c00077{left:648.340200px;}
.x7_c00077{left:658.390200px;}
.xd_c00077{left:662.365200px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls0_c00077{letter-spacing:0.000000pt;}
.ws0_c00077{word-spacing:0.000000pt;}
.fs1_c00077{font-size:53.333333pt;}
.fs2_c00077{font-size:64.000000pt;}
.fs0_c00077{font-size:69.333333pt;}
.y0_c00077{bottom:0.000000pt;}
.y1c_c00077{bottom:541.586667pt;}
.y1b_c00077{bottom:557.253333pt;}
.y1a_c00077{bottom:571.666667pt;}
.y19_c00077{bottom:577.120000pt;}
.y18_c00077{bottom:594.053333pt;}
.y17_c00077{bottom:596.000000pt;}
.y16_c00077{bottom:597.586667pt;}
.y15_c00077{bottom:615.186667pt;}
.y14_c00077{bottom:634.386667pt;}
.y13_c00077{bottom:653.920000pt;}
.y12_c00077{bottom:672.786667pt;}
.y11_c00077{bottom:689.453333pt;}
.y10_c00077{bottom:692.000000pt;}
.yf_c00077{bottom:710.266667pt;}
.ye_c00077{bottom:729.720000pt;}
.yd_c00077{bottom:748.666667pt;}
.yc_c00077{bottom:765.266667pt;}
.yb_c00077{bottom:786.386667pt;}
.ya_c00077{bottom:805.600000pt;}
.y9_c00077{bottom:823.186667pt;}
.y8_c00077{bottom:825.133333pt;}
.y7_c00077{bottom:842.133333pt;}
.y6_c00077{bottom:862.853333pt;}
.y5_c00077{bottom:881.133333pt;}
.y4_c00077{bottom:900.000000pt;}
.y1_c00077{bottom:943.800000pt;}
.y3_c00077{bottom:950.520000pt;}
.y2_c00077{bottom:956.466667pt;}
.h2_c00077{height:52.343750pt;}
.h4_c00077{height:62.781250pt;}
.h3_c00077{height:62.812500pt;}
.h1_c00077{height:68.046875pt;}
.h0_c00077{height:1044.000000pt;}
.w0_c00077{width:650.646400pt;}
.w1_c00077{width:650.666667pt;}
.x0_c00077{left:0.000000pt;}
.x16_c00077{left:43.169067pt;}
.x14_c00077{left:44.169067pt;}
.x11_c00077{left:45.435733pt;}
.x10_c00077{left:46.369067pt;}
.xe_c00077{left:48.635733pt;}
.xb_c00077{left:51.169067pt;}
.x9_c00077{left:53.769067pt;}
.x8_c00077{left:55.369067pt;}
.x5_c00077{left:58.235733pt;}
.x4_c00077{left:59.835733pt;}
.xf_c00077{left:74.235733pt;}
.xc_c00077{left:76.435733pt;}
.x1_c00077{left:78.035733pt;}
.xa_c00077{left:81.235733pt;}
.x6_c00077{left:83.835733pt;}
.x2_c00077{left:93.769067pt;}
.x12_c00077{left:241.569067pt;}
.x3_c00077{left:255.635733pt;}
.x13_c00077{left:381.102400pt;}
.x15_c00077{left:576.302400pt;}
.x7_c00077{left:585.235733pt;}
.xd_c00077{left:588.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9adceecb879b75ac4d57852.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00078;src:url('chunks/assets/font_540b1de6abee06a6432adbd4.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00078;src:url('chunks/assets/font_709a4d77c369f17423a110e0.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00078;src:url('chunks/assets/font_fbc899fccfe2f663a4e2736b.woff2')format("woff");}.ff4_c00078{font-family:ff4_c00078;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00078{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m15_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);}
.m11_c00078{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc_c00078{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md_c00078{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb_c00078{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c00078{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c00078{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00078{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8_c00078{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c00078{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c00078{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c00078{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c00078{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00078{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00078{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00078{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c00078{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c00078{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c00078{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c00078{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m13_c00078{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,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;}
.fc0_c00078{color:transparent;}
.fs0_c00078{font-size:54.000000px;}
.fs6_c00078{font-size:60.000000px;}
.fs2_c00078{font-size:66.000000px;}
.fs4_c00078{font-size:72.000000px;}
.fs5_c00078{font-size:78.000000px;}
.fs3_c00078{font-size:84.000000px;}
.fs1_c00078{font-size:144.000000px;}
.y0_c00078{bottom:0.000000px;}
.y2a_c00078{bottom:32.160000px;}
.y27_c00078{bottom:48.060000px;}
.y28_c00078{bottom:51.000000px;}
.y29_c00078{bottom:55.635000px;}
.y25_c00078{bottom:66.435000px;}
.y26_c00078{bottom:70.710000px;}
.y23_c00078{bottom:137.385000px;}
.y24_c00078{bottom:137.685000px;}
.y21_c00078{bottom:157.185000px;}
.y22_c00078{bottom:161.085000px;}
.y20_c00078{bottom:179.085000px;}
.y1e_c00078{bottom:198.135000px;}
.y1d_c00078{bottom:199.935000px;}
.y1f_c00078{bottom:200.010000px;}
.y1c_c00078{bottom:200.685000px;}
.y1b_c00078{bottom:220.500000px;}
.y1a_c00078{bottom:221.250000px;}
.y19_c00078{bottom:241.410000px;}
.y18_c00078{bottom:262.935000px;}
.y17_c00078{bottom:285.660000px;}
.y15_c00078{bottom:304.710000px;}
.y16_c00078{bottom:305.085000px;}
.y14_c00078{bottom:306.525000px;}
.y13_c00078{bottom:307.650000px;}
.y12_c00078{bottom:327.375000px;}
.y11_c00078{bottom:348.960000px;}
.y10_c00078{bottom:370.560000px;}
.yf_c00078{bottom:391.875000px;}
.ye_c00078{bottom:414.135000px;}
.yd_c00078{bottom:435.375000px;}
.yc_c00078{bottom:457.410000px;}
.yb_c00078{bottom:479.010000px;}
.ya_c00078{bottom:501.285000px;}
.y9_c00078{bottom:523.260000px;}
.y8_c00078{bottom:597.000000px;}
.y7_c00078{bottom:697.500000px;}
.y6_c00078{bottom:712.635000px;}
.y5_c00078{bottom:730.950000px;}
.y4_c00078{bottom:748.260000px;}
.y3_c00078{bottom:766.260000px;}
.y2_c00078{bottom:896.625000px;}
.y1_c00078{bottom:955.560000px;}
.h4_c00078{height:54.421875px;}
.h1_c00078{height:56.320312px;}
.h8_c00078{height:58.886719px;}
.h3_c00078{height:64.775391px;}
.h6_c00078{height:70.664062px;}
.h7_c00078{height:76.514648px;}
.h5_c00078{height:82.441406px;}
.h2_c00078{height:150.187500px;}
.h0_c00078{height:1174.500000px;}
.w0_c00078{width:731.977200px;}
.w1_c00078{width:732.000000px;}
.x0_c00078{left:0.000000px;}
.x9_c00078{left:50.365200px;}
.x7_c00078{left:51.490200px;}
.xa_c00078{left:52.915200px;}
.x3_c00078{left:54.340200px;}
.x14_c00078{left:70.165200px;}
.x4_c00078{left:79.165200px;}
.xb_c00078{left:80.590200px;}
.x8_c00078{left:82.090200px;}
.x6_c00078{left:83.515200px;}
.xf_c00078{left:84.550200px;}
.x10_c00078{left:93.550200px;}
.x5_c00078{left:112.315200px;}
.x2_c00078{left:186.490200px;}
.x13_c00078{left:190.750200px;}
.xc_c00078{left:226.765200px;}
.x11_c00078{left:252.715200px;}
.x16_c00078{left:266.740200px;}
.x1_c00078{left:272.140200px;}
.xd_c00078{left:309.565200px;}
.x15_c00078{left:377.275200px;}
.xe_c00078{left:428.365200px;}
.x12_c00078{left:437.365200px;}
.x17_c00078{left:548.590200px;}
.x18_c00078{left:603.340200px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls0_c00078{letter-spacing:0.000000pt;}
.ws0_c00078{word-spacing:0.000000pt;}
.fs0_c00078{font-size:48.000000pt;}
.fs6_c00078{font-size:53.333333pt;}
.fs2_c00078{font-size:58.666667pt;}
.fs4_c00078{font-size:64.000000pt;}
.fs5_c00078{font-size:69.333333pt;}
.fs3_c00078{font-size:74.666667pt;}
.fs1_c00078{font-size:128.000000pt;}
.y0_c00078{bottom:0.000000pt;}
.y2a_c00078{bottom:28.586667pt;}
.y27_c00078{bottom:42.720000pt;}
.y28_c00078{bottom:45.333333pt;}
.y29_c00078{bottom:49.453333pt;}
.y25_c00078{bottom:59.053333pt;}
.y26_c00078{bottom:62.853333pt;}
.y23_c00078{bottom:122.120000pt;}
.y24_c00078{bottom:122.386667pt;}
.y21_c00078{bottom:139.720000pt;}
.y22_c00078{bottom:143.186667pt;}
.y20_c00078{bottom:159.186667pt;}
.y1e_c00078{bottom:176.120000pt;}
.y1d_c00078{bottom:177.720000pt;}
.y1f_c00078{bottom:177.786667pt;}
.y1c_c00078{bottom:178.386667pt;}
.y1b_c00078{bottom:196.000000pt;}
.y1a_c00078{bottom:196.666667pt;}
.y19_c00078{bottom:214.586667pt;}
.y18_c00078{bottom:233.720000pt;}
.y17_c00078{bottom:253.920000pt;}
.y15_c00078{bottom:270.853333pt;}
.y16_c00078{bottom:271.186667pt;}
.y14_c00078{bottom:272.466667pt;}
.y13_c00078{bottom:273.466667pt;}
.y12_c00078{bottom:291.000000pt;}
.y11_c00078{bottom:310.186667pt;}
.y10_c00078{bottom:329.386667pt;}
.yf_c00078{bottom:348.333333pt;}
.ye_c00078{bottom:368.120000pt;}
.yd_c00078{bottom:387.000000pt;}
.yc_c00078{bottom:406.586667pt;}
.yb_c00078{bottom:425.786667pt;}
.ya_c00078{bottom:445.586667pt;}
.y9_c00078{bottom:465.120000pt;}
.y8_c00078{bottom:530.666667pt;}
.y7_c00078{bottom:620.000000pt;}
.y6_c00078{bottom:633.453333pt;}
.y5_c00078{bottom:649.733333pt;}
.y4_c00078{bottom:665.120000pt;}
.y3_c00078{bottom:681.120000pt;}
.y2_c00078{bottom:797.000000pt;}
.y1_c00078{bottom:849.386667pt;}
.h4_c00078{height:48.375000pt;}
.h1_c00078{height:50.062500pt;}
.h8_c00078{height:52.343750pt;}
.h3_c00078{height:57.578125pt;}
.h6_c00078{height:62.812500pt;}
.h7_c00078{height:68.013021pt;}
.h5_c00078{height:73.281250pt;}
.h2_c00078{height:133.500000pt;}
.h0_c00078{height:1044.000000pt;}
.w0_c00078{width:650.646400pt;}
.w1_c00078{width:650.666667pt;}
.x0_c00078{left:0.000000pt;}
.x9_c00078{left:44.769067pt;}
.x7_c00078{left:45.769067pt;}
.xa_c00078{left:47.035733pt;}
.x3_c00078{left:48.302400pt;}
.x14_c00078{left:62.369067pt;}
.x4_c00078{left:70.369067pt;}
.xb_c00078{left:71.635733pt;}
.x8_c00078{left:72.969067pt;}
.x6_c00078{left:74.235733pt;}
.xf_c00078{left:75.155733pt;}
.x10_c00078{left:83.155733pt;}
.x5_c00078{left:99.835733pt;}
.x2_c00078{left:165.769067pt;}
.x13_c00078{left:169.555733pt;}
.xc_c00078{left:201.569067pt;}
.x11_c00078{left:224.635733pt;}
.x16_c00078{left:237.102400pt;}
.x1_c00078{left:241.902400pt;}
.xd_c00078{left:275.169067pt;}
.x15_c00078{left:335.355733pt;}
.xe_c00078{left:380.769067pt;}
.x12_c00078{left:388.769067pt;}
.x17_c00078{left:487.635733pt;}
.x18_c00078{left:536.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e7b98c783c756e284ea291a.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00079;src:url('chunks/assets/font_60fd5b31fe1e56a1f11a3964.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00079;src:url('chunks/assets/font_4dab5462d6d5a18a99ef34c6.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00079{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m0_c00079{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m5_c00079{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma_c00079{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10_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);}
.m4_c00079{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9_c00079{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c00079{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c00079{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c00079{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m8_c00079{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00079{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c00079{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c00079{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00079{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00079{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00079{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13_c00079{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c00079{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c00079{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c00079{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00079{color:transparent;}
.fs1_c00079{font-size:60.000000px;}
.fs2_c00079{font-size:78.000000px;}
.fs0_c00079{font-size:84.000000px;}
.y0_c00079{bottom:0.000000px;}
.y30_c00079{bottom:334.650000px;}
.y2f_c00079{bottom:337.500000px;}
.y2e_c00079{bottom:339.660000px;}
.y2d_c00079{bottom:352.935000px;}
.y2c_c00079{bottom:361.935000px;}
.y2b_c00079{bottom:372.375000px;}
.y2a_c00079{bottom:377.460000px;}
.y29_c00079{bottom:381.375000px;}
.y28_c00079{bottom:397.935000px;}
.y27_c00079{bottom:420.960000px;}
.y26_c00079{bottom:447.285000px;}
.y25_c00079{bottom:460.260000px;}
.y24_c00079{bottom:466.035000px;}
.y23_c00079{bottom:487.635000px;}
.y22_c00079{bottom:508.125000px;}
.y21_c00079{bottom:532.935000px;}
.y20_c00079{bottom:552.000000px;}
.y1f_c00079{bottom:574.710000px;}
.y1e_c00079{bottom:595.935000px;}
.y1d_c00079{bottom:617.910000px;}
.y1c_c00079{bottom:639.510000px;}
.y1b_c00079{bottom:661.500000px;}
.y1a_c00079{bottom:683.085000px;}
.y19_c00079{bottom:704.310000px;}
.y18_c00079{bottom:726.285000px;}
.y17_c00079{bottom:748.635000px;}
.y16_c00079{bottom:770.250000px;}
.y15_c00079{bottom:791.835000px;}
.y14_c00079{bottom:813.435000px;}
.y13_c00079{bottom:835.050000px;}
.y12_c00079{bottom:853.800000px;}
.y11_c00079{bottom:877.500000px;}
.ye_c00079{bottom:893.310000px;}
.yf_c00079{bottom:895.875000px;}
.y10_c00079{bottom:900.525000px;}
.yd_c00079{bottom:921.060000px;}
.yc_c00079{bottom:942.300000px;}
.yb_c00079{bottom:963.900000px;}
.y9_c00079{bottom:976.875000px;}
.ya_c00079{bottom:983.685000px;}
.y5_c00079{bottom:1002.375000px;}
.y6_c00079{bottom:1007.460000px;}
.y8_c00079{bottom:1008.525000px;}
.y7_c00079{bottom:1009.275000px;}
.y4_c00079{bottom:1026.525000px;}
.y1_c00079{bottom:1074.810000px;}
.y3_c00079{bottom:1084.185000px;}
.y2_c00079{bottom:1090.125000px;}
.h2_c00079{height:58.886719px;}
.h4_c00079{height:76.552734px;}
.h3_c00079{height:82.400391px;}
.h1_c00079{height:82.441406px;}
.h0_c00079{height:1174.500000px;}
.w0_c00079{width:731.977200px;}
.w1_c00079{width:732.000000px;}
.x0_c00079{left:0.000000px;}
.x21_c00079{left:42.790200px;}
.x1e_c00079{left:43.915200px;}
.x1a_c00079{left:46.765200px;}
.x18_c00079{left:48.190200px;}
.x17_c00079{left:49.990200px;}
.x14_c00079{left:53.290200px;}
.x13_c00079{left:55.090200px;}
.x12_c00079{left:56.140200px;}
.x11_c00079{left:57.565200px;}
.xf_c00079{left:60.115200px;}
.x9_c00079{left:61.165200px;}
.xc_c00079{left:62.290200px;}
.x5_c00079{left:63.715200px;}
.x16_c00079{left:67.315200px;}
.x1d_c00079{left:73.765200px;}
.x1b_c00079{left:76.675200px;}
.x19_c00079{left:78.490200px;}
.x15_c00079{left:83.140200px;}
.x1_c00079{left:84.175200px;}
.x10_c00079{left:88.915200px;}
.xb_c00079{left:92.515200px;}
.x4_c00079{left:94.990200px;}
.x2_c00079{left:101.515200px;}
.x22_c00079{left:144.340200px;}
.xa_c00079{left:178.540200px;}
.xd_c00079{left:200.875200px;}
.x23_c00079{left:206.965200px;}
.xe_c00079{left:208.750200px;}
.x1f_c00079{left:270.340200px;}
.x3_c00079{left:284.365200px;}
.x20_c00079{left:300.190200px;}
.x6_c00079{left:435.565200px;}
.x7_c00079{left:444.565200px;}
.x1c_c00079{left:456.490200px;}
.x8_c00079{left:614.140200px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls0_c00079{letter-spacing:0.000000pt;}
.ws0_c00079{word-spacing:0.000000pt;}
.fs1_c00079{font-size:53.333333pt;}
.fs2_c00079{font-size:69.333333pt;}
.fs0_c00079{font-size:74.666667pt;}
.y0_c00079{bottom:0.000000pt;}
.y30_c00079{bottom:297.466667pt;}
.y2f_c00079{bottom:300.000000pt;}
.y2e_c00079{bottom:301.920000pt;}
.y2d_c00079{bottom:313.720000pt;}
.y2c_c00079{bottom:321.720000pt;}
.y2b_c00079{bottom:331.000000pt;}
.y2a_c00079{bottom:335.520000pt;}
.y29_c00079{bottom:339.000000pt;}
.y28_c00079{bottom:353.720000pt;}
.y27_c00079{bottom:374.186667pt;}
.y26_c00079{bottom:397.586667pt;}
.y25_c00079{bottom:409.120000pt;}
.y24_c00079{bottom:414.253333pt;}
.y23_c00079{bottom:433.453333pt;}
.y22_c00079{bottom:451.666667pt;}
.y21_c00079{bottom:473.720000pt;}
.y20_c00079{bottom:490.666667pt;}
.y1f_c00079{bottom:510.853333pt;}
.y1e_c00079{bottom:529.720000pt;}
.y1d_c00079{bottom:549.253333pt;}
.y1c_c00079{bottom:568.453333pt;}
.y1b_c00079{bottom:588.000000pt;}
.y1a_c00079{bottom:607.186667pt;}
.y19_c00079{bottom:626.053333pt;}
.y18_c00079{bottom:645.586667pt;}
.y17_c00079{bottom:665.453333pt;}
.y16_c00079{bottom:684.666667pt;}
.y15_c00079{bottom:703.853333pt;}
.y14_c00079{bottom:723.053333pt;}
.y13_c00079{bottom:742.266667pt;}
.y12_c00079{bottom:758.933333pt;}
.y11_c00079{bottom:780.000000pt;}
.ye_c00079{bottom:794.053333pt;}
.yf_c00079{bottom:796.333333pt;}
.y10_c00079{bottom:800.466667pt;}
.yd_c00079{bottom:818.720000pt;}
.yc_c00079{bottom:837.600000pt;}
.yb_c00079{bottom:856.800000pt;}
.y9_c00079{bottom:868.333333pt;}
.ya_c00079{bottom:874.386667pt;}
.y5_c00079{bottom:891.000000pt;}
.y6_c00079{bottom:895.520000pt;}
.y8_c00079{bottom:896.466667pt;}
.y7_c00079{bottom:897.133333pt;}
.y4_c00079{bottom:912.466667pt;}
.y1_c00079{bottom:955.386667pt;}
.y3_c00079{bottom:963.720000pt;}
.y2_c00079{bottom:969.000000pt;}
.h2_c00079{height:52.343750pt;}
.h4_c00079{height:68.046875pt;}
.h3_c00079{height:73.244792pt;}
.h1_c00079{height:73.281250pt;}
.h0_c00079{height:1044.000000pt;}
.w0_c00079{width:650.646400pt;}
.w1_c00079{width:650.666667pt;}
.x0_c00079{left:0.000000pt;}
.x21_c00079{left:38.035733pt;}
.x1e_c00079{left:39.035733pt;}
.x1a_c00079{left:41.569067pt;}
.x18_c00079{left:42.835733pt;}
.x17_c00079{left:44.435733pt;}
.x14_c00079{left:47.369067pt;}
.x13_c00079{left:48.969067pt;}
.x12_c00079{left:49.902400pt;}
.x11_c00079{left:51.169067pt;}
.xf_c00079{left:53.435733pt;}
.x9_c00079{left:54.369067pt;}
.xc_c00079{left:55.369067pt;}
.x5_c00079{left:56.635733pt;}
.x16_c00079{left:59.835733pt;}
.x1d_c00079{left:65.569067pt;}
.x1b_c00079{left:68.155733pt;}
.x19_c00079{left:69.769067pt;}
.x15_c00079{left:73.902400pt;}
.x1_c00079{left:74.822400pt;}
.x10_c00079{left:79.035733pt;}
.xb_c00079{left:82.235733pt;}
.x4_c00079{left:84.435733pt;}
.x2_c00079{left:90.235733pt;}
.x22_c00079{left:128.302400pt;}
.xa_c00079{left:158.702400pt;}
.xd_c00079{left:178.555733pt;}
.x23_c00079{left:183.969067pt;}
.xe_c00079{left:185.555733pt;}
.x1f_c00079{left:240.302400pt;}
.x3_c00079{left:252.769067pt;}
.x20_c00079{left:266.835733pt;}
.x6_c00079{left:387.169067pt;}
.x7_c00079{left:395.169067pt;}
.x1c_c00079{left:405.769067pt;}
.x8_c00079{left:545.902400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7418eebbce28cdcb2577d42.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00080;src:url('chunks/assets/font_7bf487e19146ade00469f9e4.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00080{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m0_c00080{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c00080{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00080{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc_c00080{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c00080{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_c00080{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md_c00080{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00080{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c00080{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00080{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00080{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1_c00080{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00080{color:transparent;}
.fs3_c00080{font-size:54.000000px;}
.fs0_c00080{font-size:60.000000px;}
.fs2_c00080{font-size:72.000000px;}
.fs1_c00080{font-size:84.000000px;}
.y0_c00080{bottom:0.000000px;}
.y1f_c00080{bottom:50.910000px;}
.y1e_c00080{bottom:72.510000px;}
.y1d_c00080{bottom:92.685000px;}
.y1b_c00080{bottom:113.535000px;}
.y1c_c00080{bottom:114.585000px;}
.y1a_c00080{bottom:134.460000px;}
.y18_c00080{bottom:155.310000px;}
.y19_c00080{bottom:155.685000px;}
.y17_c00080{bottom:175.500000px;}
.y16_c00080{bottom:196.410000px;}
.y15_c00080{bottom:217.260000px;}
.y14_c00080{bottom:238.875000px;}
.y13_c00080{bottom:260.460000px;}
.y12_c00080{bottom:282.060000px;}
.y11_c00080{bottom:303.285000px;}
.y10_c00080{bottom:325.275000px;}
.yf_c00080{bottom:346.500000px;}
.ye_c00080{bottom:367.335000px;}
.yd_c00080{bottom:455.250000px;}
.yc_c00080{bottom:495.135000px;}
.yb_c00080{bottom:730.635000px;}
.ya_c00080{bottom:750.450000px;}
.y9_c00080{bottom:750.750000px;}
.y8_c00080{bottom:752.910000px;}
.y7_c00080{bottom:774.885000px;}
.y6_c00080{bottom:796.500000px;}
.y5_c00080{bottom:818.460000px;}
.y4_c00080{bottom:892.560000px;}
.y3_c00080{bottom:1055.685000px;}
.y2_c00080{bottom:1059.960000px;}
.y1_c00080{bottom:1061.460000px;}
.h4_c00080{height:52.998047px;}
.h1_c00080{height:60.468750px;}
.h3_c00080{height:70.664062px;}
.h2_c00080{height:82.441406px;}
.h0_c00080{height:1174.500000px;}
.w0_c00080{width:731.977200px;}
.w1_c00080{width:732.000000px;}
.x0_c00080{left:0.000000px;}
.x6_c00080{left:51.790200px;}
.x5_c00080{left:73.390200px;}
.xb_c00080{left:88.165200px;}
.xc_c00080{left:89.290200px;}
.xd_c00080{left:90.340200px;}
.xe_c00080{left:91.390200px;}
.xf_c00080{left:92.890200px;}
.x11_c00080{left:93.940200px;}
.x13_c00080{left:95.365200px;}
.x10_c00080{left:137.140200px;}
.x9_c00080{left:141.115200px;}
.x12_c00080{left:243.340200px;}
.x4_c00080{left:264.190200px;}
.xa_c00080{left:268.915200px;}
.x1_c00080{left:292.690200px;}
.x2_c00080{left:462.565200px;}
.x7_c00080{left:586.090200px;}
.x8_c00080{left:623.515200px;}
.x3_c00080{left:634.690200px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls0_c00080{letter-spacing:0.000000pt;}
.ws0_c00080{word-spacing:0.000000pt;}
.fs3_c00080{font-size:48.000000pt;}
.fs0_c00080{font-size:53.333333pt;}
.fs2_c00080{font-size:64.000000pt;}
.fs1_c00080{font-size:74.666667pt;}
.y0_c00080{bottom:0.000000pt;}
.y1f_c00080{bottom:45.253333pt;}
.y1e_c00080{bottom:64.453333pt;}
.y1d_c00080{bottom:82.386667pt;}
.y1b_c00080{bottom:100.920000pt;}
.y1c_c00080{bottom:101.853333pt;}
.y1a_c00080{bottom:119.520000pt;}
.y18_c00080{bottom:138.053333pt;}
.y19_c00080{bottom:138.386667pt;}
.y17_c00080{bottom:156.000000pt;}
.y16_c00080{bottom:174.586667pt;}
.y15_c00080{bottom:193.120000pt;}
.y14_c00080{bottom:212.333333pt;}
.y13_c00080{bottom:231.520000pt;}
.y12_c00080{bottom:250.720000pt;}
.y11_c00080{bottom:269.586667pt;}
.y10_c00080{bottom:289.133333pt;}
.yf_c00080{bottom:308.000000pt;}
.ye_c00080{bottom:326.520000pt;}
.yd_c00080{bottom:404.666667pt;}
.yc_c00080{bottom:440.120000pt;}
.yb_c00080{bottom:649.453333pt;}
.ya_c00080{bottom:667.066667pt;}
.y9_c00080{bottom:667.333333pt;}
.y8_c00080{bottom:669.253333pt;}
.y7_c00080{bottom:688.786667pt;}
.y6_c00080{bottom:708.000000pt;}
.y5_c00080{bottom:727.520000pt;}
.y4_c00080{bottom:793.386667pt;}
.y3_c00080{bottom:938.386667pt;}
.y2_c00080{bottom:942.186667pt;}
.y1_c00080{bottom:943.520000pt;}
.h4_c00080{height:47.109375pt;}
.h1_c00080{height:53.750000pt;}
.h3_c00080{height:62.812500pt;}
.h2_c00080{height:73.281250pt;}
.h0_c00080{height:1044.000000pt;}
.w0_c00080{width:650.646400pt;}
.w1_c00080{width:650.666667pt;}
.x0_c00080{left:0.000000pt;}
.x6_c00080{left:46.035733pt;}
.x5_c00080{left:65.235733pt;}
.xb_c00080{left:78.369067pt;}
.xc_c00080{left:79.369067pt;}
.xd_c00080{left:80.302400pt;}
.xe_c00080{left:81.235733pt;}
.xf_c00080{left:82.569067pt;}
.x11_c00080{left:83.502400pt;}
.x13_c00080{left:84.769067pt;}
.x10_c00080{left:121.902400pt;}
.x9_c00080{left:125.435733pt;}
.x12_c00080{left:216.302400pt;}
.x4_c00080{left:234.835733pt;}
.xa_c00080{left:239.035733pt;}
.x1_c00080{left:260.169067pt;}
.x2_c00080{left:411.169067pt;}
.x7_c00080{left:520.969067pt;}
.x8_c00080{left:554.235733pt;}
.x3_c00080{left:564.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9beae803b40ee31f0e69d369.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00081;src:url('chunks/assets/font_12d35321c4f1d1b460ef7e61.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00081{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1_c00081{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb_c00081{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.me_c00081{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8_c00081{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.m5_c00081{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3_c00081{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9_c00081{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2_c00081{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma_c00081{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc_c00081{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c00081{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md_c00081{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00081{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,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;}
.fc0_c00081{color:transparent;}
.fs0_c00081{font-size:60.000000px;}
.fs1_c00081{font-size:84.000000px;}
.y0_c00081{bottom:0.000000px;}
.y21_c00081{bottom:72.885000px;}
.y20_c00081{bottom:75.060000px;}
.y1f_c00081{bottom:96.960000px;}
.y1e_c00081{bottom:118.260000px;}
.y1d_c00081{bottom:138.750000px;}
.y1c_c00081{bottom:160.335000px;}
.y1b_c00081{bottom:181.635000px;}
.y1a_c00081{bottom:203.250000px;}
.y19_c00081{bottom:225.135000px;}
.y18_c00081{bottom:247.125000px;}
.y17_c00081{bottom:269.085000px;}
.y16_c00081{bottom:346.875000px;}
.y15_c00081{bottom:388.185000px;}
.y14_c00081{bottom:622.935000px;}
.y13_c00081{bottom:648.510000px;}
.y12_c00081{bottom:668.685000px;}
.y11_c00081{bottom:684.885000px;}
.y10_c00081{bottom:708.660000px;}
.yf_c00081{bottom:728.835000px;}
.ye_c00081{bottom:747.885000px;}
.yd_c00081{bottom:770.250000px;}
.yc_c00081{bottom:791.775000px;}
.yb_c00081{bottom:811.560000px;}
.y8_c00081{bottom:832.875000px;}
.y9_c00081{bottom:837.900000px;}
.ya_c00081{bottom:849.000000px;}
.y7_c00081{bottom:941.925000px;}
.y6_c00081{bottom:957.060000px;}
.y5_c00081{bottom:985.500000px;}
.y4_c00081{bottom:1003.875000px;}
.y3_c00081{bottom:1027.650000px;}
.y2_c00081{bottom:1067.550000px;}
.y1_c00081{bottom:1088.460000px;}
.h1_c00081{height:58.886719px;}
.h2_c00081{height:82.441406px;}
.h3_c00081{height:84.656250px;}
.h0_c00081{height:1174.500000px;}
.w0_c00081{width:731.977200px;}
.w1_c00081{width:732.000000px;}
.x0_c00081{left:0.000000px;}
.x7_c00081{left:44.290200px;}
.x9_c00081{left:49.990200px;}
.xc_c00081{left:53.290200px;}
.x2_c00081{left:58.990200px;}
.x3_c00081{left:72.340200px;}
.x4_c00081{left:74.140200px;}
.x8_c00081{left:75.550200px;}
.xb_c00081{left:83.140200px;}
.xd_c00081{left:84.550200px;}
.xe_c00081{left:85.990200px;}
.x5_c00081{left:239.740200px;}
.x6_c00081{left:246.190200px;}
.x1_c00081{left:258.490200px;}
.xa_c00081{left:316.090200px;}
.xf_c00081{left:336.940200px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls0_c00081{letter-spacing:0.000000pt;}
.ws0_c00081{word-spacing:0.000000pt;}
.fs0_c00081{font-size:53.333333pt;}
.fs1_c00081{font-size:74.666667pt;}
.y0_c00081{bottom:0.000000pt;}
.y21_c00081{bottom:64.786667pt;}
.y20_c00081{bottom:66.720000pt;}
.y1f_c00081{bottom:86.186667pt;}
.y1e_c00081{bottom:105.120000pt;}
.y1d_c00081{bottom:123.333333pt;}
.y1c_c00081{bottom:142.520000pt;}
.y1b_c00081{bottom:161.453333pt;}
.y1a_c00081{bottom:180.666667pt;}
.y19_c00081{bottom:200.120000pt;}
.y18_c00081{bottom:219.666667pt;}
.y17_c00081{bottom:239.186667pt;}
.y16_c00081{bottom:308.333333pt;}
.y15_c00081{bottom:345.053333pt;}
.y14_c00081{bottom:553.720000pt;}
.y13_c00081{bottom:576.453333pt;}
.y12_c00081{bottom:594.386667pt;}
.y11_c00081{bottom:608.786667pt;}
.y10_c00081{bottom:629.920000pt;}
.yf_c00081{bottom:647.853333pt;}
.ye_c00081{bottom:664.786667pt;}
.yd_c00081{bottom:684.666667pt;}
.yc_c00081{bottom:703.800000pt;}
.yb_c00081{bottom:721.386667pt;}
.y8_c00081{bottom:740.333333pt;}
.y9_c00081{bottom:744.800000pt;}
.ya_c00081{bottom:754.666667pt;}
.y7_c00081{bottom:837.266667pt;}
.y6_c00081{bottom:850.720000pt;}
.y5_c00081{bottom:876.000000pt;}
.y4_c00081{bottom:892.333333pt;}
.y3_c00081{bottom:913.466667pt;}
.y2_c00081{bottom:948.933333pt;}
.y1_c00081{bottom:967.520000pt;}
.h1_c00081{height:52.343750pt;}
.h2_c00081{height:73.281250pt;}
.h3_c00081{height:75.250000pt;}
.h0_c00081{height:1044.000000pt;}
.w0_c00081{width:650.646400pt;}
.w1_c00081{width:650.666667pt;}
.x0_c00081{left:0.000000pt;}
.x7_c00081{left:39.369067pt;}
.x9_c00081{left:44.435733pt;}
.xc_c00081{left:47.369067pt;}
.x2_c00081{left:52.435733pt;}
.x3_c00081{left:64.302400pt;}
.x4_c00081{left:65.902400pt;}
.x8_c00081{left:67.155733pt;}
.xb_c00081{left:73.902400pt;}
.xd_c00081{left:75.155733pt;}
.xe_c00081{left:76.435733pt;}
.x5_c00081{left:213.102400pt;}
.x6_c00081{left:218.835733pt;}
.x1_c00081{left:229.769067pt;}
.xa_c00081{left:280.969067pt;}
.xf_c00081{left:299.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10d0705f7d5b539d3bfe63d0.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00082;src:url('chunks/assets/font_5b65cd4c1366bf3e7be8ea41.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00082;src:url('chunks/assets/font_d747bf90b2a51f31ae5a04d4.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00082{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma_c00082{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00082{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c00082{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7_c00082{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c00082{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00082{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00082{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00082{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00082{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00082{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9_c00082{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00082{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00082{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00082{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00082{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c00082{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c00082{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m12_c00082{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m15_c00082{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m13_c00082{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m1_c00082{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00082{color:transparent;}
.fs0_c00082{font-size:60.000000px;}
.fs3_c00082{font-size:66.000000px;}
.fs1_c00082{font-size:72.000000px;}
.fs2_c00082{font-size:78.000000px;}
.y0_c00082{bottom:0.000000px;}
.y37_c00082{bottom:62.460000px;}
.y31_c00082{bottom:80.085000px;}
.y32_c00082{bottom:81.135000px;}
.y33_c00082{bottom:82.185000px;}
.y34_c00082{bottom:83.685000px;}
.y35_c00082{bottom:84.750000px;}
.y36_c00082{bottom:86.250000px;}
.y2d_c00082{bottom:96.660000px;}
.y2e_c00082{bottom:98.085000px;}
.y2f_c00082{bottom:99.510000px;}
.y30_c00082{bottom:101.685000px;}
.y2c_c00082{bottom:171.510000px;}
.y2a_c00082{bottom:190.260000px;}
.y29_c00082{bottom:190.635000px;}
.y2b_c00082{bottom:193.125000px;}
.y28_c00082{bottom:212.625000px;}
.y27_c00082{bottom:233.460000px;}
.y26_c00082{bottom:254.685000px;}
.y25_c00082{bottom:276.660000px;}
.y24_c00082{bottom:298.185000px;}
.y23_c00082{bottom:319.125000px;}
.y22_c00082{bottom:340.710000px;}
.y21_c00082{bottom:361.935000px;}
.y20_c00082{bottom:383.535000px;}
.y1f_c00082{bottom:405.210000px;}
.y1b_c00082{bottom:426.060000px;}
.y1c_c00082{bottom:426.375000px;}
.y1d_c00082{bottom:427.125000px;}
.y1e_c00082{bottom:428.250000px;}
.y1a_c00082{bottom:448.335000px;}
.y19_c00082{bottom:470.385000px;}
.y18_c00082{bottom:492.285000px;}
.y17_c00082{bottom:513.885000px;}
.y16_c00082{bottom:535.875000px;}
.y15_c00082{bottom:641.310000px;}
.y14_c00082{bottom:663.585000px;}
.y13_c00082{bottom:684.885000px;}
.y12_c00082{bottom:707.625000px;}
.y11_c00082{bottom:727.335000px;}
.y10_c00082{bottom:750.450000px;}
.yf_c00082{bottom:772.710000px;}
.ye_c00082{bottom:794.400000px;}
.yd_c00082{bottom:816.960000px;}
.yc_c00082{bottom:838.650000px;}
.yb_c00082{bottom:860.250000px;}
.ya_c00082{bottom:881.775000px;}
.y9_c00082{bottom:903.435000px;}
.y8_c00082{bottom:924.675000px;}
.y7_c00082{bottom:945.525000px;}
.y6_c00082{bottom:968.625000px;}
.y5_c00082{bottom:991.650000px;}
.y4_c00082{bottom:1008.150000px;}
.y3_c00082{bottom:1061.460000px;}
.y1_c00082{bottom:1067.250000px;}
.y2_c00082{bottom:1075.875000px;}
.h1_c00082{height:58.886719px;}
.h6_c00082{height:64.743164px;}
.h5_c00082{height:64.775391px;}
.h2_c00082{height:70.664062px;}
.h3_c00082{height:72.562500px;}
.h4_c00082{height:76.514648px;}
.h0_c00082{height:1174.500000px;}
.w0_c00082{width:731.977200px;}
.w1_c00082{width:732.000000px;}
.x0_c00082{left:0.000000px;}
.xa_c00082{left:58.990200px;}
.x9_c00082{left:60.115200px;}
.x8_c00082{left:61.540200px;}
.x15_c00082{left:62.965200px;}
.x4_c00082{left:64.090200px;}
.x11_c00082{left:79.915200px;}
.xb_c00082{left:92.890200px;}
.x7_c00082{left:94.690200px;}
.x6_c00082{left:95.740200px;}
.x5_c00082{left:96.790200px;}
.x12_c00082{left:120.190200px;}
.xf_c00082{left:216.715200px;}
.x16_c00082{left:247.315200px;}
.x10_c00082{left:258.790200px;}
.x17_c00082{left:263.890200px;}
.x1_c00082{left:280.390200px;}
.xc_c00082{left:301.315200px;}
.x13_c00082{left:332.290200px;}
.x14_c00082{left:364.690200px;}
.xd_c00082{left:382.690200px;}
.x18_c00082{left:394.525200px;}
.x2_c00082{left:477.715200px;}
.x19_c00082{left:537.490200px;}
.x1a_c00082{left:556.540200px;}
.xe_c00082{left:586.390200px;}
.x3_c00082{left:648.715200px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls0_c00082{letter-spacing:0.000000pt;}
.ws0_c00082{word-spacing:0.000000pt;}
.fs0_c00082{font-size:53.333333pt;}
.fs3_c00082{font-size:58.666667pt;}
.fs1_c00082{font-size:64.000000pt;}
.fs2_c00082{font-size:69.333333pt;}
.y0_c00082{bottom:0.000000pt;}
.y37_c00082{bottom:55.520000pt;}
.y31_c00082{bottom:71.186667pt;}
.y32_c00082{bottom:72.120000pt;}
.y33_c00082{bottom:73.053333pt;}
.y34_c00082{bottom:74.386667pt;}
.y35_c00082{bottom:75.333333pt;}
.y36_c00082{bottom:76.666667pt;}
.y2d_c00082{bottom:85.920000pt;}
.y2e_c00082{bottom:87.186667pt;}
.y2f_c00082{bottom:88.453333pt;}
.y30_c00082{bottom:90.386667pt;}
.y2c_c00082{bottom:152.453333pt;}
.y2a_c00082{bottom:169.120000pt;}
.y29_c00082{bottom:169.453333pt;}
.y2b_c00082{bottom:171.666667pt;}
.y28_c00082{bottom:189.000000pt;}
.y27_c00082{bottom:207.520000pt;}
.y26_c00082{bottom:226.386667pt;}
.y25_c00082{bottom:245.920000pt;}
.y24_c00082{bottom:265.053333pt;}
.y23_c00082{bottom:283.666667pt;}
.y22_c00082{bottom:302.853333pt;}
.y21_c00082{bottom:321.720000pt;}
.y20_c00082{bottom:340.920000pt;}
.y1f_c00082{bottom:360.186667pt;}
.y1b_c00082{bottom:378.720000pt;}
.y1c_c00082{bottom:379.000000pt;}
.y1d_c00082{bottom:379.666667pt;}
.y1e_c00082{bottom:380.666667pt;}
.y1a_c00082{bottom:398.520000pt;}
.y19_c00082{bottom:418.120000pt;}
.y18_c00082{bottom:437.586667pt;}
.y17_c00082{bottom:456.786667pt;}
.y16_c00082{bottom:476.333333pt;}
.y15_c00082{bottom:570.053333pt;}
.y14_c00082{bottom:589.853333pt;}
.y13_c00082{bottom:608.786667pt;}
.y12_c00082{bottom:629.000000pt;}
.y11_c00082{bottom:646.520000pt;}
.y10_c00082{bottom:667.066667pt;}
.yf_c00082{bottom:686.853333pt;}
.ye_c00082{bottom:706.133333pt;}
.yd_c00082{bottom:726.186667pt;}
.yc_c00082{bottom:745.466667pt;}
.yb_c00082{bottom:764.666667pt;}
.ya_c00082{bottom:783.800000pt;}
.y9_c00082{bottom:803.053333pt;}
.y8_c00082{bottom:821.933333pt;}
.y7_c00082{bottom:840.466667pt;}
.y6_c00082{bottom:861.000000pt;}
.y5_c00082{bottom:881.466667pt;}
.y4_c00082{bottom:896.133333pt;}
.y3_c00082{bottom:943.520000pt;}
.y1_c00082{bottom:948.666667pt;}
.y2_c00082{bottom:956.333333pt;}
.h1_c00082{height:52.343750pt;}
.h6_c00082{height:57.549479pt;}
.h5_c00082{height:57.578125pt;}
.h2_c00082{height:62.812500pt;}
.h3_c00082{height:64.500000pt;}
.h4_c00082{height:68.013021pt;}
.h0_c00082{height:1044.000000pt;}
.w0_c00082{width:650.646400pt;}
.w1_c00082{width:650.666667pt;}
.x0_c00082{left:0.000000pt;}
.xa_c00082{left:52.435733pt;}
.x9_c00082{left:53.435733pt;}
.x8_c00082{left:54.702400pt;}
.x15_c00082{left:55.969067pt;}
.x4_c00082{left:56.969067pt;}
.x11_c00082{left:71.035733pt;}
.xb_c00082{left:82.569067pt;}
.x7_c00082{left:84.169067pt;}
.x6_c00082{left:85.102400pt;}
.x5_c00082{left:86.035733pt;}
.x12_c00082{left:106.835733pt;}
.xf_c00082{left:192.635733pt;}
.x16_c00082{left:219.835733pt;}
.x10_c00082{left:230.035733pt;}
.x17_c00082{left:234.569067pt;}
.x1_c00082{left:249.235733pt;}
.xc_c00082{left:267.835733pt;}
.x13_c00082{left:295.369067pt;}
.x14_c00082{left:324.169067pt;}
.xd_c00082{left:340.169067pt;}
.x18_c00082{left:350.689067pt;}
.x2_c00082{left:424.635733pt;}
.x19_c00082{left:477.769067pt;}
.x1a_c00082{left:494.702400pt;}
.xe_c00082{left:521.235733pt;}
.x3_c00082{left:576.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c557654d9c15797dbf13d75c.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00083;src:url('chunks/assets/font_b98da8cfff28f8cf88e7d547.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00083;src:url('chunks/assets/font_f53ab9e97016e59273c88b64.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00083;src:url('chunks/assets/font_27c2f155fa925a5a59d54447.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c00083{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m0_c00083{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m19_c00083{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb_c00083{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10_c00083{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc_c00083{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5_c00083{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9_c00083{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c00083{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me_c00083{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4_c00083{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c00083{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_c00083{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00083{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00083{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c00083{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c00083{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00083{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c00083{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17_c00083{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00083{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00083{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00083{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c00083{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00083{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c00083{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16_c00083{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c00083{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c00083{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00083{color:transparent;}
.fs1_c00083{font-size:60.000000px;}
.fs2_c00083{font-size:66.000000px;}
.fs4_c00083{font-size:72.000000px;}
.fs0_c00083{font-size:78.000000px;}
.fs3_c00083{font-size:84.000000px;}
.y0_c00083{bottom:0.000000px;}
.y46_c00083{bottom:72.135000px;}
.y45_c00083{bottom:79.035000px;}
.y44_c00083{bottom:84.375000px;}
.y43_c00083{bottom:89.085000px;}
.y42_c00083{bottom:97.335000px;}
.y41_c00083{bottom:106.410000px;}
.y40_c00083{bottom:120.375000px;}
.y3f_c00083{bottom:123.285000px;}
.y3e_c00083{bottom:123.660000px;}
.y3d_c00083{bottom:130.500000px;}
.y3c_c00083{bottom:132.660000px;}
.y3b_c00083{bottom:135.510000px;}
.y3a_c00083{bottom:138.810000px;}
.y39_c00083{bottom:140.250000px;}
.y4a_c00083{bottom:204.285000px;}
.y38_c00083{bottom:209.685000px;}
.y37_c00083{bottom:214.335000px;}
.y36_c00083{bottom:217.935000px;}
.y49_c00083{bottom:226.260000px;}
.y35_c00083{bottom:234.135000px;}
.y48_c00083{bottom:248.910000px;}
.y34_c00083{bottom:255.750000px;}
.y47_c00083{bottom:270.525000px;}
.y33_c00083{bottom:276.285000px;}
.y32_c00083{bottom:281.685000px;}
.y31_c00083{bottom:302.535000px;}
.y30_c00083{bottom:319.185000px;}
.y2f_c00083{bottom:340.710000px;}
.y2e_c00083{bottom:362.685000px;}
.y2d_c00083{bottom:384.660000px;}
.y2c_c00083{bottom:403.410000px;}
.y2b_c00083{bottom:405.900000px;}
.y2a_c00083{bottom:428.250000px;}
.y29_c00083{bottom:450.510000px;}
.y28_c00083{bottom:470.685000px;}
.y27_c00083{bottom:473.910000px;}
.y26_c00083{bottom:494.760000px;}
.y24_c00083{bottom:515.685000px;}
.y25_c00083{bottom:516.060000px;}
.y23_c00083{bottom:516.750000px;}
.y22_c00083{bottom:517.125000px;}
.y21_c00083{bottom:538.035000px;}
.y20_c00083{bottom:559.635000px;}
.y1c_c00083{bottom:580.500000px;}
.y1d_c00083{bottom:580.875000px;}
.y1e_c00083{bottom:581.160000px;}
.y1f_c00083{bottom:581.910000px;}
.y1b_c00083{bottom:602.835000px;}
.y1a_c00083{bottom:625.500000px;}
.y19_c00083{bottom:647.385000px;}
.y18_c00083{bottom:669.060000px;}
.y17_c00083{bottom:690.660000px;}
.y16_c00083{bottom:712.935000px;}
.y14_c00083{bottom:734.535000px;}
.y15_c00083{bottom:737.760000px;}
.y13_c00083{bottom:755.835000px;}
.y12_c00083{bottom:855.525000px;}
.y10_c00083{bottom:885.750000px;}
.y11_c00083{bottom:893.310000px;}
.yf_c00083{bottom:908.085000px;}
.yd_c00083{bottom:927.900000px;}
.ye_c00083{bottom:936.150000px;}
.yc_c00083{bottom:948.750000px;}
.yb_c00083{bottom:972.150000px;}
.ya_c00083{bottom:993.750000px;}
.y9_c00083{bottom:1014.675000px;}
.y4_c00083{bottom:1022.250000px;}
.y5_c00083{bottom:1024.050000px;}
.y6_c00083{bottom:1034.085000px;}
.y7_c00083{bottom:1040.925000px;}
.y8_c00083{bottom:1044.150000px;}
.y1_c00083{bottom:1080.900000px;}
.y3_c00083{bottom:1093.185000px;}
.y2_c00083{bottom:1098.210000px;}
.h2_c00083{height:58.886719px;}
.h3_c00083{height:64.775391px;}
.h8_c00083{height:70.628906px;}
.h7_c00083{height:76.514648px;}
.h4_c00083{height:76.552734px;}
.h1_c00083{height:78.609375px;}
.h6_c00083{height:82.400391px;}
.h5_c00083{height:82.441406px;}
.h0_c00083{height:1174.500000px;}
.w0_c00083{width:731.977200px;}
.w1_c00083{width:732.000000px;}
.x0_c00083{left:0.000000px;}
.x10_c00083{left:48.940200px;}
.xf_c00083{left:49.990200px;}
.x9_c00083{left:51.790200px;}
.x4_c00083{left:52.915200px;}
.x25_c00083{left:67.690200px;}
.x1e_c00083{left:68.740200px;}
.x1_c00083{left:71.290200px;}
.x11_c00083{left:76.675200px;}
.x12_c00083{left:79.165200px;}
.xd_c00083{left:80.965200px;}
.xa_c00083{left:82.090200px;}
.x18_c00083{left:84.175200px;}
.x2_c00083{left:88.165200px;}
.x5_c00083{left:92.140200px;}
.x26_c00083{left:103.690200px;}
.x1f_c00083{left:105.490200px;}
.x6_c00083{left:130.690200px;}
.x16_c00083{left:139.690200px;}
.x24_c00083{left:141.490200px;}
.x1c_c00083{left:150.790200px;}
.x17_c00083{left:160.165200px;}
.x20_c00083{left:168.115200px;}
.x1b_c00083{left:178.540200px;}
.x13_c00083{left:205.915200px;}
.x1d_c00083{left:250.540200px;}
.x21_c00083{left:256.690200px;}
.x3_c00083{left:270.715200px;}
.x19_c00083{left:276.115200px;}
.x14_c00083{left:295.165200px;}
.x27_c00083{left:319.690200px;}
.x22_c00083{left:332.590200px;}
.x23_c00083{left:352.390200px;}
.x28_c00083{left:372.940200px;}
.x15_c00083{left:417.565200px;}
.x7_c00083{left:465.115200px;}
.x8_c00083{left:497.890200px;}
.x2a_c00083{left:503.590200px;}
.x2b_c00083{left:506.140200px;}
.x29_c00083{left:513.340200px;}
.xb_c00083{left:524.890200px;}
.xe_c00083{left:628.165200px;}
.xc_c00083{left:639.340200px;}
.x1a_c00083{left:658.390200px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls0_c00083{letter-spacing:0.000000pt;}
.ws0_c00083{word-spacing:0.000000pt;}
.fs1_c00083{font-size:53.333333pt;}
.fs2_c00083{font-size:58.666667pt;}
.fs4_c00083{font-size:64.000000pt;}
.fs0_c00083{font-size:69.333333pt;}
.fs3_c00083{font-size:74.666667pt;}
.y0_c00083{bottom:0.000000pt;}
.y46_c00083{bottom:64.120000pt;}
.y45_c00083{bottom:70.253333pt;}
.y44_c00083{bottom:75.000000pt;}
.y43_c00083{bottom:79.186667pt;}
.y42_c00083{bottom:86.520000pt;}
.y41_c00083{bottom:94.586667pt;}
.y40_c00083{bottom:107.000000pt;}
.y3f_c00083{bottom:109.586667pt;}
.y3e_c00083{bottom:109.920000pt;}
.y3d_c00083{bottom:116.000000pt;}
.y3c_c00083{bottom:117.920000pt;}
.y3b_c00083{bottom:120.453333pt;}
.y3a_c00083{bottom:123.386667pt;}
.y39_c00083{bottom:124.666667pt;}
.y4a_c00083{bottom:181.586667pt;}
.y38_c00083{bottom:186.386667pt;}
.y37_c00083{bottom:190.520000pt;}
.y36_c00083{bottom:193.720000pt;}
.y49_c00083{bottom:201.120000pt;}
.y35_c00083{bottom:208.120000pt;}
.y48_c00083{bottom:221.253333pt;}
.y34_c00083{bottom:227.333333pt;}
.y47_c00083{bottom:240.466667pt;}
.y33_c00083{bottom:245.586667pt;}
.y32_c00083{bottom:250.386667pt;}
.y31_c00083{bottom:268.920000pt;}
.y30_c00083{bottom:283.720000pt;}
.y2f_c00083{bottom:302.853333pt;}
.y2e_c00083{bottom:322.386667pt;}
.y2d_c00083{bottom:341.920000pt;}
.y2c_c00083{bottom:358.586667pt;}
.y2b_c00083{bottom:360.800000pt;}
.y2a_c00083{bottom:380.666667pt;}
.y29_c00083{bottom:400.453333pt;}
.y28_c00083{bottom:418.386667pt;}
.y27_c00083{bottom:421.253333pt;}
.y26_c00083{bottom:439.786667pt;}
.y24_c00083{bottom:458.386667pt;}
.y25_c00083{bottom:458.720000pt;}
.y23_c00083{bottom:459.333333pt;}
.y22_c00083{bottom:459.666667pt;}
.y21_c00083{bottom:478.253333pt;}
.y20_c00083{bottom:497.453333pt;}
.y1c_c00083{bottom:516.000000pt;}
.y1d_c00083{bottom:516.333333pt;}
.y1e_c00083{bottom:516.586667pt;}
.y1f_c00083{bottom:517.253333pt;}
.y1b_c00083{bottom:535.853333pt;}
.y1a_c00083{bottom:556.000000pt;}
.y19_c00083{bottom:575.453333pt;}
.y18_c00083{bottom:594.720000pt;}
.y17_c00083{bottom:613.920000pt;}
.y16_c00083{bottom:633.720000pt;}
.y14_c00083{bottom:652.920000pt;}
.y15_c00083{bottom:655.786667pt;}
.y13_c00083{bottom:671.853333pt;}
.y12_c00083{bottom:760.466667pt;}
.y10_c00083{bottom:787.333333pt;}
.y11_c00083{bottom:794.053333pt;}
.yf_c00083{bottom:807.186667pt;}
.yd_c00083{bottom:824.800000pt;}
.ye_c00083{bottom:832.133333pt;}
.yc_c00083{bottom:843.333333pt;}
.yb_c00083{bottom:864.133333pt;}
.ya_c00083{bottom:883.333333pt;}
.y9_c00083{bottom:901.933333pt;}
.y4_c00083{bottom:908.666667pt;}
.y5_c00083{bottom:910.266667pt;}
.y6_c00083{bottom:919.186667pt;}
.y7_c00083{bottom:925.266667pt;}
.y8_c00083{bottom:928.133333pt;}
.y1_c00083{bottom:960.800000pt;}
.y3_c00083{bottom:971.720000pt;}
.y2_c00083{bottom:976.186667pt;}
.h2_c00083{height:52.343750pt;}
.h3_c00083{height:57.578125pt;}
.h8_c00083{height:62.781250pt;}
.h7_c00083{height:68.013021pt;}
.h4_c00083{height:68.046875pt;}
.h1_c00083{height:69.875000pt;}
.h6_c00083{height:73.244792pt;}
.h5_c00083{height:73.281250pt;}
.h0_c00083{height:1044.000000pt;}
.w0_c00083{width:650.646400pt;}
.w1_c00083{width:650.666667pt;}
.x0_c00083{left:0.000000pt;}
.x10_c00083{left:43.502400pt;}
.xf_c00083{left:44.435733pt;}
.x9_c00083{left:46.035733pt;}
.x4_c00083{left:47.035733pt;}
.x25_c00083{left:60.169067pt;}
.x1e_c00083{left:61.102400pt;}
.x1_c00083{left:63.369067pt;}
.x11_c00083{left:68.155733pt;}
.x12_c00083{left:70.369067pt;}
.xd_c00083{left:71.969067pt;}
.xa_c00083{left:72.969067pt;}
.x18_c00083{left:74.822400pt;}
.x2_c00083{left:78.369067pt;}
.x5_c00083{left:81.902400pt;}
.x26_c00083{left:92.169067pt;}
.x1f_c00083{left:93.769067pt;}
.x6_c00083{left:116.169067pt;}
.x16_c00083{left:124.169067pt;}
.x24_c00083{left:125.769067pt;}
.x1c_c00083{left:134.035733pt;}
.x17_c00083{left:142.369067pt;}
.x20_c00083{left:149.435733pt;}
.x1b_c00083{left:158.702400pt;}
.x13_c00083{left:183.035733pt;}
.x1d_c00083{left:222.702400pt;}
.x21_c00083{left:228.169067pt;}
.x3_c00083{left:240.635733pt;}
.x19_c00083{left:245.435733pt;}
.x14_c00083{left:262.369067pt;}
.x27_c00083{left:284.169067pt;}
.x22_c00083{left:295.635733pt;}
.x23_c00083{left:313.235733pt;}
.x28_c00083{left:331.502400pt;}
.x15_c00083{left:371.169067pt;}
.x7_c00083{left:413.435733pt;}
.x8_c00083{left:442.569067pt;}
.x2a_c00083{left:447.635733pt;}
.x2b_c00083{left:449.902400pt;}
.x29_c00083{left:456.302400pt;}
.xb_c00083{left:466.569067pt;}
.xe_c00083{left:558.369067pt;}
.xc_c00083{left:568.302400pt;}
.x1a_c00083{left:585.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7af6faff81f1f059c8796602.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00084;src:url('chunks/assets/font_41d79836f0c888e5be5b5b53.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00084;src:url('chunks/assets/font_9f59b636d9073bc87160bb8d.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00084;src:url('chunks/assets/font_04e91c9dde4976473a4de1e3.woff2')format("woff");}.ff4_c00084{font-family:ff4_c00084;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00084{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma_c00084{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb_c00084{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c00084{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00084{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00084{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c00084{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c00084{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c00084{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c00084{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00084{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m0_c00084{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c00084{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.me_c00084{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m9_c00084{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,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;}
.fc0_c00084{color:transparent;}
.fs0_c00084{font-size:66.000000px;}
.fs3_c00084{font-size:72.000000px;}
.fs2_c00084{font-size:78.000000px;}
.fs1_c00084{font-size:84.000000px;}
.y0_c00084{bottom:0.000000px;}
.y24_c00084{bottom:491.160000px;}
.y1f_c00084{bottom:512.085000px;}
.y20_c00084{bottom:512.760000px;}
.y21_c00084{bottom:513.510000px;}
.y22_c00084{bottom:515.685000px;}
.y23_c00084{bottom:516.060000px;}
.y1e_c00084{bottom:534.435000px;}
.y1d_c00084{bottom:556.710000px;}
.y1c_c00084{bottom:577.935000px;}
.y1b_c00084{bottom:599.910000px;}
.y1a_c00084{bottom:621.210000px;}
.y19_c00084{bottom:643.125000px;}
.y18_c00084{bottom:665.085000px;}
.y14_c00084{bottom:686.310000px;}
.y15_c00084{bottom:686.685000px;}
.y16_c00084{bottom:687.000000px;}
.y17_c00084{bottom:687.435000px;}
.y13_c00084{bottom:708.660000px;}
.y12_c00084{bottom:730.575000px;}
.y11_c00084{bottom:752.535000px;}
.y10_c00084{bottom:774.135000px;}
.yf_c00084{bottom:796.125000px;}
.ye_c00084{bottom:818.085000px;}
.yd_c00084{bottom:839.685000px;}
.yc_c00084{bottom:861.585000px;}
.yb_c00084{bottom:883.275000px;}
.ya_c00084{bottom:904.500000px;}
.y9_c00084{bottom:926.085000px;}
.y8_c00084{bottom:946.935000px;}
.y6_c00084{bottom:948.060000px;}
.y7_c00084{bottom:948.435000px;}
.y5_c00084{bottom:969.300000px;}
.y4_c00084{bottom:990.900000px;}
.y3_c00084{bottom:1012.800000px;}
.y2_c00084{bottom:1014.300000px;}
.y1_c00084{bottom:1014.675000px;}
.h4_c00084{height:64.775391px;}
.h1_c00084{height:66.515625px;}
.h7_c00084{height:70.664062px;}
.h6_c00084{height:76.514648px;}
.h5_c00084{height:82.400391px;}
.h3_c00084{height:82.441406px;}
.h2_c00084{height:84.656250px;}
.h0_c00084{height:1174.500000px;}
.w0_c00084{width:731.977200px;}
.w1_c00084{width:732.000000px;}
.x0_c00084{left:0.000000px;}
.xd_c00084{left:61.915200px;}
.x7_c00084{left:62.965200px;}
.x1_c00084{left:64.390200px;}
.x6_c00084{left:65.515200px;}
.x2_c00084{left:92.515200px;}
.x8_c00084{left:95.740200px;}
.xc_c00084{left:97.165200px;}
.x3_c00084{left:196.165200px;}
.xe_c00084{left:260.290200px;}
.xf_c00084{left:293.365200px;}
.x9_c00084{left:301.690200px;}
.x4_c00084{left:307.090200px;}
.x5_c00084{left:335.890200px;}
.xa_c00084{left:382.315200px;}
.xb_c00084{left:391.315200px;}
.x10_c00084{left:580.690200px;}
.x11_c00084{left:607.990200px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls0_c00084{letter-spacing:0.000000pt;}
.ws0_c00084{word-spacing:0.000000pt;}
.fs0_c00084{font-size:58.666667pt;}
.fs3_c00084{font-size:64.000000pt;}
.fs2_c00084{font-size:69.333333pt;}
.fs1_c00084{font-size:74.666667pt;}
.y0_c00084{bottom:0.000000pt;}
.y24_c00084{bottom:436.586667pt;}
.y1f_c00084{bottom:455.186667pt;}
.y20_c00084{bottom:455.786667pt;}
.y21_c00084{bottom:456.453333pt;}
.y22_c00084{bottom:458.386667pt;}
.y23_c00084{bottom:458.720000pt;}
.y1e_c00084{bottom:475.053333pt;}
.y1d_c00084{bottom:494.853333pt;}
.y1c_c00084{bottom:513.720000pt;}
.y1b_c00084{bottom:533.253333pt;}
.y1a_c00084{bottom:552.186667pt;}
.y19_c00084{bottom:571.666667pt;}
.y18_c00084{bottom:591.186667pt;}
.y14_c00084{bottom:610.053333pt;}
.y15_c00084{bottom:610.386667pt;}
.y16_c00084{bottom:610.666667pt;}
.y17_c00084{bottom:611.053333pt;}
.y13_c00084{bottom:629.920000pt;}
.y12_c00084{bottom:649.400000pt;}
.y11_c00084{bottom:668.920000pt;}
.y10_c00084{bottom:688.120000pt;}
.yf_c00084{bottom:707.666667pt;}
.ye_c00084{bottom:727.186667pt;}
.yd_c00084{bottom:746.386667pt;}
.yc_c00084{bottom:765.853333pt;}
.yb_c00084{bottom:785.133333pt;}
.ya_c00084{bottom:804.000000pt;}
.y9_c00084{bottom:823.186667pt;}
.y8_c00084{bottom:841.720000pt;}
.y6_c00084{bottom:842.720000pt;}
.y7_c00084{bottom:843.053333pt;}
.y5_c00084{bottom:861.600000pt;}
.y4_c00084{bottom:880.800000pt;}
.y3_c00084{bottom:900.266667pt;}
.y2_c00084{bottom:901.600000pt;}
.y1_c00084{bottom:901.933333pt;}
.h4_c00084{height:57.578125pt;}
.h1_c00084{height:59.125000pt;}
.h7_c00084{height:62.812500pt;}
.h6_c00084{height:68.013021pt;}
.h5_c00084{height:73.244792pt;}
.h3_c00084{height:73.281250pt;}
.h2_c00084{height:75.250000pt;}
.h0_c00084{height:1044.000000pt;}
.w0_c00084{width:650.646400pt;}
.w1_c00084{width:650.666667pt;}
.x0_c00084{left:0.000000pt;}
.xd_c00084{left:55.035733pt;}
.x7_c00084{left:55.969067pt;}
.x1_c00084{left:57.235733pt;}
.x6_c00084{left:58.235733pt;}
.x2_c00084{left:82.235733pt;}
.x8_c00084{left:85.102400pt;}
.xc_c00084{left:86.369067pt;}
.x3_c00084{left:174.369067pt;}
.xe_c00084{left:231.369067pt;}
.xf_c00084{left:260.769067pt;}
.x9_c00084{left:268.169067pt;}
.x4_c00084{left:272.969067pt;}
.x5_c00084{left:298.569067pt;}
.xa_c00084{left:339.835733pt;}
.xb_c00084{left:347.835733pt;}
.x10_c00084{left:516.169067pt;}
.x11_c00084{left:540.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00085{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00085{-webkit-text-stroke:0px transparent;}
}
.y0_c00085{bottom:0.000000px;}
.h0_c00085{height:1174.500000px;}
.w0_c00085{width:731.977200px;}
.w1_c00085{width:732.000000px;}
.x0_c00085{left:0.000000px;}
@media print{
.y0_c00085{bottom:0.000000pt;}
.h0_c00085{height:1044.000000pt;}
.w0_c00085{width:650.646400pt;}
.w1_c00085{width:650.666667pt;}
.x0_c00085{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_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_7d5f1dcb740062321ab34863.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00086{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,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;}
.fc0_c00086{color:transparent;}
.fs0_c00086{font-size:120.000000px;}
.y0_c00086{bottom:0.000000px;}
.y1_c00086{bottom:620.385000px;}
.h1_c00086{height:117.773438px;}
.h0_c00086{height:1174.500000px;}
.w0_c00086{width:731.977200px;}
.w1_c00086{width:732.000000px;}
.x0_c00086{left:0.000000px;}
.x1_c00086{left:278.965200px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls0_c00086{letter-spacing:0.000000pt;}
.ws0_c00086{word-spacing:0.000000pt;}
.fs0_c00086{font-size:106.666667pt;}
.y0_c00086{bottom:0.000000pt;}
.y1_c00086{bottom:551.453333pt;}
.h1_c00086{height:104.687500pt;}
.h0_c00086{height:1044.000000pt;}
.w0_c00086{width:650.646400pt;}
.w1_c00086{width:650.666667pt;}
.x0_c00086{left:0.000000pt;}
.x1_c00086{left:247.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e62365df376c0eaec000de7.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00087;src:url('chunks/assets/font_bbab8318b4296e4962936b41.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00087{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3_c00087{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7_c00087{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6_c00087{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5_c00087{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4_c00087{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1_c00087{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c00087{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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.000000px;}
.fc0_c00087{color:transparent;}
.fs1_c00087{font-size:66.000000px;}
.fs0_c00087{font-size:126.000000px;}
.y0_c00087{bottom:0.000000px;}
.y8_c00087{bottom:584.835000px;}
.y7_c00087{bottom:664.035000px;}
.y6_c00087{bottom:690.660000px;}
.y3_c00087{bottom:703.635000px;}
.y2_c00087{bottom:703.935000px;}
.y5_c00087{bottom:716.910000px;}
.y4_c00087{bottom:743.535000px;}
.y1_c00087{bottom:877.500000px;}
.h2_c00087{height:64.775391px;}
.h3_c00087{height:123.600586px;}
.h1_c00087{height:123.662109px;}
.h0_c00087{height:1174.500000px;}
.w0_c00087{width:731.977200px;}
.w1_c00087{width:732.000000px;}
.x0_c00087{left:0.000000px;}
.x1_c00087{left:97.915200px;}
.x2_c00087{left:160.915200px;}
.x7_c00087{left:231.490200px;}
.x3_c00087{left:246.190200px;}
.x6_c00087{left:336.565200px;}
.x5_c00087{left:337.690200px;}
.x4_c00087{left:339.790200px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls0_c00087{letter-spacing:0.000000pt;}
.ws0_c00087{word-spacing:0.000000pt;}
.fs1_c00087{font-size:58.666667pt;}
.fs0_c00087{font-size:112.000000pt;}
.y0_c00087{bottom:0.000000pt;}
.y8_c00087{bottom:519.853333pt;}
.y7_c00087{bottom:590.253333pt;}
.y6_c00087{bottom:613.920000pt;}
.y3_c00087{bottom:625.453333pt;}
.y2_c00087{bottom:625.720000pt;}
.y5_c00087{bottom:637.253333pt;}
.y4_c00087{bottom:660.920000pt;}
.y1_c00087{bottom:780.000000pt;}
.h2_c00087{height:57.578125pt;}
.h3_c00087{height:109.867188pt;}
.h1_c00087{height:109.921875pt;}
.h0_c00087{height:1044.000000pt;}
.w0_c00087{width:650.646400pt;}
.w1_c00087{width:650.666667pt;}
.x0_c00087{left:0.000000pt;}
.x1_c00087{left:87.035733pt;}
.x2_c00087{left:143.035733pt;}
.x7_c00087{left:205.769067pt;}
.x3_c00087{left:218.835733pt;}
.x6_c00087{left:299.169067pt;}
.x5_c00087{left:300.169067pt;}
.x4_c00087{left:302.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6b0822aa8fb729b165b31cd.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00088;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.575000;font-style:normal;font-weight:normal;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_7f75ac1906baa8a97a74e7f8.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00088;src:url('chunks/assets/font_a9f616cdfc6c7cb36740c800.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00088;src:url('chunks/assets/font_ab58b0f6768b044aae3431e1.woff2')format("woff");}.ff5_c00088{font-family:ff5_c00088;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00088{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m6_c00088{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5_c00088{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3_c00088{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m10_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);}
.m18_c00088{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m19_c00088{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m12_c00088{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m17_c00088{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c00088{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m14_c00088{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c00088{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c00088{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00088{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00088{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00088{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00088{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00088{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00088{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00088{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00088{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00088{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c00088{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m0_c00088{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2_c00088{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4_c00088{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00088{color:transparent;}
.fs0_c00088{font-size:36.000000px;}
.fs1_c00088{font-size:60.000000px;}
.fs5_c00088{font-size:66.000000px;}
.fs2_c00088{font-size:72.000000px;}
.fs4_c00088{font-size:78.000000px;}
.fs3_c00088{font-size:156.000000px;}
.y0_c00088{bottom:0.000000px;}
.y30_c00088{bottom:77.910000px;}
.y31_c00088{bottom:79.710000px;}
.y33_c00088{bottom:80.085000px;}
.y32_c00088{bottom:80.460000px;}
.y2c_c00088{bottom:95.910000px;}
.y2d_c00088{bottom:97.710000px;}
.y2e_c00088{bottom:98.085000px;}
.y2f_c00088{bottom:98.835000px;}
.y2b_c00088{bottom:166.125000px;}
.y27_c00088{bottom:186.285000px;}
.y28_c00088{bottom:187.035000px;}
.y29_c00088{bottom:187.410000px;}
.y2a_c00088{bottom:188.760000px;}
.y25_c00088{bottom:206.760000px;}
.y26_c00088{bottom:207.885000px;}
.y24_c00088{bottom:228.750000px;}
.y22_c00088{bottom:249.960000px;}
.y23_c00088{bottom:252.135000px;}
.y21_c00088{bottom:270.900000px;}
.y20_c00088{bottom:292.500000px;}
.y1f_c00088{bottom:314.460000px;}
.y1e_c00088{bottom:335.685000px;}
.y1d_c00088{bottom:357.285000px;}
.y1c_c00088{bottom:378.525000px;}
.y1b_c00088{bottom:399.750000px;}
.y1a_c00088{bottom:421.035000px;}
.y19_c00088{bottom:442.935000px;}
.y18_c00088{bottom:464.535000px;}
.y16_c00088{bottom:485.460000px;}
.y17_c00088{bottom:486.510000px;}
.y15_c00088{bottom:508.125000px;}
.y14_c00088{bottom:530.085000px;}
.y13_c00088{bottom:551.310000px;}
.y12_c00088{bottom:573.285000px;}
.y11_c00088{bottom:594.885000px;}
.y10_c00088{bottom:616.500000px;}
.yf_c00088{bottom:638.385000px;}
.ye_c00088{bottom:660.060000px;}
.yd_c00088{bottom:681.960000px;}
.yc_c00088{bottom:703.935000px;}
.yb_c00088{bottom:725.535000px;}
.ya_c00088{bottom:725.910000px;}
.y9_c00088{bottom:747.510000px;}
.y8_c00088{bottom:769.500000px;}
.y7_c00088{bottom:791.400000px;}
.y6_c00088{bottom:859.500000px;}
.y5_c00088{bottom:1079.775000px;}
.y3_c00088{bottom:1084.185000px;}
.y2_c00088{bottom:1085.550000px;}
.y1_c00088{bottom:1086.300000px;}
.y4_c00088{bottom:1095.300000px;}
.h1_c00088{height:36.281250px;}
.h2_c00088{height:38.412000px;}
.h7_c00088{height:58.886719px;}
.h3_c00088{height:60.468750px;}
.h9_c00088{height:64.743164px;}
.h4_c00088{height:70.664062px;}
.h6_c00088{height:72.562500px;}
.h8_c00088{height:76.552734px;}
.h5_c00088{height:162.703125px;}
.h0_c00088{height:1174.500000px;}
.w0_c00088{width:731.977200px;}
.w1_c00088{width:732.000000px;}
.x0_c00088{left:0.000000px;}
.x10_c00088{left:56.515200px;}
.xe_c00088{left:57.565200px;}
.xc_c00088{left:59.365200px;}
.x9_c00088{left:60.490200px;}
.x16_c00088{left:75.550200px;}
.x8_c00088{left:86.740200px;}
.xd_c00088{left:90.340200px;}
.xb_c00088{left:92.890200px;}
.xa_c00088{left:98.590200px;}
.x17_c00088{left:112.690200px;}
.x1a_c00088{left:134.590200px;}
.xf_c00088{left:157.990200px;}
.x12_c00088{left:217.765200px;}
.x7_c00088{left:253.390200px;}
.x1_c00088{left:274.990200px;}
.x2_c00088{left:279.340200px;}
.x3_c00088{left:280.765200px;}
.x13_c00088{left:354.565200px;}
.x4_c00088{left:459.340200px;}
.x5_c00088{left:469.765200px;}
.x14_c00088{left:479.515200px;}
.x18_c00088{left:493.165200px;}
.x1b_c00088{left:526.990200px;}
.x1c_c00088{left:542.515200px;}
.x15_c00088{left:558.340200px;}
.x19_c00088{left:632.140200px;}
.x6_c00088{left:633.565200px;}
.x11_c00088{left:649.090200px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls0_c00088{letter-spacing:0.000000pt;}
.ws0_c00088{word-spacing:0.000000pt;}
.fs0_c00088{font-size:32.000000pt;}
.fs1_c00088{font-size:53.333333pt;}
.fs5_c00088{font-size:58.666667pt;}
.fs2_c00088{font-size:64.000000pt;}
.fs4_c00088{font-size:69.333333pt;}
.fs3_c00088{font-size:138.666667pt;}
.y0_c00088{bottom:0.000000pt;}
.y30_c00088{bottom:69.253333pt;}
.y31_c00088{bottom:70.853333pt;}
.y33_c00088{bottom:71.186667pt;}
.y32_c00088{bottom:71.520000pt;}
.y2c_c00088{bottom:85.253333pt;}
.y2d_c00088{bottom:86.853333pt;}
.y2e_c00088{bottom:87.186667pt;}
.y2f_c00088{bottom:87.853333pt;}
.y2b_c00088{bottom:147.666667pt;}
.y27_c00088{bottom:165.586667pt;}
.y28_c00088{bottom:166.253333pt;}
.y29_c00088{bottom:166.586667pt;}
.y2a_c00088{bottom:167.786667pt;}
.y25_c00088{bottom:183.786667pt;}
.y26_c00088{bottom:184.786667pt;}
.y24_c00088{bottom:203.333333pt;}
.y22_c00088{bottom:222.186667pt;}
.y23_c00088{bottom:224.120000pt;}
.y21_c00088{bottom:240.800000pt;}
.y20_c00088{bottom:260.000000pt;}
.y1f_c00088{bottom:279.520000pt;}
.y1e_c00088{bottom:298.386667pt;}
.y1d_c00088{bottom:317.586667pt;}
.y1c_c00088{bottom:336.466667pt;}
.y1b_c00088{bottom:355.333333pt;}
.y1a_c00088{bottom:374.253333pt;}
.y19_c00088{bottom:393.720000pt;}
.y18_c00088{bottom:412.920000pt;}
.y16_c00088{bottom:431.520000pt;}
.y17_c00088{bottom:432.453333pt;}
.y15_c00088{bottom:451.666667pt;}
.y14_c00088{bottom:471.186667pt;}
.y13_c00088{bottom:490.053333pt;}
.y12_c00088{bottom:509.586667pt;}
.y11_c00088{bottom:528.786667pt;}
.y10_c00088{bottom:548.000000pt;}
.yf_c00088{bottom:567.453333pt;}
.ye_c00088{bottom:586.720000pt;}
.yd_c00088{bottom:606.186667pt;}
.yc_c00088{bottom:625.720000pt;}
.yb_c00088{bottom:644.920000pt;}
.ya_c00088{bottom:645.253333pt;}
.y9_c00088{bottom:664.453333pt;}
.y8_c00088{bottom:684.000000pt;}
.y7_c00088{bottom:703.466667pt;}
.y6_c00088{bottom:764.000000pt;}
.y5_c00088{bottom:959.800000pt;}
.y3_c00088{bottom:963.720000pt;}
.y2_c00088{bottom:964.933333pt;}
.y1_c00088{bottom:965.600000pt;}
.y4_c00088{bottom:973.600000pt;}
.h1_c00088{height:32.250000pt;}
.h2_c00088{height:34.144000pt;}
.h7_c00088{height:52.343750pt;}
.h3_c00088{height:53.750000pt;}
.h9_c00088{height:57.549479pt;}
.h4_c00088{height:62.812500pt;}
.h6_c00088{height:64.500000pt;}
.h8_c00088{height:68.046875pt;}
.h5_c00088{height:144.625000pt;}
.h0_c00088{height:1044.000000pt;}
.w0_c00088{width:650.646400pt;}
.w1_c00088{width:650.666667pt;}
.x0_c00088{left:0.000000pt;}
.x10_c00088{left:50.235733pt;}
.xe_c00088{left:51.169067pt;}
.xc_c00088{left:52.769067pt;}
.x9_c00088{left:53.769067pt;}
.x16_c00088{left:67.155733pt;}
.x8_c00088{left:77.102400pt;}
.xd_c00088{left:80.302400pt;}
.xb_c00088{left:82.569067pt;}
.xa_c00088{left:87.635733pt;}
.x17_c00088{left:100.169067pt;}
.x1a_c00088{left:119.635733pt;}
.xf_c00088{left:140.435733pt;}
.x12_c00088{left:193.569067pt;}
.x7_c00088{left:225.235733pt;}
.x1_c00088{left:244.435733pt;}
.x2_c00088{left:248.302400pt;}
.x3_c00088{left:249.569067pt;}
.x13_c00088{left:315.169067pt;}
.x4_c00088{left:408.302400pt;}
.x5_c00088{left:417.569067pt;}
.x14_c00088{left:426.235733pt;}
.x18_c00088{left:438.369067pt;}
.x1b_c00088{left:468.435733pt;}
.x1c_c00088{left:482.235733pt;}
.x15_c00088{left:496.302400pt;}
.x19_c00088{left:561.902400pt;}
.x6_c00088{left:563.169067pt;}
.x11_c00088{left:576.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f9c643c1b508fffe1046ea6e.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00089;src:url('chunks/assets/font_fd48b062efc255829765e4d3.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c00089{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m15_c00089{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mb_c00089{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2_c00089{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5_c00089{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c00089{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_c00089{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6_c00089{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4_c00089{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m10_c00089{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00089{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c00089{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c00089{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma_c00089{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00089{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11_c00089{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00089{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16_c00089{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c00089{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00089{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9_c00089{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00089{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00089{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00089{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,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;}
.fc0_c00089{color:transparent;}
.fs0_c00089{font-size:60.000000px;}
.fs3_c00089{font-size:66.000000px;}
.fs2_c00089{font-size:72.000000px;}
.fs1_c00089{font-size:84.000000px;}
.y0_c00089{bottom:0.000000px;}
.y38_c00089{bottom:85.875000px;}
.y37_c00089{bottom:108.510000px;}
.y36_c00089{bottom:129.750000px;}
.y35_c00089{bottom:150.585000px;}
.y34_c00089{bottom:170.760000px;}
.y33_c00089{bottom:180.510000px;}
.y32_c00089{bottom:203.625000px;}
.y31_c00089{bottom:217.935000px;}
.y30_c00089{bottom:239.250000px;}
.y2f_c00089{bottom:261.150000px;}
.y2e_c00089{bottom:284.625000px;}
.y2d_c00089{bottom:304.710000px;}
.y2c_c00089{bottom:330.660000px;}
.y2b_c00089{bottom:348.285000px;}
.y2a_c00089{bottom:373.125000px;}
.y29_c00089{bottom:392.535000px;}
.y28_c00089{bottom:414.885000px;}
.y27_c00089{bottom:436.875000px;}
.y26_c00089{bottom:459.135000px;}
.y25_c00089{bottom:480.810000px;}
.y24_c00089{bottom:502.710000px;}
.y23_c00089{bottom:525.060000px;}
.y22_c00089{bottom:546.960000px;}
.y21_c00089{bottom:568.935000px;}
.y20_c00089{bottom:590.910000px;}
.y1f_c00089{bottom:612.885000px;}
.y1e_c00089{bottom:634.875000px;}
.y1d_c00089{bottom:656.835000px;}
.y1c_c00089{bottom:678.750000px;}
.y1b_c00089{bottom:700.710000px;}
.y1a_c00089{bottom:720.885000px;}
.y19_c00089{bottom:743.910000px;}
.y18_c00089{bottom:765.585000px;}
.y17_c00089{bottom:787.500000px;}
.y16_c00089{bottom:809.460000px;}
.y10_c00089{bottom:824.175000px;}
.y11_c00089{bottom:825.000000px;}
.y12_c00089{bottom:825.675000px;}
.y14_c00089{bottom:825.960000px;}
.y13_c00089{bottom:826.050000px;}
.y15_c00089{bottom:832.125000px;}
.yf_c00089{bottom:845.085000px;}
.ye_c00089{bottom:873.525000px;}
.yc_c00089{bottom:887.625000px;}
.yd_c00089{bottom:896.250000px;}
.ya_c00089{bottom:916.425000px;}
.yb_c00089{bottom:922.500000px;}
.y9_c00089{bottom:938.310000px;}
.y8_c00089{bottom:952.710000px;}
.y7_c00089{bottom:980.835000px;}
.y6_c00089{bottom:1002.000000px;}
.y3_c00089{bottom:1011.810000px;}
.y4_c00089{bottom:1016.085000px;}
.y5_c00089{bottom:1027.275000px;}
.y2_c00089{bottom:1044.150000px;}
.y39_c00089{bottom:1089.150000px;}
.y1_c00089{bottom:1101.435000px;}
.h1_c00089{height:58.886719px;}
.h4_c00089{height:64.775391px;}
.h3_c00089{height:70.628906px;}
.h2_c00089{height:82.441406px;}
.h0_c00089{height:1174.500000px;}
.w0_c00089{width:731.977200px;}
.w1_c00089{width:732.000000px;}
.x0_c00089{left:0.000000px;}
.x11_c00089{left:39.940200px;}
.x10_c00089{left:40.990200px;}
.xe_c00089{left:42.490200px;}
.x8_c00089{left:43.915200px;}
.x2_c00089{left:44.965200px;}
.x15_c00089{left:64.090200px;}
.x12_c00089{left:69.790200px;}
.xf_c00089{left:71.590200px;}
.x13_c00089{left:72.715200px;}
.x5_c00089{left:74.890200px;}
.x9_c00089{left:137.140200px;}
.x7_c00089{left:143.965200px;}
.xa_c00089{left:157.315200px;}
.x3_c00089{left:160.540200px;}
.xb_c00089{left:168.790200px;}
.xc_c00089{left:176.740200px;}
.xd_c00089{left:184.315200px;}
.x14_c00089{left:203.740200px;}
.x4_c00089{left:264.940200px;}
.x1_c00089{left:267.790200px;}
.x6_c00089{left:645.490200px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls0_c00089{letter-spacing:0.000000pt;}
.ws0_c00089{word-spacing:0.000000pt;}
.fs0_c00089{font-size:53.333333pt;}
.fs3_c00089{font-size:58.666667pt;}
.fs2_c00089{font-size:64.000000pt;}
.fs1_c00089{font-size:74.666667pt;}
.y0_c00089{bottom:0.000000pt;}
.y38_c00089{bottom:76.333333pt;}
.y37_c00089{bottom:96.453333pt;}
.y36_c00089{bottom:115.333333pt;}
.y35_c00089{bottom:133.853333pt;}
.y34_c00089{bottom:151.786667pt;}
.y33_c00089{bottom:160.453333pt;}
.y32_c00089{bottom:181.000000pt;}
.y31_c00089{bottom:193.720000pt;}
.y30_c00089{bottom:212.666667pt;}
.y2f_c00089{bottom:232.133333pt;}
.y2e_c00089{bottom:253.000000pt;}
.y2d_c00089{bottom:270.853333pt;}
.y2c_c00089{bottom:293.920000pt;}
.y2b_c00089{bottom:309.586667pt;}
.y2a_c00089{bottom:331.666667pt;}
.y29_c00089{bottom:348.920000pt;}
.y28_c00089{bottom:368.786667pt;}
.y27_c00089{bottom:388.333333pt;}
.y26_c00089{bottom:408.120000pt;}
.y25_c00089{bottom:427.386667pt;}
.y24_c00089{bottom:446.853333pt;}
.y23_c00089{bottom:466.720000pt;}
.y22_c00089{bottom:486.186667pt;}
.y21_c00089{bottom:505.720000pt;}
.y20_c00089{bottom:525.253333pt;}
.y1f_c00089{bottom:544.786667pt;}
.y1e_c00089{bottom:564.333333pt;}
.y1d_c00089{bottom:583.853333pt;}
.y1c_c00089{bottom:603.333333pt;}
.y1b_c00089{bottom:622.853333pt;}
.y1a_c00089{bottom:640.786667pt;}
.y19_c00089{bottom:661.253333pt;}
.y18_c00089{bottom:680.520000pt;}
.y17_c00089{bottom:700.000000pt;}
.y16_c00089{bottom:719.520000pt;}
.y10_c00089{bottom:732.600000pt;}
.y11_c00089{bottom:733.333333pt;}
.y12_c00089{bottom:733.933333pt;}
.y14_c00089{bottom:734.186667pt;}
.y13_c00089{bottom:734.266667pt;}
.y15_c00089{bottom:739.666667pt;}
.yf_c00089{bottom:751.186667pt;}
.ye_c00089{bottom:776.466667pt;}
.yc_c00089{bottom:789.000000pt;}
.yd_c00089{bottom:796.666667pt;}
.ya_c00089{bottom:814.600000pt;}
.yb_c00089{bottom:820.000000pt;}
.y9_c00089{bottom:834.053333pt;}
.y8_c00089{bottom:846.853333pt;}
.y7_c00089{bottom:871.853333pt;}
.y6_c00089{bottom:890.666667pt;}
.y3_c00089{bottom:899.386667pt;}
.y4_c00089{bottom:903.186667pt;}
.y5_c00089{bottom:913.133333pt;}
.y2_c00089{bottom:928.133333pt;}
.y39_c00089{bottom:968.133333pt;}
.y1_c00089{bottom:979.053333pt;}
.h1_c00089{height:52.343750pt;}
.h4_c00089{height:57.578125pt;}
.h3_c00089{height:62.781250pt;}
.h2_c00089{height:73.281250pt;}
.h0_c00089{height:1044.000000pt;}
.w0_c00089{width:650.646400pt;}
.w1_c00089{width:650.666667pt;}
.x0_c00089{left:0.000000pt;}
.x11_c00089{left:35.502400pt;}
.x10_c00089{left:36.435733pt;}
.xe_c00089{left:37.769067pt;}
.x8_c00089{left:39.035733pt;}
.x2_c00089{left:39.969067pt;}
.x15_c00089{left:56.969067pt;}
.x12_c00089{left:62.035733pt;}
.xf_c00089{left:63.635733pt;}
.x13_c00089{left:64.635733pt;}
.x5_c00089{left:66.569067pt;}
.x9_c00089{left:121.902400pt;}
.x7_c00089{left:127.969067pt;}
.xa_c00089{left:139.835733pt;}
.x3_c00089{left:142.702400pt;}
.xb_c00089{left:150.035733pt;}
.xc_c00089{left:157.102400pt;}
.xd_c00089{left:163.835733pt;}
.x14_c00089{left:181.102400pt;}
.x4_c00089{left:235.502400pt;}
.x1_c00089{left:238.035733pt;}
.x6_c00089{left:573.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5e8e7389833c7a03a032f0e6.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.402354;font-style:normal;font-weight:normal;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_bb5329acb8e029c209513b1a.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00090;src:url('chunks/assets/font_7901ff730775f96dde536b81.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00090;src:url('chunks/assets/font_0ac4df5a8ef5e6a7ac0285c1.woff2')format("woff");}.ff4_c00090{font-family:ff4_c00090;line-height:1.432129;font-style: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);}
.m2_c00090{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c00090{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c00090{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c00090{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00090{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00090{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00090{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00090{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00090{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00090{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00090{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00090{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00090{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00090{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,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;}
.fc1_c00090{color:transparent;}
.fc0_c00090{color:rgb(0,0,0);}
.fs2_c00090{font-size:48.000000px;}
.fs0_c00090{font-size:60.000000px;}
.fs1_c00090{font-size:72.000000px;}
.y0_c00090{bottom:0.000000px;}
.y1c_c00090{bottom:500.535000px;}
.y1b_c00090{bottom:524.685000px;}
.y1a_c00090{bottom:546.285000px;}
.y19_c00090{bottom:567.885000px;}
.y18_c00090{bottom:589.785000px;}
.y17_c00090{bottom:611.460000px;}
.y16_c00090{bottom:632.685000px;}
.y15_c00090{bottom:654.660000px;}
.y14_c00090{bottom:676.560000px;}
.y13_c00090{bottom:697.500000px;}
.y12_c00090{bottom:719.835000px;}
.y11_c00090{bottom:741.450000px;}
.y10_c00090{bottom:763.335000px;}
.yf_c00090{bottom:784.260000px;}
.ye_c00090{bottom:806.550000px;}
.yd_c00090{bottom:828.900000px;}
.yc_c00090{bottom:850.125000px;}
.yb_c00090{bottom:872.085000px;}
.ya_c00090{bottom:893.310000px;}
.y9_c00090{bottom:914.925000px;}
.y8_c00090{bottom:936.150000px;}
.y7_c00090{bottom:957.750000px;}
.y6_c00090{bottom:979.335000px;}
.y5_c00090{bottom:1000.935000px;}
.y4_c00090{bottom:1022.550000px;}
.y3_c00090{bottom:1052.835000px;}
.y2_c00090{bottom:1079.085000px;}
.y1_c00090{bottom:1083.060000px;}
.h4_c00090{height:50.062500px;}
.h2_c00090{height:60.468750px;}
.h1_c00090{height:61.670545px;}
.h3_c00090{height:70.664062px;}
.h0_c00090{height:1174.500000px;}
.w0_c00090{width:731.977200px;}
.w1_c00090{width:732.000000px;}
.x1_c00090{left:-21.259800px;}
.x0_c00090{left:0.000000px;}
.x5_c00090{left:53.590200px;}
.x8_c00090{left:54.715200px;}
.x4_c00090{left:58.690200px;}
.x6_c00090{left:84.925200px;}
.x7_c00090{left:85.990200px;}
.x2_c00090{left:268.540200px;}
.x3_c00090{left:627.115200px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls0_c00090{letter-spacing:0.000000pt;}
.ws0_c00090{word-spacing:0.000000pt;}
.fs2_c00090{font-size:42.666667pt;}
.fs0_c00090{font-size:53.333333pt;}
.fs1_c00090{font-size:64.000000pt;}
.y0_c00090{bottom:0.000000pt;}
.y1c_c00090{bottom:444.920000pt;}
.y1b_c00090{bottom:466.386667pt;}
.y1a_c00090{bottom:485.586667pt;}
.y19_c00090{bottom:504.786667pt;}
.y18_c00090{bottom:524.253333pt;}
.y17_c00090{bottom:543.520000pt;}
.y16_c00090{bottom:562.386667pt;}
.y15_c00090{bottom:581.920000pt;}
.y14_c00090{bottom:601.386667pt;}
.y13_c00090{bottom:620.000000pt;}
.y12_c00090{bottom:639.853333pt;}
.y11_c00090{bottom:659.066667pt;}
.y10_c00090{bottom:678.520000pt;}
.yf_c00090{bottom:697.120000pt;}
.ye_c00090{bottom:716.933333pt;}
.yd_c00090{bottom:736.800000pt;}
.yc_c00090{bottom:755.666667pt;}
.yb_c00090{bottom:775.186667pt;}
.ya_c00090{bottom:794.053333pt;}
.y9_c00090{bottom:813.266667pt;}
.y8_c00090{bottom:832.133333pt;}
.y7_c00090{bottom:851.333333pt;}
.y6_c00090{bottom:870.520000pt;}
.y5_c00090{bottom:889.720000pt;}
.y4_c00090{bottom:908.933333pt;}
.y3_c00090{bottom:935.853333pt;}
.y2_c00090{bottom:959.186667pt;}
.y1_c00090{bottom:962.720000pt;}
.h4_c00090{height:44.500000pt;}
.h2_c00090{height:53.750000pt;}
.h1_c00090{height:54.818262pt;}
.h3_c00090{height:62.812500pt;}
.h0_c00090{height:1044.000000pt;}
.w0_c00090{width:650.646400pt;}
.w1_c00090{width:650.666667pt;}
.x1_c00090{left:-18.897600pt;}
.x0_c00090{left:0.000000pt;}
.x5_c00090{left:47.635733pt;}
.x8_c00090{left:48.635733pt;}
.x4_c00090{left:52.169067pt;}
.x6_c00090{left:75.489067pt;}
.x7_c00090{left:76.435733pt;}
.x2_c00090{left:238.702400pt;}
.x3_c00090{left:557.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7024913695f7a2b295afe70.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00091;src:url('chunks/assets/font_53d90c93fb71ae1ade78b1d9.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00091;src:url('chunks/assets/font_d29802e84e8c7085b7136da3.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00091;src:url('chunks/assets/font_e518830f107d9c1b9c3e5aae.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00091{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m0_c00091{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.me_c00091{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mf_c00091{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m19_c00091{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m18_c00091{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m17_c00091{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c00091{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m16_c00091{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00091{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00091{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c00091{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c00091{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00091{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00091{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00091{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00091{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00091{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00091{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00091{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c00091{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00091{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00091{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00091{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m14_c00091{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00091{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00091{color:transparent;}
.fs1_c00091{font-size:60.000000px;}
.fs0_c00091{font-size:72.000000px;}
.fs3_c00091{font-size:84.000000px;}
.fs2_c00091{font-size:162.000000px;}
.y0_c00091{bottom:0.000000px;}
.y31_c00091{bottom:99.510000px;}
.y30_c00091{bottom:107.085000px;}
.y2f_c00091{bottom:112.500000px;}
.y2e_c00091{bottom:116.460000px;}
.y2d_c00091{bottom:121.125000px;}
.y2c_c00091{bottom:135.885000px;}
.y2b_c00091{bottom:157.875000px;}
.y2a_c00091{bottom:173.310000px;}
.y29_c00091{bottom:173.385000px;}
.y28_c00091{bottom:179.385000px;}
.y27_c00091{bottom:201.435000px;}
.y26_c00091{bottom:223.035000px;}
.y25_c00091{bottom:245.310000px;}
.y24_c00091{bottom:266.250000px;}
.y23_c00091{bottom:292.125000px;}
.y21_c00091{bottom:306.150000px;}
.y22_c00091{bottom:306.900000px;}
.y20_c00091{bottom:310.125000px;}
.y1f_c00091{bottom:331.335000px;}
.y1e_c00091{bottom:350.460000px;}
.y1d_c00091{bottom:351.525000px;}
.y1c_c00091{bottom:355.125000px;}
.y1b_c00091{bottom:356.250000px;}
.y1a_c00091{bottom:373.500000px;}
.y19_c00091{bottom:376.035000px;}
.y18_c00091{bottom:397.650000px;}
.y17_c00091{bottom:419.910000px;}
.y16_c00091{bottom:441.510000px;}
.y15_c00091{bottom:463.500000px;}
.y14_c00091{bottom:485.460000px;}
.y13_c00091{bottom:507.435000px;}
.y12_c00091{bottom:529.335000px;}
.y11_c00091{bottom:551.385000px;}
.y10_c00091{bottom:573.285000px;}
.yf_c00091{bottom:595.560000px;}
.ye_c00091{bottom:617.250000px;}
.yd_c00091{bottom:639.510000px;}
.yc_c00091{bottom:660.750000px;}
.yb_c00091{bottom:683.085000px;}
.ya_c00091{bottom:701.460000px;}
.y9_c00091{bottom:726.285000px;}
.y8_c00091{bottom:747.510000px;}
.y7_c00091{bottom:769.125000px;}
.y6_c00091{bottom:791.835000px;}
.y5_c00091{bottom:813.060000px;}
.y4_c00091{bottom:892.560000px;}
.y1_c00091{bottom:1093.500000px;}
.y3_c00091{bottom:1105.800000px;}
.y2_c00091{bottom:1112.085000px;}
.h2_c00091{height:58.886719px;}
.h7_c00091{height:70.628906px;}
.h4_c00091{height:70.664062px;}
.h1_c00091{height:72.562500px;}
.h6_c00091{height:82.441406px;}
.h5_c00091{height:84.656250px;}
.h3_c00091{height:168.960938px;}
.h0_c00091{height:1174.500000px;}
.w0_c00091{width:731.977200px;}
.w1_c00091{width:732.000000px;}
.x0_c00091{left:0.000000px;}
.x8_c00091{left:51.790200px;}
.x6_c00091{left:52.915200px;}
.x9_c00091{left:53.965200px;}
.xa_c00091{left:55.090200px;}
.xc_c00091{left:56.140200px;}
.xb_c00091{left:57.190200px;}
.x14_c00091{left:58.315200px;}
.x18_c00091{left:60.115200px;}
.x1_c00091{left:70.540200px;}
.x5_c00091{left:83.140200px;}
.x7_c00091{left:84.550200px;}
.x15_c00091{left:89.290200px;}
.x2_c00091{left:99.340200px;}
.xf_c00091{left:109.090200px;}
.x4_c00091{left:180.340200px;}
.x19_c00091{left:196.165200px;}
.x3_c00091{left:271.090200px;}
.x1a_c00091{left:354.190200px;}
.x1b_c00091{left:423.340200px;}
.x10_c00091{left:434.515200px;}
.x11_c00091{left:517.990200px;}
.x16_c00091{left:578.890200px;}
.x12_c00091{left:605.890200px;}
.xd_c00091{left:615.190200px;}
.xe_c00091{left:647.290200px;}
.x17_c00091{left:651.190200px;}
.x13_c00091{left:659.140200px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls0_c00091{letter-spacing:0.000000pt;}
.ws0_c00091{word-spacing:0.000000pt;}
.fs1_c00091{font-size:53.333333pt;}
.fs0_c00091{font-size:64.000000pt;}
.fs3_c00091{font-size:74.666667pt;}
.fs2_c00091{font-size:144.000000pt;}
.y0_c00091{bottom:0.000000pt;}
.y31_c00091{bottom:88.453333pt;}
.y30_c00091{bottom:95.186667pt;}
.y2f_c00091{bottom:100.000000pt;}
.y2e_c00091{bottom:103.520000pt;}
.y2d_c00091{bottom:107.666667pt;}
.y2c_c00091{bottom:120.786667pt;}
.y2b_c00091{bottom:140.333333pt;}
.y2a_c00091{bottom:154.053333pt;}
.y29_c00091{bottom:154.120000pt;}
.y28_c00091{bottom:159.453333pt;}
.y27_c00091{bottom:179.053333pt;}
.y26_c00091{bottom:198.253333pt;}
.y25_c00091{bottom:218.053333pt;}
.y24_c00091{bottom:236.666667pt;}
.y23_c00091{bottom:259.666667pt;}
.y21_c00091{bottom:272.133333pt;}
.y22_c00091{bottom:272.800000pt;}
.y20_c00091{bottom:275.666667pt;}
.y1f_c00091{bottom:294.520000pt;}
.y1e_c00091{bottom:311.520000pt;}
.y1d_c00091{bottom:312.466667pt;}
.y1c_c00091{bottom:315.666667pt;}
.y1b_c00091{bottom:316.666667pt;}
.y1a_c00091{bottom:332.000000pt;}
.y19_c00091{bottom:334.253333pt;}
.y18_c00091{bottom:353.466667pt;}
.y17_c00091{bottom:373.253333pt;}
.y16_c00091{bottom:392.453333pt;}
.y15_c00091{bottom:412.000000pt;}
.y14_c00091{bottom:431.520000pt;}
.y13_c00091{bottom:451.053333pt;}
.y12_c00091{bottom:470.520000pt;}
.y11_c00091{bottom:490.120000pt;}
.y10_c00091{bottom:509.586667pt;}
.yf_c00091{bottom:529.386667pt;}
.ye_c00091{bottom:548.666667pt;}
.yd_c00091{bottom:568.453333pt;}
.yc_c00091{bottom:587.333333pt;}
.yb_c00091{bottom:607.186667pt;}
.ya_c00091{bottom:623.520000pt;}
.y9_c00091{bottom:645.586667pt;}
.y8_c00091{bottom:664.453333pt;}
.y7_c00091{bottom:683.666667pt;}
.y6_c00091{bottom:703.853333pt;}
.y5_c00091{bottom:722.720000pt;}
.y4_c00091{bottom:793.386667pt;}
.y1_c00091{bottom:972.000000pt;}
.y3_c00091{bottom:982.933333pt;}
.y2_c00091{bottom:988.520000pt;}
.h2_c00091{height:52.343750pt;}
.h7_c00091{height:62.781250pt;}
.h4_c00091{height:62.812500pt;}
.h1_c00091{height:64.500000pt;}
.h6_c00091{height:73.281250pt;}
.h5_c00091{height:75.250000pt;}
.h3_c00091{height:150.187500pt;}
.h0_c00091{height:1044.000000pt;}
.w0_c00091{width:650.646400pt;}
.w1_c00091{width:650.666667pt;}
.x0_c00091{left:0.000000pt;}
.x8_c00091{left:46.035733pt;}
.x6_c00091{left:47.035733pt;}
.x9_c00091{left:47.969067pt;}
.xa_c00091{left:48.969067pt;}
.xc_c00091{left:49.902400pt;}
.xb_c00091{left:50.835733pt;}
.x14_c00091{left:51.835733pt;}
.x18_c00091{left:53.435733pt;}
.x1_c00091{left:62.702400pt;}
.x5_c00091{left:73.902400pt;}
.x7_c00091{left:75.155733pt;}
.x15_c00091{left:79.369067pt;}
.x2_c00091{left:88.302400pt;}
.xf_c00091{left:96.969067pt;}
.x4_c00091{left:160.302400pt;}
.x19_c00091{left:174.369067pt;}
.x3_c00091{left:240.969067pt;}
.x1a_c00091{left:314.835733pt;}
.x1b_c00091{left:376.302400pt;}
.x10_c00091{left:386.235733pt;}
.x11_c00091{left:460.435733pt;}
.x16_c00091{left:514.569067pt;}
.x12_c00091{left:538.569067pt;}
.xd_c00091{left:546.835733pt;}
.xe_c00091{left:575.369067pt;}
.x17_c00091{left:578.835733pt;}
.x13_c00091{left:585.902400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cfc75ec9adfa4999cc81ba1c.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00092;src:url('chunks/assets/font_a4ed8aa3240bbd30629b2522.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00092;src:url('chunks/assets/font_d0981a8986fd6ca29643fc70.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c00092{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb_c00092{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c00092{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00092{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00092{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00092{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00092{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c00092{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00092{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00092{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00092{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00092{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00092{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2_c00092{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c00092{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00092{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c00092{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c00092{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m15_c00092{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c00092{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m11_c00092{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m7_c00092{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.ma_c00092{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c00092{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,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;}
.fc0_c00092{color:transparent;}
.fs2_c00092{font-size:66.000000px;}
.fs0_c00092{font-size:72.000000px;}
.fs3_c00092{font-size:78.000000px;}
.fs1_c00092{font-size:84.000000px;}
.y0_c00092{bottom:0.000000px;}
.y43_c00092{bottom:46.260000px;}
.y42_c00092{bottom:72.885000px;}
.y41_c00092{bottom:94.185000px;}
.y40_c00092{bottom:115.335000px;}
.y3f_c00092{bottom:135.885000px;}
.y3d_c00092{bottom:156.060000px;}
.y3e_c00092{bottom:157.125000px;}
.y3a_c00092{bottom:176.250000px;}
.y39_c00092{bottom:176.625000px;}
.y3b_c00092{bottom:176.910000px;}
.y3c_c00092{bottom:178.410000px;}
.y35_c00092{bottom:196.710000px;}
.y36_c00092{bottom:197.835000px;}
.y37_c00092{bottom:198.885000px;}
.y38_c00092{bottom:201.000000px;}
.y34_c00092{bottom:219.060000px;}
.y33_c00092{bottom:239.910000px;}
.y32_c00092{bottom:261.525000px;}
.y31_c00092{bottom:283.125000px;}
.y2f_c00092{bottom:304.335000px;}
.y30_c00092{bottom:304.710000px;}
.y2d_c00092{bottom:325.650000px;}
.y2e_c00092{bottom:326.685000px;}
.y2b_c00092{bottom:346.875000px;}
.y2a_c00092{bottom:347.250000px;}
.y2c_c00092{bottom:349.035000px;}
.y28_c00092{bottom:368.085000px;}
.y29_c00092{bottom:369.150000px;}
.y27_c00092{bottom:389.685000px;}
.y26_c00092{bottom:411.660000px;}
.y25_c00092{bottom:432.885000px;}
.y24_c00092{bottom:454.875000px;}
.y23_c00092{bottom:476.460000px;}
.y22_c00092{bottom:498.435000px;}
.y21_c00092{bottom:520.035000px;}
.y20_c00092{bottom:541.560000px;}
.y1f_c00092{bottom:541.935000px;}
.y1e_c00092{bottom:563.535000px;}
.y1d_c00092{bottom:585.510000px;}
.y1c_c00092{bottom:607.125000px;}
.y1b_c00092{bottom:629.085000px;}
.y1a_c00092{bottom:650.685000px;}
.y19_c00092{bottom:672.285000px;}
.y18_c00092{bottom:694.260000px;}
.y17_c00092{bottom:716.250000px;}
.y16_c00092{bottom:738.135000px;}
.y15_c00092{bottom:760.125000px;}
.y14_c00092{bottom:781.710000px;}
.y13_c00092{bottom:800.460000px;}
.y12_c00092{bottom:801.525000px;}
.y11_c00092{bottom:803.025000px;}
.y10_c00092{bottom:804.435000px;}
.yf_c00092{bottom:804.810000px;}
.ye_c00092{bottom:825.675000px;}
.yd_c00092{bottom:846.900000px;}
.yc_c00092{bottom:868.875000px;}
.yb_c00092{bottom:888.300000px;}
.ya_c00092{bottom:890.460000px;}
.y9_c00092{bottom:890.835000px;}
.y8_c00092{bottom:911.310000px;}
.y7_c00092{bottom:932.925000px;}
.y6_c00092{bottom:954.210000px;}
.y5_c00092{bottom:972.210000px;}
.y4_c00092{bottom:973.650000px;}
.y3_c00092{bottom:976.500000px;}
.y2_c00092{bottom:999.900000px;}
.y1_c00092{bottom:1019.310000px;}
.h3_c00092{height:64.775391px;}
.h5_c00092{height:66.515625px;}
.h1_c00092{height:70.664062px;}
.h4_c00092{height:76.514648px;}
.h2_c00092{height:84.656250px;}
.h0_c00092{height:1174.500000px;}
.w0_c00092{width:731.977200px;}
.w1_c00092{width:732.000000px;}
.x0_c00092{left:0.000000px;}
.x2_c00092{left:51.490200px;}
.x5_c00092{left:52.540200px;}
.xc_c00092{left:53.965200px;}
.xe_c00092{left:56.140200px;}
.x10_c00092{left:57.190200px;}
.x12_c00092{left:58.315200px;}
.x16_c00092{left:59.365200px;}
.x19_c00092{left:60.490200px;}
.x1b_c00092{left:61.915200px;}
.x20_c00092{left:63.715200px;}
.x22_c00092{left:65.140200px;}
.x1_c00092{left:83.890200px;}
.xd_c00092{left:87.115200px;}
.x1a_c00092{left:93.175200px;}
.x13_c00092{left:119.140200px;}
.x14_c00092{left:142.540200px;}
.x21_c00092{left:181.750200px;}
.x1c_c00092{left:192.190200px;}
.x1e_c00092{left:219.565200px;}
.x18_c00092{left:242.590200px;}
.x11_c00092{left:281.890200px;}
.x8_c00092{left:308.890200px;}
.x1f_c00092{left:325.090200px;}
.x6_c00092{left:327.940200px;}
.x7_c00092{left:357.490200px;}
.x9_c00092{left:397.090200px;}
.x1d_c00092{left:461.515200px;}
.x17_c00092{left:465.115200px;}
.xa_c00092{left:492.790200px;}
.x3_c00092{left:536.365200px;}
.x15_c00092{left:560.515200px;}
.x4_c00092{left:570.565200px;}
.xb_c00092{left:597.190200px;}
.x23_c00092{left:598.990200px;}
.xf_c00092{left:653.740200px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls0_c00092{letter-spacing:0.000000pt;}
.ws0_c00092{word-spacing:0.000000pt;}
.fs2_c00092{font-size:58.666667pt;}
.fs0_c00092{font-size:64.000000pt;}
.fs3_c00092{font-size:69.333333pt;}
.fs1_c00092{font-size:74.666667pt;}
.y0_c00092{bottom:0.000000pt;}
.y43_c00092{bottom:41.120000pt;}
.y42_c00092{bottom:64.786667pt;}
.y41_c00092{bottom:83.720000pt;}
.y40_c00092{bottom:102.520000pt;}
.y3f_c00092{bottom:120.786667pt;}
.y3d_c00092{bottom:138.720000pt;}
.y3e_c00092{bottom:139.666667pt;}
.y3a_c00092{bottom:156.666667pt;}
.y39_c00092{bottom:157.000000pt;}
.y3b_c00092{bottom:157.253333pt;}
.y3c_c00092{bottom:158.586667pt;}
.y35_c00092{bottom:174.853333pt;}
.y36_c00092{bottom:175.853333pt;}
.y37_c00092{bottom:176.786667pt;}
.y38_c00092{bottom:178.666667pt;}
.y34_c00092{bottom:194.720000pt;}
.y33_c00092{bottom:213.253333pt;}
.y32_c00092{bottom:232.466667pt;}
.y31_c00092{bottom:251.666667pt;}
.y2f_c00092{bottom:270.520000pt;}
.y30_c00092{bottom:270.853333pt;}
.y2d_c00092{bottom:289.466667pt;}
.y2e_c00092{bottom:290.386667pt;}
.y2b_c00092{bottom:308.333333pt;}
.y2a_c00092{bottom:308.666667pt;}
.y2c_c00092{bottom:310.253333pt;}
.y28_c00092{bottom:327.186667pt;}
.y29_c00092{bottom:328.133333pt;}
.y27_c00092{bottom:346.386667pt;}
.y26_c00092{bottom:365.920000pt;}
.y25_c00092{bottom:384.786667pt;}
.y24_c00092{bottom:404.333333pt;}
.y23_c00092{bottom:423.520000pt;}
.y22_c00092{bottom:443.053333pt;}
.y21_c00092{bottom:462.253333pt;}
.y20_c00092{bottom:481.386667pt;}
.y1f_c00092{bottom:481.720000pt;}
.y1e_c00092{bottom:500.920000pt;}
.y1d_c00092{bottom:520.453333pt;}
.y1c_c00092{bottom:539.666667pt;}
.y1b_c00092{bottom:559.186667pt;}
.y1a_c00092{bottom:578.386667pt;}
.y19_c00092{bottom:597.586667pt;}
.y18_c00092{bottom:617.120000pt;}
.y17_c00092{bottom:636.666667pt;}
.y16_c00092{bottom:656.120000pt;}
.y15_c00092{bottom:675.666667pt;}
.y14_c00092{bottom:694.853333pt;}
.y13_c00092{bottom:711.520000pt;}
.y12_c00092{bottom:712.466667pt;}
.y11_c00092{bottom:713.800000pt;}
.y10_c00092{bottom:715.053333pt;}
.yf_c00092{bottom:715.386667pt;}
.ye_c00092{bottom:733.933333pt;}
.yd_c00092{bottom:752.800000pt;}
.yc_c00092{bottom:772.333333pt;}
.yb_c00092{bottom:789.600000pt;}
.ya_c00092{bottom:791.520000pt;}
.y9_c00092{bottom:791.853333pt;}
.y8_c00092{bottom:810.053333pt;}
.y7_c00092{bottom:829.266667pt;}
.y6_c00092{bottom:848.186667pt;}
.y5_c00092{bottom:864.186667pt;}
.y4_c00092{bottom:865.466667pt;}
.y3_c00092{bottom:868.000000pt;}
.y2_c00092{bottom:888.800000pt;}
.y1_c00092{bottom:906.053333pt;}
.h3_c00092{height:57.578125pt;}
.h5_c00092{height:59.125000pt;}
.h1_c00092{height:62.812500pt;}
.h4_c00092{height:68.013021pt;}
.h2_c00092{height:75.250000pt;}
.h0_c00092{height:1044.000000pt;}
.w0_c00092{width:650.646400pt;}
.w1_c00092{width:650.666667pt;}
.x0_c00092{left:0.000000pt;}
.x2_c00092{left:45.769067pt;}
.x5_c00092{left:46.702400pt;}
.xc_c00092{left:47.969067pt;}
.xe_c00092{left:49.902400pt;}
.x10_c00092{left:50.835733pt;}
.x12_c00092{left:51.835733pt;}
.x16_c00092{left:52.769067pt;}
.x19_c00092{left:53.769067pt;}
.x1b_c00092{left:55.035733pt;}
.x20_c00092{left:56.635733pt;}
.x22_c00092{left:57.902400pt;}
.x1_c00092{left:74.569067pt;}
.xd_c00092{left:77.435733pt;}
.x1a_c00092{left:82.822400pt;}
.x13_c00092{left:105.902400pt;}
.x14_c00092{left:126.702400pt;}
.x21_c00092{left:161.555733pt;}
.x1c_c00092{left:170.835733pt;}
.x1e_c00092{left:195.169067pt;}
.x18_c00092{left:215.635733pt;}
.x11_c00092{left:250.569067pt;}
.x8_c00092{left:274.569067pt;}
.x1f_c00092{left:288.969067pt;}
.x6_c00092{left:291.502400pt;}
.x7_c00092{left:317.769067pt;}
.x9_c00092{left:352.969067pt;}
.x1d_c00092{left:410.235733pt;}
.x17_c00092{left:413.435733pt;}
.xa_c00092{left:438.035733pt;}
.x3_c00092{left:476.769067pt;}
.x15_c00092{left:498.235733pt;}
.x4_c00092{left:507.169067pt;}
.xb_c00092{left:530.835733pt;}
.x23_c00092{left:532.435733pt;}
.xf_c00092{left:581.102400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea70600209a5f9d68354e44b.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00093;src:url('chunks/assets/font_be5f83a08e0632c507f2e8f3.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.284180;font-style:normal;font-weight:normal;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_bfb5dee5bb533c73d2405394.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00093;src:url('chunks/assets/font_e8845b6f8da5ad529f65e976.woff2')format("woff");}.ff4_c00093{font-family:ff4_c00093;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c00093{transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);}
.m10_c00093{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m14_c00093{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m13_c00093{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00093{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m18_c00093{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7_c00093{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me_c00093{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0_c00093{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c00093{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6_c00093{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c00093{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00093{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00093{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c00093{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c00093{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1_c00093{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c00093{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00093{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00093{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m19_c00093{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00093{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c00093{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m16_c00093{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00093{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.md_c00093{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c00093{transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);}
.mf_c00093{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.m12_c00093{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00093{color:transparent;}
.fs5_c00093{font-size:30.000000px;}
.fs4_c00093{font-size:42.000000px;}
.fs0_c00093{font-size:60.000000px;}
.fs3_c00093{font-size:66.000000px;}
.fs1_c00093{font-size:72.000000px;}
.fs2_c00093{font-size:78.000000px;}
.fs6_c00093{font-size:84.000000px;}
.y0_c00093{bottom:0.000000px;}
.y45_c00093{bottom:79.035000px;}
.y44_c00093{bottom:85.875000px;}
.y43_c00093{bottom:90.135000px;}
.y42_c00093{bottom:91.185000px;}
.y41_c00093{bottom:92.685000px;}
.y40_c00093{bottom:107.085000px;}
.y3f_c00093{bottom:122.160000px;}
.y3e_c00093{bottom:127.635000px;}
.y3d_c00093{bottom:149.535000px;}
.y3b_c00093{bottom:165.750000px;}
.y3c_c00093{bottom:165.810000px;}
.y3a_c00093{bottom:171.585000px;}
.y39_c00093{bottom:192.375000px;}
.y38_c00093{bottom:202.500000px;}
.y37_c00093{bottom:210.060000px;}
.y36_c00093{bottom:215.460000px;}
.y35_c00093{bottom:236.685000px;}
.y32_c00093{bottom:264.750000px;}
.y31_c00093{bottom:266.910000px;}
.y33_c00093{bottom:270.900000px;}
.y34_c00093{bottom:275.910000px;}
.y2f_c00093{bottom:276.660000px;}
.y30_c00093{bottom:277.035000px;}
.y2e_c00093{bottom:279.900000px;}
.y2d_c00093{bottom:283.875000px;}
.y2c_c00093{bottom:302.250000px;}
.y2b_c00093{bottom:324.210000px;}
.y2a_c00093{bottom:346.500000px;}
.y29_c00093{bottom:367.710000px;}
.y28_c00093{bottom:394.035000px;}
.y27_c00093{bottom:412.335000px;}
.y26_c00093{bottom:434.010000px;}
.y25_c00093{bottom:455.910000px;}
.y24_c00093{bottom:477.885000px;}
.y23_c00093{bottom:500.250000px;}
.y22_c00093{bottom:521.085000px;}
.y21_c00093{bottom:521.460000px;}
.y20_c00093{bottom:522.210000px;}
.y1f_c00093{bottom:543.810000px;}
.y1e_c00093{bottom:566.085000px;}
.y1d_c00093{bottom:588.060000px;}
.y1c_c00093{bottom:610.335000px;}
.y1b_c00093{bottom:631.635000px;}
.y1a_c00093{bottom:653.625000px;}
.y19_c00093{bottom:675.510000px;}
.y16_c00093{bottom:695.685000px;}
.y17_c00093{bottom:696.435000px;}
.y18_c00093{bottom:697.875000px;}
.y15_c00093{bottom:718.410000px;}
.y14_c00093{bottom:739.635000px;}
.y13_c00093{bottom:761.250000px;}
.y12_c00093{bottom:782.835000px;}
.y11_c00093{bottom:804.810000px;}
.y10_c00093{bottom:826.050000px;}
.yf_c00093{bottom:847.275000px;}
.ye_c00093{bottom:869.250000px;}
.yc_c00093{bottom:886.500000px;}
.yd_c00093{bottom:893.310000px;}
.yb_c00093{bottom:906.300000px;}
.ya_c00093{bottom:933.300000px;}
.y9_c00093{bottom:954.900000px;}
.y8_c00093{bottom:976.800000px;}
.y7_c00093{bottom:998.085000px;}
.y4_c00093{bottom:1009.650000px;}
.y5_c00093{bottom:1012.875000px;}
.y6_c00093{bottom:1021.500000px;}
.y2_c00093{bottom:1030.125000px;}
.y3_c00093{bottom:1040.250000px;}
.y46_c00093{bottom:1088.460000px;}
.y1_c00093{bottom:1096.710000px;}
.h6_c00093{height:29.443359px;}
.h5_c00093{height:41.220703px;}
.h1_c00093{height:58.886719px;}
.h4_c00093{height:64.743164px;}
.h7_c00093{height:66.515625px;}
.h2_c00093{height:70.664062px;}
.h3_c00093{height:76.552734px;}
.h8_c00093{height:82.400391px;}
.h9_c00093{height:84.656250px;}
.h0_c00093{height:1174.500000px;}
.w0_c00093{width:731.977200px;}
.w1_c00093{width:732.000000px;}
.x0_c00093{left:0.000000px;}
.x1d_c00093{left:51.790200px;}
.x13_c00093{left:52.915200px;}
.xf_c00093{left:53.965200px;}
.xe_c00093{left:55.090200px;}
.xb_c00093{left:56.515200px;}
.xa_c00093{left:57.565200px;}
.x9_c00093{left:58.690200px;}
.x6_c00093{left:60.790200px;}
.x2_c00093{left:62.290200px;}
.x26_c00093{left:80.965200px;}
.x12_c00093{left:83.515200px;}
.x1e_c00093{left:84.550200px;}
.x7_c00093{left:90.340200px;}
.x3_c00093{left:106.165200px;}
.x4_c00093{left:145.390200px;}
.x22_c00093{left:157.690200px;}
.x23_c00093{left:177.115200px;}
.x5_c00093{left:211.315200px;}
.x24_c00093{left:224.965200px;}
.xc_c00093{left:256.690200px;}
.x1_c00093{left:281.140200px;}
.x8_c00093{left:290.890200px;}
.xd_c00093{left:297.340200px;}
.x25_c00093{left:355.315200px;}
.x14_c00093{left:380.890200px;}
.x16_c00093{left:389.890200px;}
.x17_c00093{left:506.140200px;}
.x15_c00093{left:539.290200px;}
.x18_c00093{left:547.165200px;}
.x10_c00093{left:568.390200px;}
.x19_c00093{left:584.290200px;}
.x1a_c00093{left:587.140200px;}
.x1c_c00093{left:601.915200px;}
.x1b_c00093{left:625.315200px;}
.x1f_c00093{left:628.165200px;}
.x20_c00093{left:629.290200px;}
.x21_c00093{left:659.140200px;}
.x11_c00093{left:662.740200px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls0_c00093{letter-spacing:0.000000pt;}
.ws0_c00093{word-spacing:0.000000pt;}
.fs5_c00093{font-size:26.666667pt;}
.fs4_c00093{font-size:37.333333pt;}
.fs0_c00093{font-size:53.333333pt;}
.fs3_c00093{font-size:58.666667pt;}
.fs1_c00093{font-size:64.000000pt;}
.fs2_c00093{font-size:69.333333pt;}
.fs6_c00093{font-size:74.666667pt;}
.y0_c00093{bottom:0.000000pt;}
.y45_c00093{bottom:70.253333pt;}
.y44_c00093{bottom:76.333333pt;}
.y43_c00093{bottom:80.120000pt;}
.y42_c00093{bottom:81.053333pt;}
.y41_c00093{bottom:82.386667pt;}
.y40_c00093{bottom:95.186667pt;}
.y3f_c00093{bottom:108.586667pt;}
.y3e_c00093{bottom:113.453333pt;}
.y3d_c00093{bottom:132.920000pt;}
.y3b_c00093{bottom:147.333333pt;}
.y3c_c00093{bottom:147.386667pt;}
.y3a_c00093{bottom:152.520000pt;}
.y39_c00093{bottom:171.000000pt;}
.y38_c00093{bottom:180.000000pt;}
.y37_c00093{bottom:186.720000pt;}
.y36_c00093{bottom:191.520000pt;}
.y35_c00093{bottom:210.386667pt;}
.y32_c00093{bottom:235.333333pt;}
.y31_c00093{bottom:237.253333pt;}
.y33_c00093{bottom:240.800000pt;}
.y34_c00093{bottom:245.253333pt;}
.y2f_c00093{bottom:245.920000pt;}
.y30_c00093{bottom:246.253333pt;}
.y2e_c00093{bottom:248.800000pt;}
.y2d_c00093{bottom:252.333333pt;}
.y2c_c00093{bottom:268.666667pt;}
.y2b_c00093{bottom:288.186667pt;}
.y2a_c00093{bottom:308.000000pt;}
.y29_c00093{bottom:326.853333pt;}
.y28_c00093{bottom:350.253333pt;}
.y27_c00093{bottom:366.520000pt;}
.y26_c00093{bottom:385.786667pt;}
.y25_c00093{bottom:405.253333pt;}
.y24_c00093{bottom:424.786667pt;}
.y23_c00093{bottom:444.666667pt;}
.y22_c00093{bottom:463.186667pt;}
.y21_c00093{bottom:463.520000pt;}
.y20_c00093{bottom:464.186667pt;}
.y1f_c00093{bottom:483.386667pt;}
.y1e_c00093{bottom:503.186667pt;}
.y1d_c00093{bottom:522.720000pt;}
.y1c_c00093{bottom:542.520000pt;}
.y1b_c00093{bottom:561.453333pt;}
.y1a_c00093{bottom:581.000000pt;}
.y19_c00093{bottom:600.453333pt;}
.y16_c00093{bottom:618.386667pt;}
.y17_c00093{bottom:619.053333pt;}
.y18_c00093{bottom:620.333333pt;}
.y15_c00093{bottom:638.586667pt;}
.y14_c00093{bottom:657.453333pt;}
.y13_c00093{bottom:676.666667pt;}
.y12_c00093{bottom:695.853333pt;}
.y11_c00093{bottom:715.386667pt;}
.y10_c00093{bottom:734.266667pt;}
.yf_c00093{bottom:753.133333pt;}
.ye_c00093{bottom:772.666667pt;}
.yc_c00093{bottom:788.000000pt;}
.yd_c00093{bottom:794.053333pt;}
.yb_c00093{bottom:805.600000pt;}
.ya_c00093{bottom:829.600000pt;}
.y9_c00093{bottom:848.800000pt;}
.y8_c00093{bottom:868.266667pt;}
.y7_c00093{bottom:887.186667pt;}
.y4_c00093{bottom:897.466667pt;}
.y5_c00093{bottom:900.333333pt;}
.y6_c00093{bottom:908.000000pt;}
.y2_c00093{bottom:915.666667pt;}
.y3_c00093{bottom:924.666667pt;}
.y46_c00093{bottom:967.520000pt;}
.y1_c00093{bottom:974.853333pt;}
.h6_c00093{height:26.171875pt;}
.h5_c00093{height:36.640625pt;}
.h1_c00093{height:52.343750pt;}
.h4_c00093{height:57.549479pt;}
.h7_c00093{height:59.125000pt;}
.h2_c00093{height:62.812500pt;}
.h3_c00093{height:68.046875pt;}
.h8_c00093{height:73.244792pt;}
.h9_c00093{height:75.250000pt;}
.h0_c00093{height:1044.000000pt;}
.w0_c00093{width:650.646400pt;}
.w1_c00093{width:650.666667pt;}
.x0_c00093{left:0.000000pt;}
.x1d_c00093{left:46.035733pt;}
.x13_c00093{left:47.035733pt;}
.xf_c00093{left:47.969067pt;}
.xe_c00093{left:48.969067pt;}
.xb_c00093{left:50.235733pt;}
.xa_c00093{left:51.169067pt;}
.x9_c00093{left:52.169067pt;}
.x6_c00093{left:54.035733pt;}
.x2_c00093{left:55.369067pt;}
.x26_c00093{left:71.969067pt;}
.x12_c00093{left:74.235733pt;}
.x1e_c00093{left:75.155733pt;}
.x7_c00093{left:80.302400pt;}
.x3_c00093{left:94.369067pt;}
.x4_c00093{left:129.235733pt;}
.x22_c00093{left:140.169067pt;}
.x23_c00093{left:157.435733pt;}
.x5_c00093{left:187.835733pt;}
.x24_c00093{left:199.969067pt;}
.xc_c00093{left:228.169067pt;}
.x1_c00093{left:249.902400pt;}
.x8_c00093{left:258.569067pt;}
.xd_c00093{left:264.302400pt;}
.x25_c00093{left:315.835733pt;}
.x14_c00093{left:338.569067pt;}
.x16_c00093{left:346.569067pt;}
.x17_c00093{left:449.902400pt;}
.x15_c00093{left:479.369067pt;}
.x18_c00093{left:486.369067pt;}
.x10_c00093{left:505.235733pt;}
.x19_c00093{left:519.369067pt;}
.x1a_c00093{left:521.902400pt;}
.x1c_c00093{left:535.035733pt;}
.x1b_c00093{left:555.835733pt;}
.x1f_c00093{left:558.369067pt;}
.x20_c00093{left:559.369067pt;}
.x21_c00093{left:585.902400pt;}
.x11_c00093{left:589.102400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1627e780c1c502c53724bd80.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00094;src:url('chunks/assets/font_109241cc0cef6b6125d28fc5.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00094{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb_c00094{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c00094{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00094{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c00094{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me_c00094{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00094{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00094{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma_c00094{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00094{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00094{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00094{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00094{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00094{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00094{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c00094{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c00094{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c00094{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00094{color:transparent;}
.fs3_c00094{font-size:54.000000px;}
.fs0_c00094{font-size:60.000000px;}
.fs1_c00094{font-size:72.000000px;}
.fs2_c00094{font-size:84.000000px;}
.y0_c00094{bottom:0.000000px;}
.y2c_c00094{bottom:58.875000px;}
.y2b_c00094{bottom:80.460000px;}
.y2a_c00094{bottom:101.685000px;}
.y29_c00094{bottom:121.785000px;}
.y28_c00094{bottom:142.410000px;}
.y27_c00094{bottom:163.260000px;}
.y26_c00094{bottom:183.435000px;}
.y25_c00094{bottom:204.000000px;}
.y24_c00094{bottom:225.210000px;}
.y23_c00094{bottom:246.435000px;}
.y22_c00094{bottom:268.035000px;}
.y21_c00094{bottom:340.335000px;}
.y20_c00094{bottom:378.900000px;}
.y1f_c00094{bottom:504.135000px;}
.y1e_c00094{bottom:526.125000px;}
.y1d_c00094{bottom:548.085000px;}
.y1c_c00094{bottom:569.685000px;}
.y1b_c00094{bottom:591.285000px;}
.y1a_c00094{bottom:612.885000px;}
.y19_c00094{bottom:635.250000px;}
.y18_c00094{bottom:656.385000px;}
.y17_c00094{bottom:677.685000px;}
.y16_c00094{bottom:699.285000px;}
.y15_c00094{bottom:722.010000px;}
.y14_c00094{bottom:743.250000px;}
.y13_c00094{bottom:765.135000px;}
.y12_c00094{bottom:786.810000px;}
.y11_c00094{bottom:808.050000px;}
.y10_c00094{bottom:809.460000px;}
.yf_c00094{bottom:830.685000px;}
.ye_c00094{bottom:850.800000px;}
.yd_c00094{bottom:851.925000px;}
.yc_c00094{bottom:852.300000px;}
.yb_c00094{bottom:853.050000px;}
.ya_c00094{bottom:873.525000px;}
.y9_c00094{bottom:895.125000px;}
.y8_c00094{bottom:916.710000px;}
.y7_c00094{bottom:937.935000px;}
.y6_c00094{bottom:959.250000px;}
.y5_c00094{bottom:980.835000px;}
.y4_c00094{bottom:1002.750000px;}
.y3_c00094{bottom:1057.125000px;}
.y1_c00094{bottom:1063.275000px;}
.y2_c00094{bottom:1071.900000px;}
.h4_c00094{height:52.998047px;}
.h1_c00094{height:58.886719px;}
.h2_c00094{height:70.664062px;}
.h3_c00094{height:82.400391px;}
.h0_c00094{height:1174.500000px;}
.w0_c00094{width:731.977200px;}
.w1_c00094{width:732.000000px;}
.x0_c00094{left:0.000000px;}
.x4_c00094{left:52.540200px;}
.x5_c00094{left:53.590200px;}
.xc_c00094{left:54.715200px;}
.x10_c00094{left:57.565200px;}
.x11_c00094{left:58.990200px;}
.x12_c00094{left:60.490200px;}
.x13_c00094{left:61.915200px;}
.x14_c00094{left:62.965200px;}
.xa_c00094{left:85.675200px;}
.xd_c00094{left:86.740200px;}
.xf_c00094{left:89.965200px;}
.x6_c00094{left:157.315200px;}
.xb_c00094{left:195.790200px;}
.xe_c00094{left:247.315200px;}
.x7_c00094{left:261.715200px;}
.x1_c00094{left:265.990200px;}
.x8_c00094{left:317.140200px;}
.x9_c00094{left:399.190200px;}
.x2_c00094{left:462.190200px;}
.x3_c00094{left:625.315200px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls0_c00094{letter-spacing:0.000000pt;}
.ws0_c00094{word-spacing:0.000000pt;}
.fs3_c00094{font-size:48.000000pt;}
.fs0_c00094{font-size:53.333333pt;}
.fs1_c00094{font-size:64.000000pt;}
.fs2_c00094{font-size:74.666667pt;}
.y0_c00094{bottom:0.000000pt;}
.y2c_c00094{bottom:52.333333pt;}
.y2b_c00094{bottom:71.520000pt;}
.y2a_c00094{bottom:90.386667pt;}
.y29_c00094{bottom:108.253333pt;}
.y28_c00094{bottom:126.586667pt;}
.y27_c00094{bottom:145.120000pt;}
.y26_c00094{bottom:163.053333pt;}
.y25_c00094{bottom:181.333333pt;}
.y24_c00094{bottom:200.186667pt;}
.y23_c00094{bottom:219.053333pt;}
.y22_c00094{bottom:238.253333pt;}
.y21_c00094{bottom:302.520000pt;}
.y20_c00094{bottom:336.800000pt;}
.y1f_c00094{bottom:448.120000pt;}
.y1e_c00094{bottom:467.666667pt;}
.y1d_c00094{bottom:487.186667pt;}
.y1c_c00094{bottom:506.386667pt;}
.y1b_c00094{bottom:525.586667pt;}
.y1a_c00094{bottom:544.786667pt;}
.y19_c00094{bottom:564.666667pt;}
.y18_c00094{bottom:583.453333pt;}
.y17_c00094{bottom:602.386667pt;}
.y16_c00094{bottom:621.586667pt;}
.y15_c00094{bottom:641.786667pt;}
.y14_c00094{bottom:660.666667pt;}
.y13_c00094{bottom:680.120000pt;}
.y12_c00094{bottom:699.386667pt;}
.y11_c00094{bottom:718.266667pt;}
.y10_c00094{bottom:719.520000pt;}
.yf_c00094{bottom:738.386667pt;}
.ye_c00094{bottom:756.266667pt;}
.yd_c00094{bottom:757.266667pt;}
.yc_c00094{bottom:757.600000pt;}
.yb_c00094{bottom:758.266667pt;}
.ya_c00094{bottom:776.466667pt;}
.y9_c00094{bottom:795.666667pt;}
.y8_c00094{bottom:814.853333pt;}
.y7_c00094{bottom:833.720000pt;}
.y6_c00094{bottom:852.666667pt;}
.y5_c00094{bottom:871.853333pt;}
.y4_c00094{bottom:891.333333pt;}
.y3_c00094{bottom:939.666667pt;}
.y1_c00094{bottom:945.133333pt;}
.y2_c00094{bottom:952.800000pt;}
.h4_c00094{height:47.109375pt;}
.h1_c00094{height:52.343750pt;}
.h2_c00094{height:62.812500pt;}
.h3_c00094{height:73.244792pt;}
.h0_c00094{height:1044.000000pt;}
.w0_c00094{width:650.646400pt;}
.w1_c00094{width:650.666667pt;}
.x0_c00094{left:0.000000pt;}
.x4_c00094{left:46.702400pt;}
.x5_c00094{left:47.635733pt;}
.xc_c00094{left:48.635733pt;}
.x10_c00094{left:51.169067pt;}
.x11_c00094{left:52.435733pt;}
.x12_c00094{left:53.769067pt;}
.x13_c00094{left:55.035733pt;}
.x14_c00094{left:55.969067pt;}
.xa_c00094{left:76.155733pt;}
.xd_c00094{left:77.102400pt;}
.xf_c00094{left:79.969067pt;}
.x6_c00094{left:139.835733pt;}
.xb_c00094{left:174.035733pt;}
.xe_c00094{left:219.835733pt;}
.x7_c00094{left:232.635733pt;}
.x1_c00094{left:236.435733pt;}
.x8_c00094{left:281.902400pt;}
.x9_c00094{left:354.835733pt;}
.x2_c00094{left:410.835733pt;}
.x3_c00094{left:555.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_da7818d6e62148b1fd3e88e5.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00095;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00095{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m0_c00095{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7_c00095{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4_c00095{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6_c00095{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb_c00095{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00095{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.md_c00095{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00095{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00095{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c00095{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00095{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mc_c00095{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00095{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c00095{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00095{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00095{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00095{color:transparent;}
.fs1_c00095{font-size:54.000000px;}
.fs3_c00095{font-size:72.000000px;}
.fs2_c00095{font-size:78.000000px;}
.fs0_c00095{font-size:84.000000px;}
.y0_c00095{bottom:0.000000px;}
.y1a_c00095{bottom:717.285000px;}
.y19_c00095{bottom:737.460000px;}
.y18_c00095{bottom:759.750000px;}
.y17_c00095{bottom:782.085000px;}
.y16_c00095{bottom:797.925000px;}
.y15_c00095{bottom:803.685000px;}
.y14_c00095{bottom:825.675000px;}
.y13_c00095{bottom:847.185000px;}
.y12_c00095{bottom:868.875000px;}
.y11_c00095{bottom:887.175000px;}
.y10_c00095{bottom:889.335000px;}
.yf_c00095{bottom:890.775000px;}
.ye_c00095{bottom:912.060000px;}
.yd_c00095{bottom:933.300000px;}
.yc_c00095{bottom:955.275000px;}
.yb_c00095{bottom:976.125000px;}
.ya_c00095{bottom:997.800000px;}
.y5_c00095{bottom:1013.175000px;}
.y6_c00095{bottom:1013.625000px;}
.y7_c00095{bottom:1016.835000px;}
.y8_c00095{bottom:1020.435000px;}
.y9_c00095{bottom:1020.750000px;}
.y4_c00095{bottom:1040.250000px;}
.y1_c00095{bottom:1092.060000px;}
.y2_c00095{bottom:1092.435000px;}
.y3_c00095{bottom:1098.585000px;}
.h2_c00095{height:52.998047px;}
.h4_c00095{height:70.664062px;}
.h3_c00095{height:76.514648px;}
.h1_c00095{height:82.441406px;}
.h0_c00095{height:1174.500000px;}
.w0_c00095{width:731.977200px;}
.w1_c00095{width:732.000000px;}
.x0_c00095{left:0.000000px;}
.x12_c00095{left:72.340200px;}
.x11_c00095{left:73.390200px;}
.xf_c00095{left:74.515200px;}
.xe_c00095{left:75.550200px;}
.xb_c00095{left:76.990200px;}
.xa_c00095{left:78.790200px;}
.x4_c00095{left:80.290200px;}
.x1_c00095{left:100.765200px;}
.x5_c00095{left:105.490200px;}
.x6_c00095{left:107.590200px;}
.x2_c00095{left:127.090200px;}
.x3_c00095{left:301.690200px;}
.x7_c00095{left:386.965200px;}
.x9_c00095{left:395.590200px;}
.xc_c00095{left:616.690200px;}
.xd_c00095{left:633.565200px;}
.x10_c00095{left:675.715200px;}
.x8_c00095{left:688.690200px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls0_c00095{letter-spacing:0.000000pt;}
.ws0_c00095{word-spacing:0.000000pt;}
.fs1_c00095{font-size:48.000000pt;}
.fs3_c00095{font-size:64.000000pt;}
.fs2_c00095{font-size:69.333333pt;}
.fs0_c00095{font-size:74.666667pt;}
.y0_c00095{bottom:0.000000pt;}
.y1a_c00095{bottom:637.586667pt;}
.y19_c00095{bottom:655.520000pt;}
.y18_c00095{bottom:675.333333pt;}
.y17_c00095{bottom:695.186667pt;}
.y16_c00095{bottom:709.266667pt;}
.y15_c00095{bottom:714.386667pt;}
.y14_c00095{bottom:733.933333pt;}
.y13_c00095{bottom:753.053333pt;}
.y12_c00095{bottom:772.333333pt;}
.y11_c00095{bottom:788.600000pt;}
.y10_c00095{bottom:790.520000pt;}
.yf_c00095{bottom:791.800000pt;}
.ye_c00095{bottom:810.720000pt;}
.yd_c00095{bottom:829.600000pt;}
.yc_c00095{bottom:849.133333pt;}
.yb_c00095{bottom:867.666667pt;}
.ya_c00095{bottom:886.933333pt;}
.y5_c00095{bottom:900.600000pt;}
.y6_c00095{bottom:901.000000pt;}
.y7_c00095{bottom:903.853333pt;}
.y8_c00095{bottom:907.053333pt;}
.y9_c00095{bottom:907.333333pt;}
.y4_c00095{bottom:924.666667pt;}
.y1_c00095{bottom:970.720000pt;}
.y2_c00095{bottom:971.053333pt;}
.y3_c00095{bottom:976.520000pt;}
.h2_c00095{height:47.109375pt;}
.h4_c00095{height:62.812500pt;}
.h3_c00095{height:68.013021pt;}
.h1_c00095{height:73.281250pt;}
.h0_c00095{height:1044.000000pt;}
.w0_c00095{width:650.646400pt;}
.w1_c00095{width:650.666667pt;}
.x0_c00095{left:0.000000pt;}
.x12_c00095{left:64.302400pt;}
.x11_c00095{left:65.235733pt;}
.xf_c00095{left:66.235733pt;}
.xe_c00095{left:67.155733pt;}
.xb_c00095{left:68.435733pt;}
.xa_c00095{left:70.035733pt;}
.x4_c00095{left:71.369067pt;}
.x1_c00095{left:89.569067pt;}
.x5_c00095{left:93.769067pt;}
.x6_c00095{left:95.635733pt;}
.x2_c00095{left:112.969067pt;}
.x3_c00095{left:268.169067pt;}
.x7_c00095{left:343.969067pt;}
.x9_c00095{left:351.635733pt;}
.xc_c00095{left:548.169067pt;}
.xd_c00095{left:563.169067pt;}
.x10_c00095{left:600.635733pt;}
.x8_c00095{left:612.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c23bca0affc60f55560bce1b.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00096;src:url('chunks/assets/font_8b5ff409b541e4b88352415b.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.432129;font-style:normal;font-weight:normal;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_93b16da5fc6729180a2fb886.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00096{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m0_c00096{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c00096{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00096{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00096{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00096{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00096{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00096{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00096{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00096{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00096{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00096{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00096{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00096{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00096{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00096{color:transparent;}
.fs0_c00096{font-size:60.000000px;}
.fs2_c00096{font-size:72.000000px;}
.fs1_c00096{font-size:162.000000px;}
.y0_c00096{bottom:0.000000px;}
.y26_c00096{bottom:67.875000px;}
.y25_c00096{bottom:89.835000px;}
.y24_c00096{bottom:110.685000px;}
.y23_c00096{bottom:130.875000px;}
.y22_c00096{bottom:152.085000px;}
.y21_c00096{bottom:172.635000px;}
.y20_c00096{bottom:193.500000px;}
.y1f_c00096{bottom:213.585000px;}
.y1e_c00096{bottom:234.885000px;}
.y1d_c00096{bottom:256.125000px;}
.y1c_c00096{bottom:277.410000px;}
.y1b_c00096{bottom:299.025000px;}
.y1a_c00096{bottom:320.250000px;}
.y19_c00096{bottom:341.835000px;}
.y18_c00096{bottom:363.060000px;}
.y17_c00096{bottom:383.535000px;}
.y16_c00096{bottom:405.900000px;}
.y15_c00096{bottom:427.125000px;}
.y14_c00096{bottom:449.085000px;}
.y13_c00096{bottom:471.060000px;}
.y12_c00096{bottom:492.660000px;}
.y11_c00096{bottom:514.260000px;}
.y10_c00096{bottom:536.250000px;}
.yf_c00096{bottom:557.835000px;}
.ye_c00096{bottom:579.435000px;}
.yd_c00096{bottom:601.035000px;}
.yc_c00096{bottom:622.935000px;}
.yb_c00096{bottom:644.535000px;}
.ya_c00096{bottom:666.135000px;}
.y9_c00096{bottom:687.810000px;}
.y8_c00096{bottom:709.710000px;}
.y7_c00096{bottom:732.450000px;}
.y6_c00096{bottom:753.285000px;}
.y5_c00096{bottom:774.885000px;}
.y4_c00096{bottom:856.275000px;}
.y3_c00096{bottom:1069.335000px;}
.y2_c00096{bottom:1072.935000px;}
.y1_c00096{bottom:1074.750000px;}
.h1_c00096{height:60.468750px;}
.h3_c00096{height:70.664062px;}
.h2_c00096{height:168.960938px;}
.h0_c00096{height:1174.500000px;}
.w0_c00096{width:731.977200px;}
.w1_c00096{width:732.000000px;}
.x0_c00096{left:0.000000px;}
.x6_c00096{left:64.090200px;}
.x9_c00096{left:65.515200px;}
.xa_c00096{left:66.565200px;}
.xc_c00096{left:67.990200px;}
.x8_c00096{left:70.540200px;}
.x5_c00096{left:96.115200px;}
.x7_c00096{left:97.540200px;}
.xb_c00096{left:98.590200px;}
.x4_c00096{left:206.965200px;}
.x1_c00096{left:280.390200px;}
.x2_c00096{left:475.165200px;}
.x3_c00096{left:638.965200px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls0_c00096{letter-spacing:0.000000pt;}
.ws0_c00096{word-spacing:0.000000pt;}
.fs0_c00096{font-size:53.333333pt;}
.fs2_c00096{font-size:64.000000pt;}
.fs1_c00096{font-size:144.000000pt;}
.y0_c00096{bottom:0.000000pt;}
.y26_c00096{bottom:60.333333pt;}
.y25_c00096{bottom:79.853333pt;}
.y24_c00096{bottom:98.386667pt;}
.y23_c00096{bottom:116.333333pt;}
.y22_c00096{bottom:135.186667pt;}
.y21_c00096{bottom:153.453333pt;}
.y20_c00096{bottom:172.000000pt;}
.y1f_c00096{bottom:189.853333pt;}
.y1e_c00096{bottom:208.786667pt;}
.y1d_c00096{bottom:227.666667pt;}
.y1c_c00096{bottom:246.586667pt;}
.y1b_c00096{bottom:265.800000pt;}
.y1a_c00096{bottom:284.666667pt;}
.y19_c00096{bottom:303.853333pt;}
.y18_c00096{bottom:322.720000pt;}
.y17_c00096{bottom:340.920000pt;}
.y16_c00096{bottom:360.800000pt;}
.y15_c00096{bottom:379.666667pt;}
.y14_c00096{bottom:399.186667pt;}
.y13_c00096{bottom:418.720000pt;}
.y12_c00096{bottom:437.920000pt;}
.y11_c00096{bottom:457.120000pt;}
.y10_c00096{bottom:476.666667pt;}
.yf_c00096{bottom:495.853333pt;}
.ye_c00096{bottom:515.053333pt;}
.yd_c00096{bottom:534.253333pt;}
.yc_c00096{bottom:553.720000pt;}
.yb_c00096{bottom:572.920000pt;}
.ya_c00096{bottom:592.120000pt;}
.y9_c00096{bottom:611.386667pt;}
.y8_c00096{bottom:630.853333pt;}
.y7_c00096{bottom:651.066667pt;}
.y6_c00096{bottom:669.586667pt;}
.y5_c00096{bottom:688.786667pt;}
.y4_c00096{bottom:761.133333pt;}
.y3_c00096{bottom:950.520000pt;}
.y2_c00096{bottom:953.720000pt;}
.y1_c00096{bottom:955.333333pt;}
.h1_c00096{height:53.750000pt;}
.h3_c00096{height:62.812500pt;}
.h2_c00096{height:150.187500pt;}
.h0_c00096{height:1044.000000pt;}
.w0_c00096{width:650.646400pt;}
.w1_c00096{width:650.666667pt;}
.x0_c00096{left:0.000000pt;}
.x6_c00096{left:56.969067pt;}
.x9_c00096{left:58.235733pt;}
.xa_c00096{left:59.169067pt;}
.xc_c00096{left:60.435733pt;}
.x8_c00096{left:62.702400pt;}
.x5_c00096{left:85.435733pt;}
.x7_c00096{left:86.702400pt;}
.xb_c00096{left:87.635733pt;}
.x4_c00096{left:183.969067pt;}
.x1_c00096{left:249.235733pt;}
.x2_c00096{left:422.369067pt;}
.x3_c00096{left:567.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb28989a1b49b479196017d1.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00097;src:url('chunks/assets/font_485087e6dc503672222d25d8.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.284180;font-style:normal;font-weight:normal;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_1075f4cae2e4928cc33b9763.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00097{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00097{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mc_c00097{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma_c00097{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.md_c00097{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m13_c00097{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m15_c00097{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m11_c00097{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m18_c00097{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m5_c00097{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00097{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4_c00097{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m14_c00097{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m12_c00097{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8_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);}
.m19_c00097{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c00097{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c00097{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9_c00097{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me_c00097{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00097{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c00097{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00097{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00097{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c00097{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00097{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00097{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c00097{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00097{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m16_c00097{transform:matrix(1.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.625000,0.000000,0.000000,0.250000,0,0);}
.m2_c00097{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00097{color:transparent;}
.fs2_c00097{font-size:60.000000px;}
.fs1_c00097{font-size:66.000000px;}
.fs0_c00097{font-size:78.000000px;}
.fs4_c00097{font-size:84.000000px;}
.fs3_c00097{font-size:90.000000px;}
.y0_c00097{bottom:0.000000px;}
.y47_c00097{bottom:88.410000px;}
.y46_c00097{bottom:88.710000px;}
.y45_c00097{bottom:89.835000px;}
.y44_c00097{bottom:90.885000px;}
.y43_c00097{bottom:98.835000px;}
.y42_c00097{bottom:108.885000px;}
.y41_c00097{bottom:110.310000px;}
.y40_c00097{bottom:119.310000px;}
.y3f_c00097{bottom:140.910000px;}
.y3e_c00097{bottom:159.960000px;}
.y3d_c00097{bottom:169.710000px;}
.y3c_c00097{bottom:172.635000px;}
.y3b_c00097{bottom:183.750000px;}
.y3a_c00097{bottom:210.060000px;}
.y39_c00097{bottom:220.500000px;}
.y38_c00097{bottom:230.535000px;}
.y37_c00097{bottom:250.335000px;}
.y36_c00097{bottom:272.400000px;}
.y35_c00097{bottom:292.875000px;}
.y34_c00097{bottom:316.650000px;}
.y33_c00097{bottom:336.810000px;}
.y32_c00097{bottom:363.810000px;}
.y31_c00097{bottom:380.685000px;}
.y30_c00097{bottom:403.035000px;}
.y2f_c00097{bottom:424.635000px;}
.y2e_c00097{bottom:446.625000px;}
.y2d_c00097{bottom:468.885000px;}
.y2c_c00097{bottom:490.875000px;}
.y2b_c00097{bottom:513.210000px;}
.y2a_c00097{bottom:534.435000px;}
.y29_c00097{bottom:557.085000px;}
.y28_c00097{bottom:578.685000px;}
.y27_c00097{bottom:600.285000px;}
.y26_c00097{bottom:622.635000px;}
.y25_c00097{bottom:644.625000px;}
.y24_c00097{bottom:666.885000px;}
.y23_c00097{bottom:686.310000px;}
.y22_c00097{bottom:710.085000px;}
.y21_c00097{bottom:732.450000px;}
.y20_c00097{bottom:752.250000px;}
.y1f_c00097{bottom:775.635000px;}
.y1b_c00097{bottom:792.900000px;}
.y1c_c00097{bottom:794.685000px;}
.y1d_c00097{bottom:796.800000px;}
.y1e_c00097{bottom:798.675000px;}
.y1a_c00097{bottom:819.525000px;}
.y19_c00097{bottom:841.125000px;}
.y18_c00097{bottom:853.710000px;}
.y17_c00097{bottom:884.310000px;}
.y16_c00097{bottom:903.435000px;}
.y15_c00097{bottom:927.210000px;}
.y14_c00097{bottom:948.435000px;}
.y13_c00097{bottom:969.300000px;}
.y12_c00097{bottom:992.685000px;}
.y11_c00097{bottom:1005.300000px;}
.y9_c00097{bottom:1021.125000px;}
.ya_c00097{bottom:1025.460000px;}
.yf_c00097{bottom:1025.835000px;}
.yb_c00097{bottom:1028.310000px;}
.yc_c00097{bottom:1029.060000px;}
.ye_c00097{bottom:1031.625000px;}
.yd_c00097{bottom:1032.300000px;}
.y10_c00097{bottom:1039.500000px;}
.y5_c00097{bottom:1045.275000px;}
.y6_c00097{bottom:1049.925000px;}
.y7_c00097{bottom:1053.900000px;}
.y8_c00097{bottom:1061.085000px;}
.y1_c00097{bottom:1099.650000px;}
.y2_c00097{bottom:1099.935000px;}
.y4_c00097{bottom:1111.875000px;}
.y3_c00097{bottom:1115.835000px;}
.h3_c00097{height:58.886719px;}
.h2_c00097{height:64.775391px;}
.h1_c00097{height:76.552734px;}
.h6_c00097{height:78.609375px;}
.h5_c00097{height:82.400391px;}
.h4_c00097{height:88.330078px;}
.h0_c00097{height:1174.500000px;}
.w0_c00097{width:731.977200px;}
.w1_c00097{width:732.000000px;}
.x0_c00097{left:0.000000px;}
.x17_c00097{left:44.965200px;}
.x15_c00097{left:46.090200px;}
.x10_c00097{left:47.515200px;}
.x5_c00097{left:49.315200px;}
.x1_c00097{left:69.115200px;}
.x14_c00097{left:76.675200px;}
.x2_c00097{left:78.490200px;}
.x3_c00097{left:95.365200px;}
.x8_c00097{left:135.340200px;}
.x1c_c00097{left:147.565200px;}
.x19_c00097{left:172.090200px;}
.x1a_c00097{left:181.090200px;}
.x11_c00097{left:199.375200px;}
.x13_c00097{left:209.140200px;}
.x9_c00097{left:216.340200px;}
.xa_c00097{left:223.165200px;}
.xb_c00097{left:233.290200px;}
.x6_c00097{left:236.140200px;}
.xc_c00097{left:241.915200px;}
.xe_c00097{left:251.965200px;}
.x12_c00097{left:266.740200px;}
.x4_c00097{left:267.790200px;}
.xd_c00097{left:311.365200px;}
.xf_c00097{left:384.490200px;}
.x7_c00097{left:399.565200px;}
.x1d_c00097{left:475.540200px;}
.x1e_c00097{left:524.890200px;}
.x1f_c00097{left:536.365200px;}
.x18_c00097{left:546.115200px;}
.x20_c00097{left:636.115200px;}
.x16_c00097{left:649.765200px;}
.x1b_c00097{left:652.690200px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls0_c00097{letter-spacing:0.000000pt;}
.ws0_c00097{word-spacing:0.000000pt;}
.fs2_c00097{font-size:53.333333pt;}
.fs1_c00097{font-size:58.666667pt;}
.fs0_c00097{font-size:69.333333pt;}
.fs4_c00097{font-size:74.666667pt;}
.fs3_c00097{font-size:80.000000pt;}
.y0_c00097{bottom:0.000000pt;}
.y47_c00097{bottom:78.586667pt;}
.y46_c00097{bottom:78.853333pt;}
.y45_c00097{bottom:79.853333pt;}
.y44_c00097{bottom:80.786667pt;}
.y43_c00097{bottom:87.853333pt;}
.y42_c00097{bottom:96.786667pt;}
.y41_c00097{bottom:98.053333pt;}
.y40_c00097{bottom:106.053333pt;}
.y3f_c00097{bottom:125.253333pt;}
.y3e_c00097{bottom:142.186667pt;}
.y3d_c00097{bottom:150.853333pt;}
.y3c_c00097{bottom:153.453333pt;}
.y3b_c00097{bottom:163.333333pt;}
.y3a_c00097{bottom:186.720000pt;}
.y39_c00097{bottom:196.000000pt;}
.y38_c00097{bottom:204.920000pt;}
.y37_c00097{bottom:222.520000pt;}
.y36_c00097{bottom:242.133333pt;}
.y35_c00097{bottom:260.333333pt;}
.y34_c00097{bottom:281.466667pt;}
.y33_c00097{bottom:299.386667pt;}
.y32_c00097{bottom:323.386667pt;}
.y31_c00097{bottom:338.386667pt;}
.y30_c00097{bottom:358.253333pt;}
.y2f_c00097{bottom:377.453333pt;}
.y2e_c00097{bottom:397.000000pt;}
.y2d_c00097{bottom:416.786667pt;}
.y2c_c00097{bottom:436.333333pt;}
.y2b_c00097{bottom:456.186667pt;}
.y2a_c00097{bottom:475.053333pt;}
.y29_c00097{bottom:495.186667pt;}
.y28_c00097{bottom:514.386667pt;}
.y27_c00097{bottom:533.586667pt;}
.y26_c00097{bottom:553.453333pt;}
.y25_c00097{bottom:573.000000pt;}
.y24_c00097{bottom:592.786667pt;}
.y23_c00097{bottom:610.053333pt;}
.y22_c00097{bottom:631.186667pt;}
.y21_c00097{bottom:651.066667pt;}
.y20_c00097{bottom:668.666667pt;}
.y1f_c00097{bottom:689.453333pt;}
.y1b_c00097{bottom:704.800000pt;}
.y1c_c00097{bottom:706.386667pt;}
.y1d_c00097{bottom:708.266667pt;}
.y1e_c00097{bottom:709.933333pt;}
.y1a_c00097{bottom:728.466667pt;}
.y19_c00097{bottom:747.666667pt;}
.y18_c00097{bottom:758.853333pt;}
.y17_c00097{bottom:786.053333pt;}
.y16_c00097{bottom:803.053333pt;}
.y15_c00097{bottom:824.186667pt;}
.y14_c00097{bottom:843.053333pt;}
.y13_c00097{bottom:861.600000pt;}
.y12_c00097{bottom:882.386667pt;}
.y11_c00097{bottom:893.600000pt;}
.y9_c00097{bottom:907.666667pt;}
.ya_c00097{bottom:911.520000pt;}
.yf_c00097{bottom:911.853333pt;}
.yb_c00097{bottom:914.053333pt;}
.yc_c00097{bottom:914.720000pt;}
.ye_c00097{bottom:917.000000pt;}
.yd_c00097{bottom:917.600000pt;}
.y10_c00097{bottom:924.000000pt;}
.y5_c00097{bottom:929.133333pt;}
.y6_c00097{bottom:933.266667pt;}
.y7_c00097{bottom:936.800000pt;}
.y8_c00097{bottom:943.186667pt;}
.y1_c00097{bottom:977.466667pt;}
.y2_c00097{bottom:977.720000pt;}
.y4_c00097{bottom:988.333333pt;}
.y3_c00097{bottom:991.853333pt;}
.h3_c00097{height:52.343750pt;}
.h2_c00097{height:57.578125pt;}
.h1_c00097{height:68.046875pt;}
.h6_c00097{height:69.875000pt;}
.h5_c00097{height:73.244792pt;}
.h4_c00097{height:78.515625pt;}
.h0_c00097{height:1044.000000pt;}
.w0_c00097{width:650.646400pt;}
.w1_c00097{width:650.666667pt;}
.x0_c00097{left:0.000000pt;}
.x17_c00097{left:39.969067pt;}
.x15_c00097{left:40.969067pt;}
.x10_c00097{left:42.235733pt;}
.x5_c00097{left:43.835733pt;}
.x1_c00097{left:61.435733pt;}
.x14_c00097{left:68.155733pt;}
.x2_c00097{left:69.769067pt;}
.x3_c00097{left:84.769067pt;}
.x8_c00097{left:120.302400pt;}
.x1c_c00097{left:131.169067pt;}
.x19_c00097{left:152.969067pt;}
.x1a_c00097{left:160.969067pt;}
.x11_c00097{left:177.222400pt;}
.x13_c00097{left:185.902400pt;}
.x9_c00097{left:192.302400pt;}
.xa_c00097{left:198.369067pt;}
.xb_c00097{left:207.369067pt;}
.x6_c00097{left:209.902400pt;}
.xc_c00097{left:215.035733pt;}
.xe_c00097{left:223.969067pt;}
.x12_c00097{left:237.102400pt;}
.x4_c00097{left:238.035733pt;}
.xd_c00097{left:276.769067pt;}
.xf_c00097{left:341.769067pt;}
.x7_c00097{left:355.169067pt;}
.x1d_c00097{left:422.702400pt;}
.x1e_c00097{left:466.569067pt;}
.x1f_c00097{left:476.769067pt;}
.x18_c00097{left:485.435733pt;}
.x20_c00097{left:565.435733pt;}
.x16_c00097{left:577.569067pt;}
.x1b_c00097{left:580.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2190836c0ae16d93ea271750.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00098;src:url('chunks/assets/font_545d397d5c3e4528d77d7e2c.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00098{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c00098{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0_c00098{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c00098{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00098{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c00098{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00098{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00098{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00098{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00098{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00098{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00098{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00098{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00098{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00098{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00098{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,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;}
.fc0_c00098{color:transparent;}
.fs0_c00098{font-size:60.000000px;}
.fs1_c00098{font-size:66.000000px;}
.fs2_c00098{font-size:72.000000px;}
.fs3_c00098{font-size:78.000000px;}
.y0_c00098{bottom:0.000000px;}
.y32_c00098{bottom:76.500000px;}
.y31_c00098{bottom:98.835000px;}
.y2f_c00098{bottom:118.560000px;}
.y30_c00098{bottom:119.685000px;}
.y2e_c00098{bottom:139.875000px;}
.y2d_c00098{bottom:161.835000px;}
.y2c_c00098{bottom:180.885000px;}
.y2b_c00098{bottom:202.500000px;}
.y2a_c00098{bottom:223.035000px;}
.y29_c00098{bottom:244.260000px;}
.y28_c00098{bottom:265.875000px;}
.y27_c00098{bottom:287.775000px;}
.y26_c00098{bottom:308.310000px;}
.y25_c00098{bottom:330.285000px;}
.y24_c00098{bottom:351.525000px;}
.y23_c00098{bottom:372.750000px;}
.y22_c00098{bottom:394.410000px;}
.y21_c00098{bottom:416.310000px;}
.y20_c00098{bottom:436.875000px;}
.y1f_c00098{bottom:459.510000px;}
.y1e_c00098{bottom:480.060000px;}
.y1d_c00098{bottom:502.710000px;}
.y1c_c00098{bottom:524.385000px;}
.y1b_c00098{bottom:546.285000px;}
.y1a_c00098{bottom:567.885000px;}
.y19_c00098{bottom:589.125000px;}
.y18_c00098{bottom:611.085000px;}
.y17_c00098{bottom:632.685000px;}
.y16_c00098{bottom:654.660000px;}
.y15_c00098{bottom:676.260000px;}
.y14_c00098{bottom:698.250000px;}
.y13_c00098{bottom:720.135000px;}
.y12_c00098{bottom:741.750000px;}
.y11_c00098{bottom:763.710000px;}
.y10_c00098{bottom:785.310000px;}
.yf_c00098{bottom:807.300000px;}
.ye_c00098{bottom:829.275000px;}
.yd_c00098{bottom:850.875000px;}
.yc_c00098{bottom:872.460000px;}
.yb_c00098{bottom:893.685000px;}
.ya_c00098{bottom:915.300000px;}
.y9_c00098{bottom:936.210000px;}
.y8_c00098{bottom:936.900000px;}
.y7_c00098{bottom:958.185000px;}
.y6_c00098{bottom:959.550000px;}
.y5_c00098{bottom:979.710000px;}
.y4_c00098{bottom:1001.685000px;}
.y3_c00098{bottom:1023.675000px;}
.y2_c00098{bottom:1078.710000px;}
.y1_c00098{bottom:1084.875000px;}
.h1_c00098{height:60.468750px;}
.h2_c00098{height:64.775391px;}
.h3_c00098{height:70.664062px;}
.h4_c00098{height:72.562500px;}
.h5_c00098{height:78.609375px;}
.h0_c00098{height:1174.500000px;}
.w0_c00098{width:731.977200px;}
.w1_c00098{width:732.000000px;}
.x0_c00098{left:0.000000px;}
.x9_c00098{left:56.515200px;}
.x3_c00098{left:58.315200px;}
.x4_c00098{left:60.115200px;}
.xa_c00098{left:82.090200px;}
.x8_c00098{left:89.590200px;}
.x5_c00098{left:91.390200px;}
.x6_c00098{left:99.340200px;}
.x1_c00098{left:273.565200px;}
.x7_c00098{left:311.365200px;}
.x2_c00098{left:634.690200px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls0_c00098{letter-spacing:0.000000pt;}
.ws0_c00098{word-spacing:0.000000pt;}
.fs0_c00098{font-size:53.333333pt;}
.fs1_c00098{font-size:58.666667pt;}
.fs2_c00098{font-size:64.000000pt;}
.fs3_c00098{font-size:69.333333pt;}
.y0_c00098{bottom:0.000000pt;}
.y32_c00098{bottom:68.000000pt;}
.y31_c00098{bottom:87.853333pt;}
.y2f_c00098{bottom:105.386667pt;}
.y30_c00098{bottom:106.386667pt;}
.y2e_c00098{bottom:124.333333pt;}
.y2d_c00098{bottom:143.853333pt;}
.y2c_c00098{bottom:160.786667pt;}
.y2b_c00098{bottom:180.000000pt;}
.y2a_c00098{bottom:198.253333pt;}
.y29_c00098{bottom:217.120000pt;}
.y28_c00098{bottom:236.333333pt;}
.y27_c00098{bottom:255.800000pt;}
.y26_c00098{bottom:274.053333pt;}
.y25_c00098{bottom:293.586667pt;}
.y24_c00098{bottom:312.466667pt;}
.y23_c00098{bottom:331.333333pt;}
.y22_c00098{bottom:350.586667pt;}
.y21_c00098{bottom:370.053333pt;}
.y20_c00098{bottom:388.333333pt;}
.y1f_c00098{bottom:408.453333pt;}
.y1e_c00098{bottom:426.720000pt;}
.y1d_c00098{bottom:446.853333pt;}
.y1c_c00098{bottom:466.120000pt;}
.y1b_c00098{bottom:485.586667pt;}
.y1a_c00098{bottom:504.786667pt;}
.y19_c00098{bottom:523.666667pt;}
.y18_c00098{bottom:543.186667pt;}
.y17_c00098{bottom:562.386667pt;}
.y16_c00098{bottom:581.920000pt;}
.y15_c00098{bottom:601.120000pt;}
.y14_c00098{bottom:620.666667pt;}
.y13_c00098{bottom:640.120000pt;}
.y12_c00098{bottom:659.333333pt;}
.y11_c00098{bottom:678.853333pt;}
.y10_c00098{bottom:698.053333pt;}
.yf_c00098{bottom:717.600000pt;}
.ye_c00098{bottom:737.133333pt;}
.yd_c00098{bottom:756.333333pt;}
.yc_c00098{bottom:775.520000pt;}
.yb_c00098{bottom:794.386667pt;}
.ya_c00098{bottom:813.600000pt;}
.y9_c00098{bottom:832.186667pt;}
.y8_c00098{bottom:832.800000pt;}
.y7_c00098{bottom:851.720000pt;}
.y6_c00098{bottom:852.933333pt;}
.y5_c00098{bottom:870.853333pt;}
.y4_c00098{bottom:890.386667pt;}
.y3_c00098{bottom:909.933333pt;}
.y2_c00098{bottom:958.853333pt;}
.y1_c00098{bottom:964.333333pt;}
.h1_c00098{height:53.750000pt;}
.h2_c00098{height:57.578125pt;}
.h3_c00098{height:62.812500pt;}
.h4_c00098{height:64.500000pt;}
.h5_c00098{height:69.875000pt;}
.h0_c00098{height:1044.000000pt;}
.w0_c00098{width:650.646400pt;}
.w1_c00098{width:650.666667pt;}
.x0_c00098{left:0.000000pt;}
.x9_c00098{left:50.235733pt;}
.x3_c00098{left:51.835733pt;}
.x4_c00098{left:53.435733pt;}
.xa_c00098{left:72.969067pt;}
.x8_c00098{left:79.635733pt;}
.x5_c00098{left:81.235733pt;}
.x6_c00098{left:88.302400pt;}
.x1_c00098{left:243.169067pt;}
.x7_c00098{left:276.769067pt;}
.x2_c00098{left:564.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b1585bbc10b27d7f82404663.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00099;src:url('chunks/assets/font_c002af3bd684d600c462eefa.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00099{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m13_c00099{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4_c00099{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m3_c00099{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m14_c00099{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c00099{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb_c00099{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m12_c00099{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8_c00099{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1_c00099{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc_c00099{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5_c00099{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m10_c00099{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00099{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6_c00099{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00099{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7_c00099{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m18_c00099{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2_c00099{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16_c00099{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c00099{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c00099{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m17_c00099{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c00099{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c00099{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c00099{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00099{color:transparent;}
.fs0_c00099{font-size:60.000000px;}
.fs2_c00099{font-size:66.000000px;}
.fs3_c00099{font-size:72.000000px;}
.fs1_c00099{font-size:78.000000px;}
.y0_c00099{bottom:0.000000px;}
.y40_c00099{bottom:84.435000px;}
.y3f_c00099{bottom:96.285000px;}
.y3e_c00099{bottom:102.435000px;}
.y3d_c00099{bottom:104.910000px;}
.y3c_c00099{bottom:113.910000px;}
.y3b_c00099{bottom:132.285000px;}
.y3a_c00099{bottom:145.935000px;}
.y39_c00099{bottom:146.310000px;}
.y38_c00099{bottom:153.510000px;}
.y37_c00099{bottom:167.535000px;}
.y36_c00099{bottom:168.660000px;}
.y35_c00099{bottom:170.760000px;}
.y34_c00099{bottom:177.960000px;}
.y33_c00099{bottom:192.435000px;}
.y32_c00099{bottom:196.785000px;}
.y31_c00099{bottom:201.750000px;}
.y30_c00099{bottom:215.835000px;}
.y2f_c00099{bottom:222.660000px;}
.y2e_c00099{bottom:225.885000px;}
.y2d_c00099{bottom:240.660000px;}
.y2c_c00099{bottom:262.650000px;}
.y2b_c00099{bottom:284.250000px;}
.y2a_c00099{bottom:305.460000px;}
.y29_c00099{bottom:334.275000px;}
.y28_c00099{bottom:350.460000px;}
.y26_c00099{bottom:372.810000px;}
.y25_c00099{bottom:374.910000px;}
.y27_c00099{bottom:390.750000px;}
.y24_c00099{bottom:395.085000px;}
.y23_c00099{bottom:417.375000px;}
.y22_c00099{bottom:436.125000px;}
.y21_c00099{bottom:439.410000px;}
.y20_c00099{bottom:440.835000px;}
.y1f_c00099{bottom:462.435000px;}
.y1e_c00099{bottom:482.160000px;}
.y1d_c00099{bottom:504.510000px;}
.y1c_c00099{bottom:526.500000px;}
.y1b_c00099{bottom:548.085000px;}
.y1a_c00099{bottom:570.060000px;}
.y19_c00099{bottom:591.285000px;}
.y18_c00099{bottom:611.835000px;}
.y17_c00099{bottom:636.285000px;}
.y16_c00099{bottom:657.210000px;}
.y15_c00099{bottom:680.250000px;}
.y14_c00099{bottom:701.835000px;}
.y13_c00099{bottom:720.885000px;}
.y12_c00099{bottom:745.710000px;}
.y11_c00099{bottom:767.700000px;}
.y10_c00099{bottom:788.175000px;}
.yf_c00099{bottom:810.900000px;}
.ye_c00099{bottom:832.500000px;}
.yd_c00099{bottom:847.650000px;}
.yc_c00099{bottom:874.275000px;}
.yb_c00099{bottom:896.175000px;}
.ya_c00099{bottom:910.275000px;}
.y7_c00099{bottom:935.835000px;}
.y8_c00099{bottom:942.675000px;}
.y9_c00099{bottom:944.835000px;}
.y6_c00099{bottom:962.085000px;}
.y5_c00099{bottom:983.025000px;}
.y4_c00099{bottom:991.275000px;}
.y3_c00099{bottom:1024.425000px;}
.y2_c00099{bottom:1046.685000px;}
.y41_c00099{bottom:1092.375000px;}
.y1_c00099{bottom:1102.500000px;}
.h1_c00099{height:58.886719px;}
.h4_c00099{height:64.775391px;}
.h5_c00099{height:72.562500px;}
.h2_c00099{height:76.552734px;}
.h3_c00099{height:78.609375px;}
.h0_c00099{height:1174.500000px;}
.w0_c00099{width:731.977200px;}
.w1_c00099{width:732.000000px;}
.x0_c00099{left:0.000000px;}
.xc_c00099{left:55.090200px;}
.x9_c00099{left:56.890200px;}
.x8_c00099{left:57.940200px;}
.x4_c00099{left:58.990200px;}
.x3_c00099{left:60.115200px;}
.x1d_c00099{left:79.540200px;}
.xb_c00099{left:85.675200px;}
.xa_c00099{left:86.740200px;}
.x7_c00099{left:88.540200px;}
.x2_c00099{left:90.340200px;}
.x11_c00099{left:244.090200px;}
.x12_c00099{left:250.165200px;}
.xd_c00099{left:252.715200px;}
.x1c_c00099{left:272.515200px;}
.x1_c00099{left:278.590200px;}
.xe_c00099{left:296.290200px;}
.xf_c00099{left:344.890200px;}
.x13_c00099{left:346.315200px;}
.x14_c00099{left:354.565200px;}
.x1a_c00099{left:455.740200px;}
.x5_c00099{left:459.340200px;}
.x6_c00099{left:468.340200px;}
.x15_c00099{left:495.340200px;}
.x16_c00099{left:498.940200px;}
.x1b_c00099{left:562.315200px;}
.x10_c00099{left:574.540200px;}
.x17_c00099{left:644.365200px;}
.x18_c00099{left:649.090200px;}
.x19_c00099{left:653.365200px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls0_c00099{letter-spacing:0.000000pt;}
.ws0_c00099{word-spacing:0.000000pt;}
.fs0_c00099{font-size:53.333333pt;}
.fs2_c00099{font-size:58.666667pt;}
.fs3_c00099{font-size:64.000000pt;}
.fs1_c00099{font-size:69.333333pt;}
.y0_c00099{bottom:0.000000pt;}
.y40_c00099{bottom:75.053333pt;}
.y3f_c00099{bottom:85.586667pt;}
.y3e_c00099{bottom:91.053333pt;}
.y3d_c00099{bottom:93.253333pt;}
.y3c_c00099{bottom:101.253333pt;}
.y3b_c00099{bottom:117.586667pt;}
.y3a_c00099{bottom:129.720000pt;}
.y39_c00099{bottom:130.053333pt;}
.y38_c00099{bottom:136.453333pt;}
.y37_c00099{bottom:148.920000pt;}
.y36_c00099{bottom:149.920000pt;}
.y35_c00099{bottom:151.786667pt;}
.y34_c00099{bottom:158.186667pt;}
.y33_c00099{bottom:171.053333pt;}
.y32_c00099{bottom:174.920000pt;}
.y31_c00099{bottom:179.333333pt;}
.y30_c00099{bottom:191.853333pt;}
.y2f_c00099{bottom:197.920000pt;}
.y2e_c00099{bottom:200.786667pt;}
.y2d_c00099{bottom:213.920000pt;}
.y2c_c00099{bottom:233.466667pt;}
.y2b_c00099{bottom:252.666667pt;}
.y2a_c00099{bottom:271.520000pt;}
.y29_c00099{bottom:297.133333pt;}
.y28_c00099{bottom:311.520000pt;}
.y26_c00099{bottom:331.386667pt;}
.y25_c00099{bottom:333.253333pt;}
.y27_c00099{bottom:347.333333pt;}
.y24_c00099{bottom:351.186667pt;}
.y23_c00099{bottom:371.000000pt;}
.y22_c00099{bottom:387.666667pt;}
.y21_c00099{bottom:390.586667pt;}
.y20_c00099{bottom:391.853333pt;}
.y1f_c00099{bottom:411.053333pt;}
.y1e_c00099{bottom:428.586667pt;}
.y1d_c00099{bottom:448.453333pt;}
.y1c_c00099{bottom:468.000000pt;}
.y1b_c00099{bottom:487.186667pt;}
.y1a_c00099{bottom:506.720000pt;}
.y19_c00099{bottom:525.586667pt;}
.y18_c00099{bottom:543.853333pt;}
.y17_c00099{bottom:565.586667pt;}
.y16_c00099{bottom:584.186667pt;}
.y15_c00099{bottom:604.666667pt;}
.y14_c00099{bottom:623.853333pt;}
.y13_c00099{bottom:640.786667pt;}
.y12_c00099{bottom:662.853333pt;}
.y11_c00099{bottom:682.400000pt;}
.y10_c00099{bottom:700.600000pt;}
.yf_c00099{bottom:720.800000pt;}
.ye_c00099{bottom:740.000000pt;}
.yd_c00099{bottom:753.466667pt;}
.yc_c00099{bottom:777.133333pt;}
.yb_c00099{bottom:796.600000pt;}
.ya_c00099{bottom:809.133333pt;}
.y7_c00099{bottom:831.853333pt;}
.y8_c00099{bottom:837.933333pt;}
.y9_c00099{bottom:839.853333pt;}
.y6_c00099{bottom:855.186667pt;}
.y5_c00099{bottom:873.800000pt;}
.y4_c00099{bottom:881.133333pt;}
.y3_c00099{bottom:910.600000pt;}
.y2_c00099{bottom:930.386667pt;}
.y41_c00099{bottom:971.000000pt;}
.y1_c00099{bottom:980.000000pt;}
.h1_c00099{height:52.343750pt;}
.h4_c00099{height:57.578125pt;}
.h5_c00099{height:64.500000pt;}
.h2_c00099{height:68.046875pt;}
.h3_c00099{height:69.875000pt;}
.h0_c00099{height:1044.000000pt;}
.w0_c00099{width:650.646400pt;}
.w1_c00099{width:650.666667pt;}
.x0_c00099{left:0.000000pt;}
.xc_c00099{left:48.969067pt;}
.x9_c00099{left:50.569067pt;}
.x8_c00099{left:51.502400pt;}
.x4_c00099{left:52.435733pt;}
.x3_c00099{left:53.435733pt;}
.x1d_c00099{left:70.702400pt;}
.xb_c00099{left:76.155733pt;}
.xa_c00099{left:77.102400pt;}
.x7_c00099{left:78.702400pt;}
.x2_c00099{left:80.302400pt;}
.x11_c00099{left:216.969067pt;}
.x12_c00099{left:222.369067pt;}
.xd_c00099{left:224.635733pt;}
.x1c_c00099{left:242.235733pt;}
.x1_c00099{left:247.635733pt;}
.xe_c00099{left:263.369067pt;}
.xf_c00099{left:306.569067pt;}
.x13_c00099{left:307.835733pt;}
.x14_c00099{left:315.169067pt;}
.x1a_c00099{left:405.102400pt;}
.x5_c00099{left:408.302400pt;}
.x6_c00099{left:416.302400pt;}
.x15_c00099{left:440.302400pt;}
.x16_c00099{left:443.502400pt;}
.x1b_c00099{left:499.835733pt;}
.x10_c00099{left:510.702400pt;}
.x17_c00099{left:572.769067pt;}
.x18_c00099{left:576.969067pt;}
.x19_c00099{left:580.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5b6edeecf73c7d0a69f7db2c.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00100;src:url('chunks/assets/font_88c458a876d5c93265046550.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00100{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4_c00100{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb_c00100{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m14_c00100{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf_c00100{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m12_c00100{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c00100{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10_c00100{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c00100{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00100{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00100{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c00100{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c00100{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c00100{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6_c00100{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c00100{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c00100{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c00100{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c00100{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00100{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00100{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00100{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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.000000px;}
.fc0_c00100{color:transparent;}
.fs0_c00100{font-size:60.000000px;}
.fs1_c00100{font-size:72.000000px;}
.fs2_c00100{font-size:84.000000px;}
.y0_c00100{bottom:0.000000px;}
.y29_c00100{bottom:410.160000px;}
.y28_c00100{bottom:431.835000px;}
.y27_c00100{bottom:453.810000px;}
.y26_c00100{bottom:475.710000px;}
.y25_c00100{bottom:497.685000px;}
.y24_c00100{bottom:518.910000px;}
.y23_c00100{bottom:540.885000px;}
.y22_c00100{bottom:562.500000px;}
.y20_c00100{bottom:584.085000px;}
.y21_c00100{bottom:584.460000px;}
.y1e_c00100{bottom:605.685000px;}
.y1f_c00100{bottom:606.060000px;}
.y1c_c00100{bottom:627.660000px;}
.y1d_c00100{bottom:628.335000px;}
.y1b_c00100{bottom:649.260000px;}
.y1a_c00100{bottom:671.535000px;}
.y19_c00100{bottom:692.760000px;}
.y18_c00100{bottom:714.450000px;}
.y17_c00100{bottom:736.335000px;}
.y16_c00100{bottom:757.635000px;}
.y15_c00100{bottom:757.950000px;}
.y14_c00100{bottom:779.550000px;}
.y13_c00100{bottom:801.525000px;}
.y12_c00100{bottom:823.500000px;}
.y11_c00100{bottom:843.300000px;}
.y10_c00100{bottom:843.675000px;}
.yf_c00100{bottom:844.710000px;}
.ye_c00100{bottom:866.685000px;}
.yd_c00100{bottom:888.000000px;}
.yc_c00100{bottom:909.525000px;}
.yb_c00100{bottom:930.750000px;}
.ya_c00100{bottom:931.800000px;}
.y9_c00100{bottom:951.585000px;}
.y8_c00100{bottom:953.085000px;}
.y7_c00100{bottom:953.460000px;}
.y6_c00100{bottom:973.935000px;}
.y5_c00100{bottom:997.425000px;}
.y4_c00100{bottom:1017.525000px;}
.y3_c00100{bottom:1074.435000px;}
.y1_c00100{bottom:1078.050000px;}
.y2_c00100{bottom:1089.000000px;}
.h1_c00100{height:60.468750px;}
.h2_c00100{height:70.664062px;}
.h3_c00100{height:82.441406px;}
.h4_c00100{height:84.656250px;}
.h0_c00100{height:1174.500000px;}
.w0_c00100{width:731.977200px;}
.w1_c00100{width:732.000000px;}
.x0_c00100{left:0.000000px;}
.x4_c00100{left:57.940200px;}
.x5_c00100{left:60.115200px;}
.xa_c00100{left:61.165200px;}
.x6_c00100{left:91.390200px;}
.xd_c00100{left:93.550200px;}
.x9_c00100{left:105.490200px;}
.x12_c00100{left:142.165200px;}
.x13_c00100{left:178.540200px;}
.x7_c00100{left:196.915200px;}
.x8_c00100{left:246.565200px;}
.x1_c00100{left:273.940200px;}
.x2_c00100{left:469.390200px;}
.x10_c00100{left:526.990200px;}
.x11_c00100{left:571.990200px;}
.xe_c00100{left:579.940200px;}
.xb_c00100{left:614.515200px;}
.xf_c00100{left:616.990200px;}
.x3_c00100{left:631.765200px;}
.xc_c00100{left:639.715200px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ws0_c00100{word-spacing:0.000000pt;}
.fs0_c00100{font-size:53.333333pt;}
.fs1_c00100{font-size:64.000000pt;}
.fs2_c00100{font-size:74.666667pt;}
.y0_c00100{bottom:0.000000pt;}
.y29_c00100{bottom:364.586667pt;}
.y28_c00100{bottom:383.853333pt;}
.y27_c00100{bottom:403.386667pt;}
.y26_c00100{bottom:422.853333pt;}
.y25_c00100{bottom:442.386667pt;}
.y24_c00100{bottom:461.253333pt;}
.y23_c00100{bottom:480.786667pt;}
.y22_c00100{bottom:500.000000pt;}
.y20_c00100{bottom:519.186667pt;}
.y21_c00100{bottom:519.520000pt;}
.y1e_c00100{bottom:538.386667pt;}
.y1f_c00100{bottom:538.720000pt;}
.y1c_c00100{bottom:557.920000pt;}
.y1d_c00100{bottom:558.520000pt;}
.y1b_c00100{bottom:577.120000pt;}
.y1a_c00100{bottom:596.920000pt;}
.y19_c00100{bottom:615.786667pt;}
.y18_c00100{bottom:635.066667pt;}
.y17_c00100{bottom:654.520000pt;}
.y16_c00100{bottom:673.453333pt;}
.y15_c00100{bottom:673.733333pt;}
.y14_c00100{bottom:692.933333pt;}
.y13_c00100{bottom:712.466667pt;}
.y12_c00100{bottom:732.000000pt;}
.y11_c00100{bottom:749.600000pt;}
.y10_c00100{bottom:749.933333pt;}
.yf_c00100{bottom:750.853333pt;}
.ye_c00100{bottom:770.386667pt;}
.yd_c00100{bottom:789.333333pt;}
.yc_c00100{bottom:808.466667pt;}
.yb_c00100{bottom:827.333333pt;}
.ya_c00100{bottom:828.266667pt;}
.y9_c00100{bottom:845.853333pt;}
.y8_c00100{bottom:847.186667pt;}
.y7_c00100{bottom:847.520000pt;}
.y6_c00100{bottom:865.720000pt;}
.y5_c00100{bottom:886.600000pt;}
.y4_c00100{bottom:904.466667pt;}
.y3_c00100{bottom:955.053333pt;}
.y1_c00100{bottom:958.266667pt;}
.y2_c00100{bottom:968.000000pt;}
.h1_c00100{height:53.750000pt;}
.h2_c00100{height:62.812500pt;}
.h3_c00100{height:73.281250pt;}
.h4_c00100{height:75.250000pt;}
.h0_c00100{height:1044.000000pt;}
.w0_c00100{width:650.646400pt;}
.w1_c00100{width:650.666667pt;}
.x0_c00100{left:0.000000pt;}
.x4_c00100{left:51.502400pt;}
.x5_c00100{left:53.435733pt;}
.xa_c00100{left:54.369067pt;}
.x6_c00100{left:81.235733pt;}
.xd_c00100{left:83.155733pt;}
.x9_c00100{left:93.769067pt;}
.x12_c00100{left:126.369067pt;}
.x13_c00100{left:158.702400pt;}
.x7_c00100{left:175.035733pt;}
.x8_c00100{left:219.169067pt;}
.x1_c00100{left:243.502400pt;}
.x2_c00100{left:417.235733pt;}
.x10_c00100{left:468.435733pt;}
.x11_c00100{left:508.435733pt;}
.xe_c00100{left:515.502400pt;}
.xb_c00100{left:546.235733pt;}
.xf_c00100{left:548.435733pt;}
.x3_c00100{left:561.569067pt;}
.xc_c00100{left:568.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00101 {
    display:none;
  }
  .loading-indicator_c00101.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00101 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00101 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00101" -> "#page-container .classname_c00101")
 */
.pf_c00101 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00101 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00101 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00101 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00101 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00101 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00101 {overflow:visible;}
  }
}
.c_c00101 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00101 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00101:after { /* webkit #35443 */
  content: '';
}
.t_c00101:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00101 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00101 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00101 { /* info for Javascript */
  display:none;
}
.l_c00101 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00101 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00101 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00101:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00101 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00101.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00101 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00101{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00101;src:url('chunks/assets/font_26c03f79831b9c40135f8ecc.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00101;src:url('chunks/assets/font_80fc805b6f3bcc1dd6baab7a.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00101;src:url('chunks/assets/font_33e81988a4c1a61268e49c17.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00101;src:url('chunks/assets/font_e2f1d155ca15e71da48c4eba.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00101{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m3_c00101{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m0_c00101{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m15_c00101{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c00101{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c00101{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00101{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00101{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00101{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00101{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00101{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00101{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c00101{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00101{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c00101{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00101{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m13_c00101{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c00101{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c00101{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00101{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c00101{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c00101{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.ls0_c00101{letter-spacing:0.000000px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00101{word-spacing:0.000000px;}
.fc0_c00101{color:transparent;}
.fs1_c00101{font-size:60.000000px;}
.fs5_c00101{font-size:66.000000px;}
.fs0_c00101{font-size:72.000000px;}
.fs4_c00101{font-size:78.000000px;}
.fs3_c00101{font-size:126.000000px;}
.fs2_c00101{font-size:144.000000px;}
.y0_c00101{bottom:0.000000px;}
.y26_c00101{bottom:89.085000px;}
.y25_c00101{bottom:94.185000px;}
.y24_c00101{bottom:96.660000px;}
.y23_c00101{bottom:99.510000px;}
.y22_c00101{bottom:99.885000px;}
.y21_c00101{bottom:100.635000px;}
.y20_c00101{bottom:108.210000px;}
.y1f_c00101{bottom:118.260000px;}
.y1e_c00101{bottom:124.710000px;}
.y1d_c00101{bottom:243.510000px;}
.y1c_c00101{bottom:264.375000px;}
.y1b_c00101{bottom:270.900000px;}
.y1a_c00101{bottom:289.650000px;}
.y19_c00101{bottom:308.310000px;}
.y18_c00101{bottom:330.285000px;}
.y17_c00101{bottom:352.275000px;}
.y16_c00101{bottom:373.875000px;}
.y15_c00101{bottom:396.525000px;}
.y14_c00101{bottom:419.250000px;}
.y13_c00101{bottom:440.085000px;}
.y12_c00101{bottom:462.435000px;}
.y11_c00101{bottom:484.410000px;}
.y10_c00101{bottom:593.085000px;}
.yf_c00101{bottom:615.435000px;}
.ye_c00101{bottom:638.460000px;}
.yd_c00101{bottom:657.510000px;}
.yc_c00101{bottom:681.660000px;}
.yb_c00101{bottom:701.460000px;}
.ya_c00101{bottom:724.500000px;}
.y9_c00101{bottom:746.460000px;}
.y8_c00101{bottom:767.700000px;}
.y7_c00101{bottom:789.675000px;}
.y6_c00101{bottom:811.935000px;}
.y4_c00101{bottom:891.585000px;}
.y5_c00101{bottom:897.675000px;}
.y1_c00101{bottom:1093.875000px;}
.y3_c00101{bottom:1104.300000px;}
.y2_c00101{bottom:1108.650000px;}
.h2_c00101{height:58.886719px;}
.h8_c00101{height:64.743164px;}
.h7_c00101{height:64.775391px;}
.h6_c00101{height:66.515625px;}
.h1_c00101{height:72.562500px;}
.h5_c00101{height:76.552734px;}
.h4_c00101{height:123.600586px;}
.h3_c00101{height:150.187500px;}
.h0_c00101{height:1174.500000px;}
.w0_c00101{width:731.977200px;}
.w1_c00101{width:732.000000px;}
.x0_c00101{left:0.000000px;}
.xa_c00101{left:50.365200px;}
.x8_c00101{left:51.490200px;}
.x7_c00101{left:52.540200px;}
.xf_c00101{left:54.715200px;}
.xd_c00101{left:70.540200px;}
.x1_c00101{left:73.090200px;}
.x9_c00101{left:81.340200px;}
.xb_c00101{left:82.390200px;}
.x6_c00101{left:83.890200px;}
.x2_c00101{left:99.715200px;}
.xc_c00101{left:114.115200px;}
.x4_c00101{left:156.565200px;}
.x14_c00101{left:203.740200px;}
.x15_c00101{left:216.715200px;}
.x3_c00101{left:272.140200px;}
.x10_c00101{left:501.490200px;}
.xe_c00101{left:528.790200px;}
.x5_c00101{left:566.965200px;}
.x11_c00101{left:569.140200px;}
.x12_c00101{left:592.915200px;}
.x13_c00101{left:614.890200px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls0_c00101{letter-spacing:0.000000pt;}
.ws0_c00101{word-spacing:0.000000pt;}
.fs1_c00101{font-size:53.333333pt;}
.fs5_c00101{font-size:58.666667pt;}
.fs0_c00101{font-size:64.000000pt;}
.fs4_c00101{font-size:69.333333pt;}
.fs3_c00101{font-size:112.000000pt;}
.fs2_c00101{font-size:128.000000pt;}
.y0_c00101{bottom:0.000000pt;}
.y26_c00101{bottom:79.186667pt;}
.y25_c00101{bottom:83.720000pt;}
.y24_c00101{bottom:85.920000pt;}
.y23_c00101{bottom:88.453333pt;}
.y22_c00101{bottom:88.786667pt;}
.y21_c00101{bottom:89.453333pt;}
.y20_c00101{bottom:96.186667pt;}
.y1f_c00101{bottom:105.120000pt;}
.y1e_c00101{bottom:110.853333pt;}
.y1d_c00101{bottom:216.453333pt;}
.y1c_c00101{bottom:235.000000pt;}
.y1b_c00101{bottom:240.800000pt;}
.y1a_c00101{bottom:257.466667pt;}
.y19_c00101{bottom:274.053333pt;}
.y18_c00101{bottom:293.586667pt;}
.y17_c00101{bottom:313.133333pt;}
.y16_c00101{bottom:332.333333pt;}
.y15_c00101{bottom:352.466667pt;}
.y14_c00101{bottom:372.666667pt;}
.y13_c00101{bottom:391.186667pt;}
.y12_c00101{bottom:411.053333pt;}
.y11_c00101{bottom:430.586667pt;}
.y10_c00101{bottom:527.186667pt;}
.yf_c00101{bottom:547.053333pt;}
.ye_c00101{bottom:567.520000pt;}
.yd_c00101{bottom:584.453333pt;}
.yc_c00101{bottom:605.920000pt;}
.yb_c00101{bottom:623.520000pt;}
.ya_c00101{bottom:644.000000pt;}
.y9_c00101{bottom:663.520000pt;}
.y8_c00101{bottom:682.400000pt;}
.y7_c00101{bottom:701.933333pt;}
.y6_c00101{bottom:721.720000pt;}
.y4_c00101{bottom:792.520000pt;}
.y5_c00101{bottom:797.933333pt;}
.y1_c00101{bottom:972.333333pt;}
.y3_c00101{bottom:981.600000pt;}
.y2_c00101{bottom:985.466667pt;}
.h2_c00101{height:52.343750pt;}
.h8_c00101{height:57.549479pt;}
.h7_c00101{height:57.578125pt;}
.h6_c00101{height:59.125000pt;}
.h1_c00101{height:64.500000pt;}
.h5_c00101{height:68.046875pt;}
.h4_c00101{height:109.867188pt;}
.h3_c00101{height:133.500000pt;}
.h0_c00101{height:1044.000000pt;}
.w0_c00101{width:650.646400pt;}
.w1_c00101{width:650.666667pt;}
.x0_c00101{left:0.000000pt;}
.xa_c00101{left:44.769067pt;}
.x8_c00101{left:45.769067pt;}
.x7_c00101{left:46.702400pt;}
.xf_c00101{left:48.635733pt;}
.xd_c00101{left:62.702400pt;}
.x1_c00101{left:64.969067pt;}
.x9_c00101{left:72.302400pt;}
.xb_c00101{left:73.235733pt;}
.x6_c00101{left:74.569067pt;}
.x2_c00101{left:88.635733pt;}
.xc_c00101{left:101.435733pt;}
.x4_c00101{left:139.169067pt;}
.x14_c00101{left:181.102400pt;}
.x15_c00101{left:192.635733pt;}
.x3_c00101{left:241.902400pt;}
.x10_c00101{left:445.769067pt;}
.xe_c00101{left:470.035733pt;}
.x5_c00101{left:503.969067pt;}
.x11_c00101{left:505.902400pt;}
.x12_c00101{left:527.035733pt;}
.x13_c00101{left:546.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7a4c9dbd6d5b9094d68a55e0.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00102;src:url('chunks/assets/font_ae70a56dca6fa94857d195db.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00102;src:url('chunks/assets/font_489eabe6d9405edfeae04304.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00102;src:url('chunks/assets/font_af0ac37f4dfca15becc2bb32.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00102{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mc_c00102{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.m6_c00102{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3_c00102{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c00102{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00102{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c00102{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c00102{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00102{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11_c00102{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c00102{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c00102{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00102{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00102{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c00102{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c00102{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00102{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c00102{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c00102{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00102{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m0_c00102{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m1_c00102{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.ls0_c00102{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00102{color:transparent;}
.fs0_c00102{font-size:24.000000px;}
.fs2_c00102{font-size:72.000000px;}
.fs1_c00102{font-size:78.000000px;}
.y0_c00102{bottom:0.000000px;}
.y37_c00102{bottom:73.560000px;}
.y36_c00102{bottom:94.500000px;}
.y35_c00102{bottom:115.410000px;}
.y34_c00102{bottom:136.560000px;}
.y33_c00102{bottom:156.810000px;}
.y32_c00102{bottom:177.285000px;}
.y31_c00102{bottom:197.085000px;}
.y30_c00102{bottom:219.060000px;}
.y2f_c00102{bottom:239.910000px;}
.y2e_c00102{bottom:261.525000px;}
.y2d_c00102{bottom:283.500000px;}
.y2c_c00102{bottom:304.410000px;}
.y2b_c00102{bottom:325.560000px;}
.y2a_c00102{bottom:347.160000px;}
.y29_c00102{bottom:368.085000px;}
.y28_c00102{bottom:389.310000px;}
.y27_c00102{bottom:410.625000px;}
.y26_c00102{bottom:432.210000px;}
.y25_c00102{bottom:454.125000px;}
.y24_c00102{bottom:475.710000px;}
.y23_c00102{bottom:497.685000px;}
.y22_c00102{bottom:519.285000px;}
.y21_c00102{bottom:541.260000px;}
.y20_c00102{bottom:562.500000px;}
.y1f_c00102{bottom:584.460000px;}
.y1e_c00102{bottom:606.435000px;}
.y1d_c00102{bottom:627.660000px;}
.y1c_c00102{bottom:628.035000px;}
.y1b_c00102{bottom:649.635000px;}
.y1a_c00102{bottom:670.875000px;}
.y19_c00102{bottom:692.835000px;}
.y18_c00102{bottom:714.825000px;}
.y17_c00102{bottom:736.710000px;}
.y16_c00102{bottom:758.325000px;}
.y15_c00102{bottom:779.925000px;}
.y14_c00102{bottom:801.900000px;}
.y13_c00102{bottom:823.875000px;}
.y12_c00102{bottom:845.460000px;}
.y11_c00102{bottom:845.835000px;}
.yf_c00102{bottom:867.060000px;}
.y10_c00102{bottom:867.375000px;}
.ye_c00102{bottom:886.500000px;}
.yd_c00102{bottom:888.300000px;}
.yc_c00102{bottom:909.900000px;}
.yb_c00102{bottom:931.125000px;}
.ya_c00102{bottom:931.500000px;}
.y9_c00102{bottom:931.875000px;}
.y8_c00102{bottom:952.425000px;}
.y7_c00102{bottom:975.750000px;}
.y6_c00102{bottom:995.925000px;}
.y5_c00102{bottom:1016.400000px;}
.y4_c00102{bottom:1019.310000px;}
.y3_c00102{bottom:1074.375000px;}
.y2_c00102{bottom:1078.425000px;}
.y1_c00102{bottom:1079.085000px;}
.h1_c00102{height:23.554688px;}
.h5_c00102{height:70.628906px;}
.h4_c00102{height:76.514648px;}
.h2_c00102{height:76.552734px;}
.h3_c00102{height:78.609375px;}
.h0_c00102{height:1174.500000px;}
.w0_c00102{width:731.977200px;}
.w1_c00102{width:732.000000px;}
.x0_c00102{left:0.000000px;}
.x14_c00102{left:47.890200px;}
.xf_c00102{left:49.315200px;}
.xe_c00102{left:50.365200px;}
.x6_c00102{left:51.490200px;}
.x15_c00102{left:70.165200px;}
.x13_c00102{left:71.590200px;}
.xc_c00102{left:73.090200px;}
.x7_c00102{left:75.550200px;}
.x16_c00102{left:79.165200px;}
.x8_c00102{left:80.290200px;}
.x10_c00102{left:82.090200px;}
.x4_c00102{left:83.890200px;}
.x9_c00102{left:105.790200px;}
.xd_c00102{left:116.590200px;}
.xb_c00102{left:174.940200px;}
.x11_c00102{left:218.140200px;}
.x1_c00102{left:268.540200px;}
.x12_c00102{left:364.690200px;}
.x2_c00102{left:462.190200px;}
.x5_c00102{left:514.390200px;}
.x3_c00102{left:623.890200px;}
.xa_c00102{left:651.190200px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls0_c00102{letter-spacing:0.000000pt;}
.ws0_c00102{word-spacing:0.000000pt;}
.fs0_c00102{font-size:21.333333pt;}
.fs2_c00102{font-size:64.000000pt;}
.fs1_c00102{font-size:69.333333pt;}
.y0_c00102{bottom:0.000000pt;}
.y37_c00102{bottom:65.386667pt;}
.y36_c00102{bottom:84.000000pt;}
.y35_c00102{bottom:102.586667pt;}
.y34_c00102{bottom:121.386667pt;}
.y33_c00102{bottom:139.386667pt;}
.y32_c00102{bottom:157.586667pt;}
.y31_c00102{bottom:175.186667pt;}
.y30_c00102{bottom:194.720000pt;}
.y2f_c00102{bottom:213.253333pt;}
.y2e_c00102{bottom:232.466667pt;}
.y2d_c00102{bottom:252.000000pt;}
.y2c_c00102{bottom:270.586667pt;}
.y2b_c00102{bottom:289.386667pt;}
.y2a_c00102{bottom:308.586667pt;}
.y29_c00102{bottom:327.186667pt;}
.y28_c00102{bottom:346.053333pt;}
.y27_c00102{bottom:365.000000pt;}
.y26_c00102{bottom:384.186667pt;}
.y25_c00102{bottom:403.666667pt;}
.y24_c00102{bottom:422.853333pt;}
.y23_c00102{bottom:442.386667pt;}
.y22_c00102{bottom:461.586667pt;}
.y21_c00102{bottom:481.120000pt;}
.y20_c00102{bottom:500.000000pt;}
.y1f_c00102{bottom:519.520000pt;}
.y1e_c00102{bottom:539.053333pt;}
.y1d_c00102{bottom:557.920000pt;}
.y1c_c00102{bottom:558.253333pt;}
.y1b_c00102{bottom:577.453333pt;}
.y1a_c00102{bottom:596.333333pt;}
.y19_c00102{bottom:615.853333pt;}
.y18_c00102{bottom:635.400000pt;}
.y17_c00102{bottom:654.853333pt;}
.y16_c00102{bottom:674.066667pt;}
.y15_c00102{bottom:693.266667pt;}
.y14_c00102{bottom:712.800000pt;}
.y13_c00102{bottom:732.333333pt;}
.y12_c00102{bottom:751.520000pt;}
.y11_c00102{bottom:751.853333pt;}
.yf_c00102{bottom:770.720000pt;}
.y10_c00102{bottom:771.000000pt;}
.ye_c00102{bottom:788.000000pt;}
.yd_c00102{bottom:789.600000pt;}
.yc_c00102{bottom:808.800000pt;}
.yb_c00102{bottom:827.666667pt;}
.ya_c00102{bottom:828.000000pt;}
.y9_c00102{bottom:828.333333pt;}
.y8_c00102{bottom:846.600000pt;}
.y7_c00102{bottom:867.333333pt;}
.y6_c00102{bottom:885.266667pt;}
.y5_c00102{bottom:903.466667pt;}
.y4_c00102{bottom:906.053333pt;}
.y3_c00102{bottom:955.000000pt;}
.y2_c00102{bottom:958.600000pt;}
.y1_c00102{bottom:959.186667pt;}
.h1_c00102{height:20.937500pt;}
.h5_c00102{height:62.781250pt;}
.h4_c00102{height:68.013021pt;}
.h2_c00102{height:68.046875pt;}
.h3_c00102{height:69.875000pt;}
.h0_c00102{height:1044.000000pt;}
.w0_c00102{width:650.646400pt;}
.w1_c00102{width:650.666667pt;}
.x0_c00102{left:0.000000pt;}
.x14_c00102{left:42.569067pt;}
.xf_c00102{left:43.835733pt;}
.xe_c00102{left:44.769067pt;}
.x6_c00102{left:45.769067pt;}
.x15_c00102{left:62.369067pt;}
.x13_c00102{left:63.635733pt;}
.xc_c00102{left:64.969067pt;}
.x7_c00102{left:67.155733pt;}
.x16_c00102{left:70.369067pt;}
.x8_c00102{left:71.369067pt;}
.x10_c00102{left:72.969067pt;}
.x4_c00102{left:74.569067pt;}
.x9_c00102{left:94.035733pt;}
.xd_c00102{left:103.635733pt;}
.xb_c00102{left:155.502400pt;}
.x11_c00102{left:193.902400pt;}
.x1_c00102{left:238.702400pt;}
.x12_c00102{left:324.169067pt;}
.x2_c00102{left:410.835733pt;}
.x5_c00102{left:457.235733pt;}
.x3_c00102{left:554.569067pt;}
.xa_c00102{left:578.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e3e956b96a06a34fefeea890.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00103;src:url('chunks/assets/font_9345174d97064cd20e6902cf.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00103;src:url('chunks/assets/font_9edeb29b68286de6dc77c2e6.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00103;src:url('chunks/assets/font_cf813cbc652e7652e65a8b83.woff2')format("woff");}.ff4_c00103{font-family:ff4_c00103;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1a_c00103{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2_c00103{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mf_c00103{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.me_c00103{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mc_c00103{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m18_c00103{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5_c00103{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00103{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00103{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00103{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c00103{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00103{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c00103{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00103{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c00103{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00103{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c00103{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c00103{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c00103{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00103{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00103{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m16_c00103{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c00103{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00103{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00103{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c00103{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00103{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c00103{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m9_c00103{transform:matrix(1.787500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.787500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.787500,0.000000,0.000000,0.250000,0,0);}
.m3_c00103{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00103{color:transparent;}
.fs0_c00103{font-size:60.000000px;}
.fs2_c00103{font-size:72.000000px;}
.fs1_c00103{font-size:78.000000px;}
.fs3_c00103{font-size:84.000000px;}
.y0_c00103{bottom:0.000000px;}
.y46_c00103{bottom:69.960000px;}
.y45_c00103{bottom:71.085000px;}
.y44_c00103{bottom:72.510000px;}
.y43_c00103{bottom:80.085000px;}
.y42_c00103{bottom:85.875000px;}
.y41_c00103{bottom:92.685000px;}
.y40_c00103{bottom:98.835000px;}
.y3f_c00103{bottom:118.635000px;}
.y3e_c00103{bottom:140.625000px;}
.y3d_c00103{bottom:158.910000px;}
.y3c_c00103{bottom:162.510000px;}
.y3b_c00103{bottom:190.635000px;}
.y3a_c00103{bottom:207.135000px;}
.y39_c00103{bottom:224.835000px;}
.y38_c00103{bottom:228.810000px;}
.y37_c00103{bottom:250.710000px;}
.y36_c00103{bottom:269.085000px;}
.y35_c00103{bottom:270.525000px;}
.y34_c00103{bottom:275.910000px;}
.y33_c00103{bottom:291.435000px;}
.y32_c00103{bottom:292.125000px;}
.y31_c00103{bottom:296.835000px;}
.y30_c00103{bottom:321.660000px;}
.y2f_c00103{bottom:338.250000px;}
.y2e_c00103{bottom:359.835000px;}
.y2d_c00103{bottom:382.125000px;}
.y2c_c00103{bottom:404.460000px;}
.y2b_c00103{bottom:425.310000px;}
.y2a_c00103{bottom:427.125000px;}
.y29_c00103{bottom:428.910000px;}
.y28_c00103{bottom:536.910000px;}
.y27_c00103{bottom:559.260000px;}
.y24_c00103{bottom:580.500000px;}
.y25_c00103{bottom:581.250000px;}
.y26_c00103{bottom:581.910000px;}
.y23_c00103{bottom:603.510000px;}
.y22_c00103{bottom:625.500000px;}
.y21_c00103{bottom:646.710000px;}
.y20_c00103{bottom:669.435000px;}
.y1f_c00103{bottom:689.910000px;}
.y1e_c00103{bottom:712.260000px;}
.y1d_c00103{bottom:733.875000px;}
.y1c_c00103{bottom:755.835000px;}
.y19_c00103{bottom:772.710000px;}
.y1a_c00103{bottom:774.885000px;}
.y1b_c00103{bottom:777.810000px;}
.y16_c00103{bottom:796.875000px;}
.y17_c00103{bottom:802.275000px;}
.y18_c00103{bottom:804.375000px;}
.y15_c00103{bottom:820.935000px;}
.y14_c00103{bottom:834.960000px;}
.ye_c00103{bottom:860.250000px;}
.yf_c00103{bottom:865.275000px;}
.y10_c00103{bottom:866.685000px;}
.y11_c00103{bottom:867.750000px;}
.y12_c00103{bottom:869.550000px;}
.y13_c00103{bottom:869.925000px;}
.yd_c00103{bottom:886.800000px;}
.yc_c00103{bottom:985.875000px;}
.y8_c00103{bottom:1008.525000px;}
.y9_c00103{bottom:1015.425000px;}
.ya_c00103{bottom:1019.025000px;}
.y3_c00103{bottom:1021.875000px;}
.yb_c00103{bottom:1022.250000px;}
.y6_c00103{bottom:1022.550000px;}
.y5_c00103{bottom:1022.925000px;}
.y2_c00103{bottom:1034.085000px;}
.y4_c00103{bottom:1043.835000px;}
.y7_c00103{bottom:1044.525000px;}
.y47_c00103{bottom:1083.810000px;}
.y1_c00103{bottom:1094.250000px;}
.h1_c00103{height:58.886719px;}
.h6_c00103{height:60.468750px;}
.h3_c00103{height:70.664062px;}
.h2_c00103{height:76.552734px;}
.h5_c00103{height:78.609375px;}
.h4_c00103{height:82.400391px;}
.h0_c00103{height:1174.500000px;}
.w0_c00103{width:731.977200px;}
.w1_c00103{width:732.000000px;}
.x0_c00103{left:0.000000px;}
.x18_c00103{left:54.715200px;}
.x19_c00103{left:56.515200px;}
.x17_c00103{left:57.565200px;}
.x2_c00103{left:58.990200px;}
.x11_c00103{left:60.115200px;}
.x1e_c00103{left:62.590200px;}
.x27_c00103{left:64.090200px;}
.x28_c00103{left:65.515200px;}
.x2a_c00103{left:66.565200px;}
.x2e_c00103{left:75.925200px;}
.x16_c00103{left:88.165200px;}
.xb_c00103{left:89.965200px;}
.x1f_c00103{left:92.890200px;}
.x25_c00103{left:94.315200px;}
.x14_c00103{left:106.540200px;}
.x2b_c00103{left:139.690200px;}
.x1c_c00103{left:210.565200px;}
.x15_c00103{left:275.740200px;}
.x1_c00103{left:278.590200px;}
.x1a_c00103{left:286.540200px;}
.x8_c00103{left:321.115200px;}
.x1b_c00103{left:360.715200px;}
.x1d_c00103{left:373.690200px;}
.xc_c00103{left:386.275200px;}
.x2c_c00103{left:395.590200px;}
.x9_c00103{left:403.900200px;}
.x22_c00103{left:425.890200px;}
.x12_c00103{left:434.140200px;}
.x23_c00103{left:436.690200px;}
.x20_c00103{left:455.365200px;}
.xd_c00103{left:468.715200px;}
.x21_c00103{left:489.190200px;}
.xe_c00103{left:491.740200px;}
.xa_c00103{left:501.115200px;}
.x2d_c00103{left:513.715200px;}
.x3_c00103{left:519.115200px;}
.x4_c00103{left:542.140200px;}
.x7_c00103{left:544.990200px;}
.x6_c00103{left:570.190200px;}
.xf_c00103{left:572.740200px;}
.x13_c00103{left:608.740200px;}
.x29_c00103{left:609.790200px;}
.x5_c00103{left:623.515200px;}
.x10_c00103{left:625.315200px;}
.x24_c00103{left:651.940200px;}
.x26_c00103{left:668.140200px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls0_c00103{letter-spacing:0.000000pt;}
.ws0_c00103{word-spacing:0.000000pt;}
.fs0_c00103{font-size:53.333333pt;}
.fs2_c00103{font-size:64.000000pt;}
.fs1_c00103{font-size:69.333333pt;}
.fs3_c00103{font-size:74.666667pt;}
.y0_c00103{bottom:0.000000pt;}
.y46_c00103{bottom:62.186667pt;}
.y45_c00103{bottom:63.186667pt;}
.y44_c00103{bottom:64.453333pt;}
.y43_c00103{bottom:71.186667pt;}
.y42_c00103{bottom:76.333333pt;}
.y41_c00103{bottom:82.386667pt;}
.y40_c00103{bottom:87.853333pt;}
.y3f_c00103{bottom:105.453333pt;}
.y3e_c00103{bottom:125.000000pt;}
.y3d_c00103{bottom:141.253333pt;}
.y3c_c00103{bottom:144.453333pt;}
.y3b_c00103{bottom:169.453333pt;}
.y3a_c00103{bottom:184.120000pt;}
.y39_c00103{bottom:199.853333pt;}
.y38_c00103{bottom:203.386667pt;}
.y37_c00103{bottom:222.853333pt;}
.y36_c00103{bottom:239.186667pt;}
.y35_c00103{bottom:240.466667pt;}
.y34_c00103{bottom:245.253333pt;}
.y33_c00103{bottom:259.053333pt;}
.y32_c00103{bottom:259.666667pt;}
.y31_c00103{bottom:263.853333pt;}
.y30_c00103{bottom:285.920000pt;}
.y2f_c00103{bottom:300.666667pt;}
.y2e_c00103{bottom:319.853333pt;}
.y2d_c00103{bottom:339.666667pt;}
.y2c_c00103{bottom:359.520000pt;}
.y2b_c00103{bottom:378.053333pt;}
.y2a_c00103{bottom:379.666667pt;}
.y29_c00103{bottom:381.253333pt;}
.y28_c00103{bottom:477.253333pt;}
.y27_c00103{bottom:497.120000pt;}
.y24_c00103{bottom:516.000000pt;}
.y25_c00103{bottom:516.666667pt;}
.y26_c00103{bottom:517.253333pt;}
.y23_c00103{bottom:536.453333pt;}
.y22_c00103{bottom:556.000000pt;}
.y21_c00103{bottom:574.853333pt;}
.y20_c00103{bottom:595.053333pt;}
.y1f_c00103{bottom:613.253333pt;}
.y1e_c00103{bottom:633.120000pt;}
.y1d_c00103{bottom:652.333333pt;}
.y1c_c00103{bottom:671.853333pt;}
.y19_c00103{bottom:686.853333pt;}
.y1a_c00103{bottom:688.786667pt;}
.y1b_c00103{bottom:691.386667pt;}
.y16_c00103{bottom:708.333333pt;}
.y17_c00103{bottom:713.133333pt;}
.y18_c00103{bottom:715.000000pt;}
.y15_c00103{bottom:729.720000pt;}
.y14_c00103{bottom:742.186667pt;}
.ye_c00103{bottom:764.666667pt;}
.yf_c00103{bottom:769.133333pt;}
.y10_c00103{bottom:770.386667pt;}
.y11_c00103{bottom:771.333333pt;}
.y12_c00103{bottom:772.933333pt;}
.y13_c00103{bottom:773.266667pt;}
.yd_c00103{bottom:788.266667pt;}
.yc_c00103{bottom:876.333333pt;}
.y8_c00103{bottom:896.466667pt;}
.y9_c00103{bottom:902.600000pt;}
.ya_c00103{bottom:905.800000pt;}
.y3_c00103{bottom:908.333333pt;}
.yb_c00103{bottom:908.666667pt;}
.y6_c00103{bottom:908.933333pt;}
.y5_c00103{bottom:909.266667pt;}
.y2_c00103{bottom:919.186667pt;}
.y4_c00103{bottom:927.853333pt;}
.y7_c00103{bottom:928.466667pt;}
.y47_c00103{bottom:963.386667pt;}
.y1_c00103{bottom:972.666667pt;}
.h1_c00103{height:52.343750pt;}
.h6_c00103{height:53.750000pt;}
.h3_c00103{height:62.812500pt;}
.h2_c00103{height:68.046875pt;}
.h5_c00103{height:69.875000pt;}
.h4_c00103{height:73.244792pt;}
.h0_c00103{height:1044.000000pt;}
.w0_c00103{width:650.646400pt;}
.w1_c00103{width:650.666667pt;}
.x0_c00103{left:0.000000pt;}
.x18_c00103{left:48.635733pt;}
.x19_c00103{left:50.235733pt;}
.x17_c00103{left:51.169067pt;}
.x2_c00103{left:52.435733pt;}
.x11_c00103{left:53.435733pt;}
.x1e_c00103{left:55.635733pt;}
.x27_c00103{left:56.969067pt;}
.x28_c00103{left:58.235733pt;}
.x2a_c00103{left:59.169067pt;}
.x2e_c00103{left:67.489067pt;}
.x16_c00103{left:78.369067pt;}
.xb_c00103{left:79.969067pt;}
.x1f_c00103{left:82.569067pt;}
.x25_c00103{left:83.835733pt;}
.x14_c00103{left:94.702400pt;}
.x2b_c00103{left:124.169067pt;}
.x1c_c00103{left:187.169067pt;}
.x15_c00103{left:245.102400pt;}
.x1_c00103{left:247.635733pt;}
.x1a_c00103{left:254.702400pt;}
.x8_c00103{left:285.435733pt;}
.x1b_c00103{left:320.635733pt;}
.x1d_c00103{left:332.169067pt;}
.xc_c00103{left:343.355733pt;}
.x2c_c00103{left:351.635733pt;}
.x9_c00103{left:359.022400pt;}
.x22_c00103{left:378.569067pt;}
.x12_c00103{left:385.902400pt;}
.x23_c00103{left:388.169067pt;}
.x20_c00103{left:404.769067pt;}
.xd_c00103{left:416.635733pt;}
.x21_c00103{left:434.835733pt;}
.xe_c00103{left:437.102400pt;}
.xa_c00103{left:445.435733pt;}
.x2d_c00103{left:456.635733pt;}
.x3_c00103{left:461.435733pt;}
.x4_c00103{left:481.902400pt;}
.x7_c00103{left:484.435733pt;}
.x6_c00103{left:506.835733pt;}
.xf_c00103{left:509.102400pt;}
.x13_c00103{left:541.102400pt;}
.x29_c00103{left:542.035733pt;}
.x5_c00103{left:554.235733pt;}
.x10_c00103{left:555.835733pt;}
.x24_c00103{left:579.502400pt;}
.x26_c00103{left:593.902400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_37eda4f326e938884aafcd37.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00104;src:url('chunks/assets/font_070e54496955f7b907020688.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00104;src:url('chunks/assets/font_9c1cdbb7ab4d6cd83d724db1.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00104{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3_c00104{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.md_c00104{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0_c00104{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7_c00104{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c00104{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00104{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4_c00104{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c00104{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c00104{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00104{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00104{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c00104{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10_c00104{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11_c00104{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00104{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c00104{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00104{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c00104{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00104{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00104{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c00104{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00104{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19_c00104{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00104{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00104{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00104{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00104{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16_c00104{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c00104{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2_c00104{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.ls0_c00104{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00104{color:transparent;}
.fs1_c00104{font-size:60.000000px;}
.fs2_c00104{font-size:72.000000px;}
.fs3_c00104{font-size:78.000000px;}
.fs0_c00104{font-size:84.000000px;}
.y0_c00104{bottom:0.000000px;}
.y3f_c00104{bottom:71.760000px;}
.y3d_c00104{bottom:91.635000px;}
.y3e_c00104{bottom:95.535000px;}
.y3b_c00104{bottom:111.375000px;}
.y3c_c00104{bottom:114.285000px;}
.y3a_c00104{bottom:134.085000px;}
.y36_c00104{bottom:153.135000px;}
.y37_c00104{bottom:153.510000px;}
.y38_c00104{bottom:157.125000px;}
.y39_c00104{bottom:159.585000px;}
.y34_c00104{bottom:258.285000px;}
.y35_c00104{bottom:259.035000px;}
.y33_c00104{bottom:281.310000px;}
.y32_c00104{bottom:301.875000px;}
.y30_c00104{bottom:323.460000px;}
.y31_c00104{bottom:326.685000px;}
.y2f_c00104{bottom:345.060000px;}
.y2e_c00104{bottom:366.285000px;}
.y2c_c00104{bottom:386.460000px;}
.y2d_c00104{bottom:388.650000px;}
.y2b_c00104{bottom:496.935000px;}
.y2a_c00104{bottom:518.910000px;}
.y29_c00104{bottom:540.885000px;}
.y28_c00104{bottom:562.500000px;}
.y27_c00104{bottom:584.085000px;}
.y26_c00104{bottom:606.060000px;}
.y25_c00104{bottom:627.285000px;}
.y24_c00104{bottom:649.260000px;}
.y23_c00104{bottom:671.535000px;}
.y22_c00104{bottom:691.335000px;}
.y21_c00104{bottom:691.710000px;}
.y20_c00104{bottom:692.835000px;}
.y1f_c00104{bottom:715.125000px;}
.y1e_c00104{bottom:736.335000px;}
.y1d_c00104{bottom:755.385000px;}
.y1c_c00104{bottom:758.325000px;}
.y1b_c00104{bottom:778.500000px;}
.y1a_c00104{bottom:780.300000px;}
.y19_c00104{bottom:780.675000px;}
.y18_c00104{bottom:799.710000px;}
.y17_c00104{bottom:800.835000px;}
.y16_c00104{bottom:802.275000px;}
.y15_c00104{bottom:802.560000px;}
.y14_c00104{bottom:823.875000px;}
.y13_c00104{bottom:842.550000px;}
.y12_c00104{bottom:845.460000px;}
.y11_c00104{bottom:864.900000px;}
.y10_c00104{bottom:867.435000px;}
.yf_c00104{bottom:884.310000px;}
.ye_c00104{bottom:886.125000px;}
.yd_c00104{bottom:888.300000px;}
.yc_c00104{bottom:909.900000px;}
.yb_c00104{bottom:931.125000px;}
.ya_c00104{bottom:952.710000px;}
.y9_c00104{bottom:972.525000px;}
.y8_c00104{bottom:974.685000px;}
.y7_c00104{bottom:975.060000px;}
.y6_c00104{bottom:995.925000px;}
.y5_c00104{bottom:1016.835000px;}
.y4_c00104{bottom:1070.835000px;}
.y2_c00104{bottom:1076.250000px;}
.y1_c00104{bottom:1077.675000px;}
.y3_c00104{bottom:1085.400000px;}
.h2_c00104{height:60.468750px;}
.h4_c00104{height:70.664062px;}
.h5_c00104{height:76.514648px;}
.h3_c00104{height:82.441406px;}
.h1_c00104{height:84.656250px;}
.h0_c00104{height:1174.500000px;}
.w0_c00104{width:731.977200px;}
.w1_c00104{width:732.000000px;}
.x0_c00104{left:0.000000px;}
.x6_c00104{left:56.140200px;}
.x9_c00104{left:57.565200px;}
.xd_c00104{left:58.690200px;}
.x1a_c00104{left:60.115200px;}
.x1c_c00104{left:61.165200px;}
.x1d_c00104{left:62.590200px;}
.x1e_c00104{left:64.090200px;}
.x22_c00104{left:67.990200px;}
.x24_c00104{left:69.790200px;}
.x2f_c00104{left:73.765200px;}
.x2d_c00104{left:74.890200px;}
.x2b_c00104{left:76.300200px;}
.x1f_c00104{left:84.550200px;}
.x5_c00104{left:88.540200px;}
.xa_c00104{left:91.090200px;}
.x1b_c00104{left:93.175200px;}
.x20_c00104{left:99.340200px;}
.x25_c00104{left:102.940200px;}
.x27_c00104{left:103.990200px;}
.xf_c00104{left:109.765200px;}
.x28_c00104{left:130.990200px;}
.x2c_c00104{left:133.540200px;}
.x26_c00104{left:157.990200px;}
.x7_c00104{left:183.190200px;}
.x8_c00104{left:210.565200px;}
.x11_c00104{left:219.565200px;}
.x12_c00104{left:227.515200px;}
.x1_c00104{left:275.740200px;}
.x21_c00104{left:295.915200px;}
.x2_c00104{left:318.190200px;}
.x15_c00104{left:344.890200px;}
.x16_c00104{left:381.565200px;}
.xe_c00104{left:407.515200px;}
.xb_c00104{left:437.365200px;}
.x29_c00104{left:447.115200px;}
.x3_c00104{left:463.990200px;}
.x13_c00104{left:477.340200px;}
.x23_c00104{left:495.715200px;}
.x14_c00104{left:528.790200px;}
.x18_c00104{left:549.715200px;}
.x2e_c00104{left:561.940200px;}
.x19_c00104{left:581.365200px;}
.x2a_c00104{left:620.590200px;}
.x10_c00104{left:622.765200px;}
.x4_c00104{left:628.540200px;}
.xc_c00104{left:634.690200px;}
.x17_c00104{left:665.590200px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls0_c00104{letter-spacing:0.000000pt;}
.ws0_c00104{word-spacing:0.000000pt;}
.fs1_c00104{font-size:53.333333pt;}
.fs2_c00104{font-size:64.000000pt;}
.fs3_c00104{font-size:69.333333pt;}
.fs0_c00104{font-size:74.666667pt;}
.y0_c00104{bottom:0.000000pt;}
.y3f_c00104{bottom:63.786667pt;}
.y3d_c00104{bottom:81.453333pt;}
.y3e_c00104{bottom:84.920000pt;}
.y3b_c00104{bottom:99.000000pt;}
.y3c_c00104{bottom:101.586667pt;}
.y3a_c00104{bottom:119.186667pt;}
.y36_c00104{bottom:136.120000pt;}
.y37_c00104{bottom:136.453333pt;}
.y38_c00104{bottom:139.666667pt;}
.y39_c00104{bottom:141.853333pt;}
.y34_c00104{bottom:229.586667pt;}
.y35_c00104{bottom:230.253333pt;}
.y33_c00104{bottom:250.053333pt;}
.y32_c00104{bottom:268.333333pt;}
.y30_c00104{bottom:287.520000pt;}
.y31_c00104{bottom:290.386667pt;}
.y2f_c00104{bottom:306.720000pt;}
.y2e_c00104{bottom:325.586667pt;}
.y2c_c00104{bottom:343.520000pt;}
.y2d_c00104{bottom:345.466667pt;}
.y2b_c00104{bottom:441.720000pt;}
.y2a_c00104{bottom:461.253333pt;}
.y29_c00104{bottom:480.786667pt;}
.y28_c00104{bottom:500.000000pt;}
.y27_c00104{bottom:519.186667pt;}
.y26_c00104{bottom:538.720000pt;}
.y25_c00104{bottom:557.586667pt;}
.y24_c00104{bottom:577.120000pt;}
.y23_c00104{bottom:596.920000pt;}
.y22_c00104{bottom:614.520000pt;}
.y21_c00104{bottom:614.853333pt;}
.y20_c00104{bottom:615.853333pt;}
.y1f_c00104{bottom:635.666667pt;}
.y1e_c00104{bottom:654.520000pt;}
.y1d_c00104{bottom:671.453333pt;}
.y1c_c00104{bottom:674.066667pt;}
.y1b_c00104{bottom:692.000000pt;}
.y1a_c00104{bottom:693.600000pt;}
.y19_c00104{bottom:693.933333pt;}
.y18_c00104{bottom:710.853333pt;}
.y17_c00104{bottom:711.853333pt;}
.y16_c00104{bottom:713.133333pt;}
.y15_c00104{bottom:713.386667pt;}
.y14_c00104{bottom:732.333333pt;}
.y13_c00104{bottom:748.933333pt;}
.y12_c00104{bottom:751.520000pt;}
.y11_c00104{bottom:768.800000pt;}
.y10_c00104{bottom:771.053333pt;}
.yf_c00104{bottom:786.053333pt;}
.ye_c00104{bottom:787.666667pt;}
.yd_c00104{bottom:789.600000pt;}
.yc_c00104{bottom:808.800000pt;}
.yb_c00104{bottom:827.666667pt;}
.ya_c00104{bottom:846.853333pt;}
.y9_c00104{bottom:864.466667pt;}
.y8_c00104{bottom:866.386667pt;}
.y7_c00104{bottom:866.720000pt;}
.y6_c00104{bottom:885.266667pt;}
.y5_c00104{bottom:903.853333pt;}
.y4_c00104{bottom:951.853333pt;}
.y2_c00104{bottom:956.666667pt;}
.y1_c00104{bottom:957.933333pt;}
.y3_c00104{bottom:964.800000pt;}
.h2_c00104{height:53.750000pt;}
.h4_c00104{height:62.812500pt;}
.h5_c00104{height:68.013021pt;}
.h3_c00104{height:73.281250pt;}
.h1_c00104{height:75.250000pt;}
.h0_c00104{height:1044.000000pt;}
.w0_c00104{width:650.646400pt;}
.w1_c00104{width:650.666667pt;}
.x0_c00104{left:0.000000pt;}
.x6_c00104{left:49.902400pt;}
.x9_c00104{left:51.169067pt;}
.xd_c00104{left:52.169067pt;}
.x1a_c00104{left:53.435733pt;}
.x1c_c00104{left:54.369067pt;}
.x1d_c00104{left:55.635733pt;}
.x1e_c00104{left:56.969067pt;}
.x22_c00104{left:60.435733pt;}
.x24_c00104{left:62.035733pt;}
.x2f_c00104{left:65.569067pt;}
.x2d_c00104{left:66.569067pt;}
.x2b_c00104{left:67.822400pt;}
.x1f_c00104{left:75.155733pt;}
.x5_c00104{left:78.702400pt;}
.xa_c00104{left:80.969067pt;}
.x1b_c00104{left:82.822400pt;}
.x20_c00104{left:88.302400pt;}
.x25_c00104{left:91.502400pt;}
.x27_c00104{left:92.435733pt;}
.xf_c00104{left:97.569067pt;}
.x28_c00104{left:116.435733pt;}
.x2c_c00104{left:118.702400pt;}
.x26_c00104{left:140.435733pt;}
.x7_c00104{left:162.835733pt;}
.x8_c00104{left:187.169067pt;}
.x11_c00104{left:195.169067pt;}
.x12_c00104{left:202.235733pt;}
.x1_c00104{left:245.102400pt;}
.x21_c00104{left:263.035733pt;}
.x2_c00104{left:282.835733pt;}
.x15_c00104{left:306.569067pt;}
.x16_c00104{left:339.169067pt;}
.xe_c00104{left:362.235733pt;}
.xb_c00104{left:388.769067pt;}
.x29_c00104{left:397.435733pt;}
.x3_c00104{left:412.435733pt;}
.x13_c00104{left:424.302400pt;}
.x23_c00104{left:440.635733pt;}
.x14_c00104{left:470.035733pt;}
.x18_c00104{left:488.635733pt;}
.x2e_c00104{left:499.502400pt;}
.x19_c00104{left:516.769067pt;}
.x2a_c00104{left:551.635733pt;}
.x10_c00104{left:553.569067pt;}
.x4_c00104{left:558.702400pt;}
.xc_c00104{left:564.169067pt;}
.x17_c00104{left:591.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38fa46d00a4d07b91c8eae3e.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00105;src:url('chunks/assets/font_1f34646b5854aaea88869144.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00105;src:url('chunks/assets/font_7a00a183ba5ad5d64faceddf.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00105;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff4_c00105{font-family:ff4_c00105;line-height:1.575000;font-style:normal;font-weight:normal;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_b5e43922b283f97c4ed1fa92.woff2')format("woff");}.ff5_c00105{font-family:ff5_c00105;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00105;src:url('chunks/assets/font_09e70b93a958df58d44b40ff.woff2')format("woff");}.ff6_c00105{font-family:ff6_c00105;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00105{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00105{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m0_c00105{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00105{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m18_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);}
.m5_c00105{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00105{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00105{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m16_c00105{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c00105{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m20_c00105{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14_c00105{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00105{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me_c00105{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00105{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10_c00105{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c00105{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c00105{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c00105{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00105{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c00105{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8_c00105{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m13_c00105{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00105{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00105{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00105{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00105{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00105{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00105{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00105{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00105{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00105{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1_c00105{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00105{color:transparent;}
.fs3_c00105{font-size:18.000000px;}
.fs1_c00105{font-size:60.000000px;}
.fs0_c00105{font-size:72.000000px;}
.fs4_c00105{font-size:78.000000px;}
.fs2_c00105{font-size:84.000000px;}
.y0_c00105{bottom:0.000000px;}
.y49_c00105{bottom:77.625000px;}
.y48_c00105{bottom:91.260000px;}
.y47_c00105{bottom:93.060000px;}
.y46_c00105{bottom:103.125000px;}
.y45_c00105{bottom:120.060000px;}
.y44_c00105{bottom:142.035000px;}
.y43_c00105{bottom:164.310000px;}
.y42_c00105{bottom:185.250000px;}
.y41_c00105{bottom:194.250000px;}
.y40_c00105{bottom:200.685000px;}
.y3f_c00105{bottom:209.310000px;}
.y3e_c00105{bottom:222.660000px;}
.y3d_c00105{bottom:230.250000px;}
.y3b_c00105{bottom:244.560000px;}
.y3c_c00105{bottom:244.635000px;}
.y3a_c00105{bottom:246.060000px;}
.y39_c00105{bottom:246.810000px;}
.y38_c00105{bottom:251.085000px;}
.y37_c00105{bottom:253.935000px;}
.y36_c00105{bottom:256.875000px;}
.y35_c00105{bottom:316.275000px;}
.y34_c00105{bottom:316.560000px;}
.y33_c00105{bottom:318.375000px;}
.y32_c00105{bottom:365.910000px;}
.y31_c00105{bottom:378.900000px;}
.y30_c00105{bottom:379.275000px;}
.y2f_c00105{bottom:379.935000px;}
.y2e_c00105{bottom:385.410000px;}
.y2d_c00105{bottom:401.535000px;}
.y2c_c00105{bottom:406.635000px;}
.y2b_c00105{bottom:423.885000px;}
.y2a_c00105{bottom:427.875000px;}
.y29_c00105{bottom:431.760000px;}
.y28_c00105{bottom:446.250000px;}
.y27_c00105{bottom:450.135000px;}
.y26_c00105{bottom:468.885000px;}
.y25_c00105{bottom:469.260000px;}
.y24_c00105{bottom:472.500000px;}
.y23_c00105{bottom:491.160000px;}
.y22_c00105{bottom:491.535000px;}
.y21_c00105{bottom:494.460000px;}
.y20_c00105{bottom:516.060000px;}
.y1f_c00105{bottom:538.335000px;}
.y1e_c00105{bottom:560.310000px;}
.y1d_c00105{bottom:582.285000px;}
.y1c_c00105{bottom:604.185000px;}
.y1b_c00105{bottom:625.500000px;}
.y1a_c00105{bottom:647.835000px;}
.y19_c00105{bottom:669.810000px;}
.y18_c00105{bottom:691.335000px;}
.y17_c00105{bottom:712.935000px;}
.y14_c00105{bottom:733.500000px;}
.y15_c00105{bottom:734.535000px;}
.y16_c00105{bottom:735.660000px;}
.y13_c00105{bottom:753.285000px;}
.y12_c00105{bottom:778.500000px;}
.y11_c00105{bottom:800.085000px;}
.y10_c00105{bottom:822.060000px;}
.yf_c00105{bottom:843.675000px;}
.yd_c00105{bottom:864.900000px;}
.ye_c00105{bottom:869.250000px;}
.yc_c00105{bottom:885.810000px;}
.yb_c00105{bottom:908.460000px;}
.ya_c00105{bottom:929.685000px;}
.y9_c00105{bottom:951.675000px;}
.y8_c00105{bottom:973.650000px;}
.y7_c00105{bottom:989.400000px;}
.y5_c00105{bottom:1015.050000px;}
.y6_c00105{bottom:1020.060000px;}
.y4_c00105{bottom:1036.275000px;}
.y1_c00105{bottom:1084.875000px;}
.y3_c00105{bottom:1094.175000px;}
.y2_c00105{bottom:1099.650000px;}
.h5_c00105{height:18.773438px;}
.h6_c00105{height:19.206000px;}
.h2_c00105{height:58.886719px;}
.h1_c00105{height:70.664062px;}
.h7_c00105{height:76.514648px;}
.h8_c00105{height:82.400391px;}
.h3_c00105{height:82.441406px;}
.h4_c00105{height:84.656250px;}
.h0_c00105{height:1174.500000px;}
.w0_c00105{width:731.977200px;}
.w1_c00105{width:732.000000px;}
.x0_c00105{left:0.000000px;}
.x29_c00105{left:61.165200px;}
.x1d_c00105{left:62.590200px;}
.x11_c00105{left:64.090200px;}
.x10_c00105{left:65.515200px;}
.xf_c00105{left:66.565200px;}
.xb_c00105{left:67.690200px;}
.xa_c00105{left:69.115200px;}
.x8_c00105{left:70.165200px;}
.x7_c00105{left:71.965200px;}
.x4_c00105{left:74.140200px;}
.x28_c00105{left:83.515200px;}
.x17_c00105{left:93.175200px;}
.x12_c00105{left:94.990200px;}
.x1_c00105{left:96.115200px;}
.xc_c00105{left:97.915200px;}
.x6_c00105{left:103.690200px;}
.x2_c00105{left:121.990200px;}
.x21_c00105{left:235.090200px;}
.xd_c00105{left:289.090200px;}
.x22_c00105{left:290.890200px;}
.x3_c00105{left:295.915200px;}
.x1e_c00105{left:301.990200px;}
.xe_c00105{left:305.965200px;}
.x1f_c00105{left:373.690200px;}
.x20_c00105{left:380.515200px;}
.x2a_c00105{left:445.990200px;}
.x23_c00105{left:463.315200px;}
.x27_c00105{left:508.315200px;}
.x1a_c00105{left:515.515200px;}
.x1b_c00105{left:542.515200px;}
.x24_c00105{left:562.990200px;}
.x1c_c00105{left:573.790200px;}
.x2b_c00105{left:610.915200px;}
.x13_c00105{left:618.490200px;}
.x15_c00105{left:627.790200px;}
.x16_c00105{left:632.140200px;}
.x26_c00105{left:645.790200px;}
.x14_c00105{left:650.890200px;}
.x18_c00105{left:658.765200px;}
.x19_c00105{left:661.690200px;}
.x5_c00105{left:663.115200px;}
.x25_c00105{left:665.965200px;}
.x9_c00105{left:675.340200px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls0_c00105{letter-spacing:0.000000pt;}
.ws0_c00105{word-spacing:0.000000pt;}
.fs3_c00105{font-size:16.000000pt;}
.fs1_c00105{font-size:53.333333pt;}
.fs0_c00105{font-size:64.000000pt;}
.fs4_c00105{font-size:69.333333pt;}
.fs2_c00105{font-size:74.666667pt;}
.y0_c00105{bottom:0.000000pt;}
.y49_c00105{bottom:69.000000pt;}
.y48_c00105{bottom:81.120000pt;}
.y47_c00105{bottom:82.720000pt;}
.y46_c00105{bottom:91.666667pt;}
.y45_c00105{bottom:106.720000pt;}
.y44_c00105{bottom:126.253333pt;}
.y43_c00105{bottom:146.053333pt;}
.y42_c00105{bottom:164.666667pt;}
.y41_c00105{bottom:172.666667pt;}
.y40_c00105{bottom:178.386667pt;}
.y3f_c00105{bottom:186.053333pt;}
.y3e_c00105{bottom:197.920000pt;}
.y3d_c00105{bottom:204.666667pt;}
.y3b_c00105{bottom:217.386667pt;}
.y3c_c00105{bottom:217.453333pt;}
.y3a_c00105{bottom:218.720000pt;}
.y39_c00105{bottom:219.386667pt;}
.y38_c00105{bottom:223.186667pt;}
.y37_c00105{bottom:225.720000pt;}
.y36_c00105{bottom:228.333333pt;}
.y35_c00105{bottom:281.133333pt;}
.y34_c00105{bottom:281.386667pt;}
.y33_c00105{bottom:283.000000pt;}
.y32_c00105{bottom:325.253333pt;}
.y31_c00105{bottom:336.800000pt;}
.y30_c00105{bottom:337.133333pt;}
.y2f_c00105{bottom:337.720000pt;}
.y2e_c00105{bottom:342.586667pt;}
.y2d_c00105{bottom:356.920000pt;}
.y2c_c00105{bottom:361.453333pt;}
.y2b_c00105{bottom:376.786667pt;}
.y2a_c00105{bottom:380.333333pt;}
.y29_c00105{bottom:383.786667pt;}
.y28_c00105{bottom:396.666667pt;}
.y27_c00105{bottom:400.120000pt;}
.y26_c00105{bottom:416.786667pt;}
.y25_c00105{bottom:417.120000pt;}
.y24_c00105{bottom:420.000000pt;}
.y23_c00105{bottom:436.586667pt;}
.y22_c00105{bottom:436.920000pt;}
.y21_c00105{bottom:439.520000pt;}
.y20_c00105{bottom:458.720000pt;}
.y1f_c00105{bottom:478.520000pt;}
.y1e_c00105{bottom:498.053333pt;}
.y1d_c00105{bottom:517.586667pt;}
.y1c_c00105{bottom:537.053333pt;}
.y1b_c00105{bottom:556.000000pt;}
.y1a_c00105{bottom:575.853333pt;}
.y19_c00105{bottom:595.386667pt;}
.y18_c00105{bottom:614.520000pt;}
.y17_c00105{bottom:633.720000pt;}
.y14_c00105{bottom:652.000000pt;}
.y15_c00105{bottom:652.920000pt;}
.y16_c00105{bottom:653.920000pt;}
.y13_c00105{bottom:669.586667pt;}
.y12_c00105{bottom:692.000000pt;}
.y11_c00105{bottom:711.186667pt;}
.y10_c00105{bottom:730.720000pt;}
.yf_c00105{bottom:749.933333pt;}
.yd_c00105{bottom:768.800000pt;}
.ye_c00105{bottom:772.666667pt;}
.yc_c00105{bottom:787.386667pt;}
.yb_c00105{bottom:807.520000pt;}
.ya_c00105{bottom:826.386667pt;}
.y9_c00105{bottom:845.933333pt;}
.y8_c00105{bottom:865.466667pt;}
.y7_c00105{bottom:879.466667pt;}
.y5_c00105{bottom:902.266667pt;}
.y6_c00105{bottom:906.720000pt;}
.y4_c00105{bottom:921.133333pt;}
.y1_c00105{bottom:964.333333pt;}
.y3_c00105{bottom:972.600000pt;}
.y2_c00105{bottom:977.466667pt;}
.h5_c00105{height:16.687500pt;}
.h6_c00105{height:17.072000pt;}
.h2_c00105{height:52.343750pt;}
.h1_c00105{height:62.812500pt;}
.h7_c00105{height:68.013021pt;}
.h8_c00105{height:73.244792pt;}
.h3_c00105{height:73.281250pt;}
.h4_c00105{height:75.250000pt;}
.h0_c00105{height:1044.000000pt;}
.w0_c00105{width:650.646400pt;}
.w1_c00105{width:650.666667pt;}
.x0_c00105{left:0.000000pt;}
.x29_c00105{left:54.369067pt;}
.x1d_c00105{left:55.635733pt;}
.x11_c00105{left:56.969067pt;}
.x10_c00105{left:58.235733pt;}
.xf_c00105{left:59.169067pt;}
.xb_c00105{left:60.169067pt;}
.xa_c00105{left:61.435733pt;}
.x8_c00105{left:62.369067pt;}
.x7_c00105{left:63.969067pt;}
.x4_c00105{left:65.902400pt;}
.x28_c00105{left:74.235733pt;}
.x17_c00105{left:82.822400pt;}
.x12_c00105{left:84.435733pt;}
.x1_c00105{left:85.435733pt;}
.xc_c00105{left:87.035733pt;}
.x6_c00105{left:92.169067pt;}
.x2_c00105{left:108.435733pt;}
.x21_c00105{left:208.969067pt;}
.xd_c00105{left:256.969067pt;}
.x22_c00105{left:258.569067pt;}
.x3_c00105{left:263.035733pt;}
.x1e_c00105{left:268.435733pt;}
.xe_c00105{left:271.969067pt;}
.x1f_c00105{left:332.169067pt;}
.x20_c00105{left:338.235733pt;}
.x2a_c00105{left:396.435733pt;}
.x23_c00105{left:411.835733pt;}
.x27_c00105{left:451.835733pt;}
.x1a_c00105{left:458.235733pt;}
.x1b_c00105{left:482.235733pt;}
.x24_c00105{left:500.435733pt;}
.x1c_c00105{left:510.035733pt;}
.x2b_c00105{left:543.035733pt;}
.x13_c00105{left:549.769067pt;}
.x15_c00105{left:558.035733pt;}
.x16_c00105{left:561.902400pt;}
.x26_c00105{left:574.035733pt;}
.x14_c00105{left:578.569067pt;}
.x18_c00105{left:585.569067pt;}
.x19_c00105{left:588.169067pt;}
.x5_c00105{left:589.435733pt;}
.x25_c00105{left:591.969067pt;}
.x9_c00105{left:600.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3cbcff45aaff32789593a22.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00106;src:url('chunks/assets/font_246a980c90efc2affe1f538d.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00106;src:url('chunks/assets/font_d8faa1c9da643397b7b7fba2.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00106{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb_c00106{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m0_c00106{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00106{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00106{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00106{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00106{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00106{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00106{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00106{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00106{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00106{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00106{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c00106{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00106{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00106{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c00106{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00106{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.ma_c00106{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c00106{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m15_c00106{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00106{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00106{color:transparent;}
.fs0_c00106{font-size:60.000000px;}
.fs3_c00106{font-size:66.000000px;}
.fs1_c00106{font-size:72.000000px;}
.fs2_c00106{font-size:84.000000px;}
.y0_c00106{bottom:0.000000px;}
.y32_c00106{bottom:74.685000px;}
.y2f_c00106{bottom:95.160000px;}
.y30_c00106{bottom:95.250000px;}
.y31_c00106{bottom:96.285000px;}
.y2e_c00106{bottom:116.760000px;}
.y2d_c00106{bottom:137.685000px;}
.y2c_c00106{bottom:157.875000px;}
.y2a_c00106{bottom:177.285000px;}
.y29_c00106{bottom:178.710000px;}
.y2b_c00106{bottom:180.510000px;}
.y28_c00106{bottom:199.260000px;}
.y27_c00106{bottom:219.810000px;}
.y26_c00106{bottom:241.410000px;}
.y25_c00106{bottom:262.650000px;}
.y24_c00106{bottom:284.250000px;}
.y23_c00106{bottom:305.460000px;}
.y22_c00106{bottom:327.060000px;}
.y21_c00106{bottom:348.000000px;}
.y20_c00106{bottom:369.210000px;}
.y1f_c00106{bottom:390.435000px;}
.y1e_c00106{bottom:412.035000px;}
.y1d_c00106{bottom:433.635000px;}
.y1c_c00106{bottom:455.535000px;}
.y1b_c00106{bottom:477.135000px;}
.y1a_c00106{bottom:499.125000px;}
.y19_c00106{bottom:521.085000px;}
.y18_c00106{bottom:542.310000px;}
.y17_c00106{bottom:564.285000px;}
.y16_c00106{bottom:585.585000px;}
.y15_c00106{bottom:607.875000px;}
.y14_c00106{bottom:629.085000px;}
.y13_c00106{bottom:650.310000px;}
.y11_c00106{bottom:671.625000px;}
.y12_c00106{bottom:671.910000px;}
.y10_c00106{bottom:672.960000px;}
.yf_c00106{bottom:779.925000px;}
.ye_c00106{bottom:801.900000px;}
.yd_c00106{bottom:823.875000px;}
.yc_c00106{bottom:845.460000px;}
.yb_c00106{bottom:867.000000px;}
.ya_c00106{bottom:888.300000px;}
.y9_c00106{bottom:909.525000px;}
.y8_c00106{bottom:931.185000px;}
.y7_c00106{bottom:952.425000px;}
.y6_c00106{bottom:974.685000px;}
.y5_c00106{bottom:995.550000px;}
.y4_c00106{bottom:1017.900000px;}
.y3_c00106{bottom:1070.775000px;}
.y1_c00106{bottom:1077.675000px;}
.y2_c00106{bottom:1084.875000px;}
.h1_c00106{height:60.468750px;}
.h4_c00106{height:64.775391px;}
.h2_c00106{height:70.664062px;}
.h3_c00106{height:82.400391px;}
.h0_c00106{height:1174.500000px;}
.w0_c00106{width:731.977200px;}
.w1_c00106{width:732.000000px;}
.x0_c00106{left:0.000000px;}
.x4_c00106{left:50.740200px;}
.x6_c00106{left:52.165200px;}
.x9_c00106{left:53.290200px;}
.xb_c00106{left:54.340200px;}
.xe_c00106{left:55.390200px;}
.xf_c00106{left:57.565200px;}
.x10_c00106{left:58.690200px;}
.x11_c00106{left:61.165200px;}
.x5_c00106{left:83.890200px;}
.xa_c00106{left:85.300200px;}
.xd_c00106{left:86.365200px;}
.xc_c00106{left:87.490200px;}
.x12_c00106{left:90.715200px;}
.x17_c00106{left:144.340200px;}
.x13_c00106{left:151.165200px;}
.x18_c00106{left:174.565200px;}
.x14_c00106{left:230.365200px;}
.x1_c00106{left:256.315200px;}
.x7_c00106{left:302.365200px;}
.x15_c00106{left:388.090200px;}
.x16_c00106{left:406.765200px;}
.x2_c00106{left:460.765200px;}
.x8_c00106{left:465.790200px;}
.x3_c00106{left:623.515200px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls0_c00106{letter-spacing:0.000000pt;}
.ws0_c00106{word-spacing:0.000000pt;}
.fs0_c00106{font-size:53.333333pt;}
.fs3_c00106{font-size:58.666667pt;}
.fs1_c00106{font-size:64.000000pt;}
.fs2_c00106{font-size:74.666667pt;}
.y0_c00106{bottom:0.000000pt;}
.y32_c00106{bottom:66.386667pt;}
.y2f_c00106{bottom:84.586667pt;}
.y30_c00106{bottom:84.666667pt;}
.y31_c00106{bottom:85.586667pt;}
.y2e_c00106{bottom:103.786667pt;}
.y2d_c00106{bottom:122.386667pt;}
.y2c_c00106{bottom:140.333333pt;}
.y2a_c00106{bottom:157.586667pt;}
.y29_c00106{bottom:158.853333pt;}
.y2b_c00106{bottom:160.453333pt;}
.y28_c00106{bottom:177.120000pt;}
.y27_c00106{bottom:195.386667pt;}
.y26_c00106{bottom:214.586667pt;}
.y25_c00106{bottom:233.466667pt;}
.y24_c00106{bottom:252.666667pt;}
.y23_c00106{bottom:271.520000pt;}
.y22_c00106{bottom:290.720000pt;}
.y21_c00106{bottom:309.333333pt;}
.y20_c00106{bottom:328.186667pt;}
.y1f_c00106{bottom:347.053333pt;}
.y1e_c00106{bottom:366.253333pt;}
.y1d_c00106{bottom:385.453333pt;}
.y1c_c00106{bottom:404.920000pt;}
.y1b_c00106{bottom:424.120000pt;}
.y1a_c00106{bottom:443.666667pt;}
.y19_c00106{bottom:463.186667pt;}
.y18_c00106{bottom:482.053333pt;}
.y17_c00106{bottom:501.586667pt;}
.y16_c00106{bottom:520.520000pt;}
.y15_c00106{bottom:540.333333pt;}
.y14_c00106{bottom:559.186667pt;}
.y13_c00106{bottom:578.053333pt;}
.y11_c00106{bottom:597.000000pt;}
.y12_c00106{bottom:597.253333pt;}
.y10_c00106{bottom:598.186667pt;}
.yf_c00106{bottom:693.266667pt;}
.ye_c00106{bottom:712.800000pt;}
.yd_c00106{bottom:732.333333pt;}
.yc_c00106{bottom:751.520000pt;}
.yb_c00106{bottom:770.666667pt;}
.ya_c00106{bottom:789.600000pt;}
.y9_c00106{bottom:808.466667pt;}
.y8_c00106{bottom:827.720000pt;}
.y7_c00106{bottom:846.600000pt;}
.y6_c00106{bottom:866.386667pt;}
.y5_c00106{bottom:884.933333pt;}
.y4_c00106{bottom:904.800000pt;}
.y3_c00106{bottom:951.800000pt;}
.y1_c00106{bottom:957.933333pt;}
.y2_c00106{bottom:964.333333pt;}
.h1_c00106{height:53.750000pt;}
.h4_c00106{height:57.578125pt;}
.h2_c00106{height:62.812500pt;}
.h3_c00106{height:73.244792pt;}
.h0_c00106{height:1044.000000pt;}
.w0_c00106{width:650.646400pt;}
.w1_c00106{width:650.666667pt;}
.x0_c00106{left:0.000000pt;}
.x4_c00106{left:45.102400pt;}
.x6_c00106{left:46.369067pt;}
.x9_c00106{left:47.369067pt;}
.xb_c00106{left:48.302400pt;}
.xe_c00106{left:49.235733pt;}
.xf_c00106{left:51.169067pt;}
.x10_c00106{left:52.169067pt;}
.x11_c00106{left:54.369067pt;}
.x5_c00106{left:74.569067pt;}
.xa_c00106{left:75.822400pt;}
.xd_c00106{left:76.769067pt;}
.xc_c00106{left:77.769067pt;}
.x12_c00106{left:80.635733pt;}
.x17_c00106{left:128.302400pt;}
.x13_c00106{left:134.369067pt;}
.x18_c00106{left:155.169067pt;}
.x14_c00106{left:204.769067pt;}
.x1_c00106{left:227.835733pt;}
.x7_c00106{left:268.769067pt;}
.x15_c00106{left:344.969067pt;}
.x16_c00106{left:361.569067pt;}
.x2_c00106{left:409.569067pt;}
.x8_c00106{left:414.035733pt;}
.x3_c00106{left:554.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bdcab6edf959db98e1309b59.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00107;src:url('chunks/assets/font_95a09e2770b9a593cba8a022.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c00107{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m13_c00107{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m8_c00107{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00107{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c00107{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c00107{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m18_c00107{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00107{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12_c00107{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m15_c00107{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00107{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00107{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00107{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me_c00107{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00107{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m19_c00107{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00107{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c00107{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00107{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00107{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00107{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00107{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00107{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00107{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00107{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m17_c00107{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00107{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m9_c00107{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1_c00107{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00107{color:transparent;}
.fs1_c00107{font-size:60.000000px;}
.fs2_c00107{font-size:66.000000px;}
.fs0_c00107{font-size:72.000000px;}
.fs3_c00107{font-size:78.000000px;}
.y0_c00107{bottom:0.000000px;}
.y45_c00107{bottom:76.500000px;}
.y44_c00107{bottom:82.560000px;}
.y43_c00107{bottom:91.260000px;}
.y42_c00107{bottom:98.760000px;}
.y41_c00107{bottom:99.210000px;}
.y40_c00107{bottom:100.935000px;}
.y3f_c00107{bottom:108.885000px;}
.y3e_c00107{bottom:126.135000px;}
.y3d_c00107{bottom:135.885000px;}
.y3c_c00107{bottom:142.710000px;}
.y3b_c00107{bottom:149.160000px;}
.y3a_c00107{bottom:170.835000px;}
.y39_c00107{bottom:188.085000px;}
.y38_c00107{bottom:192.375000px;}
.y37_c00107{bottom:214.710000px;}
.y36_c00107{bottom:237.060000px;}
.y35_c00107{bottom:258.660000px;}
.y34_c00107{bottom:280.275000px;}
.y33_c00107{bottom:302.625000px;}
.y32_c00107{bottom:324.900000px;}
.y31_c00107{bottom:346.185000px;}
.y30_c00107{bottom:364.125000px;}
.y2f_c00107{bottom:368.835000px;}
.y2e_c00107{bottom:382.500000px;}
.y2d_c00107{bottom:387.525000px;}
.y2c_c00107{bottom:391.125000px;}
.y2b_c00107{bottom:411.285000px;}
.y2a_c00107{bottom:414.885000px;}
.y29_c00107{bottom:415.560000px;}
.y28_c00107{bottom:434.685000px;}
.y27_c00107{bottom:458.835000px;}
.y26_c00107{bottom:480.000000px;}
.y25_c00107{bottom:501.285000px;}
.y24_c00107{bottom:523.260000px;}
.y22_c00107{bottom:545.160000px;}
.y21_c00107{bottom:545.250000px;}
.y23_c00107{bottom:545.625000px;}
.y20_c00107{bottom:567.510000px;}
.y1f_c00107{bottom:589.500000px;}
.y1e_c00107{bottom:611.835000px;}
.y1d_c00107{bottom:633.810000px;}
.y1c_c00107{bottom:656.085000px;}
.y1b_c00107{bottom:677.685000px;}
.y1a_c00107{bottom:699.660000px;}
.y19_c00107{bottom:720.885000px;}
.y18_c00107{bottom:743.160000px;}
.y17_c00107{bottom:764.460000px;}
.y16_c00107{bottom:786.435000px;}
.y15_c00107{bottom:808.425000px;}
.y14_c00107{bottom:830.400000px;}
.y13_c00107{bottom:851.625000px;}
.y12_c00107{bottom:872.835000px;}
.y11_c00107{bottom:895.125000px;}
.y10_c00107{bottom:916.710000px;}
.yf_c00107{bottom:932.925000px;}
.yc_c00107{bottom:950.250000px;}
.yd_c00107{bottom:953.085000px;}
.ye_c00107{bottom:960.675000px;}
.y9_c00107{bottom:969.675000px;}
.ya_c00107{bottom:970.050000px;}
.yb_c00107{bottom:980.835000px;}
.y8_c00107{bottom:990.900000px;}
.y7_c00107{bottom:994.185000px;}
.y6_c00107{bottom:1004.250000px;}
.y5_c00107{bottom:1023.675000px;}
.y4_c00107{bottom:1044.525000px;}
.y1_c00107{bottom:1091.685000px;}
.y3_c00107{bottom:1100.685000px;}
.y2_c00107{bottom:1106.835000px;}
.h2_c00107{height:58.886719px;}
.h3_c00107{height:64.775391px;}
.h6_c00107{height:66.515625px;}
.h1_c00107{height:70.664062px;}
.h4_c00107{height:76.552734px;}
.h5_c00107{height:78.609375px;}
.h0_c00107{height:1174.500000px;}
.w0_c00107{width:731.977200px;}
.w1_c00107{width:732.000000px;}
.x0_c00107{left:0.000000px;}
.x11_c00107{left:70.540200px;}
.x10_c00107{left:71.590200px;}
.xf_c00107{left:72.715200px;}
.xe_c00107{left:73.765200px;}
.xd_c00107{left:74.890200px;}
.x5_c00107{left:75.925200px;}
.x4_c00107{left:77.365200px;}
.x7_c00107{left:86.365200px;}
.x8_c00107{left:89.965200px;}
.x1_c00107{left:94.690200px;}
.x9_c00107{left:97.915200px;}
.x14_c00107{left:104.365200px;}
.x15_c00107{left:105.490200px;}
.xc_c00107{left:106.540200px;}
.x12_c00107{left:116.965200px;}
.x13_c00107{left:119.890200px;}
.x2_c00107{left:121.690200px;}
.x1d_c00107{left:123.490200px;}
.xa_c00107{left:148.990200px;}
.x21_c00107{left:206.290200px;}
.xb_c00107{left:207.715200px;}
.x16_c00107{left:231.490200px;}
.x17_c00107{left:236.140200px;}
.x6_c00107{left:277.540200px;}
.x3_c00107{left:296.290200px;}
.x1e_c00107{left:439.915200px;}
.x1f_c00107{left:560.140200px;}
.x22_c00107{left:563.740200px;}
.x20_c00107{left:586.765200px;}
.x18_c00107{left:598.690200px;}
.x19_c00107{left:616.990200px;}
.x1c_c00107{left:661.315200px;}
.x1b_c00107{left:676.765200px;}
.x1a_c00107{left:679.990200px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls0_c00107{letter-spacing:0.000000pt;}
.ws0_c00107{word-spacing:0.000000pt;}
.fs1_c00107{font-size:53.333333pt;}
.fs2_c00107{font-size:58.666667pt;}
.fs0_c00107{font-size:64.000000pt;}
.fs3_c00107{font-size:69.333333pt;}
.y0_c00107{bottom:0.000000pt;}
.y45_c00107{bottom:68.000000pt;}
.y44_c00107{bottom:73.386667pt;}
.y43_c00107{bottom:81.120000pt;}
.y42_c00107{bottom:87.786667pt;}
.y41_c00107{bottom:88.186667pt;}
.y40_c00107{bottom:89.720000pt;}
.y3f_c00107{bottom:96.786667pt;}
.y3e_c00107{bottom:112.120000pt;}
.y3d_c00107{bottom:120.786667pt;}
.y3c_c00107{bottom:126.853333pt;}
.y3b_c00107{bottom:132.586667pt;}
.y3a_c00107{bottom:151.853333pt;}
.y39_c00107{bottom:167.186667pt;}
.y38_c00107{bottom:171.000000pt;}
.y37_c00107{bottom:190.853333pt;}
.y36_c00107{bottom:210.720000pt;}
.y35_c00107{bottom:229.920000pt;}
.y34_c00107{bottom:249.133333pt;}
.y33_c00107{bottom:269.000000pt;}
.y32_c00107{bottom:288.800000pt;}
.y31_c00107{bottom:307.720000pt;}
.y30_c00107{bottom:323.666667pt;}
.y2f_c00107{bottom:327.853333pt;}
.y2e_c00107{bottom:340.000000pt;}
.y2d_c00107{bottom:344.466667pt;}
.y2c_c00107{bottom:347.666667pt;}
.y2b_c00107{bottom:365.586667pt;}
.y2a_c00107{bottom:368.786667pt;}
.y29_c00107{bottom:369.386667pt;}
.y28_c00107{bottom:386.386667pt;}
.y27_c00107{bottom:407.853333pt;}
.y26_c00107{bottom:426.666667pt;}
.y25_c00107{bottom:445.586667pt;}
.y24_c00107{bottom:465.120000pt;}
.y22_c00107{bottom:484.586667pt;}
.y21_c00107{bottom:484.666667pt;}
.y23_c00107{bottom:485.000000pt;}
.y20_c00107{bottom:504.453333pt;}
.y1f_c00107{bottom:524.000000pt;}
.y1e_c00107{bottom:543.853333pt;}
.y1d_c00107{bottom:563.386667pt;}
.y1c_c00107{bottom:583.186667pt;}
.y1b_c00107{bottom:602.386667pt;}
.y1a_c00107{bottom:621.920000pt;}
.y19_c00107{bottom:640.786667pt;}
.y18_c00107{bottom:660.586667pt;}
.y17_c00107{bottom:679.520000pt;}
.y16_c00107{bottom:699.053333pt;}
.y15_c00107{bottom:718.600000pt;}
.y14_c00107{bottom:738.133333pt;}
.y13_c00107{bottom:757.000000pt;}
.y12_c00107{bottom:775.853333pt;}
.y11_c00107{bottom:795.666667pt;}
.y10_c00107{bottom:814.853333pt;}
.yf_c00107{bottom:829.266667pt;}
.yc_c00107{bottom:844.666667pt;}
.yd_c00107{bottom:847.186667pt;}
.ye_c00107{bottom:853.933333pt;}
.y9_c00107{bottom:861.933333pt;}
.ya_c00107{bottom:862.266667pt;}
.yb_c00107{bottom:871.853333pt;}
.y8_c00107{bottom:880.800000pt;}
.y7_c00107{bottom:883.720000pt;}
.y6_c00107{bottom:892.666667pt;}
.y5_c00107{bottom:909.933333pt;}
.y4_c00107{bottom:928.466667pt;}
.y1_c00107{bottom:970.386667pt;}
.y3_c00107{bottom:978.386667pt;}
.y2_c00107{bottom:983.853333pt;}
.h2_c00107{height:52.343750pt;}
.h3_c00107{height:57.578125pt;}
.h6_c00107{height:59.125000pt;}
.h1_c00107{height:62.812500pt;}
.h4_c00107{height:68.046875pt;}
.h5_c00107{height:69.875000pt;}
.h0_c00107{height:1044.000000pt;}
.w0_c00107{width:650.646400pt;}
.w1_c00107{width:650.666667pt;}
.x0_c00107{left:0.000000pt;}
.x11_c00107{left:62.702400pt;}
.x10_c00107{left:63.635733pt;}
.xf_c00107{left:64.635733pt;}
.xe_c00107{left:65.569067pt;}
.xd_c00107{left:66.569067pt;}
.x5_c00107{left:67.489067pt;}
.x4_c00107{left:68.769067pt;}
.x7_c00107{left:76.769067pt;}
.x8_c00107{left:79.969067pt;}
.x1_c00107{left:84.169067pt;}
.x9_c00107{left:87.035733pt;}
.x14_c00107{left:92.769067pt;}
.x15_c00107{left:93.769067pt;}
.xc_c00107{left:94.702400pt;}
.x12_c00107{left:103.969067pt;}
.x13_c00107{left:106.569067pt;}
.x2_c00107{left:108.169067pt;}
.x1d_c00107{left:109.769067pt;}
.xa_c00107{left:132.435733pt;}
.x21_c00107{left:183.369067pt;}
.xb_c00107{left:184.635733pt;}
.x16_c00107{left:205.769067pt;}
.x17_c00107{left:209.902400pt;}
.x6_c00107{left:246.702400pt;}
.x3_c00107{left:263.369067pt;}
.x1e_c00107{left:391.035733pt;}
.x1f_c00107{left:497.902400pt;}
.x22_c00107{left:501.102400pt;}
.x20_c00107{left:521.569067pt;}
.x18_c00107{left:532.169067pt;}
.x19_c00107{left:548.435733pt;}
.x1c_c00107{left:587.835733pt;}
.x1b_c00107{left:601.569067pt;}
.x1a_c00107{left:604.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dae85caf5705b0e9117024bb.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00108;src:url('chunks/assets/font_8284d302e6e42e223448c073.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00108;src:url('chunks/assets/font_e03a0d66ecec0970c8695bcd.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00108{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.me_c00108{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9_c00108{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8_c00108{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf_c00108{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00108{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c00108{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00108{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00108{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00108{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2_c00108{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00108{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00108{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00108{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00108{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00108{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00108{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,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:0.000000px;}
.fc0_c00108{color:transparent;}
.fs1_c00108{font-size:66.000000px;}
.fs0_c00108{font-size:72.000000px;}
.fs2_c00108{font-size:84.000000px;}
.y0_c00108{bottom:0.000000px;}
.y2d_c00108{bottom:46.260000px;}
.y2c_c00108{bottom:128.685000px;}
.y2a_c00108{bottom:149.910000px;}
.y2b_c00108{bottom:154.560000px;}
.y28_c00108{bottom:170.460000px;}
.y29_c00108{bottom:176.160000px;}
.y27_c00108{bottom:190.260000px;}
.y26_c00108{bottom:212.160000px;}
.y25_c00108{bottom:232.785000px;}
.y24_c00108{bottom:254.310000px;}
.y23_c00108{bottom:275.625000px;}
.y22_c00108{bottom:296.835000px;}
.y21_c00108{bottom:318.435000px;}
.y20_c00108{bottom:339.285000px;}
.y1f_c00108{bottom:360.525000px;}
.y1e_c00108{bottom:381.435000px;}
.y1d_c00108{bottom:403.035000px;}
.y1c_c00108{bottom:425.010000px;}
.y1b_c00108{bottom:446.535000px;}
.y1a_c00108{bottom:468.210000px;}
.y19_c00108{bottom:490.125000px;}
.y18_c00108{bottom:511.710000px;}
.y17_c00108{bottom:533.310000px;}
.y16_c00108{bottom:554.910000px;}
.y15_c00108{bottom:576.510000px;}
.y14_c00108{bottom:598.125000px;}
.y13_c00108{bottom:619.410000px;}
.y12_c00108{bottom:640.935000px;}
.y11_c00108{bottom:662.625000px;}
.y10_c00108{bottom:684.885000px;}
.yf_c00108{bottom:706.125000px;}
.ye_c00108{bottom:707.160000px;}
.yd_c00108{bottom:707.250000px;}
.yc_c00108{bottom:728.460000px;}
.yb_c00108{bottom:749.700000px;}
.ya_c00108{bottom:771.675000px;}
.y9_c00108{bottom:792.150000px;}
.y8_c00108{bottom:793.560000px;}
.y7_c00108{bottom:794.025000px;}
.y6_c00108{bottom:900.150000px;}
.y5_c00108{bottom:921.060000px;}
.y4_c00108{bottom:942.675000px;}
.y3_c00108{bottom:963.900000px;}
.y2_c00108{bottom:987.675000px;}
.y1_c00108{bottom:1007.085000px;}
.h3_c00108{height:66.515625px;}
.h2_c00108{height:70.628906px;}
.h1_c00108{height:70.664062px;}
.h4_c00108{height:82.441406px;}
.h0_c00108{height:1174.500000px;}
.w0_c00108{width:731.977200px;}
.w1_c00108{width:732.000000px;}
.x0_c00108{left:0.000000px;}
.x9_c00108{left:45.340200px;}
.x1_c00108{left:46.390200px;}
.x7_c00108{left:47.515200px;}
.xb_c00108{left:48.565200px;}
.xc_c00108{left:49.690200px;}
.x5_c00108{left:63.340200px;}
.x6_c00108{left:73.390200px;}
.x8_c00108{left:77.365200px;}
.x2_c00108{left:78.790200px;}
.xa_c00108{left:79.915200px;}
.xd_c00108{left:81.340200px;}
.x3_c00108{left:285.490200px;}
.x4_c00108{left:343.090200px;}
.x10_c00108{left:599.740200px;}
.xe_c00108{left:632.140200px;}
.xf_c00108{left:633.190200px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls0_c00108{letter-spacing:0.000000pt;}
.ws0_c00108{word-spacing:0.000000pt;}
.fs1_c00108{font-size:58.666667pt;}
.fs0_c00108{font-size:64.000000pt;}
.fs2_c00108{font-size:74.666667pt;}
.y0_c00108{bottom:0.000000pt;}
.y2d_c00108{bottom:41.120000pt;}
.y2c_c00108{bottom:114.386667pt;}
.y2a_c00108{bottom:133.253333pt;}
.y2b_c00108{bottom:137.386667pt;}
.y28_c00108{bottom:151.520000pt;}
.y29_c00108{bottom:156.586667pt;}
.y27_c00108{bottom:169.120000pt;}
.y26_c00108{bottom:188.586667pt;}
.y25_c00108{bottom:206.920000pt;}
.y24_c00108{bottom:226.053333pt;}
.y23_c00108{bottom:245.000000pt;}
.y22_c00108{bottom:263.853333pt;}
.y21_c00108{bottom:283.053333pt;}
.y20_c00108{bottom:301.586667pt;}
.y1f_c00108{bottom:320.466667pt;}
.y1e_c00108{bottom:339.053333pt;}
.y1d_c00108{bottom:358.253333pt;}
.y1c_c00108{bottom:377.786667pt;}
.y1b_c00108{bottom:396.920000pt;}
.y1a_c00108{bottom:416.186667pt;}
.y19_c00108{bottom:435.666667pt;}
.y18_c00108{bottom:454.853333pt;}
.y17_c00108{bottom:474.053333pt;}
.y16_c00108{bottom:493.253333pt;}
.y15_c00108{bottom:512.453333pt;}
.y14_c00108{bottom:531.666667pt;}
.y13_c00108{bottom:550.586667pt;}
.y12_c00108{bottom:569.720000pt;}
.y11_c00108{bottom:589.000000pt;}
.y10_c00108{bottom:608.786667pt;}
.yf_c00108{bottom:627.666667pt;}
.ye_c00108{bottom:628.586667pt;}
.yd_c00108{bottom:628.666667pt;}
.yc_c00108{bottom:647.520000pt;}
.yb_c00108{bottom:666.400000pt;}
.ya_c00108{bottom:685.933333pt;}
.y9_c00108{bottom:704.133333pt;}
.y8_c00108{bottom:705.386667pt;}
.y7_c00108{bottom:705.800000pt;}
.y6_c00108{bottom:800.133333pt;}
.y5_c00108{bottom:818.720000pt;}
.y4_c00108{bottom:837.933333pt;}
.y3_c00108{bottom:856.800000pt;}
.y2_c00108{bottom:877.933333pt;}
.y1_c00108{bottom:895.186667pt;}
.h3_c00108{height:59.125000pt;}
.h2_c00108{height:62.781250pt;}
.h1_c00108{height:62.812500pt;}
.h4_c00108{height:73.281250pt;}
.h0_c00108{height:1044.000000pt;}
.w0_c00108{width:650.646400pt;}
.w1_c00108{width:650.666667pt;}
.x0_c00108{left:0.000000pt;}
.x9_c00108{left:40.302400pt;}
.x1_c00108{left:41.235733pt;}
.x7_c00108{left:42.235733pt;}
.xb_c00108{left:43.169067pt;}
.xc_c00108{left:44.169067pt;}
.x5_c00108{left:56.302400pt;}
.x6_c00108{left:65.235733pt;}
.x8_c00108{left:68.769067pt;}
.x2_c00108{left:70.035733pt;}
.xa_c00108{left:71.035733pt;}
.xd_c00108{left:72.302400pt;}
.x3_c00108{left:253.769067pt;}
.x4_c00108{left:304.969067pt;}
.x10_c00108{left:533.102400pt;}
.xe_c00108{left:561.902400pt;}
.xf_c00108{left:562.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5a6740119d792872ec36821.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00109;src:url('chunks/assets/font_0cc12a4402353217cf726fbe.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00109;src:url('chunks/assets/font_1ffc3148ce890484e5958cb7.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00109{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m3_c00109{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00109{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c00109{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c00109{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00109{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00109{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00109{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c00109{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00109{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00109{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00109{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00109{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00109{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00109{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00109{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,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:0.000000px;}
.fc0_c00109{color:transparent;}
.fs0_c00109{font-size:60.000000px;}
.fs1_c00109{font-size:72.000000px;}
.fs2_c00109{font-size:78.000000px;}
.y0_c00109{bottom:0.000000px;}
.y34_c00109{bottom:82.560000px;}
.y33_c00109{bottom:104.535000px;}
.y32_c00109{bottom:125.460000px;}
.y31_c00109{bottom:152.085000px;}
.y30_c00109{bottom:168.960000px;}
.y2f_c00109{bottom:191.385000px;}
.y2e_c00109{bottom:213.660000px;}
.y2d_c00109{bottom:234.885000px;}
.y2c_c00109{bottom:257.625000px;}
.y2b_c00109{bottom:278.835000px;}
.y2a_c00109{bottom:300.435000px;}
.y29_c00109{bottom:322.710000px;}
.y28_c00109{bottom:343.560000px;}
.y27_c00109{bottom:369.525000px;}
.y26_c00109{bottom:388.275000px;}
.y25_c00109{bottom:410.535000px;}
.y24_c00109{bottom:432.210000px;}
.y23_c00109{bottom:454.500000px;}
.y22_c00109{bottom:476.460000px;}
.y21_c00109{bottom:498.435000px;}
.y20_c00109{bottom:520.710000px;}
.y1f_c00109{bottom:542.685000px;}
.y1e_c00109{bottom:564.660000px;}
.y1d_c00109{bottom:586.635000px;}
.y1c_c00109{bottom:608.625000px;}
.y1b_c00109{bottom:629.460000px;}
.y1a_c00109{bottom:652.500000px;}
.y19_c00109{bottom:674.460000px;}
.y18_c00109{bottom:695.685000px;}
.y17_c00109{bottom:717.285000px;}
.y16_c00109{bottom:736.410000px;}
.y15_c00109{bottom:760.875000px;}
.y14_c00109{bottom:782.460000px;}
.yf_c00109{bottom:800.460000px;}
.y10_c00109{bottom:803.025000px;}
.y11_c00109{bottom:804.750000px;}
.y12_c00109{bottom:805.875000px;}
.y13_c00109{bottom:808.425000px;}
.ye_c00109{bottom:826.050000px;}
.yd_c00109{bottom:847.650000px;}
.yc_c00109{bottom:869.250000px;}
.yb_c00109{bottom:890.460000px;}
.ya_c00109{bottom:912.750000px;}
.y9_c00109{bottom:934.050000px;}
.y8_c00109{bottom:956.310000px;}
.y7_c00109{bottom:970.800000px;}
.y6_c00109{bottom:998.460000px;}
.y4_c00109{bottom:1008.525000px;}
.y5_c00109{bottom:1021.500000px;}
.y2_c00109{bottom:1040.925000px;}
.y3_c00109{bottom:1048.125000px;}
.y35_c00109{bottom:1088.085000px;}
.y1_c00109{bottom:1099.275000px;}
.h1_c00109{height:58.886719px;}
.h2_c00109{height:70.664062px;}
.h4_c00109{height:72.562500px;}
.h3_c00109{height:76.514648px;}
.h0_c00109{height:1174.500000px;}
.w0_c00109{width:731.977200px;}
.w1_c00109{width:732.000000px;}
.x0_c00109{left:0.000000px;}
.x15_c00109{left:61.915200px;}
.x13_c00109{left:63.715200px;}
.x12_c00109{left:65.515200px;}
.x10_c00109{left:66.940200px;}
.xe_c00109{left:68.365200px;}
.x9_c00109{left:69.490200px;}
.x8_c00109{left:70.915200px;}
.x6_c00109{left:72.340200px;}
.x4_c00109{left:73.390200px;}
.x14_c00109{left:93.940200px;}
.x11_c00109{left:97.540200px;}
.xf_c00109{left:100.090200px;}
.x7_c00109{left:102.190200px;}
.x2_c00109{left:103.690200px;}
.x5_c00109{left:150.790200px;}
.xa_c00109{left:290.140200px;}
.x1_c00109{left:293.365200px;}
.xb_c00109{left:318.190200px;}
.xc_c00109{left:432.340200px;}
.xd_c00109{left:462.940200px;}
.x3_c00109{left:663.490200px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls0_c00109{letter-spacing:0.000000pt;}
.ws0_c00109{word-spacing:0.000000pt;}
.fs0_c00109{font-size:53.333333pt;}
.fs1_c00109{font-size:64.000000pt;}
.fs2_c00109{font-size:69.333333pt;}
.y0_c00109{bottom:0.000000pt;}
.y34_c00109{bottom:73.386667pt;}
.y33_c00109{bottom:92.920000pt;}
.y32_c00109{bottom:111.520000pt;}
.y31_c00109{bottom:135.186667pt;}
.y30_c00109{bottom:150.186667pt;}
.y2f_c00109{bottom:170.120000pt;}
.y2e_c00109{bottom:189.920000pt;}
.y2d_c00109{bottom:208.786667pt;}
.y2c_c00109{bottom:229.000000pt;}
.y2b_c00109{bottom:247.853333pt;}
.y2a_c00109{bottom:267.053333pt;}
.y29_c00109{bottom:286.853333pt;}
.y28_c00109{bottom:305.386667pt;}
.y27_c00109{bottom:328.466667pt;}
.y26_c00109{bottom:345.133333pt;}
.y25_c00109{bottom:364.920000pt;}
.y24_c00109{bottom:384.186667pt;}
.y23_c00109{bottom:404.000000pt;}
.y22_c00109{bottom:423.520000pt;}
.y21_c00109{bottom:443.053333pt;}
.y20_c00109{bottom:462.853333pt;}
.y1f_c00109{bottom:482.386667pt;}
.y1e_c00109{bottom:501.920000pt;}
.y1d_c00109{bottom:521.453333pt;}
.y1c_c00109{bottom:541.000000pt;}
.y1b_c00109{bottom:559.520000pt;}
.y1a_c00109{bottom:580.000000pt;}
.y19_c00109{bottom:599.520000pt;}
.y18_c00109{bottom:618.386667pt;}
.y17_c00109{bottom:637.586667pt;}
.y16_c00109{bottom:654.586667pt;}
.y15_c00109{bottom:676.333333pt;}
.y14_c00109{bottom:695.520000pt;}
.yf_c00109{bottom:711.520000pt;}
.y10_c00109{bottom:713.800000pt;}
.y11_c00109{bottom:715.333333pt;}
.y12_c00109{bottom:716.333333pt;}
.y13_c00109{bottom:718.600000pt;}
.ye_c00109{bottom:734.266667pt;}
.yd_c00109{bottom:753.466667pt;}
.yc_c00109{bottom:772.666667pt;}
.yb_c00109{bottom:791.520000pt;}
.ya_c00109{bottom:811.333333pt;}
.y9_c00109{bottom:830.266667pt;}
.y8_c00109{bottom:850.053333pt;}
.y7_c00109{bottom:862.933333pt;}
.y6_c00109{bottom:887.520000pt;}
.y4_c00109{bottom:896.466667pt;}
.y5_c00109{bottom:908.000000pt;}
.y2_c00109{bottom:925.266667pt;}
.y3_c00109{bottom:931.666667pt;}
.y35_c00109{bottom:967.186667pt;}
.y1_c00109{bottom:977.133333pt;}
.h1_c00109{height:52.343750pt;}
.h2_c00109{height:62.812500pt;}
.h4_c00109{height:64.500000pt;}
.h3_c00109{height:68.013021pt;}
.h0_c00109{height:1044.000000pt;}
.w0_c00109{width:650.646400pt;}
.w1_c00109{width:650.666667pt;}
.x0_c00109{left:0.000000pt;}
.x15_c00109{left:55.035733pt;}
.x13_c00109{left:56.635733pt;}
.x12_c00109{left:58.235733pt;}
.x10_c00109{left:59.502400pt;}
.xe_c00109{left:60.769067pt;}
.x9_c00109{left:61.769067pt;}
.x8_c00109{left:63.035733pt;}
.x6_c00109{left:64.302400pt;}
.x4_c00109{left:65.235733pt;}
.x14_c00109{left:83.502400pt;}
.x11_c00109{left:86.702400pt;}
.xf_c00109{left:88.969067pt;}
.x7_c00109{left:90.835733pt;}
.x2_c00109{left:92.169067pt;}
.x5_c00109{left:134.035733pt;}
.xa_c00109{left:257.902400pt;}
.x1_c00109{left:260.769067pt;}
.xb_c00109{left:282.835733pt;}
.xc_c00109{left:384.302400pt;}
.xd_c00109{left:411.502400pt;}
.x3_c00109{left:589.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f7c6d77fc972902e7d251b3a.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00110;src:url('chunks/assets/font_ef179fec2eb79ca09bbb7972.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00110;src:url('chunks/assets/font_ae5677a95cb94513aefc11d8.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00110{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m4_c00110{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf_c00110{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1_c00110{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00110{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00110{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c00110{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00110{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00110{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00110{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00110{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00110{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00110{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00110{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00110{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00110{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00110{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00110{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3_c00110{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00110{color:transparent;}
.fs1_c00110{font-size:30.000000px;}
.fs0_c00110{font-size:36.000000px;}
.fs2_c00110{font-size:60.000000px;}
.fs3_c00110{font-size:72.000000px;}
.fs4_c00110{font-size:84.000000px;}
.y0_c00110{bottom:0.000000px;}
.y2f_c00110{bottom:71.460000px;}
.y2e_c00110{bottom:93.060000px;}
.y2d_c00110{bottom:113.625000px;}
.y2c_c00110{bottom:134.460000px;}
.y2b_c00110{bottom:154.635000px;}
.y2a_c00110{bottom:175.500000px;}
.y2_c00110{bottom:177.285000px;}
.y29_c00110{bottom:195.285000px;}
.y28_c00110{bottom:216.510000px;}
.y27_c00110{bottom:237.435000px;}
.y26_c00110{bottom:259.035000px;}
.y25_c00110{bottom:279.900000px;}
.y1_c00110{bottom:288.525000px;}
.y24_c00110{bottom:301.500000px;}
.y23_c00110{bottom:323.085000px;}
.y22_c00110{bottom:344.025000px;}
.y21_c00110{bottom:365.250000px;}
.y1f_c00110{bottom:386.085000px;}
.y20_c00110{bottom:387.585000px;}
.y1e_c00110{bottom:495.135000px;}
.y1d_c00110{bottom:517.125000px;}
.y1c_c00110{bottom:538.710000px;}
.y1b_c00110{bottom:560.310000px;}
.y1a_c00110{bottom:582.000000px;}
.y19_c00110{bottom:603.510000px;}
.y18_c00110{bottom:625.185000px;}
.y17_c00110{bottom:646.785000px;}
.y16_c00110{bottom:668.310000px;}
.y15_c00110{bottom:689.910000px;}
.y14_c00110{bottom:712.260000px;}
.y13_c00110{bottom:733.875000px;}
.y12_c00110{bottom:755.085000px;}
.y11_c00110{bottom:777.435000px;}
.y10_c00110{bottom:798.675000px;}
.yf_c00110{bottom:820.935000px;}
.ye_c00110{bottom:842.250000px;}
.yd_c00110{bottom:863.460000px;}
.yc_c00110{bottom:885.375000px;}
.yb_c00110{bottom:906.675000px;}
.ya_c00110{bottom:927.210000px;}
.y9_c00110{bottom:950.925000px;}
.y8_c00110{bottom:970.050000px;}
.y7_c00110{bottom:991.650000px;}
.y6_c00110{bottom:1013.250000px;}
.y5_c00110{bottom:1067.625000px;}
.y4_c00110{bottom:1071.900000px;}
.y3_c00110{bottom:1073.025000px;}
.h2_c00110{height:31.289062px;}
.h1_c00110{height:37.546875px;}
.h3_c00110{height:58.886719px;}
.h4_c00110{height:70.664062px;}
.h5_c00110{height:82.400391px;}
.h0_c00110{height:1174.500000px;}
.w0_c00110{width:731.977200px;}
.w1_c00110{width:732.000000px;}
.x1_c00110{left:-18.049800px;}
.x2_c00110{left:-15.109800px;}
.x0_c00110{left:0.000000px;}
.x6_c00110{left:52.915200px;}
.x8_c00110{left:53.965200px;}
.x9_c00110{left:55.090200px;}
.xa_c00110{left:56.140200px;}
.xb_c00110{left:57.940200px;}
.xf_c00110{left:59.365200px;}
.x10_c00110{left:60.490200px;}
.x12_c00110{left:62.290200px;}
.x14_c00110{left:63.340200px;}
.x7_c00110{left:85.990200px;}
.xc_c00110{left:89.590200px;}
.x11_c00110{left:92.140200px;}
.x13_c00110{left:94.315200px;}
.xd_c00110{left:299.890200px;}
.x3_c00110{left:301.315200px;}
.xe_c00110{left:419.365200px;}
.x4_c00110{left:470.890200px;}
.x5_c00110{left:624.565200px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls0_c00110{letter-spacing:0.000000pt;}
.ws0_c00110{word-spacing:0.000000pt;}
.fs1_c00110{font-size:26.666667pt;}
.fs0_c00110{font-size:32.000000pt;}
.fs2_c00110{font-size:53.333333pt;}
.fs3_c00110{font-size:64.000000pt;}
.fs4_c00110{font-size:74.666667pt;}
.y0_c00110{bottom:0.000000pt;}
.y2f_c00110{bottom:63.520000pt;}
.y2e_c00110{bottom:82.720000pt;}
.y2d_c00110{bottom:101.000000pt;}
.y2c_c00110{bottom:119.520000pt;}
.y2b_c00110{bottom:137.453333pt;}
.y2a_c00110{bottom:156.000000pt;}
.y2_c00110{bottom:157.586667pt;}
.y29_c00110{bottom:173.586667pt;}
.y28_c00110{bottom:192.453333pt;}
.y27_c00110{bottom:211.053333pt;}
.y26_c00110{bottom:230.253333pt;}
.y25_c00110{bottom:248.800000pt;}
.y1_c00110{bottom:256.466667pt;}
.y24_c00110{bottom:268.000000pt;}
.y23_c00110{bottom:287.186667pt;}
.y22_c00110{bottom:305.800000pt;}
.y21_c00110{bottom:324.666667pt;}
.y1f_c00110{bottom:343.186667pt;}
.y20_c00110{bottom:344.520000pt;}
.y1e_c00110{bottom:440.120000pt;}
.y1d_c00110{bottom:459.666667pt;}
.y1c_c00110{bottom:478.853333pt;}
.y1b_c00110{bottom:498.053333pt;}
.y1a_c00110{bottom:517.333333pt;}
.y19_c00110{bottom:536.453333pt;}
.y18_c00110{bottom:555.720000pt;}
.y17_c00110{bottom:574.920000pt;}
.y16_c00110{bottom:594.053333pt;}
.y15_c00110{bottom:613.253333pt;}
.y14_c00110{bottom:633.120000pt;}
.y13_c00110{bottom:652.333333pt;}
.y12_c00110{bottom:671.186667pt;}
.y11_c00110{bottom:691.053333pt;}
.y10_c00110{bottom:709.933333pt;}
.yf_c00110{bottom:729.720000pt;}
.ye_c00110{bottom:748.666667pt;}
.yd_c00110{bottom:767.520000pt;}
.yc_c00110{bottom:787.000000pt;}
.yb_c00110{bottom:805.933333pt;}
.ya_c00110{bottom:824.186667pt;}
.y9_c00110{bottom:845.266667pt;}
.y8_c00110{bottom:862.266667pt;}
.y7_c00110{bottom:881.466667pt;}
.y6_c00110{bottom:900.666667pt;}
.y5_c00110{bottom:949.000000pt;}
.y4_c00110{bottom:952.800000pt;}
.y3_c00110{bottom:953.800000pt;}
.h2_c00110{height:27.812500pt;}
.h1_c00110{height:33.375000pt;}
.h3_c00110{height:52.343750pt;}
.h4_c00110{height:62.812500pt;}
.h5_c00110{height:73.244792pt;}
.h0_c00110{height:1044.000000pt;}
.w0_c00110{width:650.646400pt;}
.w1_c00110{width:650.666667pt;}
.x1_c00110{left:-16.044267pt;}
.x2_c00110{left:-13.430933pt;}
.x0_c00110{left:0.000000pt;}
.x6_c00110{left:47.035733pt;}
.x8_c00110{left:47.969067pt;}
.x9_c00110{left:48.969067pt;}
.xa_c00110{left:49.902400pt;}
.xb_c00110{left:51.502400pt;}
.xf_c00110{left:52.769067pt;}
.x10_c00110{left:53.769067pt;}
.x12_c00110{left:55.369067pt;}
.x14_c00110{left:56.302400pt;}
.x7_c00110{left:76.435733pt;}
.xc_c00110{left:79.635733pt;}
.x11_c00110{left:81.902400pt;}
.x13_c00110{left:83.835733pt;}
.xd_c00110{left:266.569067pt;}
.x3_c00110{left:267.835733pt;}
.xe_c00110{left:372.769067pt;}
.x4_c00110{left:418.569067pt;}
.x5_c00110{left:555.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_054b3b6dfa1885bbc57bde6f.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00111;src:url('chunks/assets/font_e55c27b9309e546d51c1efe6.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m24_c00111{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m23_c00111{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8_c00111{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m0_c00111{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m20_c00111{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.m19_c00111{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m18_c00111{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00111{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00111{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00111{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00111{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00111{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m16_c00111{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m17_c00111{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m22_c00111{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c00111{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00111{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00111{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c00111{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c00111{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c00111{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00111{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00111{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c00111{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00111{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2_c00111{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9_c00111{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00111{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00111{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00111{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c00111{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00111{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00111{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c00111{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m12_c00111{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00111{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00111{color:transparent;}
.fs1_c00111{font-size:54.000000px;}
.fs0_c00111{font-size:66.000000px;}
.fs2_c00111{font-size:72.000000px;}
.fs4_c00111{font-size:78.000000px;}
.fs3_c00111{font-size:84.000000px;}
.y0_c00111{bottom:0.000000px;}
.y50_c00111{bottom:84.435000px;}
.y4f_c00111{bottom:85.125000px;}
.y4e_c00111{bottom:85.500000px;}
.y4d_c00111{bottom:86.910000px;}
.y4c_c00111{bottom:91.260000px;}
.y4b_c00111{bottom:96.285000px;}
.y4a_c00111{bottom:98.760000px;}
.y49_c00111{bottom:104.625000px;}
.y48_c00111{bottom:109.260000px;}
.y47_c00111{bottom:117.885000px;}
.y46_c00111{bottom:118.635000px;}
.y45_c00111{bottom:121.500000px;}
.y44_c00111{bottom:125.085000px;}
.y43_c00111{bottom:130.500000px;}
.y42_c00111{bottom:140.910000px;}
.y41_c00111{bottom:143.385000px;}
.y40_c00111{bottom:149.535000px;}
.y3f_c00111{bottom:175.500000px;}
.y3e_c00111{bottom:189.885000px;}
.y3d_c00111{bottom:209.310000px;}
.y3c_c00111{bottom:214.035000px;}
.y3b_c00111{bottom:218.010000px;}
.y3a_c00111{bottom:219.810000px;}
.y39_c00111{bottom:233.835000px;}
.y38_c00111{bottom:241.710000px;}
.y37_c00111{bottom:250.710000px;}
.y36_c00111{bottom:256.500000px;}
.y35_c00111{bottom:278.085000px;}
.y34_c00111{bottom:304.710000px;}
.y33_c00111{bottom:322.035000px;}
.y32_c00111{bottom:343.650000px;}
.y31_c00111{bottom:361.185000px;}
.y30_c00111{bottom:361.560000px;}
.y2f_c00111{bottom:365.910000px;}
.y2e_c00111{bottom:387.525000px;}
.y2d_c00111{bottom:391.500000px;}
.y2c_c00111{bottom:409.500000px;}
.y2b_c00111{bottom:431.835000px;}
.y2a_c00111{bottom:454.875000px;}
.y29_c00111{bottom:475.710000px;}
.y28_c00111{bottom:496.260000px;}
.y27_c00111{bottom:497.310000px;}
.y26_c00111{bottom:497.685000px;}
.y25_c00111{bottom:519.285000px;}
.y24_c00111{bottom:541.260000px;}
.y23_c00111{bottom:562.500000px;}
.y22_c00111{bottom:562.875000px;}
.y21_c00111{bottom:583.710000px;}
.y20_c00111{bottom:584.085000px;}
.y1f_c00111{bottom:584.835000px;}
.y1e_c00111{bottom:606.435000px;}
.y1d_c00111{bottom:629.085000px;}
.y1c_c00111{bottom:650.685000px;}
.y1b_c00111{bottom:672.585000px;}
.y18_c00111{bottom:693.210000px;}
.y19_c00111{bottom:695.310000px;}
.y1a_c00111{bottom:695.685000px;}
.y17_c00111{bottom:715.875000px;}
.y16_c00111{bottom:737.835000px;}
.y15_c00111{bottom:756.135000px;}
.y14_c00111{bottom:781.050000px;}
.y13_c00111{bottom:803.025000px;}
.y10_c00111{bottom:822.810000px;}
.y11_c00111{bottom:827.085000px;}
.y12_c00111{bottom:827.835000px;}
.yf_c00111{bottom:845.835000px;}
.ye_c00111{bottom:867.810000px;}
.yd_c00111{bottom:889.425000px;}
.ya_c00111{bottom:904.500000px;}
.yb_c00111{bottom:908.460000px;}
.yc_c00111{bottom:913.125000px;}
.y9_c00111{bottom:931.875000px;}
.y8_c00111{bottom:953.835000px;}
.y7_c00111{bottom:976.500000px;}
.y6_c00111{bottom:992.685000px;}
.y5_c00111{bottom:1018.275000px;}
.y4_c00111{bottom:1039.800000px;}
.y1_c00111{bottom:1086.960000px;}
.y3_c00111{bottom:1097.835000px;}
.y2_c00111{bottom:1103.250000px;}
.h2_c00111{height:52.998047px;}
.h1_c00111{height:66.515625px;}
.h3_c00111{height:70.664062px;}
.h6_c00111{height:76.552734px;}
.h4_c00111{height:82.441406px;}
.h5_c00111{height:84.656250px;}
.h0_c00111{height:1174.500000px;}
.w0_c00111{width:731.977200px;}
.w1_c00111{width:732.000000px;}
.x0_c00111{left:0.000000px;}
.x28_c00111{left:56.140200px;}
.x24_c00111{left:57.190200px;}
.x22_c00111{left:58.315200px;}
.x1b_c00111{left:60.115200px;}
.x1a_c00111{left:61.165200px;}
.x14_c00111{left:62.290200px;}
.x11_c00111{left:63.340200px;}
.x10_c00111{left:65.140200px;}
.xe_c00111{left:66.190200px;}
.xd_c00111{left:67.315200px;}
.xa_c00111{left:68.740200px;}
.x6_c00111{left:70.165200px;}
.x5_c00111{left:71.590200px;}
.x23_c00111{left:82.090200px;}
.x29_c00111{left:87.115200px;}
.x20_c00111{left:89.290200px;}
.x1d_c00111{left:90.340200px;}
.x1_c00111{left:92.140200px;}
.xf_c00111{left:95.740200px;}
.x1c_c00111{left:97.165200px;}
.x7_c00111{left:101.140200px;}
.x4_c00111{left:102.190200px;}
.x2_c00111{left:118.090200px;}
.x25_c00111{left:134.965200px;}
.x34_c00111{left:204.490200px;}
.x26_c00111{left:217.765200px;}
.x35_c00111{left:272.140200px;}
.x8_c00111{left:277.915200px;}
.x36_c00111{left:281.890200px;}
.x9_c00111{left:286.165200px;}
.x37_c00111{left:293.740200px;}
.x38_c00111{left:298.090200px;}
.x3_c00111{left:303.490200px;}
.x30_c00111{left:304.915200px;}
.x2c_c00111{left:322.540200px;}
.x31_c00111{left:326.890200px;}
.x27_c00111{left:358.540200px;}
.x18_c00111{left:360.340200px;}
.x2d_c00111{left:377.965200px;}
.x19_c00111{left:391.690200px;}
.x2a_c00111{left:421.900200px;}
.xb_c00111{left:509.365200px;}
.x12_c00111{left:512.590200px;}
.x13_c00111{left:528.490200px;}
.xc_c00111{left:543.940200px;}
.x2e_c00111{left:583.165200px;}
.x2b_c00111{left:588.190200px;}
.x32_c00111{left:591.490200px;}
.x21_c00111{left:610.540200px;}
.x1e_c00111{left:615.940200px;}
.x15_c00111{left:620.590200px;}
.x33_c00111{left:623.140200px;}
.x17_c00111{left:634.690200px;}
.x2f_c00111{left:638.290200px;}
.x16_c00111{left:643.690200px;}
.x1f_c00111{left:660.190200px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls0_c00111{letter-spacing:0.000000pt;}
.ws0_c00111{word-spacing:0.000000pt;}
.fs1_c00111{font-size:48.000000pt;}
.fs0_c00111{font-size:58.666667pt;}
.fs2_c00111{font-size:64.000000pt;}
.fs4_c00111{font-size:69.333333pt;}
.fs3_c00111{font-size:74.666667pt;}
.y0_c00111{bottom:0.000000pt;}
.y50_c00111{bottom:75.053333pt;}
.y4f_c00111{bottom:75.666667pt;}
.y4e_c00111{bottom:76.000000pt;}
.y4d_c00111{bottom:77.253333pt;}
.y4c_c00111{bottom:81.120000pt;}
.y4b_c00111{bottom:85.586667pt;}
.y4a_c00111{bottom:87.786667pt;}
.y49_c00111{bottom:93.000000pt;}
.y48_c00111{bottom:97.120000pt;}
.y47_c00111{bottom:104.786667pt;}
.y46_c00111{bottom:105.453333pt;}
.y45_c00111{bottom:108.000000pt;}
.y44_c00111{bottom:111.186667pt;}
.y43_c00111{bottom:116.000000pt;}
.y42_c00111{bottom:125.253333pt;}
.y41_c00111{bottom:127.453333pt;}
.y40_c00111{bottom:132.920000pt;}
.y3f_c00111{bottom:156.000000pt;}
.y3e_c00111{bottom:168.786667pt;}
.y3d_c00111{bottom:186.053333pt;}
.y3c_c00111{bottom:190.253333pt;}
.y3b_c00111{bottom:193.786667pt;}
.y3a_c00111{bottom:195.386667pt;}
.y39_c00111{bottom:207.853333pt;}
.y38_c00111{bottom:214.853333pt;}
.y37_c00111{bottom:222.853333pt;}
.y36_c00111{bottom:228.000000pt;}
.y35_c00111{bottom:247.186667pt;}
.y34_c00111{bottom:270.853333pt;}
.y33_c00111{bottom:286.253333pt;}
.y32_c00111{bottom:305.466667pt;}
.y31_c00111{bottom:321.053333pt;}
.y30_c00111{bottom:321.386667pt;}
.y2f_c00111{bottom:325.253333pt;}
.y2e_c00111{bottom:344.466667pt;}
.y2d_c00111{bottom:348.000000pt;}
.y2c_c00111{bottom:364.000000pt;}
.y2b_c00111{bottom:383.853333pt;}
.y2a_c00111{bottom:404.333333pt;}
.y29_c00111{bottom:422.853333pt;}
.y28_c00111{bottom:441.120000pt;}
.y27_c00111{bottom:442.053333pt;}
.y26_c00111{bottom:442.386667pt;}
.y25_c00111{bottom:461.586667pt;}
.y24_c00111{bottom:481.120000pt;}
.y23_c00111{bottom:500.000000pt;}
.y22_c00111{bottom:500.333333pt;}
.y21_c00111{bottom:518.853333pt;}
.y20_c00111{bottom:519.186667pt;}
.y1f_c00111{bottom:519.853333pt;}
.y1e_c00111{bottom:539.053333pt;}
.y1d_c00111{bottom:559.186667pt;}
.y1c_c00111{bottom:578.386667pt;}
.y1b_c00111{bottom:597.853333pt;}
.y18_c00111{bottom:616.186667pt;}
.y19_c00111{bottom:618.053333pt;}
.y1a_c00111{bottom:618.386667pt;}
.y17_c00111{bottom:636.333333pt;}
.y16_c00111{bottom:655.853333pt;}
.y15_c00111{bottom:672.120000pt;}
.y14_c00111{bottom:694.266667pt;}
.y13_c00111{bottom:713.800000pt;}
.y10_c00111{bottom:731.386667pt;}
.y11_c00111{bottom:735.186667pt;}
.y12_c00111{bottom:735.853333pt;}
.yf_c00111{bottom:751.853333pt;}
.ye_c00111{bottom:771.386667pt;}
.yd_c00111{bottom:790.600000pt;}
.ya_c00111{bottom:804.000000pt;}
.yb_c00111{bottom:807.520000pt;}
.yc_c00111{bottom:811.666667pt;}
.y9_c00111{bottom:828.333333pt;}
.y8_c00111{bottom:847.853333pt;}
.y7_c00111{bottom:868.000000pt;}
.y6_c00111{bottom:882.386667pt;}
.y5_c00111{bottom:905.133333pt;}
.y4_c00111{bottom:924.266667pt;}
.y1_c00111{bottom:966.186667pt;}
.y3_c00111{bottom:975.853333pt;}
.y2_c00111{bottom:980.666667pt;}
.h2_c00111{height:47.109375pt;}
.h1_c00111{height:59.125000pt;}
.h3_c00111{height:62.812500pt;}
.h6_c00111{height:68.046875pt;}
.h4_c00111{height:73.281250pt;}
.h5_c00111{height:75.250000pt;}
.h0_c00111{height:1044.000000pt;}
.w0_c00111{width:650.646400pt;}
.w1_c00111{width:650.666667pt;}
.x0_c00111{left:0.000000pt;}
.x28_c00111{left:49.902400pt;}
.x24_c00111{left:50.835733pt;}
.x22_c00111{left:51.835733pt;}
.x1b_c00111{left:53.435733pt;}
.x1a_c00111{left:54.369067pt;}
.x14_c00111{left:55.369067pt;}
.x11_c00111{left:56.302400pt;}
.x10_c00111{left:57.902400pt;}
.xe_c00111{left:58.835733pt;}
.xd_c00111{left:59.835733pt;}
.xa_c00111{left:61.102400pt;}
.x6_c00111{left:62.369067pt;}
.x5_c00111{left:63.635733pt;}
.x23_c00111{left:72.969067pt;}
.x29_c00111{left:77.435733pt;}
.x20_c00111{left:79.369067pt;}
.x1d_c00111{left:80.302400pt;}
.x1_c00111{left:81.902400pt;}
.xf_c00111{left:85.102400pt;}
.x1c_c00111{left:86.369067pt;}
.x7_c00111{left:89.902400pt;}
.x4_c00111{left:90.835733pt;}
.x2_c00111{left:104.969067pt;}
.x25_c00111{left:119.969067pt;}
.x34_c00111{left:181.769067pt;}
.x26_c00111{left:193.569067pt;}
.x35_c00111{left:241.902400pt;}
.x8_c00111{left:247.035733pt;}
.x36_c00111{left:250.569067pt;}
.x9_c00111{left:254.369067pt;}
.x37_c00111{left:261.102400pt;}
.x38_c00111{left:264.969067pt;}
.x3_c00111{left:269.769067pt;}
.x30_c00111{left:271.035733pt;}
.x2c_c00111{left:286.702400pt;}
.x31_c00111{left:290.569067pt;}
.x27_c00111{left:318.702400pt;}
.x18_c00111{left:320.302400pt;}
.x2d_c00111{left:335.969067pt;}
.x19_c00111{left:348.169067pt;}
.x2a_c00111{left:375.022400pt;}
.xb_c00111{left:452.769067pt;}
.x12_c00111{left:455.635733pt;}
.x13_c00111{left:469.769067pt;}
.xc_c00111{left:483.502400pt;}
.x2e_c00111{left:518.369067pt;}
.x2b_c00111{left:522.835733pt;}
.x32_c00111{left:525.769067pt;}
.x21_c00111{left:542.702400pt;}
.x1e_c00111{left:547.502400pt;}
.x15_c00111{left:551.635733pt;}
.x33_c00111{left:553.902400pt;}
.x17_c00111{left:564.169067pt;}
.x2f_c00111{left:567.369067pt;}
.x16_c00111{left:572.169067pt;}
.x1f_c00111{left:586.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_708ce4cf386a7157944054a5.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00112;src:url('chunks/assets/font_828333dbdb90fa49d6f784eb.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00112{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m12_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);}
.m11_c00112{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c00112{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00112{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c00112{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00112{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00112{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c00112{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00112{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00112{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c00112{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3_c00112{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00112{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00112{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00112{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00112{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c00112{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00112{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,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:0.000000px;}
.fc0_c00112{color:transparent;}
.fs1_c00112{font-size:54.000000px;}
.fs0_c00112{font-size:60.000000px;}
.fs2_c00112{font-size:72.000000px;}
.fs3_c00112{font-size:96.000000px;}
.y0_c00112{bottom:0.000000px;}
.y29_c00112{bottom:67.875000px;}
.y28_c00112{bottom:89.085000px;}
.y26_c00112{bottom:109.185000px;}
.y25_c00112{bottom:109.260000px;}
.y27_c00112{bottom:111.375000px;}
.y24_c00112{bottom:129.810000px;}
.y23_c00112{bottom:151.035000px;}
.y22_c00112{bottom:171.585000px;}
.y21_c00112{bottom:192.000000px;}
.y20_c00112{bottom:297.525000px;}
.y1f_c00112{bottom:319.500000px;}
.y1e_c00112{bottom:340.710000px;}
.y1d_c00112{bottom:361.650000px;}
.y1c_c00112{bottom:382.875000px;}
.y1b_c00112{bottom:404.085000px;}
.y1a_c00112{bottom:425.685000px;}
.y19_c00112{bottom:447.285000px;}
.y18_c00112{bottom:468.885000px;}
.y17_c00112{bottom:490.500000px;}
.y16_c00112{bottom:512.085000px;}
.y15_c00112{bottom:533.685000px;}
.y14_c00112{bottom:555.660000px;}
.y13_c00112{bottom:576.885000px;}
.y12_c00112{bottom:598.875000px;}
.y1_c00112{bottom:617.910000px;}
.y11_c00112{bottom:620.085000px;}
.y10_c00112{bottom:641.685000px;}
.yf_c00112{bottom:663.285000px;}
.ye_c00112{bottom:684.885000px;}
.yd_c00112{bottom:707.535000px;}
.yc_c00112{bottom:728.085000px;}
.yb_c00112{bottom:750.075000px;}
.ya_c00112{bottom:773.085000px;}
.y9_c00112{bottom:793.650000px;}
.y8_c00112{bottom:815.550000px;}
.y7_c00112{bottom:924.000000px;}
.y6_c00112{bottom:945.525000px;}
.y5_c00112{bottom:967.125000px;}
.y4_c00112{bottom:988.050000px;}
.y3_c00112{bottom:1009.650000px;}
.y2a_c00112{bottom:1063.650000px;}
.y2_c00112{bottom:1070.085000px;}
.h2_c00112{height:54.421875px;}
.h1_c00112{height:58.886719px;}
.h3_c00112{height:70.664062px;}
.h4_c00112{height:94.218750px;}
.h0_c00112{height:1174.500000px;}
.w0_c00112{width:731.977200px;}
.w1_c00112{width:732.000000px;}
.x1_c00112{left:-8.659800px;}
.x0_c00112{left:0.000000px;}
.xd_c00112{left:51.490200px;}
.xb_c00112{left:52.915200px;}
.xa_c00112{left:54.340200px;}
.x8_c00112{left:55.765200px;}
.x7_c00112{left:57.190200px;}
.x5_c00112{left:59.365200px;}
.x4_c00112{left:60.490200px;}
.xe_c00112{left:82.765200px;}
.xc_c00112{left:84.175200px;}
.x9_c00112{left:87.490200px;}
.x6_c00112{left:89.290200px;}
.x3_c00112{left:93.550200px;}
.xf_c00112{left:192.565200px;}
.x10_c00112{left:220.990200px;}
.x2_c00112{left:271.390200px;}
.x11_c00112{left:633.190200px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls0_c00112{letter-spacing:0.000000pt;}
.ws0_c00112{word-spacing:0.000000pt;}
.fs1_c00112{font-size:48.000000pt;}
.fs0_c00112{font-size:53.333333pt;}
.fs2_c00112{font-size:64.000000pt;}
.fs3_c00112{font-size:85.333333pt;}
.y0_c00112{bottom:0.000000pt;}
.y29_c00112{bottom:60.333333pt;}
.y28_c00112{bottom:79.186667pt;}
.y26_c00112{bottom:97.053333pt;}
.y25_c00112{bottom:97.120000pt;}
.y27_c00112{bottom:99.000000pt;}
.y24_c00112{bottom:115.386667pt;}
.y23_c00112{bottom:134.253333pt;}
.y22_c00112{bottom:152.520000pt;}
.y21_c00112{bottom:170.666667pt;}
.y20_c00112{bottom:264.466667pt;}
.y1f_c00112{bottom:284.000000pt;}
.y1e_c00112{bottom:302.853333pt;}
.y1d_c00112{bottom:321.466667pt;}
.y1c_c00112{bottom:340.333333pt;}
.y1b_c00112{bottom:359.186667pt;}
.y1a_c00112{bottom:378.386667pt;}
.y19_c00112{bottom:397.586667pt;}
.y18_c00112{bottom:416.786667pt;}
.y17_c00112{bottom:436.000000pt;}
.y16_c00112{bottom:455.186667pt;}
.y15_c00112{bottom:474.386667pt;}
.y14_c00112{bottom:493.920000pt;}
.y13_c00112{bottom:512.786667pt;}
.y12_c00112{bottom:532.333333pt;}
.y1_c00112{bottom:549.253333pt;}
.y11_c00112{bottom:551.186667pt;}
.y10_c00112{bottom:570.386667pt;}
.yf_c00112{bottom:589.586667pt;}
.ye_c00112{bottom:608.786667pt;}
.yd_c00112{bottom:628.920000pt;}
.yc_c00112{bottom:647.186667pt;}
.yb_c00112{bottom:666.733333pt;}
.ya_c00112{bottom:687.186667pt;}
.y9_c00112{bottom:705.466667pt;}
.y8_c00112{bottom:724.933333pt;}
.y7_c00112{bottom:821.333333pt;}
.y6_c00112{bottom:840.466667pt;}
.y5_c00112{bottom:859.666667pt;}
.y4_c00112{bottom:878.266667pt;}
.y3_c00112{bottom:897.466667pt;}
.y2a_c00112{bottom:945.466667pt;}
.y2_c00112{bottom:951.186667pt;}
.h2_c00112{height:48.375000pt;}
.h1_c00112{height:52.343750pt;}
.h3_c00112{height:62.812500pt;}
.h4_c00112{height:83.750000pt;}
.h0_c00112{height:1044.000000pt;}
.w0_c00112{width:650.646400pt;}
.w1_c00112{width:650.666667pt;}
.x1_c00112{left:-7.697600pt;}
.x0_c00112{left:0.000000pt;}
.xd_c00112{left:45.769067pt;}
.xb_c00112{left:47.035733pt;}
.xa_c00112{left:48.302400pt;}
.x8_c00112{left:49.569067pt;}
.x7_c00112{left:50.835733pt;}
.x5_c00112{left:52.769067pt;}
.x4_c00112{left:53.769067pt;}
.xe_c00112{left:73.569067pt;}
.xc_c00112{left:74.822400pt;}
.x9_c00112{left:77.769067pt;}
.x6_c00112{left:79.369067pt;}
.x3_c00112{left:83.155733pt;}
.xf_c00112{left:171.169067pt;}
.x10_c00112{left:196.435733pt;}
.x2_c00112{left:241.235733pt;}
.x11_c00112{left:562.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2b498743d5022be9fbc49db.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00113;src:url('chunks/assets/font_c927be56add95c3af758f4fa.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00113{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m16_c00113{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3_c00113{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00113{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00113{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c00113{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c00113{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c00113{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c00113{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c00113{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00113{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00113{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c00113{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m0_c00113{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00113{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c00113{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c00113{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c00113{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00113{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00113{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00113{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m15_c00113{transform:matrix(2.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.155000,0.000000,0.000000,0.250000,0,0);}
.m12_c00113{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00113{color:transparent;}
.fs0_c00113{font-size:54.000000px;}
.fs2_c00113{font-size:66.000000px;}
.fs1_c00113{font-size:78.000000px;}
.y0_c00113{bottom:0.000000px;}
.y2d_c00113{bottom:266.625000px;}
.y30_c00113{bottom:268.035000px;}
.y2f_c00113{bottom:272.685000px;}
.y2e_c00113{bottom:276.000000px;}
.y2c_c00113{bottom:286.710000px;}
.y2b_c00113{bottom:294.285000px;}
.y2a_c00113{bottom:298.560000px;}
.y29_c00113{bottom:305.085000px;}
.y28_c00113{bottom:322.710000px;}
.y27_c00113{bottom:338.535000px;}
.y26_c00113{bottom:345.435000px;}
.y25_c00113{bottom:365.625000px;}
.y24_c00113{bottom:393.285000px;}
.y23_c00113{bottom:409.125000px;}
.y22_c00113{bottom:430.410000px;}
.y21_c00113{bottom:452.010000px;}
.y20_c00113{bottom:473.625000px;}
.y1f_c00113{bottom:496.935000px;}
.y1e_c00113{bottom:517.500000px;}
.y1d_c00113{bottom:539.085000px;}
.y1c_c00113{bottom:560.685000px;}
.y1b_c00113{bottom:582.660000px;}
.y1a_c00113{bottom:604.260000px;}
.y19_c00113{bottom:625.500000px;}
.y18_c00113{bottom:647.085000px;}
.y17_c00113{bottom:668.310000px;}
.y15_c00113{bottom:688.125000px;}
.y16_c00113{bottom:689.910000px;}
.y13_c00113{bottom:708.660000px;}
.y14_c00113{bottom:709.710000px;}
.y12_c00113{bottom:733.125000px;}
.y11_c00113{bottom:755.085000px;}
.y10_c00113{bottom:776.385000px;}
.yf_c00113{bottom:797.250000px;}
.ye_c00113{bottom:819.900000px;}
.yd_c00113{bottom:837.900000px;}
.yc_c00113{bottom:862.710000px;}
.yb_c00113{bottom:880.425000px;}
.ya_c00113{bottom:904.875000px;}
.y9_c00113{bottom:925.710000px;}
.y8_c00113{bottom:947.685000px;}
.y7_c00113{bottom:963.525000px;}
.y4_c00113{bottom:979.425000px;}
.y5_c00113{bottom:986.175000px;}
.y6_c00113{bottom:993.060000px;}
.y3_c00113{bottom:1002.435000px;}
.y2_c00113{bottom:1030.185000px;}
.y31_c00113{bottom:1075.875000px;}
.y1_c00113{bottom:1086.675000px;}
.h1_c00113{height:52.998047px;}
.h3_c00113{height:64.775391px;}
.h4_c00113{height:66.515625px;}
.h2_c00113{height:76.552734px;}
.h0_c00113{height:1174.500000px;}
.w0_c00113{width:731.977200px;}
.w1_c00113{width:732.000000px;}
.x0_c00113{left:0.000000px;}
.xe_c00113{left:51.790200px;}
.xf_c00113{left:52.915200px;}
.x9_c00113{left:54.715200px;}
.x6_c00113{left:56.140200px;}
.x2_c00113{left:57.565200px;}
.x17_c00113{left:76.675200px;}
.xb_c00113{left:80.290200px;}
.xc_c00113{left:82.765200px;}
.xa_c00113{left:83.890200px;}
.x8_c00113{left:84.925200px;}
.x7_c00113{left:85.990200px;}
.x3_c00113{left:87.115200px;}
.xd_c00113{left:110.140200px;}
.x13_c00113{left:118.090200px;}
.x14_c00113{left:120.190200px;}
.x4_c00113{left:166.690200px;}
.x15_c00113{left:227.515200px;}
.x1_c00113{left:271.765200px;}
.x5_c00113{left:386.275200px;}
.x11_c00113{left:402.775200px;}
.x12_c00113{left:420.490200px;}
.x10_c00113{left:519.490200px;}
.x16_c00113{left:639.715200px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls0_c00113{letter-spacing:0.000000pt;}
.ws0_c00113{word-spacing:0.000000pt;}
.fs0_c00113{font-size:48.000000pt;}
.fs2_c00113{font-size:58.666667pt;}
.fs1_c00113{font-size:69.333333pt;}
.y0_c00113{bottom:0.000000pt;}
.y2d_c00113{bottom:237.000000pt;}
.y30_c00113{bottom:238.253333pt;}
.y2f_c00113{bottom:242.386667pt;}
.y2e_c00113{bottom:245.333333pt;}
.y2c_c00113{bottom:254.853333pt;}
.y2b_c00113{bottom:261.586667pt;}
.y2a_c00113{bottom:265.386667pt;}
.y29_c00113{bottom:271.186667pt;}
.y28_c00113{bottom:286.853333pt;}
.y27_c00113{bottom:300.920000pt;}
.y26_c00113{bottom:307.053333pt;}
.y25_c00113{bottom:325.000000pt;}
.y24_c00113{bottom:349.586667pt;}
.y23_c00113{bottom:363.666667pt;}
.y22_c00113{bottom:382.586667pt;}
.y21_c00113{bottom:401.786667pt;}
.y20_c00113{bottom:421.000000pt;}
.y1f_c00113{bottom:441.720000pt;}
.y1e_c00113{bottom:460.000000pt;}
.y1d_c00113{bottom:479.186667pt;}
.y1c_c00113{bottom:498.386667pt;}
.y1b_c00113{bottom:517.920000pt;}
.y1a_c00113{bottom:537.120000pt;}
.y19_c00113{bottom:556.000000pt;}
.y18_c00113{bottom:575.186667pt;}
.y17_c00113{bottom:594.053333pt;}
.y15_c00113{bottom:611.666667pt;}
.y16_c00113{bottom:613.253333pt;}
.y13_c00113{bottom:629.920000pt;}
.y14_c00113{bottom:630.853333pt;}
.y12_c00113{bottom:651.666667pt;}
.y11_c00113{bottom:671.186667pt;}
.y10_c00113{bottom:690.120000pt;}
.yf_c00113{bottom:708.666667pt;}
.ye_c00113{bottom:728.800000pt;}
.yd_c00113{bottom:744.800000pt;}
.yc_c00113{bottom:766.853333pt;}
.yb_c00113{bottom:782.600000pt;}
.ya_c00113{bottom:804.333333pt;}
.y9_c00113{bottom:822.853333pt;}
.y8_c00113{bottom:842.386667pt;}
.y7_c00113{bottom:856.466667pt;}
.y4_c00113{bottom:870.600000pt;}
.y5_c00113{bottom:876.600000pt;}
.y6_c00113{bottom:882.720000pt;}
.y3_c00113{bottom:891.053333pt;}
.y2_c00113{bottom:915.720000pt;}
.y31_c00113{bottom:956.333333pt;}
.y1_c00113{bottom:965.933333pt;}
.h1_c00113{height:47.109375pt;}
.h3_c00113{height:57.578125pt;}
.h4_c00113{height:59.125000pt;}
.h2_c00113{height:68.046875pt;}
.h0_c00113{height:1044.000000pt;}
.w0_c00113{width:650.646400pt;}
.w1_c00113{width:650.666667pt;}
.x0_c00113{left:0.000000pt;}
.xe_c00113{left:46.035733pt;}
.xf_c00113{left:47.035733pt;}
.x9_c00113{left:48.635733pt;}
.x6_c00113{left:49.902400pt;}
.x2_c00113{left:51.169067pt;}
.x17_c00113{left:68.155733pt;}
.xb_c00113{left:71.369067pt;}
.xc_c00113{left:73.569067pt;}
.xa_c00113{left:74.569067pt;}
.x8_c00113{left:75.489067pt;}
.x7_c00113{left:76.435733pt;}
.x3_c00113{left:77.435733pt;}
.xd_c00113{left:97.902400pt;}
.x13_c00113{left:104.969067pt;}
.x14_c00113{left:106.835733pt;}
.x4_c00113{left:148.169067pt;}
.x15_c00113{left:202.235733pt;}
.x1_c00113{left:241.569067pt;}
.x5_c00113{left:343.355733pt;}
.x11_c00113{left:358.022400pt;}
.x12_c00113{left:373.769067pt;}
.x10_c00113{left:461.769067pt;}
.x16_c00113{left:568.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa27e1a5714d4b54e692477b.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00114;src:url('chunks/assets/font_1a11fd64c95e718b526714d5.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00114;src:url('chunks/assets/font_aa4e712801685f803b0d81dd.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00114;src:url('chunks/assets/font_b8d8cfad5cc1f67f411c490f.woff2')format("woff");}.ff4_c00114{font-family:ff4_c00114;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_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);}
.m2_c00114{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m0_c00114{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c00114{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00114{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8_c00114{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00114{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c00114{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m11_c00114{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m13_c00114{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c00114{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00114{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00114{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00114{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00114{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00114{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c00114{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00114{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00114{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00114{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00114{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00114{color:transparent;}
.fs4_c00114{font-size:54.000000px;}
.fs0_c00114{font-size:60.000000px;}
.fs1_c00114{font-size:72.000000px;}
.fs3_c00114{font-size:78.000000px;}
.fs2_c00114{font-size:138.000000px;}
.y0_c00114{bottom:0.000000px;}
.y2b_c00114{bottom:76.500000px;}
.y2a_c00114{bottom:98.085000px;}
.y29_c00114{bottom:118.935000px;}
.y28_c00114{bottom:139.125000px;}
.y27_c00114{bottom:159.660000px;}
.y26_c00114{bottom:179.760000px;}
.y25_c00114{bottom:200.385000px;}
.y24_c00114{bottom:220.875000px;}
.y23_c00114{bottom:242.085000px;}
.y22_c00114{bottom:263.310000px;}
.y21_c00114{bottom:284.910000px;}
.y20_c00114{bottom:306.210000px;}
.y1f_c00114{bottom:327.435000px;}
.y1e_c00114{bottom:348.585000px;}
.y1d_c00114{bottom:369.900000px;}
.y1c_c00114{bottom:390.810000px;}
.y1b_c00114{bottom:412.410000px;}
.y1a_c00114{bottom:434.010000px;}
.y19_c00114{bottom:455.625000px;}
.y18_c00114{bottom:477.210000px;}
.y17_c00114{bottom:498.810000px;}
.y15_c00114{bottom:520.035000px;}
.y16_c00114{bottom:520.410000px;}
.y14_c00114{bottom:520.710000px;}
.y13_c00114{bottom:541.635000px;}
.y12_c00114{bottom:542.685000px;}
.y11_c00114{bottom:563.910000px;}
.y10_c00114{bottom:585.135000px;}
.yf_c00114{bottom:605.685000px;}
.ye_c00114{bottom:606.435000px;}
.yd_c00114{bottom:607.125000px;}
.yc_c00114{bottom:607.875000px;}
.yb_c00114{bottom:626.910000px;}
.ya_c00114{bottom:628.710000px;}
.y9_c00114{bottom:649.935000px;}
.y8_c00114{bottom:669.435000px;}
.y7_c00114{bottom:670.875000px;}
.y6_c00114{bottom:672.285000px;}
.y5_c00114{bottom:693.135000px;}
.y4_c00114{bottom:800.460000px;}
.y3_c00114{bottom:1068.300000px;}
.y1_c00114{bottom:1076.625000px;}
.y2_c00114{bottom:1083.060000px;}
.h5_c00114{height:52.998047px;}
.h1_c00114{height:60.468750px;}
.h2_c00114{height:70.664062px;}
.h4_c00114{height:76.514648px;}
.h3_c00114{height:143.929688px;}
.h0_c00114{height:1174.500000px;}
.w0_c00114{width:731.977200px;}
.w1_c00114{width:732.000000px;}
.x0_c00114{left:0.000000px;}
.x11_c00114{left:61.165200px;}
.x6_c00114{left:62.290200px;}
.x13_c00114{left:64.090200px;}
.x14_c00114{left:65.140200px;}
.x5_c00114{left:93.940200px;}
.x12_c00114{left:96.490200px;}
.xa_c00114{left:137.515200px;}
.x4_c00114{left:156.565200px;}
.x1_c00114{left:283.990200px;}
.xb_c00114{left:292.990200px;}
.xd_c00114{left:303.490200px;}
.x7_c00114{left:340.915200px;}
.xf_c00114{left:366.490200px;}
.xe_c00114{left:464.365200px;}
.x2_c00114{left:478.090200px;}
.xc_c00114{left:540.340200px;}
.x9_c00114{left:544.315200px;}
.x10_c00114{left:545.365200px;}
.x8_c00114{left:581.365200px;}
.x3_c00114{left:639.715200px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls0_c00114{letter-spacing:0.000000pt;}
.ws0_c00114{word-spacing:0.000000pt;}
.fs4_c00114{font-size:48.000000pt;}
.fs0_c00114{font-size:53.333333pt;}
.fs1_c00114{font-size:64.000000pt;}
.fs3_c00114{font-size:69.333333pt;}
.fs2_c00114{font-size:122.666667pt;}
.y0_c00114{bottom:0.000000pt;}
.y2b_c00114{bottom:68.000000pt;}
.y2a_c00114{bottom:87.186667pt;}
.y29_c00114{bottom:105.720000pt;}
.y28_c00114{bottom:123.666667pt;}
.y27_c00114{bottom:141.920000pt;}
.y26_c00114{bottom:159.786667pt;}
.y25_c00114{bottom:178.120000pt;}
.y24_c00114{bottom:196.333333pt;}
.y23_c00114{bottom:215.186667pt;}
.y22_c00114{bottom:234.053333pt;}
.y21_c00114{bottom:253.253333pt;}
.y20_c00114{bottom:272.186667pt;}
.y1f_c00114{bottom:291.053333pt;}
.y1e_c00114{bottom:309.853333pt;}
.y1d_c00114{bottom:328.800000pt;}
.y1c_c00114{bottom:347.386667pt;}
.y1b_c00114{bottom:366.586667pt;}
.y1a_c00114{bottom:385.786667pt;}
.y19_c00114{bottom:405.000000pt;}
.y18_c00114{bottom:424.186667pt;}
.y17_c00114{bottom:443.386667pt;}
.y15_c00114{bottom:462.253333pt;}
.y16_c00114{bottom:462.586667pt;}
.y14_c00114{bottom:462.853333pt;}
.y13_c00114{bottom:481.453333pt;}
.y12_c00114{bottom:482.386667pt;}
.y11_c00114{bottom:501.253333pt;}
.y10_c00114{bottom:520.120000pt;}
.yf_c00114{bottom:538.386667pt;}
.ye_c00114{bottom:539.053333pt;}
.yd_c00114{bottom:539.666667pt;}
.yc_c00114{bottom:540.333333pt;}
.yb_c00114{bottom:557.253333pt;}
.ya_c00114{bottom:558.853333pt;}
.y9_c00114{bottom:577.720000pt;}
.y8_c00114{bottom:595.053333pt;}
.y7_c00114{bottom:596.333333pt;}
.y6_c00114{bottom:597.586667pt;}
.y5_c00114{bottom:616.120000pt;}
.y4_c00114{bottom:711.520000pt;}
.y3_c00114{bottom:949.600000pt;}
.y1_c00114{bottom:957.000000pt;}
.y2_c00114{bottom:962.720000pt;}
.h5_c00114{height:47.109375pt;}
.h1_c00114{height:53.750000pt;}
.h2_c00114{height:62.812500pt;}
.h4_c00114{height:68.013021pt;}
.h3_c00114{height:127.937500pt;}
.h0_c00114{height:1044.000000pt;}
.w0_c00114{width:650.646400pt;}
.w1_c00114{width:650.666667pt;}
.x0_c00114{left:0.000000pt;}
.x11_c00114{left:54.369067pt;}
.x6_c00114{left:55.369067pt;}
.x13_c00114{left:56.969067pt;}
.x14_c00114{left:57.902400pt;}
.x5_c00114{left:83.502400pt;}
.x12_c00114{left:85.769067pt;}
.xa_c00114{left:122.235733pt;}
.x4_c00114{left:139.169067pt;}
.x1_c00114{left:252.435733pt;}
.xb_c00114{left:260.435733pt;}
.xd_c00114{left:269.769067pt;}
.x7_c00114{left:303.035733pt;}
.xf_c00114{left:325.769067pt;}
.xe_c00114{left:412.769067pt;}
.x2_c00114{left:424.969067pt;}
.xc_c00114{left:480.302400pt;}
.x9_c00114{left:483.835733pt;}
.x10_c00114{left:484.769067pt;}
.x8_c00114{left:516.769067pt;}
.x3_c00114{left:568.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2401a07286e71ffcd8e1bff3.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00115;src:url('chunks/assets/font_7d97e1936ef268b3eb675e4e.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00115;src:url('chunks/assets/font_ce2b26edf23f7734cf2b5d4b.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00115{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00115{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m0_c00115{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m14_c00115{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m16_c00115{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00115{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m19_c00115{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3_c00115{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc_c00115{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10_c00115{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c00115{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c00115{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c00115{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md_c00115{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma_c00115{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00115{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c00115{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00115{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c00115{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00115{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c00115{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c00115{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00115{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m18_c00115{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00115{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m15_c00115{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00115{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c00115{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c00115{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00115{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,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;}
.fc0_c00115{color:transparent;}
.fs3_c00115{font-size:54.000000px;}
.fs2_c00115{font-size:66.000000px;}
.fs1_c00115{font-size:72.000000px;}
.fs0_c00115{font-size:78.000000px;}
.y0_c00115{bottom:0.000000px;}
.y47_c00115{bottom:108.885000px;}
.y45_c00115{bottom:109.185000px;}
.y46_c00115{bottom:111.810000px;}
.y44_c00115{bottom:112.875000px;}
.y43_c00115{bottom:117.210000px;}
.y42_c00115{bottom:124.035000px;}
.y41_c00115{bottom:127.260000px;}
.y40_c00115{bottom:128.010000px;}
.y3f_c00115{bottom:128.685000px;}
.y3c_c00115{bottom:143.085000px;}
.y3e_c00115{bottom:143.460000px;}
.y3b_c00115{bottom:144.210000px;}
.y3a_c00115{bottom:145.260000px;}
.y3d_c00115{bottom:146.385000px;}
.y39_c00115{bottom:150.285000px;}
.y38_c00115{bottom:155.685000px;}
.y37_c00115{bottom:158.160000px;}
.y36_c00115{bottom:160.410000px;}
.y35_c00115{bottom:161.460000px;}
.y34_c00115{bottom:229.875000px;}
.y33_c00115{bottom:250.335000px;}
.y32_c00115{bottom:276.960000px;}
.y31_c00115{bottom:294.000000px;}
.y30_c00115{bottom:315.585000px;}
.y2f_c00115{bottom:332.400000px;}
.y2e_c00115{bottom:332.460000px;}
.y2d_c00115{bottom:332.775000px;}
.y2c_c00115{bottom:333.150000px;}
.y2b_c00115{bottom:339.960000px;}
.y2a_c00115{bottom:358.410000px;}
.y29_c00115{bottom:380.310000px;}
.y28_c00115{bottom:402.285000px;}
.y27_c00115{bottom:422.835000px;}
.y26_c00115{bottom:445.875000px;}
.y25_c00115{bottom:465.285000px;}
.y24_c00115{bottom:469.260000px;}
.y23_c00115{bottom:470.685000px;}
.y22_c00115{bottom:486.885000px;}
.y21_c00115{bottom:489.435000px;}
.y20_c00115{bottom:490.875000px;}
.y1f_c00115{bottom:509.910000px;}
.y1e_c00115{bottom:531.885000px;}
.y1d_c00115{bottom:553.500000px;}
.y1c_c00115{bottom:575.460000px;}
.y1b_c00115{bottom:596.685000px;}
.y1a_c00115{bottom:618.660000px;}
.y19_c00115{bottom:639.885000px;}
.y18_c00115{bottom:661.500000px;}
.y17_c00115{bottom:661.875000px;}
.y16_c00115{bottom:683.760000px;}
.y15_c00115{bottom:704.685000px;}
.y14_c00115{bottom:726.285000px;}
.y13_c00115{bottom:747.510000px;}
.y12_c00115{bottom:769.500000px;}
.y11_c00115{bottom:791.085000px;}
.y10_c00115{bottom:828.525000px;}
.yf_c00115{bottom:855.150000px;}
.ye_c00115{bottom:876.375000px;}
.yd_c00115{bottom:897.675000px;}
.yc_c00115{bottom:919.275000px;}
.ya_c00115{bottom:935.085000px;}
.yb_c00115{bottom:943.710000px;}
.y8_c00115{bottom:959.250000px;}
.y9_c00115{bottom:966.375000px;}
.y7_c00115{bottom:982.275000px;}
.y4_c00115{bottom:992.685000px;}
.y5_c00115{bottom:999.210000px;}
.y6_c00115{bottom:1007.835000px;}
.y3_c00115{bottom:1025.085000px;}
.y2_c00115{bottom:1044.900000px;}
.y1_c00115{bottom:1091.025000px;}
.y48_c00115{bottom:1102.500000px;}
.h5_c00115{height:52.998047px;}
.h6_c00115{height:64.775391px;}
.h3_c00115{height:66.515625px;}
.h2_c00115{height:70.628906px;}
.h4_c00115{height:70.664062px;}
.h1_c00115{height:76.552734px;}
.h0_c00115{height:1174.500000px;}
.w0_c00115{width:731.977200px;}
.w1_c00115{width:732.000000px;}
.x0_c00115{left:0.000000px;}
.xa_c00115{left:52.540200px;}
.x2_c00115{left:53.965200px;}
.x3_c00115{left:55.390200px;}
.x4_c00115{left:64.090200px;}
.x18_c00115{left:69.490200px;}
.x1_c00115{left:72.715200px;}
.xc_c00115{left:81.715200px;}
.x9_c00115{left:82.765200px;}
.x11_c00115{left:84.175200px;}
.x19_c00115{left:103.990200px;}
.x25_c00115{left:109.765200px;}
.x1a_c00115{left:125.590200px;}
.x20_c00115{left:130.990200px;}
.x5_c00115{left:134.965200px;}
.x21_c00115{left:140.365200px;}
.xf_c00115{left:147.190200px;}
.x1b_c00115{left:184.690200px;}
.x22_c00115{left:205.165200px;}
.x1c_c00115{left:228.940200px;}
.x10_c00115{left:231.115200px;}
.xd_c00115{left:246.565200px;}
.x26_c00115{left:272.890200px;}
.x8_c00115{left:297.715200px;}
.xe_c00115{left:300.565200px;}
.x6_c00115{left:307.090200px;}
.x23_c00115{left:386.275200px;}
.x24_c00115{left:403.150200px;}
.x1d_c00115{left:437.365200px;}
.x1e_c00115{left:471.190200px;}
.x12_c00115{left:492.115200px;}
.x13_c00115{left:494.965200px;}
.x7_c00115{left:498.190200px;}
.x14_c00115{left:532.090200px;}
.x15_c00115{left:540.715200px;}
.x1f_c00115{left:564.115200px;}
.x16_c00115{left:576.715200px;}
.x17_c00115{left:585.715200px;}
.xb_c00115{left:602.965200px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls0_c00115{letter-spacing:0.000000pt;}
.ws0_c00115{word-spacing:0.000000pt;}
.fs3_c00115{font-size:48.000000pt;}
.fs2_c00115{font-size:58.666667pt;}
.fs1_c00115{font-size:64.000000pt;}
.fs0_c00115{font-size:69.333333pt;}
.y0_c00115{bottom:0.000000pt;}
.y47_c00115{bottom:96.786667pt;}
.y45_c00115{bottom:97.053333pt;}
.y46_c00115{bottom:99.386667pt;}
.y44_c00115{bottom:100.333333pt;}
.y43_c00115{bottom:104.186667pt;}
.y42_c00115{bottom:110.253333pt;}
.y41_c00115{bottom:113.120000pt;}
.y40_c00115{bottom:113.786667pt;}
.y3f_c00115{bottom:114.386667pt;}
.y3c_c00115{bottom:127.186667pt;}
.y3e_c00115{bottom:127.520000pt;}
.y3b_c00115{bottom:128.186667pt;}
.y3a_c00115{bottom:129.120000pt;}
.y3d_c00115{bottom:130.120000pt;}
.y39_c00115{bottom:133.586667pt;}
.y38_c00115{bottom:138.386667pt;}
.y37_c00115{bottom:140.586667pt;}
.y36_c00115{bottom:142.586667pt;}
.y35_c00115{bottom:143.520000pt;}
.y34_c00115{bottom:204.333333pt;}
.y33_c00115{bottom:222.520000pt;}
.y32_c00115{bottom:246.186667pt;}
.y31_c00115{bottom:261.333333pt;}
.y30_c00115{bottom:280.520000pt;}
.y2f_c00115{bottom:295.466667pt;}
.y2e_c00115{bottom:295.520000pt;}
.y2d_c00115{bottom:295.800000pt;}
.y2c_c00115{bottom:296.133333pt;}
.y2b_c00115{bottom:302.186667pt;}
.y2a_c00115{bottom:318.586667pt;}
.y29_c00115{bottom:338.053333pt;}
.y28_c00115{bottom:357.586667pt;}
.y27_c00115{bottom:375.853333pt;}
.y26_c00115{bottom:396.333333pt;}
.y25_c00115{bottom:413.586667pt;}
.y24_c00115{bottom:417.120000pt;}
.y23_c00115{bottom:418.386667pt;}
.y22_c00115{bottom:432.786667pt;}
.y21_c00115{bottom:435.053333pt;}
.y20_c00115{bottom:436.333333pt;}
.y1f_c00115{bottom:453.253333pt;}
.y1e_c00115{bottom:472.786667pt;}
.y1d_c00115{bottom:492.000000pt;}
.y1c_c00115{bottom:511.520000pt;}
.y1b_c00115{bottom:530.386667pt;}
.y1a_c00115{bottom:549.920000pt;}
.y19_c00115{bottom:568.786667pt;}
.y18_c00115{bottom:588.000000pt;}
.y17_c00115{bottom:588.333333pt;}
.y16_c00115{bottom:607.786667pt;}
.y15_c00115{bottom:626.386667pt;}
.y14_c00115{bottom:645.586667pt;}
.y13_c00115{bottom:664.453333pt;}
.y12_c00115{bottom:684.000000pt;}
.y11_c00115{bottom:703.186667pt;}
.y10_c00115{bottom:736.466667pt;}
.yf_c00115{bottom:760.133333pt;}
.ye_c00115{bottom:779.000000pt;}
.yd_c00115{bottom:797.933333pt;}
.yc_c00115{bottom:817.133333pt;}
.ya_c00115{bottom:831.186667pt;}
.yb_c00115{bottom:838.853333pt;}
.y8_c00115{bottom:852.666667pt;}
.y9_c00115{bottom:859.000000pt;}
.y7_c00115{bottom:873.133333pt;}
.y4_c00115{bottom:882.386667pt;}
.y5_c00115{bottom:888.186667pt;}
.y6_c00115{bottom:895.853333pt;}
.y3_c00115{bottom:911.186667pt;}
.y2_c00115{bottom:928.800000pt;}
.y1_c00115{bottom:969.800000pt;}
.y48_c00115{bottom:980.000000pt;}
.h5_c00115{height:47.109375pt;}
.h6_c00115{height:57.578125pt;}
.h3_c00115{height:59.125000pt;}
.h2_c00115{height:62.781250pt;}
.h4_c00115{height:62.812500pt;}
.h1_c00115{height:68.046875pt;}
.h0_c00115{height:1044.000000pt;}
.w0_c00115{width:650.646400pt;}
.w1_c00115{width:650.666667pt;}
.x0_c00115{left:0.000000pt;}
.xa_c00115{left:46.702400pt;}
.x2_c00115{left:47.969067pt;}
.x3_c00115{left:49.235733pt;}
.x4_c00115{left:56.969067pt;}
.x18_c00115{left:61.769067pt;}
.x1_c00115{left:64.635733pt;}
.xc_c00115{left:72.635733pt;}
.x9_c00115{left:73.569067pt;}
.x11_c00115{left:74.822400pt;}
.x19_c00115{left:92.435733pt;}
.x25_c00115{left:97.569067pt;}
.x1a_c00115{left:111.635733pt;}
.x20_c00115{left:116.435733pt;}
.x5_c00115{left:119.969067pt;}
.x21_c00115{left:124.769067pt;}
.xf_c00115{left:130.835733pt;}
.x1b_c00115{left:164.169067pt;}
.x22_c00115{left:182.369067pt;}
.x1c_c00115{left:203.502400pt;}
.x10_c00115{left:205.435733pt;}
.xd_c00115{left:219.169067pt;}
.x26_c00115{left:242.569067pt;}
.x8_c00115{left:264.635733pt;}
.xe_c00115{left:267.169067pt;}
.x6_c00115{left:272.969067pt;}
.x23_c00115{left:343.355733pt;}
.x24_c00115{left:358.355733pt;}
.x1d_c00115{left:388.769067pt;}
.x1e_c00115{left:418.835733pt;}
.x12_c00115{left:437.435733pt;}
.x13_c00115{left:439.969067pt;}
.x7_c00115{left:442.835733pt;}
.x14_c00115{left:472.969067pt;}
.x15_c00115{left:480.635733pt;}
.x1f_c00115{left:501.435733pt;}
.x16_c00115{left:512.635733pt;}
.x17_c00115{left:520.635733pt;}
.xb_c00115{left:535.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f32441f4a214e2c035771ca3.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00116{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m3_c00116{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00116{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c00116{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00116{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c00116{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c00116{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c00116{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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.000000px;}
.fc0_c00116{color:transparent;}
.fs0_c00116{font-size:54.000000px;}
.fs1_c00116{font-size:84.000000px;}
.y0_c00116{bottom:0.000000px;}
.yb_c00116{bottom:876.750000px;}
.ya_c00116{bottom:879.300000px;}
.y9_c00116{bottom:900.210000px;}
.y8_c00116{bottom:920.685000px;}
.y7_c00116{bottom:944.400000px;}
.y6_c00116{bottom:964.185000px;}
.y5_c00116{bottom:985.875000px;}
.y4_c00116{bottom:1007.775000px;}
.y3_c00116{bottom:1059.300000px;}
.y2_c00116{bottom:1064.685000px;}
.y1_c00116{bottom:1065.810000px;}
.h1_c00116{height:52.998047px;}
.h2_c00116{height:82.441406px;}
.h0_c00116{height:1174.500000px;}
.w0_c00116{width:731.977200px;}
.w1_c00116{width:732.000000px;}
.x0_c00116{left:0.000000px;}
.x5_c00116{left:50.740200px;}
.x4_c00116{left:51.790200px;}
.x6_c00116{left:83.515200px;}
.x1_c00116{left:291.940200px;}
.x7_c00116{left:416.140200px;}
.x2_c00116{left:460.090200px;}
.x3_c00116{left:622.390200px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls0_c00116{letter-spacing:0.000000pt;}
.ws0_c00116{word-spacing:0.000000pt;}
.fs0_c00116{font-size:48.000000pt;}
.fs1_c00116{font-size:74.666667pt;}
.y0_c00116{bottom:0.000000pt;}
.yb_c00116{bottom:779.333333pt;}
.ya_c00116{bottom:781.600000pt;}
.y9_c00116{bottom:800.186667pt;}
.y8_c00116{bottom:818.386667pt;}
.y7_c00116{bottom:839.466667pt;}
.y6_c00116{bottom:857.053333pt;}
.y5_c00116{bottom:876.333333pt;}
.y4_c00116{bottom:895.800000pt;}
.y3_c00116{bottom:941.600000pt;}
.y2_c00116{bottom:946.386667pt;}
.y1_c00116{bottom:947.386667pt;}
.h1_c00116{height:47.109375pt;}
.h2_c00116{height:73.281250pt;}
.h0_c00116{height:1044.000000pt;}
.w0_c00116{width:650.646400pt;}
.w1_c00116{width:650.666667pt;}
.x0_c00116{left:0.000000pt;}
.x5_c00116{left:45.102400pt;}
.x4_c00116{left:46.035733pt;}
.x6_c00116{left:74.235733pt;}
.x1_c00116{left:259.502400pt;}
.x7_c00116{left:369.902400pt;}
.x2_c00116{left:408.969067pt;}
.x3_c00116{left:553.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00117 {
    display:none;
  }
  .loading-indicator_c00117.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00117 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00117 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00117" -> "#page-container .classname_c00117")
 */
.pf_c00117 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00117 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00117 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00117 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00117 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00117 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00117 {overflow:visible;}
  }
}
.c_c00117 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00117 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00117:after { /* webkit #35443 */
  content: '';
}
.t_c00117:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00117 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00117 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00117 { /* info for Javascript */
  display:none;
}
.l_c00117 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00117 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00117 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00117:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00117 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00117.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00117 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00117{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00117;src:url('chunks/assets/font_669c9041a7ca66691e7ce6df.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00117;src:url('chunks/assets/font_3d52a9a2f8f513bc7c667ca5.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00117;src:url('chunks/assets/font_e1e7707e9e57e5afb543f866.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00117;src:url('chunks/assets/font_8442e39e09ec6f529ce98104.woff2')format("woff");}.ff4_c00117{font-family:ff4_c00117;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00117{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3_c00117{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m0_c00117{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00117{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00117{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m25_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00117{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00117{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c00117{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00117{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c00117{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c00117{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c00117{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00117{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc_c00117{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c00117{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c00117{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m24_c00117{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00117{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00117{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00117{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00117{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c00117{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c00117{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c00117{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m19_c00117{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00117{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m26_c00117{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c00117{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m15_c00117{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c00117{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m28_c00117{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mf_c00117{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10_c00117{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m11_c00117{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00117{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mb_c00117{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m12_c00117{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m18_c00117{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m23_c00117{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.md_c00117{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m5_c00117{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m7_c00117{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m9_c00117{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1_c00117{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls0_c00117{letter-spacing:0.000000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00117{word-spacing:0.000000px;}
.fc0_c00117{color:transparent;}
.fs6_c00117{font-size:48.000000px;}
.fs1_c00117{font-size:60.000000px;}
.fs7_c00117{font-size:66.000000px;}
.fs8_c00117{font-size:72.000000px;}
.fs0_c00117{font-size:78.000000px;}
.fs9_c00117{font-size:84.000000px;}
.fs4_c00117{font-size:96.000000px;}
.fs2_c00117{font-size:126.000000px;}
.fs5_c00117{font-size:150.000000px;}
.fs3_c00117{font-size:162.000000px;}
.y0_c00117{bottom:0.000000px;}
.y49_c00117{bottom:77.910000px;}
.y48_c00117{bottom:84.060000px;}
.y45_c00117{bottom:99.510000px;}
.y44_c00117{bottom:99.885000px;}
.y46_c00117{bottom:100.635000px;}
.y43_c00117{bottom:101.685000px;}
.y47_c00117{bottom:102.060000px;}
.y42_c00117{bottom:106.710000px;}
.y41_c00117{bottom:111.000000px;}
.y40_c00117{bottom:112.125000px;}
.y3e_c00117{bottom:121.500000px;}
.y3f_c00117{bottom:124.035000px;}
.y3d_c00117{bottom:124.410000px;}
.y3c_c00117{bottom:131.250000px;}
.y3b_c00117{bottom:133.410000px;}
.y3a_c00117{bottom:143.085000px;}
.y39_c00117{bottom:144.210000px;}
.y38_c00117{bottom:145.560000px;}
.y37_c00117{bottom:149.910000px;}
.y36_c00117{bottom:165.060000px;}
.y35_c00117{bottom:166.125000px;}
.y34_c00117{bottom:168.285000px;}
.y33_c00117{bottom:173.310000px;}
.y32_c00117{bottom:188.460000px;}
.y31_c00117{bottom:210.750000px;}
.y30_c00117{bottom:229.125000px;}
.y2f_c00117{bottom:232.710000px;}
.y2e_c00117{bottom:252.885000px;}
.y2d_c00117{bottom:273.810000px;}
.y2c_c00117{bottom:377.460000px;}
.y2b_c00117{bottom:398.685000px;}
.y2a_c00117{bottom:399.435000px;}
.y29_c00117{bottom:400.125000px;}
.y28_c00117{bottom:420.285000px;}
.y27_c00117{bottom:420.660000px;}
.y25_c00117{bottom:421.335000px;}
.y26_c00117{bottom:421.410000px;}
.y23_c00117{bottom:441.885000px;}
.y24_c00117{bottom:442.260000px;}
.y20_c00117{bottom:463.500000px;}
.y21_c00117{bottom:463.875000px;}
.y22_c00117{bottom:464.910000px;}
.y1f_c00117{bottom:485.085000px;}
.y1a_c00117{bottom:505.635000px;}
.y1b_c00117{bottom:506.685000px;}
.y1c_c00117{bottom:507.435000px;}
.y1d_c00117{bottom:507.750000px;}
.y1e_c00117{bottom:508.500000px;}
.y16_c00117{bottom:525.750000px;}
.y17_c00117{bottom:526.875000px;}
.y18_c00117{bottom:527.250000px;}
.y19_c00117{bottom:529.035000px;}
.y12_c00117{bottom:547.785000px;}
.y13_c00117{bottom:549.210000px;}
.y14_c00117{bottom:550.260000px;}
.y15_c00117{bottom:551.310000px;}
.ye_c00117{bottom:567.510000px;}
.yf_c00117{bottom:569.010000px;}
.y10_c00117{bottom:569.685000px;}
.y11_c00117{bottom:571.500000px;}
.ya_c00117{bottom:588.435000px;}
.yb_c00117{bottom:590.535000px;}
.yc_c00117{bottom:591.660000px;}
.yd_c00117{bottom:593.835000px;}
.y9_c00117{bottom:639.885000px;}
.y6_c00117{bottom:732.450000px;}
.y7_c00117{bottom:737.085000px;}
.y8_c00117{bottom:739.950000px;}
.y5_c00117{bottom:787.875000px;}
.y4_c00117{bottom:960.300000px;}
.y1_c00117{bottom:1067.175000px;}
.y3_c00117{bottom:1078.050000px;}
.y2_c00117{bottom:1082.310000px;}
.h7_c00117{height:47.109375px;}
.h2_c00117{height:58.886719px;}
.h8_c00117{height:64.775391px;}
.h9_c00117{height:66.515625px;}
.ha_c00117{height:70.628906px;}
.hc_c00117{height:76.514648px;}
.h1_c00117{height:76.552734px;}
.hd_c00117{height:78.609375px;}
.hb_c00117{height:82.400391px;}
.he_c00117{height:82.441406px;}
.h5_c00117{height:94.218750px;}
.h3_c00117{height:126.984375px;}
.h6_c00117{height:147.216797px;}
.h4_c00117{height:158.994141px;}
.h0_c00117{height:1174.500000px;}
.w0_c00117{width:731.977200px;}
.w1_c00117{width:732.000000px;}
.x0_c00117{left:0.000000px;}
.x4_c00117{left:57.565200px;}
.x2c_c00117{left:61.915200px;}
.x2e_c00117{left:63.340200px;}
.x32_c00117{left:64.390200px;}
.x3f_c00117{left:65.515200px;}
.x1_c00117{left:75.175200px;}
.xe_c00117{left:77.365200px;}
.xa_c00117{left:78.790200px;}
.x28_c00117{left:79.915200px;}
.x1d_c00117{left:81.340200px;}
.x2b_c00117{left:92.140200px;}
.x34_c00117{left:93.940200px;}
.x6_c00117{left:94.990200px;}
.x2_c00117{left:101.515200px;}
.x38_c00117{left:111.940200px;}
.xb_c00117{left:118.390200px;}
.x14_c00117{left:120.190200px;}
.x1e_c00117{left:121.315200px;}
.x25_c00117{left:141.115200px;}
.x26_c00117{left:148.990200px;}
.x39_c00117{left:168.115200px;}
.x27_c00117{left:174.940200px;}
.x5_c00117{left:178.540200px;}
.x35_c00117{left:210.940200px;}
.x15_c00117{left:215.965200px;}
.x11_c00117{left:217.090200px;}
.x2f_c00117{left:221.365200px;}
.xf_c00117{left:227.515200px;}
.xc_c00117{left:231.115200px;}
.x16_c00117{left:233.590200px;}
.x10_c00117{left:244.765200px;}
.xd_c00117{left:248.365200px;}
.x9_c00117{left:251.965200px;}
.x3_c00117{left:270.340200px;}
.x29_c00117{left:283.690200px;}
.x1f_c00117{left:289.090200px;}
.x17_c00117{left:307.765200px;}
.x7_c00117{left:314.590200px;}
.x18_c00117{left:324.340200px;}
.x1c_c00117{left:331.915200px;}
.x3a_c00117{left:347.740200px;}
.x33_c00117{left:376.900200px;}
.x8_c00117{left:390.940200px;}
.x22_c00117{left:392.740200px;}
.x12_c00117{left:399.940200px;}
.x30_c00117{left:403.525200px;}
.x13_c00117{left:427.690200px;}
.x31_c00117{left:451.390200px;}
.x19_c00117{left:475.165200px;}
.x20_c00117{left:478.390200px;}
.x3b_c00117{left:496.765200px;}
.x36_c00117{left:507.190200px;}
.x2d_c00117{left:514.090200px;}
.x3c_c00117{left:539.290200px;}
.x1a_c00117{left:541.090200px;}
.x23_c00117{left:544.315200px;}
.x40_c00117{left:553.990200px;}
.x24_c00117{left:564.790200px;}
.x2a_c00117{left:566.965200px;}
.x1b_c00117{left:588.565200px;}
.x3d_c00117{left:610.540200px;}
.x21_c00117{left:631.390200px;}
.x37_c00117{left:649.765200px;}
.x3e_c00117{left:654.490200px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls0_c00117{letter-spacing:0.000000pt;}
.ws0_c00117{word-spacing:0.000000pt;}
.fs6_c00117{font-size:42.666667pt;}
.fs1_c00117{font-size:53.333333pt;}
.fs7_c00117{font-size:58.666667pt;}
.fs8_c00117{font-size:64.000000pt;}
.fs0_c00117{font-size:69.333333pt;}
.fs9_c00117{font-size:74.666667pt;}
.fs4_c00117{font-size:85.333333pt;}
.fs2_c00117{font-size:112.000000pt;}
.fs5_c00117{font-size:133.333333pt;}
.fs3_c00117{font-size:144.000000pt;}
.y0_c00117{bottom:0.000000pt;}
.y49_c00117{bottom:69.253333pt;}
.y48_c00117{bottom:74.720000pt;}
.y45_c00117{bottom:88.453333pt;}
.y44_c00117{bottom:88.786667pt;}
.y46_c00117{bottom:89.453333pt;}
.y43_c00117{bottom:90.386667pt;}
.y47_c00117{bottom:90.720000pt;}
.y42_c00117{bottom:94.853333pt;}
.y41_c00117{bottom:98.666667pt;}
.y40_c00117{bottom:99.666667pt;}
.y3e_c00117{bottom:108.000000pt;}
.y3f_c00117{bottom:110.253333pt;}
.y3d_c00117{bottom:110.586667pt;}
.y3c_c00117{bottom:116.666667pt;}
.y3b_c00117{bottom:118.586667pt;}
.y3a_c00117{bottom:127.186667pt;}
.y39_c00117{bottom:128.186667pt;}
.y38_c00117{bottom:129.386667pt;}
.y37_c00117{bottom:133.253333pt;}
.y36_c00117{bottom:146.720000pt;}
.y35_c00117{bottom:147.666667pt;}
.y34_c00117{bottom:149.586667pt;}
.y33_c00117{bottom:154.053333pt;}
.y32_c00117{bottom:167.520000pt;}
.y31_c00117{bottom:187.333333pt;}
.y30_c00117{bottom:203.666667pt;}
.y2f_c00117{bottom:206.853333pt;}
.y2e_c00117{bottom:224.786667pt;}
.y2d_c00117{bottom:243.386667pt;}
.y2c_c00117{bottom:335.520000pt;}
.y2b_c00117{bottom:354.386667pt;}
.y2a_c00117{bottom:355.053333pt;}
.y29_c00117{bottom:355.666667pt;}
.y28_c00117{bottom:373.586667pt;}
.y27_c00117{bottom:373.920000pt;}
.y25_c00117{bottom:374.520000pt;}
.y26_c00117{bottom:374.586667pt;}
.y23_c00117{bottom:392.786667pt;}
.y24_c00117{bottom:393.120000pt;}
.y20_c00117{bottom:412.000000pt;}
.y21_c00117{bottom:412.333333pt;}
.y22_c00117{bottom:413.253333pt;}
.y1f_c00117{bottom:431.186667pt;}
.y1a_c00117{bottom:449.453333pt;}
.y1b_c00117{bottom:450.386667pt;}
.y1c_c00117{bottom:451.053333pt;}
.y1d_c00117{bottom:451.333333pt;}
.y1e_c00117{bottom:452.000000pt;}
.y16_c00117{bottom:467.333333pt;}
.y17_c00117{bottom:468.333333pt;}
.y18_c00117{bottom:468.666667pt;}
.y19_c00117{bottom:470.253333pt;}
.y12_c00117{bottom:486.920000pt;}
.y13_c00117{bottom:488.186667pt;}
.y14_c00117{bottom:489.120000pt;}
.y15_c00117{bottom:490.053333pt;}
.ye_c00117{bottom:504.453333pt;}
.yf_c00117{bottom:505.786667pt;}
.y10_c00117{bottom:506.386667pt;}
.y11_c00117{bottom:508.000000pt;}
.ya_c00117{bottom:523.053333pt;}
.yb_c00117{bottom:524.920000pt;}
.yc_c00117{bottom:525.920000pt;}
.yd_c00117{bottom:527.853333pt;}
.y9_c00117{bottom:568.786667pt;}
.y6_c00117{bottom:651.066667pt;}
.y7_c00117{bottom:655.186667pt;}
.y8_c00117{bottom:657.733333pt;}
.y5_c00117{bottom:700.333333pt;}
.y4_c00117{bottom:853.600000pt;}
.y1_c00117{bottom:948.600000pt;}
.y3_c00117{bottom:958.266667pt;}
.y2_c00117{bottom:962.053333pt;}
.h7_c00117{height:41.875000pt;}
.h2_c00117{height:52.343750pt;}
.h8_c00117{height:57.578125pt;}
.h9_c00117{height:59.125000pt;}
.ha_c00117{height:62.781250pt;}
.hc_c00117{height:68.013021pt;}
.h1_c00117{height:68.046875pt;}
.hd_c00117{height:69.875000pt;}
.hb_c00117{height:73.244792pt;}
.he_c00117{height:73.281250pt;}
.h5_c00117{height:83.750000pt;}
.h3_c00117{height:112.875000pt;}
.h6_c00117{height:130.859375pt;}
.h4_c00117{height:141.328125pt;}
.h0_c00117{height:1044.000000pt;}
.w0_c00117{width:650.646400pt;}
.w1_c00117{width:650.666667pt;}
.x0_c00117{left:0.000000pt;}
.x4_c00117{left:51.169067pt;}
.x2c_c00117{left:55.035733pt;}
.x2e_c00117{left:56.302400pt;}
.x32_c00117{left:57.235733pt;}
.x3f_c00117{left:58.235733pt;}
.x1_c00117{left:66.822400pt;}
.xe_c00117{left:68.769067pt;}
.xa_c00117{left:70.035733pt;}
.x28_c00117{left:71.035733pt;}
.x1d_c00117{left:72.302400pt;}
.x2b_c00117{left:81.902400pt;}
.x34_c00117{left:83.502400pt;}
.x6_c00117{left:84.435733pt;}
.x2_c00117{left:90.235733pt;}
.x38_c00117{left:99.502400pt;}
.xb_c00117{left:105.235733pt;}
.x14_c00117{left:106.835733pt;}
.x1e_c00117{left:107.835733pt;}
.x25_c00117{left:125.435733pt;}
.x26_c00117{left:132.435733pt;}
.x39_c00117{left:149.435733pt;}
.x27_c00117{left:155.502400pt;}
.x5_c00117{left:158.702400pt;}
.x35_c00117{left:187.502400pt;}
.x15_c00117{left:191.969067pt;}
.x11_c00117{left:192.969067pt;}
.x2f_c00117{left:196.769067pt;}
.xf_c00117{left:202.235733pt;}
.xc_c00117{left:205.435733pt;}
.x16_c00117{left:207.635733pt;}
.x10_c00117{left:217.569067pt;}
.xd_c00117{left:220.769067pt;}
.x9_c00117{left:223.969067pt;}
.x3_c00117{left:240.302400pt;}
.x29_c00117{left:252.169067pt;}
.x1f_c00117{left:256.969067pt;}
.x17_c00117{left:273.569067pt;}
.x7_c00117{left:279.635733pt;}
.x18_c00117{left:288.302400pt;}
.x1c_c00117{left:295.035733pt;}
.x3a_c00117{left:309.102400pt;}
.x33_c00117{left:335.022400pt;}
.x8_c00117{left:347.502400pt;}
.x22_c00117{left:349.102400pt;}
.x12_c00117{left:355.502400pt;}
.x30_c00117{left:358.689067pt;}
.x13_c00117{left:380.169067pt;}
.x31_c00117{left:401.235733pt;}
.x19_c00117{left:422.369067pt;}
.x20_c00117{left:425.235733pt;}
.x3b_c00117{left:441.569067pt;}
.x36_c00117{left:450.835733pt;}
.x2d_c00117{left:456.969067pt;}
.x3c_c00117{left:479.369067pt;}
.x1a_c00117{left:480.969067pt;}
.x23_c00117{left:483.835733pt;}
.x40_c00117{left:492.435733pt;}
.x24_c00117{left:502.035733pt;}
.x2a_c00117{left:503.969067pt;}
.x1b_c00117{left:523.169067pt;}
.x3d_c00117{left:542.702400pt;}
.x21_c00117{left:561.235733pt;}
.x37_c00117{left:577.569067pt;}
.x3e_c00117{left:581.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd13c030c2136d1947e41d89.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00118;src:url('chunks/assets/font_516e583b734f894191ea1b0c.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00118{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma_c00118{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m15_c00118{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8_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);}
.me_c00118{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md_c00118{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10_c00118{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c00118{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1_c00118{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5_c00118{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00118{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00118{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c00118{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m13_c00118{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc_c00118{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00118{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c00118{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00118{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00118{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c00118{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00118{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m16_c00118{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m18_c00118{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c00118{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m17_c00118{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m9_c00118{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mf_c00118{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m7_c00118{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m11_c00118{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.ls0_c00118{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00118{word-spacing:0.000000px;}
.fc0_c00118{color:transparent;}
.fs0_c00118{font-size:60.000000px;}
.fs2_c00118{font-size:66.000000px;}
.fs1_c00118{font-size:84.000000px;}
.y0_c00118{bottom:0.000000px;}
.y37_c00118{bottom:60.660000px;}
.y36_c00118{bottom:79.035000px;}
.y35_c00118{bottom:96.285000px;}
.y34_c00118{bottom:112.500000px;}
.y33_c00118{bottom:129.060000px;}
.y32_c00118{bottom:145.635000px;}
.y31_c00118{bottom:146.310000px;}
.y30_c00118{bottom:146.685000px;}
.y2f_c00118{bottom:162.135000px;}
.y2c_c00118{bottom:250.410000px;}
.y2d_c00118{bottom:251.760000px;}
.y2e_c00118{bottom:252.585000px;}
.y2b_c00118{bottom:272.400000px;}
.y2a_c00118{bottom:293.910000px;}
.y29_c00118{bottom:315.150000px;}
.y27_c00118{bottom:335.685000px;}
.y28_c00118{bottom:336.435000px;}
.y26_c00118{bottom:356.910000px;}
.y24_c00118{bottom:377.460000px;}
.y23_c00118{bottom:377.835000px;}
.y22_c00118{bottom:378.150000px;}
.y25_c00118{bottom:378.900000px;}
.y21_c00118{bottom:399.810000px;}
.y20_c00118{bottom:421.410000px;}
.y1f_c00118{bottom:442.635000px;}
.y1d_c00118{bottom:463.875000px;}
.y1c_c00118{bottom:464.160000px;}
.y1e_c00118{bottom:464.625000px;}
.y1b_c00118{bottom:486.210000px;}
.y1a_c00118{bottom:507.810000px;}
.y19_c00118{bottom:529.410000px;}
.y18_c00118{bottom:550.635000px;}
.y17_c00118{bottom:572.250000px;}
.y16_c00118{bottom:593.835000px;}
.y15_c00118{bottom:615.060000px;}
.y14_c00118{bottom:615.750000px;}
.y13_c00118{bottom:636.960000px;}
.y12_c00118{bottom:637.710000px;}
.y11_c00118{bottom:658.560000px;}
.y10_c00118{bottom:680.250000px;}
.yf_c00118{bottom:680.535000px;}
.ye_c00118{bottom:702.510000px;}
.yd_c00118{bottom:702.885000px;}
.yc_c00118{bottom:723.750000px;}
.yb_c00118{bottom:793.275000px;}
.ya_c00118{bottom:876.060000px;}
.y9_c00118{bottom:897.300000px;}
.y8_c00118{bottom:916.050000px;}
.y7_c00118{bottom:918.900000px;}
.y6_c00118{bottom:919.650000px;}
.y5_c00118{bottom:940.125000px;}
.y4_c00118{bottom:961.710000px;}
.y3_c00118{bottom:983.310000px;}
.y2_c00118{bottom:1005.300000px;}
.y1_c00118{bottom:1065.810000px;}
.h1_c00118{height:58.886719px;}
.h4_c00118{height:64.775391px;}
.h3_c00118{height:82.400391px;}
.h2_c00118{height:82.441406px;}
.h0_c00118{height:1174.500000px;}
.w0_c00118{width:731.977200px;}
.w1_c00118{width:732.000000px;}
.x0_c00118{left:0.000000px;}
.xe_c00118{left:46.090200px;}
.x2_c00118{left:47.890200px;}
.x12_c00118{left:49.690200px;}
.x13_c00118{left:50.740200px;}
.x19_c00118{left:51.790200px;}
.x1f_c00118{left:53.290200px;}
.x1c_c00118{left:54.340200px;}
.x1d_c00118{left:61.540200px;}
.x7_c00118{left:70.165200px;}
.xf_c00118{left:75.550200px;}
.x6_c00118{left:78.790200px;}
.xc_c00118{left:79.915200px;}
.x14_c00118{left:83.140200px;}
.xa_c00118{left:87.490200px;}
.xb_c00118{left:93.940200px;}
.x3_c00118{left:95.740200px;}
.x1e_c00118{left:107.965200px;}
.x8_c00118{left:110.890200px;}
.x9_c00118{left:114.115200px;}
.xd_c00118{left:154.090200px;}
.x15_c00118{left:160.915200px;}
.x18_c00118{left:223.915200px;}
.x10_c00118{left:226.765200px;}
.x16_c00118{left:228.190200px;}
.x11_c00118{left:234.715200px;}
.x17_c00118{left:236.890200px;}
.x1_c00118{left:260.590200px;}
.x5_c00118{left:276.790200px;}
.x1a_c00118{left:512.590200px;}
.x4_c00118{left:533.140200px;}
.x1b_c00118{left:535.990200px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls0_c00118{letter-spacing:0.000000pt;}
.ws0_c00118{word-spacing:0.000000pt;}
.fs0_c00118{font-size:53.333333pt;}
.fs2_c00118{font-size:58.666667pt;}
.fs1_c00118{font-size:74.666667pt;}
.y0_c00118{bottom:0.000000pt;}
.y37_c00118{bottom:53.920000pt;}
.y36_c00118{bottom:70.253333pt;}
.y35_c00118{bottom:85.586667pt;}
.y34_c00118{bottom:100.000000pt;}
.y33_c00118{bottom:114.720000pt;}
.y32_c00118{bottom:129.453333pt;}
.y31_c00118{bottom:130.053333pt;}
.y30_c00118{bottom:130.386667pt;}
.y2f_c00118{bottom:144.120000pt;}
.y2c_c00118{bottom:222.586667pt;}
.y2d_c00118{bottom:223.786667pt;}
.y2e_c00118{bottom:224.520000pt;}
.y2b_c00118{bottom:242.133333pt;}
.y2a_c00118{bottom:261.253333pt;}
.y29_c00118{bottom:280.133333pt;}
.y27_c00118{bottom:298.386667pt;}
.y28_c00118{bottom:299.053333pt;}
.y26_c00118{bottom:317.253333pt;}
.y24_c00118{bottom:335.520000pt;}
.y23_c00118{bottom:335.853333pt;}
.y22_c00118{bottom:336.133333pt;}
.y25_c00118{bottom:336.800000pt;}
.y21_c00118{bottom:355.386667pt;}
.y20_c00118{bottom:374.586667pt;}
.y1f_c00118{bottom:393.453333pt;}
.y1d_c00118{bottom:412.333333pt;}
.y1c_c00118{bottom:412.586667pt;}
.y1e_c00118{bottom:413.000000pt;}
.y1b_c00118{bottom:432.186667pt;}
.y1a_c00118{bottom:451.386667pt;}
.y19_c00118{bottom:470.586667pt;}
.y18_c00118{bottom:489.453333pt;}
.y17_c00118{bottom:508.666667pt;}
.y16_c00118{bottom:527.853333pt;}
.y15_c00118{bottom:546.720000pt;}
.y14_c00118{bottom:547.333333pt;}
.y13_c00118{bottom:566.186667pt;}
.y12_c00118{bottom:566.853333pt;}
.y11_c00118{bottom:585.386667pt;}
.y10_c00118{bottom:604.666667pt;}
.yf_c00118{bottom:604.920000pt;}
.ye_c00118{bottom:624.453333pt;}
.yd_c00118{bottom:624.786667pt;}
.yc_c00118{bottom:643.333333pt;}
.yb_c00118{bottom:705.133333pt;}
.ya_c00118{bottom:778.720000pt;}
.y9_c00118{bottom:797.600000pt;}
.y8_c00118{bottom:814.266667pt;}
.y7_c00118{bottom:816.800000pt;}
.y6_c00118{bottom:817.466667pt;}
.y5_c00118{bottom:835.666667pt;}
.y4_c00118{bottom:854.853333pt;}
.y3_c00118{bottom:874.053333pt;}
.y2_c00118{bottom:893.600000pt;}
.y1_c00118{bottom:947.386667pt;}
.h1_c00118{height:52.343750pt;}
.h4_c00118{height:57.578125pt;}
.h3_c00118{height:73.244792pt;}
.h2_c00118{height:73.281250pt;}
.h0_c00118{height:1044.000000pt;}
.w0_c00118{width:650.646400pt;}
.w1_c00118{width:650.666667pt;}
.x0_c00118{left:0.000000pt;}
.xe_c00118{left:40.969067pt;}
.x2_c00118{left:42.569067pt;}
.x12_c00118{left:44.169067pt;}
.x13_c00118{left:45.102400pt;}
.x19_c00118{left:46.035733pt;}
.x1f_c00118{left:47.369067pt;}
.x1c_c00118{left:48.302400pt;}
.x1d_c00118{left:54.702400pt;}
.x7_c00118{left:62.369067pt;}
.xf_c00118{left:67.155733pt;}
.x6_c00118{left:70.035733pt;}
.xc_c00118{left:71.035733pt;}
.x14_c00118{left:73.902400pt;}
.xa_c00118{left:77.769067pt;}
.xb_c00118{left:83.502400pt;}
.x3_c00118{left:85.102400pt;}
.x1e_c00118{left:95.969067pt;}
.x8_c00118{left:98.569067pt;}
.x9_c00118{left:101.435733pt;}
.xd_c00118{left:136.969067pt;}
.x15_c00118{left:143.035733pt;}
.x18_c00118{left:199.035733pt;}
.x10_c00118{left:201.569067pt;}
.x16_c00118{left:202.835733pt;}
.x11_c00118{left:208.635733pt;}
.x17_c00118{left:210.569067pt;}
.x1_c00118{left:231.635733pt;}
.x5_c00118{left:246.035733pt;}
.x1a_c00118{left:455.635733pt;}
.x4_c00118{left:473.902400pt;}
.x1b_c00118{left:476.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2242f9103559e52d526800e0.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00119;src:url('chunks/assets/font_6a039fdcf8b91a045ef08827.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00119;src:url('chunks/assets/font_7332bbfc4a0cbd8331ea2932.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00119;src:url('chunks/assets/font_bed3f924d3bb4ffa39f4d4cd.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2a_c00119{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00119{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00119{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00119{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1_c00119{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3_c00119{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf_c00119{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10_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);}
.m12_c00119{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11_c00119{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m15_c00119{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00119{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c00119{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8_c00119{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c00119{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00119{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c00119{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00119{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c00119{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m16_c00119{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00119{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00119{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m25_c00119{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00119{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00119{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c00119{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c00119{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m24_c00119{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00119{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c00119{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c00119{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00119{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c00119{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00119{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00119{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00119{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m19_c00119{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00119{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c00119{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m27_c00119{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m23_c00119{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m28_c00119{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m17_c00119{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m21_c00119{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m29_c00119{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00119{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m22_c00119{transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.ls0_c00119{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00119{word-spacing:0.000000px;}
.fc0_c00119{color:transparent;}
.fs0_c00119{font-size:60.000000px;}
.fs3_c00119{font-size:66.000000px;}
.fs4_c00119{font-size:72.000000px;}
.fs1_c00119{font-size:78.000000px;}
.fs2_c00119{font-size:84.000000px;}
.y0_c00119{bottom:0.000000px;}
.y66_c00119{bottom:76.875000px;}
.y65_c00119{bottom:85.500000px;}
.y64_c00119{bottom:88.035000px;}
.y62_c00119{bottom:89.460000px;}
.y63_c00119{bottom:90.135000px;}
.y61_c00119{bottom:90.510000px;}
.y60_c00119{bottom:93.000000px;}
.y5f_c00119{bottom:96.285000px;}
.y5e_c00119{bottom:99.885000px;}
.y5d_c00119{bottom:102.375000px;}
.y5c_c00119{bottom:105.660000px;}
.y5b_c00119{bottom:163.560000px;}
.y5a_c00119{bottom:170.760000px;}
.y59_c00119{bottom:172.260000px;}
.y58_c00119{bottom:192.375000px;}
.y57_c00119{bottom:204.285000px;}
.y56_c00119{bottom:209.010000px;}
.y55_c00119{bottom:225.510000px;}
.y54_c00119{bottom:226.935000px;}
.y53_c00119{bottom:231.000000px;}
.y52_c00119{bottom:237.375000px;}
.y51_c00119{bottom:238.185000px;}
.y50_c00119{bottom:247.185000px;}
.y4f_c00119{bottom:247.500000px;}
.y4e_c00119{bottom:251.835000px;}
.y4d_c00119{bottom:258.285000px;}
.y4b_c00119{bottom:268.710000px;}
.y4c_c00119{bottom:269.400000px;}
.y4a_c00119{bottom:273.435000px;}
.y48_c00119{bottom:291.060000px;}
.y49_c00119{bottom:291.435000px;}
.y47_c00119{bottom:293.250000px;}
.y46_c00119{bottom:297.900000px;}
.y45_c00119{bottom:313.710000px;}
.y44_c00119{bottom:314.460000px;}
.y43_c00119{bottom:334.275000px;}
.y42_c00119{bottom:335.025000px;}
.y41_c00119{bottom:335.685000px;}
.y40_c00119{bottom:337.125000px;}
.y3f_c00119{bottom:338.250000px;}
.y3e_c00119{bottom:339.285000px;}
.y3d_c00119{bottom:341.460000px;}
.y3c_c00119{bottom:356.535000px;}
.y3b_c00119{bottom:358.335000px;}
.y3a_c00119{bottom:359.460000px;}
.y39_c00119{bottom:359.835000px;}
.y38_c00119{bottom:361.275000px;}
.y37_c00119{bottom:379.275000px;}
.y36_c00119{bottom:382.500000px;}
.y35_c00119{bottom:383.910000px;}
.y34_c00119{bottom:400.500000px;}
.y33_c00119{bottom:404.085000px;}
.y31_c00119{bottom:422.085000px;}
.y32_c00119{bottom:422.460000px;}
.y30_c00119{bottom:443.685000px;}
.y2f_c00119{bottom:446.910000px;}
.y2d_c00119{bottom:464.910000px;}
.y2c_c00119{bottom:465.000000px;}
.y2e_c00119{bottom:465.660000px;}
.y2b_c00119{bottom:466.035000px;}
.y27_c00119{bottom:486.135000px;}
.y26_c00119{bottom:486.210000px;}
.y28_c00119{bottom:486.510000px;}
.y29_c00119{bottom:486.885000px;}
.y2a_c00119{bottom:487.935000px;}
.y25_c00119{bottom:488.010000px;}
.y24_c00119{bottom:509.535000px;}
.y22_c00119{bottom:529.710000px;}
.y21_c00119{bottom:530.085000px;}
.y23_c00119{bottom:531.135000px;}
.y20_c00119{bottom:551.310000px;}
.y1e_c00119{bottom:572.250000px;}
.y1f_c00119{bottom:572.535000px;}
.y1d_c00119{bottom:593.460000px;}
.y1b_c00119{bottom:614.685000px;}
.y1c_c00119{bottom:615.810000px;}
.y19_c00119{bottom:635.625000px;}
.y1a_c00119{bottom:636.000000px;}
.y18_c00119{bottom:693.135000px;}
.y12_c00119{bottom:760.785000px;}
.y13_c00119{bottom:761.910000px;}
.y14_c00119{bottom:763.335000px;}
.y15_c00119{bottom:764.085000px;}
.y16_c00119{bottom:765.885000px;}
.y17_c00119{bottom:768.375000px;}
.y10_c00119{bottom:787.875000px;}
.y11_c00119{bottom:792.210000px;}
.yc_c00119{bottom:803.685000px;}
.yd_c00119{bottom:805.500000px;}
.ye_c00119{bottom:810.150000px;}
.yf_c00119{bottom:814.500000px;}
.yb_c00119{bottom:830.685000px;}
.ya_c00119{bottom:852.000000px;}
.y9_c00119{bottom:872.835000px;}
.y5_c00119{bottom:885.060000px;}
.y6_c00119{bottom:888.300000px;}
.y7_c00119{bottom:896.250000px;}
.y8_c00119{bottom:899.775000px;}
.y3_c00119{bottom:912.435000px;}
.y4_c00119{bottom:921.750000px;}
.y2_c00119{bottom:970.050000px;}
.y67_c00119{bottom:1066.875000px;}
.y1_c00119{bottom:1077.960000px;}
.h1_c00119{height:58.886719px;}
.h7_c00119{height:60.468750px;}
.h4_c00119{height:64.743164px;}
.h5_c00119{height:64.775391px;}
.h8_c00119{height:70.628906px;}
.h9_c00119{height:72.562500px;}
.h6_c00119{height:76.514648px;}
.h2_c00119{height:76.552734px;}
.ha_c00119{height:78.609375px;}
.h3_c00119{height:82.441406px;}
.h0_c00119{height:1174.500000px;}
.w0_c00119{width:731.977200px;}
.w1_c00119{width:732.000000px;}
.x0_c00119{left:0.000000px;}
.x18_c00119{left:55.765200px;}
.xa_c00119{left:57.565200px;}
.x4_c00119{left:58.990200px;}
.x45_c00119{left:61.540200px;}
.x46_c00119{left:71.965200px;}
.x3b_c00119{left:73.390200px;}
.x14_c00119{left:74.890200px;}
.x12_c00119{left:76.300200px;}
.x48_c00119{left:77.740200px;}
.x36_c00119{left:81.340200px;}
.x10_c00119{left:85.675200px;}
.x3c_c00119{left:87.115200px;}
.x2_c00119{left:88.540200px;}
.xb_c00119{left:99.715200px;}
.x37_c00119{left:101.140200px;}
.x3f_c00119{left:107.965200px;}
.x33_c00119{left:114.790200px;}
.x16_c00119{left:115.915200px;}
.x21_c00119{left:118.090200px;}
.x28_c00119{left:130.990200px;}
.x23_c00119{left:141.790200px;}
.x3d_c00119{left:144.715200px;}
.x11_c00119{left:147.190200px;}
.xc_c00119{left:158.740200px;}
.x24_c00119{left:160.165200px;}
.x29_c00119{left:175.690200px;}
.x3e_c00119{left:180.715200px;}
.x7_c00119{left:191.875200px;}
.x19_c00119{left:204.490200px;}
.xd_c00119{left:209.515200px;}
.x40_c00119{left:210.940200px;}
.x25_c00119{left:216.340200px;}
.x26_c00119{left:229.690200px;}
.x8_c00119{left:233.965200px;}
.x5_c00119{left:245.140200px;}
.x2f_c00119{left:247.990200px;}
.x2a_c00119{left:263.515200px;}
.x47_c00119{left:264.565200px;}
.x15_c00119{left:272.140200px;}
.x1_c00119{left:273.565200px;}
.xf_c00119{left:280.090200px;}
.x13_c00119{left:300.940200px;}
.x1f_c00119{left:303.490200px;}
.x2b_c00119{left:330.490200px;}
.x27_c00119{left:341.965200px;}
.x1a_c00119{left:361.090200px;}
.x2c_c00119{left:398.140200px;}
.x1b_c00119{left:404.965200px;}
.xe_c00119{left:408.565200px;}
.x41_c00119{left:416.140200px;}
.x1c_c00119{left:424.390200px;}
.x42_c00119{left:430.150200px;}
.x2d_c00119{left:460.765200px;}
.x38_c00119{left:464.740200px;}
.x3_c00119{left:480.940200px;}
.x31_c00119{left:492.490200px;}
.x9_c00119{left:514.390200px;}
.x34_c00119{left:517.690200px;}
.x1d_c00119{left:533.890200px;}
.x39_c00119{left:538.915200px;}
.x35_c00119{left:541.390200px;}
.x43_c00119{left:552.190200px;}
.x3a_c00119{left:570.565200px;}
.x20_c00119{left:576.340200px;}
.x30_c00119{left:579.565200px;}
.x17_c00119{left:594.340200px;}
.x32_c00119{left:605.890200px;}
.x6_c00119{left:614.140200px;}
.x22_c00119{left:616.990200px;}
.x44_c00119{left:621.340200px;}
.x2e_c00119{left:633.565200px;}
.x1e_c00119{left:647.590200px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls0_c00119{letter-spacing:0.000000pt;}
.ws0_c00119{word-spacing:0.000000pt;}
.fs0_c00119{font-size:53.333333pt;}
.fs3_c00119{font-size:58.666667pt;}
.fs4_c00119{font-size:64.000000pt;}
.fs1_c00119{font-size:69.333333pt;}
.fs2_c00119{font-size:74.666667pt;}
.y0_c00119{bottom:0.000000pt;}
.y66_c00119{bottom:68.333333pt;}
.y65_c00119{bottom:76.000000pt;}
.y64_c00119{bottom:78.253333pt;}
.y62_c00119{bottom:79.520000pt;}
.y63_c00119{bottom:80.120000pt;}
.y61_c00119{bottom:80.453333pt;}
.y60_c00119{bottom:82.666667pt;}
.y5f_c00119{bottom:85.586667pt;}
.y5e_c00119{bottom:88.786667pt;}
.y5d_c00119{bottom:91.000000pt;}
.y5c_c00119{bottom:93.920000pt;}
.y5b_c00119{bottom:145.386667pt;}
.y5a_c00119{bottom:151.786667pt;}
.y59_c00119{bottom:153.120000pt;}
.y58_c00119{bottom:171.000000pt;}
.y57_c00119{bottom:181.586667pt;}
.y56_c00119{bottom:185.786667pt;}
.y55_c00119{bottom:200.453333pt;}
.y54_c00119{bottom:201.720000pt;}
.y53_c00119{bottom:205.333333pt;}
.y52_c00119{bottom:211.000000pt;}
.y51_c00119{bottom:211.720000pt;}
.y50_c00119{bottom:219.720000pt;}
.y4f_c00119{bottom:220.000000pt;}
.y4e_c00119{bottom:223.853333pt;}
.y4d_c00119{bottom:229.586667pt;}
.y4b_c00119{bottom:238.853333pt;}
.y4c_c00119{bottom:239.466667pt;}
.y4a_c00119{bottom:243.053333pt;}
.y48_c00119{bottom:258.720000pt;}
.y49_c00119{bottom:259.053333pt;}
.y47_c00119{bottom:260.666667pt;}
.y46_c00119{bottom:264.800000pt;}
.y45_c00119{bottom:278.853333pt;}
.y44_c00119{bottom:279.520000pt;}
.y43_c00119{bottom:297.133333pt;}
.y42_c00119{bottom:297.800000pt;}
.y41_c00119{bottom:298.386667pt;}
.y40_c00119{bottom:299.666667pt;}
.y3f_c00119{bottom:300.666667pt;}
.y3e_c00119{bottom:301.586667pt;}
.y3d_c00119{bottom:303.520000pt;}
.y3c_c00119{bottom:316.920000pt;}
.y3b_c00119{bottom:318.520000pt;}
.y3a_c00119{bottom:319.520000pt;}
.y39_c00119{bottom:319.853333pt;}
.y38_c00119{bottom:321.133333pt;}
.y37_c00119{bottom:337.133333pt;}
.y36_c00119{bottom:340.000000pt;}
.y35_c00119{bottom:341.253333pt;}
.y34_c00119{bottom:356.000000pt;}
.y33_c00119{bottom:359.186667pt;}
.y31_c00119{bottom:375.186667pt;}
.y32_c00119{bottom:375.520000pt;}
.y30_c00119{bottom:394.386667pt;}
.y2f_c00119{bottom:397.253333pt;}
.y2d_c00119{bottom:413.253333pt;}
.y2c_c00119{bottom:413.333333pt;}
.y2e_c00119{bottom:413.920000pt;}
.y2b_c00119{bottom:414.253333pt;}
.y27_c00119{bottom:432.120000pt;}
.y26_c00119{bottom:432.186667pt;}
.y28_c00119{bottom:432.453333pt;}
.y29_c00119{bottom:432.786667pt;}
.y2a_c00119{bottom:433.720000pt;}
.y25_c00119{bottom:433.786667pt;}
.y24_c00119{bottom:452.920000pt;}
.y22_c00119{bottom:470.853333pt;}
.y21_c00119{bottom:471.186667pt;}
.y23_c00119{bottom:472.120000pt;}
.y20_c00119{bottom:490.053333pt;}
.y1e_c00119{bottom:508.666667pt;}
.y1f_c00119{bottom:508.920000pt;}
.y1d_c00119{bottom:527.520000pt;}
.y1b_c00119{bottom:546.386667pt;}
.y1c_c00119{bottom:547.386667pt;}
.y19_c00119{bottom:565.000000pt;}
.y1a_c00119{bottom:565.333333pt;}
.y18_c00119{bottom:616.120000pt;}
.y12_c00119{bottom:676.253333pt;}
.y13_c00119{bottom:677.253333pt;}
.y14_c00119{bottom:678.520000pt;}
.y15_c00119{bottom:679.186667pt;}
.y16_c00119{bottom:680.786667pt;}
.y17_c00119{bottom:683.000000pt;}
.y10_c00119{bottom:700.333333pt;}
.y11_c00119{bottom:704.186667pt;}
.yc_c00119{bottom:714.386667pt;}
.yd_c00119{bottom:716.000000pt;}
.ye_c00119{bottom:720.133333pt;}
.yf_c00119{bottom:724.000000pt;}
.yb_c00119{bottom:738.386667pt;}
.ya_c00119{bottom:757.333333pt;}
.y9_c00119{bottom:775.853333pt;}
.y5_c00119{bottom:786.720000pt;}
.y6_c00119{bottom:789.600000pt;}
.y7_c00119{bottom:796.666667pt;}
.y8_c00119{bottom:799.800000pt;}
.y3_c00119{bottom:811.053333pt;}
.y4_c00119{bottom:819.333333pt;}
.y2_c00119{bottom:862.266667pt;}
.y67_c00119{bottom:948.333333pt;}
.y1_c00119{bottom:958.186667pt;}
.h1_c00119{height:52.343750pt;}
.h7_c00119{height:53.750000pt;}
.h4_c00119{height:57.549479pt;}
.h5_c00119{height:57.578125pt;}
.h8_c00119{height:62.781250pt;}
.h9_c00119{height:64.500000pt;}
.h6_c00119{height:68.013021pt;}
.h2_c00119{height:68.046875pt;}
.ha_c00119{height:69.875000pt;}
.h3_c00119{height:73.281250pt;}
.h0_c00119{height:1044.000000pt;}
.w0_c00119{width:650.646400pt;}
.w1_c00119{width:650.666667pt;}
.x0_c00119{left:0.000000pt;}
.x18_c00119{left:49.569067pt;}
.xa_c00119{left:51.169067pt;}
.x4_c00119{left:52.435733pt;}
.x45_c00119{left:54.702400pt;}
.x46_c00119{left:63.969067pt;}
.x3b_c00119{left:65.235733pt;}
.x14_c00119{left:66.569067pt;}
.x12_c00119{left:67.822400pt;}
.x48_c00119{left:69.102400pt;}
.x36_c00119{left:72.302400pt;}
.x10_c00119{left:76.155733pt;}
.x3c_c00119{left:77.435733pt;}
.x2_c00119{left:78.702400pt;}
.xb_c00119{left:88.635733pt;}
.x37_c00119{left:89.902400pt;}
.x3f_c00119{left:95.969067pt;}
.x33_c00119{left:102.035733pt;}
.x16_c00119{left:103.035733pt;}
.x21_c00119{left:104.969067pt;}
.x28_c00119{left:116.435733pt;}
.x23_c00119{left:126.035733pt;}
.x3d_c00119{left:128.635733pt;}
.x11_c00119{left:130.835733pt;}
.xc_c00119{left:141.102400pt;}
.x24_c00119{left:142.369067pt;}
.x29_c00119{left:156.169067pt;}
.x3e_c00119{left:160.635733pt;}
.x7_c00119{left:170.555733pt;}
.x19_c00119{left:181.769067pt;}
.xd_c00119{left:186.235733pt;}
.x40_c00119{left:187.502400pt;}
.x25_c00119{left:192.302400pt;}
.x26_c00119{left:204.169067pt;}
.x8_c00119{left:207.969067pt;}
.x5_c00119{left:217.902400pt;}
.x2f_c00119{left:220.435733pt;}
.x2a_c00119{left:234.235733pt;}
.x47_c00119{left:235.169067pt;}
.x15_c00119{left:241.902400pt;}
.x1_c00119{left:243.169067pt;}
.xf_c00119{left:248.969067pt;}
.x13_c00119{left:267.502400pt;}
.x1f_c00119{left:269.769067pt;}
.x2b_c00119{left:293.769067pt;}
.x27_c00119{left:303.969067pt;}
.x1a_c00119{left:320.969067pt;}
.x2c_c00119{left:353.902400pt;}
.x1b_c00119{left:359.969067pt;}
.xe_c00119{left:363.169067pt;}
.x41_c00119{left:369.902400pt;}
.x1c_c00119{left:377.235733pt;}
.x42_c00119{left:382.355733pt;}
.x2d_c00119{left:409.569067pt;}
.x38_c00119{left:413.102400pt;}
.x3_c00119{left:427.502400pt;}
.x31_c00119{left:437.769067pt;}
.x9_c00119{left:457.235733pt;}
.x34_c00119{left:460.169067pt;}
.x1d_c00119{left:474.569067pt;}
.x39_c00119{left:479.035733pt;}
.x35_c00119{left:481.235733pt;}
.x43_c00119{left:490.835733pt;}
.x3a_c00119{left:507.169067pt;}
.x20_c00119{left:512.302400pt;}
.x30_c00119{left:515.169067pt;}
.x17_c00119{left:528.302400pt;}
.x32_c00119{left:538.569067pt;}
.x6_c00119{left:545.902400pt;}
.x22_c00119{left:548.435733pt;}
.x44_c00119{left:552.302400pt;}
.x2e_c00119{left:563.169067pt;}
.x1e_c00119{left:575.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_37444a04811f788b988f0704.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00120;src:url('chunks/assets/font_5a35cb8594e72ff9e3d2c7aa.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00120;src:url('chunks/assets/font_422d494f4ce0e3200e709471.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00120;src:url('chunks/assets/font_a81ca5595d5c73b77d87892d.woff2')format("woff");}.ff4_c00120{font-family:ff4_c00120;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00120{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10_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);}
.m0_c00120{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me_c00120{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00120{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5_c00120{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00120{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c00120{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c00120{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c00120{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00120{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md_c00120{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c00120{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00120{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c00120{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14_c00120{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf_c00120{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m15_c00120{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00120{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c00120{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11_c00120{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c00120{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,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;}
}
.ws0_c00120{word-spacing:0.000000px;}
.fc0_c00120{color:transparent;}
.fs3_c00120{font-size:48.000000px;}
.fs0_c00120{font-size:60.000000px;}
.fs2_c00120{font-size:66.000000px;}
.fs1_c00120{font-size:84.000000px;}
.y0_c00120{bottom:0.000000px;}
.y30_c00120{bottom:70.035000px;}
.y2f_c00120{bottom:89.085000px;}
.y2e_c00120{bottom:106.035000px;}
.y2d_c00120{bottom:122.535000px;}
.y2c_c00120{bottom:139.125000px;}
.y2b_c00120{bottom:155.385000px;}
.y2a_c00120{bottom:218.685000px;}
.y29_c00120{bottom:239.910000px;}
.y28_c00120{bottom:260.835000px;}
.y27_c00120{bottom:282.435000px;}
.y25_c00120{bottom:303.285000px;}
.y26_c00120{bottom:304.035000px;}
.y24_c00120{bottom:325.275000px;}
.y23_c00120{bottom:380.310000px;}
.y22_c00120{bottom:452.010000px;}
.y21_c00120{bottom:474.585000px;}
.y20_c00120{bottom:496.260000px;}
.y1f_c00120{bottom:517.875000px;}
.y1e_c00120{bottom:539.760000px;}
.y1d_c00120{bottom:561.375000px;}
.y1c_c00120{bottom:582.660000px;}
.y1b_c00120{bottom:604.260000px;}
.y1a_c00120{bottom:625.875000px;}
.y19_c00120{bottom:647.085000px;}
.y18_c00120{bottom:668.685000px;}
.y17_c00120{bottom:690.660000px;}
.y16_c00120{bottom:712.260000px;}
.y15_c00120{bottom:733.875000px;}
.y13_c00120{bottom:755.385000px;}
.y14_c00120{bottom:755.460000px;}
.y12_c00120{bottom:777.060000px;}
.y11_c00120{bottom:798.675000px;}
.y10_c00120{bottom:820.275000px;}
.yf_c00120{bottom:841.875000px;}
.ye_c00120{bottom:863.085000px;}
.yc_c00120{bottom:883.935000px;}
.yd_c00120{bottom:884.685000px;}
.yb_c00120{bottom:905.925000px;}
.ya_c00120{bottom:926.835000px;}
.y9_c00120{bottom:948.435000px;}
.y8_c00120{bottom:967.500000px;}
.y7_c00120{bottom:969.300000px;}
.y6_c00120{bottom:970.050000px;}
.y5_c00120{bottom:970.710000px;}
.y4_c00120{bottom:988.050000px;}
.y3_c00120{bottom:991.560000px;}
.y2_c00120{bottom:1013.175000px;}
.y1_c00120{bottom:1073.685000px;}
.h5_c00120{height:47.109375px;}
.h4_c00120{height:58.886719px;}
.h1_c00120{height:60.468750px;}
.h3_c00120{height:64.743164px;}
.h6_c00120{height:64.775391px;}
.h2_c00120{height:82.441406px;}
.h0_c00120{height:1174.500000px;}
.w0_c00120{width:731.977200px;}
.w1_c00120{width:732.000000px;}
.x0_c00120{left:0.000000px;}
.xd_c00120{left:46.390200px;}
.xc_c00120{left:47.515200px;}
.x9_c00120{left:48.565200px;}
.x2_c00120{left:49.690200px;}
.x14_c00120{left:51.790200px;}
.x13_c00120{left:66.940200px;}
.xe_c00120{left:79.165200px;}
.xa_c00120{left:80.590200px;}
.x7_c00120{left:82.390200px;}
.xb_c00120{left:146.140200px;}
.x8_c00120{left:151.165200px;}
.x4_c00120{left:154.090200px;}
.xf_c00120{left:209.515200px;}
.x1_c00120{left:262.090200px;}
.x10_c00120{left:281.515200px;}
.x11_c00120{left:296.590200px;}
.x12_c00120{left:369.715200px;}
.x5_c00120{left:380.140200px;}
.x6_c00120{left:487.090200px;}
.x3_c00120{left:637.165200px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls0_c00120{letter-spacing:0.000000pt;}
.ws0_c00120{word-spacing:0.000000pt;}
.fs3_c00120{font-size:42.666667pt;}
.fs0_c00120{font-size:53.333333pt;}
.fs2_c00120{font-size:58.666667pt;}
.fs1_c00120{font-size:74.666667pt;}
.y0_c00120{bottom:0.000000pt;}
.y30_c00120{bottom:62.253333pt;}
.y2f_c00120{bottom:79.186667pt;}
.y2e_c00120{bottom:94.253333pt;}
.y2d_c00120{bottom:108.920000pt;}
.y2c_c00120{bottom:123.666667pt;}
.y2b_c00120{bottom:138.120000pt;}
.y2a_c00120{bottom:194.386667pt;}
.y29_c00120{bottom:213.253333pt;}
.y28_c00120{bottom:231.853333pt;}
.y27_c00120{bottom:251.053333pt;}
.y25_c00120{bottom:269.586667pt;}
.y26_c00120{bottom:270.253333pt;}
.y24_c00120{bottom:289.133333pt;}
.y23_c00120{bottom:338.053333pt;}
.y22_c00120{bottom:401.786667pt;}
.y21_c00120{bottom:421.853333pt;}
.y20_c00120{bottom:441.120000pt;}
.y1f_c00120{bottom:460.333333pt;}
.y1e_c00120{bottom:479.786667pt;}
.y1d_c00120{bottom:499.000000pt;}
.y1c_c00120{bottom:517.920000pt;}
.y1b_c00120{bottom:537.120000pt;}
.y1a_c00120{bottom:556.333333pt;}
.y19_c00120{bottom:575.186667pt;}
.y18_c00120{bottom:594.386667pt;}
.y17_c00120{bottom:613.920000pt;}
.y16_c00120{bottom:633.120000pt;}
.y15_c00120{bottom:652.333333pt;}
.y13_c00120{bottom:671.453333pt;}
.y14_c00120{bottom:671.520000pt;}
.y12_c00120{bottom:690.720000pt;}
.y11_c00120{bottom:709.933333pt;}
.y10_c00120{bottom:729.133333pt;}
.yf_c00120{bottom:748.333333pt;}
.ye_c00120{bottom:767.186667pt;}
.yc_c00120{bottom:785.720000pt;}
.yd_c00120{bottom:786.386667pt;}
.yb_c00120{bottom:805.266667pt;}
.ya_c00120{bottom:823.853333pt;}
.y9_c00120{bottom:843.053333pt;}
.y8_c00120{bottom:860.000000pt;}
.y7_c00120{bottom:861.600000pt;}
.y6_c00120{bottom:862.266667pt;}
.y5_c00120{bottom:862.853333pt;}
.y4_c00120{bottom:878.266667pt;}
.y3_c00120{bottom:881.386667pt;}
.y2_c00120{bottom:900.600000pt;}
.y1_c00120{bottom:954.386667pt;}
.h5_c00120{height:41.875000pt;}
.h4_c00120{height:52.343750pt;}
.h1_c00120{height:53.750000pt;}
.h3_c00120{height:57.549479pt;}
.h6_c00120{height:57.578125pt;}
.h2_c00120{height:73.281250pt;}
.h0_c00120{height:1044.000000pt;}
.w0_c00120{width:650.646400pt;}
.w1_c00120{width:650.666667pt;}
.x0_c00120{left:0.000000pt;}
.xd_c00120{left:41.235733pt;}
.xc_c00120{left:42.235733pt;}
.x9_c00120{left:43.169067pt;}
.x2_c00120{left:44.169067pt;}
.x14_c00120{left:46.035733pt;}
.x13_c00120{left:59.502400pt;}
.xe_c00120{left:70.369067pt;}
.xa_c00120{left:71.635733pt;}
.x7_c00120{left:73.235733pt;}
.xb_c00120{left:129.902400pt;}
.x8_c00120{left:134.369067pt;}
.x4_c00120{left:136.969067pt;}
.xf_c00120{left:186.235733pt;}
.x1_c00120{left:232.969067pt;}
.x10_c00120{left:250.235733pt;}
.x11_c00120{left:263.635733pt;}
.x12_c00120{left:328.635733pt;}
.x5_c00120{left:337.902400pt;}
.x6_c00120{left:432.969067pt;}
.x3_c00120{left:566.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_687e011a0f507e2d14d7afa7.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00121;src:url('chunks/assets/font_8dc342cfa61b11dbd5517d90.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00121;src:url('chunks/assets/font_b2bcfb83a88e66fee0ebfb81.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00121;src:url('chunks/assets/font_bea8d18ec85c32d66447a5ed.woff2')format("woff");}.ff4_c00121{font-family:ff4_c00121;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00121{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m15_c00121{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m18_c00121{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m10_c00121{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m0_c00121{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m21_c00121{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m20_c00121{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8_c00121{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m22_c00121{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me_c00121{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3_c00121{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c00121{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb_c00121{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.md_c00121{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4_c00121{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c00121{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c00121{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00121{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c00121{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m9_c00121{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00121{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00121{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c00121{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c00121{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00121{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00121{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16_c00121{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00121{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00121{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00121{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m24_c00121{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00121{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m23_c00121{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c00121{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m25_c00121{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m13_c00121{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m19_c00121{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1_c00121{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00121{color:transparent;}
.fs1_c00121{font-size:60.000000px;}
.fs2_c00121{font-size:66.000000px;}
.fs0_c00121{font-size:78.000000px;}
.fs3_c00121{font-size:84.000000px;}
.y0_c00121{bottom:0.000000px;}
.y51_c00121{bottom:97.785000px;}
.y50_c00121{bottom:104.535000px;}
.y4f_c00121{bottom:107.385000px;}
.y4d_c00121{bottom:113.250000px;}
.y4e_c00121{bottom:114.660000px;}
.y4c_c00121{bottom:118.260000px;}
.y4b_c00121{bottom:126.885000px;}
.y4a_c00121{bottom:143.085000px;}
.y49_c00121{bottom:157.500000px;}
.y48_c00121{bottom:162.885000px;}
.y47_c00121{bottom:178.335000px;}
.y46_c00121{bottom:186.285000px;}
.y44_c00121{bottom:200.010000px;}
.y45_c00121{bottom:200.310000px;}
.y43_c00121{bottom:206.085000px;}
.y42_c00121{bottom:225.885000px;}
.y41_c00121{bottom:252.585000px;}
.y40_c00121{bottom:273.060000px;}
.y3f_c00121{bottom:293.910000px;}
.y3e_c00121{bottom:307.650000px;}
.y3d_c00121{bottom:310.875000px;}
.y3c_c00121{bottom:312.285000px;}
.y3b_c00121{bottom:314.835000px;}
.y3a_c00121{bottom:317.685000px;}
.y39_c00121{bottom:335.685000px;}
.y38_c00121{bottom:353.685000px;}
.y37_c00121{bottom:358.035000px;}
.y36_c00121{bottom:378.150000px;}
.y35_c00121{bottom:397.650000px;}
.y34_c00121{bottom:401.250000px;}
.y33_c00121{bottom:417.060000px;}
.y32_c00121{bottom:417.750000px;}
.y31_c00121{bottom:418.875000px;}
.y30_c00121{bottom:419.910000px;}
.y2f_c00121{bottom:421.710000px;}
.y2e_c00121{bottom:441.885000px;}
.y2d_c00121{bottom:443.685000px;}
.y2c_c00121{bottom:460.635000px;}
.y2b_c00121{bottom:461.685000px;}
.y2a_c00121{bottom:462.375000px;}
.y29_c00121{bottom:463.875000px;}
.y28_c00121{bottom:484.710000px;}
.y27_c00121{bottom:504.885000px;}
.y26_c00121{bottom:505.635000px;}
.y25_c00121{bottom:506.310000px;}
.y24_c00121{bottom:506.385000px;}
.y23_c00121{bottom:527.625000px;}
.y21_c00121{bottom:527.910000px;}
.y22_c00121{bottom:528.000000px;}
.y20_c00121{bottom:549.135000px;}
.y1f_c00121{bottom:549.210000px;}
.y1d_c00121{bottom:570.000000px;}
.y1c_c00121{bottom:570.060000px;}
.y1e_c00121{bottom:570.750000px;}
.y1b_c00121{bottom:592.410000px;}
.y1a_c00121{bottom:613.260000px;}
.y19_c00121{bottom:634.185000px;}
.y18_c00121{bottom:656.085000px;}
.y17_c00121{bottom:677.685000px;}
.y16_c00121{bottom:700.035000px;}
.y15_c00121{bottom:763.710000px;}
.y14_c00121{bottom:841.875000px;}
.y13_c00121{bottom:868.875000px;}
.y12_c00121{bottom:889.800000px;}
.yf_c00121{bottom:904.125000px;}
.y10_c00121{bottom:907.800000px;}
.y11_c00121{bottom:914.625000px;}
.ye_c00121{bottom:931.500000px;}
.yc_c00121{bottom:943.425000px;}
.yd_c00121{bottom:954.210000px;}
.ya_c00121{bottom:972.585000px;}
.yb_c00121{bottom:979.335000px;}
.y9_c00121{bottom:995.175000px;}
.y8_c00121{bottom:1015.710000px;}
.y4_c00121{bottom:1017.900000px;}
.y5_c00121{bottom:1029.060000px;}
.y6_c00121{bottom:1034.835000px;}
.y7_c00121{bottom:1042.335000px;}
.y1_c00121{bottom:1081.560000px;}
.y3_c00121{bottom:1092.750000px;}
.y2_c00121{bottom:1097.250000px;}
.h2_c00121{height:58.886719px;}
.h3_c00121{height:60.468750px;}
.h5_c00121{height:64.775391px;}
.h6_c00121{height:66.515625px;}
.h4_c00121{height:76.514648px;}
.h1_c00121{height:76.552734px;}
.h7_c00121{height:82.400391px;}
.h0_c00121{height:1174.500000px;}
.w0_c00121{width:731.977200px;}
.w1_c00121{width:732.000000px;}
.x0_c00121{left:0.000000px;}
.xf_c00121{left:55.390200px;}
.x1e_c00121{left:56.515200px;}
.x4_c00121{left:58.315200px;}
.x8_c00121{left:59.740200px;}
.x11_c00121{left:75.550200px;}
.x10_c00121{left:76.990200px;}
.x2b_c00121{left:78.490200px;}
.x1_c00121{left:79.540200px;}
.x14_c00121{left:84.925200px;}
.xe_c00121{left:86.365200px;}
.x22_c00121{left:88.540200px;}
.x12_c00121{left:90.715200px;}
.x13_c00121{left:96.115200px;}
.x28_c00121{left:98.290200px;}
.x5_c00121{left:100.090200px;}
.x2_c00121{left:105.490200px;}
.xa_c00121{left:142.165200px;}
.x31_c00121{left:183.190200px;}
.x32_c00121{left:194.740200px;}
.x27_c00121{left:209.140200px;}
.x23_c00121{left:210.565200px;}
.xb_c00121{left:233.290200px;}
.x17_c00121{left:246.940200px;}
.x18_c00121{left:252.715200px;}
.x3_c00121{left:274.990200px;}
.xc_c00121{left:285.790200px;}
.xd_c00121{left:286.915200px;}
.x6_c00121{left:291.565200px;}
.x19_c00121{left:308.140200px;}
.x29_c00121{left:313.915200px;}
.x1a_c00121{left:323.290200px;}
.x1b_c00121{left:329.365200px;}
.x1c_c00121{left:336.565200px;}
.x7_c00121{left:355.315200px;}
.x1f_c00121{left:386.275200px;}
.x20_c00121{left:392.365200px;}
.x24_c00121{left:403.900200px;}
.x2a_c00121{left:436.690200px;}
.x25_c00121{left:447.490200px;}
.x15_c00121{left:482.365200px;}
.x2e_c00121{left:489.940200px;}
.x16_c00121{left:506.890200px;}
.x26_c00121{left:551.515200px;}
.x2f_c00121{left:560.140200px;}
.x2c_c00121{left:597.565200px;}
.x9_c00121{left:607.990200px;}
.x21_c00121{left:611.965200px;}
.x2d_c00121{left:622.090200px;}
.x30_c00121{left:636.790200px;}
.x1d_c00121{left:646.165200px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls0_c00121{letter-spacing:0.000000pt;}
.ws0_c00121{word-spacing:0.000000pt;}
.fs1_c00121{font-size:53.333333pt;}
.fs2_c00121{font-size:58.666667pt;}
.fs0_c00121{font-size:69.333333pt;}
.fs3_c00121{font-size:74.666667pt;}
.y0_c00121{bottom:0.000000pt;}
.y51_c00121{bottom:86.920000pt;}
.y50_c00121{bottom:92.920000pt;}
.y4f_c00121{bottom:95.453333pt;}
.y4d_c00121{bottom:100.666667pt;}
.y4e_c00121{bottom:101.920000pt;}
.y4c_c00121{bottom:105.120000pt;}
.y4b_c00121{bottom:112.786667pt;}
.y4a_c00121{bottom:127.186667pt;}
.y49_c00121{bottom:140.000000pt;}
.y48_c00121{bottom:144.786667pt;}
.y47_c00121{bottom:158.520000pt;}
.y46_c00121{bottom:165.586667pt;}
.y44_c00121{bottom:177.786667pt;}
.y45_c00121{bottom:178.053333pt;}
.y43_c00121{bottom:183.186667pt;}
.y42_c00121{bottom:200.786667pt;}
.y41_c00121{bottom:224.520000pt;}
.y40_c00121{bottom:242.720000pt;}
.y3f_c00121{bottom:261.253333pt;}
.y3e_c00121{bottom:273.466667pt;}
.y3d_c00121{bottom:276.333333pt;}
.y3c_c00121{bottom:277.586667pt;}
.y3b_c00121{bottom:279.853333pt;}
.y3a_c00121{bottom:282.386667pt;}
.y39_c00121{bottom:298.386667pt;}
.y38_c00121{bottom:314.386667pt;}
.y37_c00121{bottom:318.253333pt;}
.y36_c00121{bottom:336.133333pt;}
.y35_c00121{bottom:353.466667pt;}
.y34_c00121{bottom:356.666667pt;}
.y33_c00121{bottom:370.720000pt;}
.y32_c00121{bottom:371.333333pt;}
.y31_c00121{bottom:372.333333pt;}
.y30_c00121{bottom:373.253333pt;}
.y2f_c00121{bottom:374.853333pt;}
.y2e_c00121{bottom:392.786667pt;}
.y2d_c00121{bottom:394.386667pt;}
.y2c_c00121{bottom:409.453333pt;}
.y2b_c00121{bottom:410.386667pt;}
.y2a_c00121{bottom:411.000000pt;}
.y29_c00121{bottom:412.333333pt;}
.y28_c00121{bottom:430.853333pt;}
.y27_c00121{bottom:448.786667pt;}
.y26_c00121{bottom:449.453333pt;}
.y25_c00121{bottom:450.053333pt;}
.y24_c00121{bottom:450.120000pt;}
.y23_c00121{bottom:469.000000pt;}
.y21_c00121{bottom:469.253333pt;}
.y22_c00121{bottom:469.333333pt;}
.y20_c00121{bottom:488.120000pt;}
.y1f_c00121{bottom:488.186667pt;}
.y1d_c00121{bottom:506.666667pt;}
.y1c_c00121{bottom:506.720000pt;}
.y1e_c00121{bottom:507.333333pt;}
.y1b_c00121{bottom:526.586667pt;}
.y1a_c00121{bottom:545.120000pt;}
.y19_c00121{bottom:563.720000pt;}
.y18_c00121{bottom:583.186667pt;}
.y17_c00121{bottom:602.386667pt;}
.y16_c00121{bottom:622.253333pt;}
.y15_c00121{bottom:678.853333pt;}
.y14_c00121{bottom:748.333333pt;}
.y13_c00121{bottom:772.333333pt;}
.y12_c00121{bottom:790.933333pt;}
.yf_c00121{bottom:803.666667pt;}
.y10_c00121{bottom:806.933333pt;}
.y11_c00121{bottom:813.000000pt;}
.ye_c00121{bottom:828.000000pt;}
.yc_c00121{bottom:838.600000pt;}
.yd_c00121{bottom:848.186667pt;}
.ya_c00121{bottom:864.520000pt;}
.yb_c00121{bottom:870.520000pt;}
.y9_c00121{bottom:884.600000pt;}
.y8_c00121{bottom:902.853333pt;}
.y4_c00121{bottom:904.800000pt;}
.y5_c00121{bottom:914.720000pt;}
.y6_c00121{bottom:919.853333pt;}
.y7_c00121{bottom:926.520000pt;}
.y1_c00121{bottom:961.386667pt;}
.y3_c00121{bottom:971.333333pt;}
.y2_c00121{bottom:975.333333pt;}
.h2_c00121{height:52.343750pt;}
.h3_c00121{height:53.750000pt;}
.h5_c00121{height:57.578125pt;}
.h6_c00121{height:59.125000pt;}
.h4_c00121{height:68.013021pt;}
.h1_c00121{height:68.046875pt;}
.h7_c00121{height:73.244792pt;}
.h0_c00121{height:1044.000000pt;}
.w0_c00121{width:650.646400pt;}
.w1_c00121{width:650.666667pt;}
.x0_c00121{left:0.000000pt;}
.xf_c00121{left:49.235733pt;}
.x1e_c00121{left:50.235733pt;}
.x4_c00121{left:51.835733pt;}
.x8_c00121{left:53.102400pt;}
.x11_c00121{left:67.155733pt;}
.x10_c00121{left:68.435733pt;}
.x2b_c00121{left:69.769067pt;}
.x1_c00121{left:70.702400pt;}
.x14_c00121{left:75.489067pt;}
.xe_c00121{left:76.769067pt;}
.x22_c00121{left:78.702400pt;}
.x12_c00121{left:80.635733pt;}
.x13_c00121{left:85.435733pt;}
.x28_c00121{left:87.369067pt;}
.x5_c00121{left:88.969067pt;}
.x2_c00121{left:93.769067pt;}
.xa_c00121{left:126.369067pt;}
.x31_c00121{left:162.835733pt;}
.x32_c00121{left:173.102400pt;}
.x27_c00121{left:185.902400pt;}
.x23_c00121{left:187.169067pt;}
.xb_c00121{left:207.369067pt;}
.x17_c00121{left:219.502400pt;}
.x18_c00121{left:224.635733pt;}
.x3_c00121{left:244.435733pt;}
.xc_c00121{left:254.035733pt;}
.xd_c00121{left:255.035733pt;}
.x6_c00121{left:259.169067pt;}
.x19_c00121{left:273.902400pt;}
.x29_c00121{left:279.035733pt;}
.x1a_c00121{left:287.369067pt;}
.x1b_c00121{left:292.769067pt;}
.x1c_c00121{left:299.169067pt;}
.x7_c00121{left:315.835733pt;}
.x1f_c00121{left:343.355733pt;}
.x20_c00121{left:348.769067pt;}
.x24_c00121{left:359.022400pt;}
.x2a_c00121{left:388.169067pt;}
.x25_c00121{left:397.769067pt;}
.x15_c00121{left:428.769067pt;}
.x2e_c00121{left:435.502400pt;}
.x16_c00121{left:450.569067pt;}
.x26_c00121{left:490.235733pt;}
.x2f_c00121{left:497.902400pt;}
.x2c_c00121{left:531.169067pt;}
.x9_c00121{left:540.435733pt;}
.x21_c00121{left:543.969067pt;}
.x2d_c00121{left:552.969067pt;}
.x30_c00121{left:566.035733pt;}
.x1d_c00121{left:574.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_32daa6aef29b2aab0c0f36cc.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00122;src:url('chunks/assets/font_4a9f7ddde8f61ca7c3502b54.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00122;src:url('chunks/assets/font_832facac187a0d118acca0db.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00122;src:url('chunks/assets/font_5b41a6883070025b2bc11c2c.woff2')format("woff");}.ff4_c00122{font-family:ff4_c00122;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00122{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00122{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m13_c00122{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m21_c00122{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m14_c00122{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.m5_c00122{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m24_c00122{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c00122{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c00122{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00122{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c00122{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00122{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c00122{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10_c00122{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00122{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb_c00122{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me_c00122{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12_c00122{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00122{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c00122{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m20_c00122{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00122{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m17_c00122{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c00122{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c00122{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m18_c00122{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00122{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00122{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00122{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00122{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m22_c00122{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m19_c00122{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00122{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m23_c00122{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mc_c00122{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2_c00122{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.ls0_c00122{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00122{word-spacing:0.000000px;}
.fc0_c00122{color:transparent;}
.fs1_c00122{font-size:60.000000px;}
.fs0_c00122{font-size:66.000000px;}
.fs3_c00122{font-size:72.000000px;}
.fs2_c00122{font-size:84.000000px;}
.y0_c00122{bottom:0.000000px;}
.y38_c00122{bottom:79.335000px;}
.y31_c00122{bottom:96.585000px;}
.y32_c00122{bottom:96.660000px;}
.y33_c00122{bottom:97.710000px;}
.y34_c00122{bottom:98.085000px;}
.y35_c00122{bottom:98.460000px;}
.y36_c00122{bottom:99.210000px;}
.y37_c00122{bottom:99.885000px;}
.y2f_c00122{bottom:113.910000px;}
.y30_c00122{bottom:115.335000px;}
.y2d_c00122{bottom:130.125000px;}
.y2c_c00122{bottom:130.185000px;}
.y2e_c00122{bottom:130.500000px;}
.y2b_c00122{bottom:147.000000px;}
.y45_c00122{bottom:149.910000px;}
.y2a_c00122{bottom:163.560000px;}
.y44_c00122{bottom:166.500000px;}
.y29_c00122{bottom:179.760000px;}
.y28_c00122{bottom:180.135000px;}
.y43_c00122{bottom:182.685000px;}
.y27_c00122{bottom:226.635000px;}
.y26_c00122{bottom:248.535000px;}
.y25_c00122{bottom:269.835000px;}
.y24_c00122{bottom:291.435000px;}
.y23_c00122{bottom:312.660000px;}
.y22_c00122{bottom:333.900000px;}
.y1f_c00122{bottom:354.435000px;}
.y20_c00122{bottom:355.125000px;}
.y21_c00122{bottom:356.250000px;}
.y1e_c00122{bottom:376.335000px;}
.y1c_c00122{bottom:396.900000px;}
.y1d_c00122{bottom:397.650000px;}
.y19_c00122{bottom:418.125000px;}
.y1a_c00122{bottom:418.875000px;}
.y1b_c00122{bottom:419.910000px;}
.y18_c00122{bottom:440.460000px;}
.y16_c00122{bottom:461.685000px;}
.y17_c00122{bottom:462.375000px;}
.y15_c00122{bottom:483.660000px;}
.y14_c00122{bottom:505.635000px;}
.y13_c00122{bottom:527.160000px;}
.y12_c00122{bottom:548.460000px;}
.y11_c00122{bottom:570.060000px;}
.y10_c00122{bottom:591.660000px;}
.yf_c00122{bottom:613.260000px;}
.ye_c00122{bottom:634.875000px;}
.yd_c00122{bottom:656.835000px;}
.yc_c00122{bottom:677.685000px;}
.yb_c00122{bottom:678.060000px;}
.ya_c00122{bottom:700.035000px;}
.y9_c00122{bottom:720.885000px;}
.y8_c00122{bottom:742.875000px;}
.y7_c00122{bottom:764.085000px;}
.y6_c00122{bottom:786.060000px;}
.y5_c00122{bottom:807.300000px;}
.y42_c00122{bottom:829.650000px;}
.y41_c00122{bottom:829.935000px;}
.y40_c00122{bottom:851.250000px;}
.y3f_c00122{bottom:872.400000px;}
.y3e_c00122{bottom:872.460000px;}
.y3d_c00122{bottom:893.310000px;}
.y3c_c00122{bottom:911.310000px;}
.y3b_c00122{bottom:913.125000px;}
.y3a_c00122{bottom:913.500000px;}
.y39_c00122{bottom:914.925000px;}
.y4_c00122{bottom:969.300000px;}
.y3_c00122{bottom:1076.625000px;}
.y1_c00122{bottom:1081.275000px;}
.y2_c00122{bottom:1090.800000px;}
.h4_c00122{height:58.886719px;}
.h2_c00122{height:60.468750px;}
.h7_c00122{height:64.743164px;}
.h8_c00122{height:64.775391px;}
.h1_c00122{height:66.515625px;}
.h5_c00122{height:70.664062px;}
.h6_c00122{height:82.400391px;}
.h3_c00122{height:82.441406px;}
.h0_c00122{height:1174.500000px;}
.w0_c00122{width:731.977200px;}
.w1_c00122{width:732.000000px;}
.x0_c00122{left:0.000000px;}
.x7_c00122{left:45.715200px;}
.x6_c00122{left:46.765200px;}
.xf_c00122{left:48.190200px;}
.x15_c00122{left:49.990200px;}
.x18_c00122{left:51.115200px;}
.x1a_c00122{left:52.915200px;}
.x1d_c00122{left:53.965200px;}
.xd_c00122{left:68.740200px;}
.xc_c00122{left:69.790200px;}
.x5_c00122{left:78.790200px;}
.xe_c00122{left:79.915200px;}
.x14_c00122{left:84.925200px;}
.x19_c00122{left:106.165200px;}
.x1c_c00122{left:107.965200px;}
.x2b_c00122{left:112.315200px;}
.x1e_c00122{left:123.490200px;}
.x1f_c00122{left:139.315200px;}
.x28_c00122{left:152.290200px;}
.x8_c00122{left:155.890200px;}
.x29_c00122{left:173.875200px;}
.x9_c00122{left:177.490200px;}
.x20_c00122{left:192.940200px;}
.xa_c00122{left:197.590200px;}
.x2a_c00122{left:203.365200px;}
.xb_c00122{left:205.540200px;}
.x10_c00122{left:224.590200px;}
.x1b_c00122{left:244.765200px;}
.x1_c00122{left:263.515200px;}
.x21_c00122{left:283.690200px;}
.x2_c00122{left:289.390200px;}
.x13_c00122{left:308.515200px;}
.x22_c00122{left:315.340200px;}
.x11_c00122{left:364.990200px;}
.x16_c00122{left:375.490200px;}
.x23_c00122{left:383.740200px;}
.x24_c00122{left:411.775200px;}
.x3_c00122{left:457.165200px;}
.x17_c00122{left:471.940200px;}
.x2d_c00122{left:474.115200px;}
.x2c_c00122{left:475.540200px;}
.x12_c00122{left:489.190200px;}
.x26_c00122{left:512.965200px;}
.x27_c00122{left:555.790200px;}
.x25_c00122{left:580.315200px;}
.x4_c00122{left:618.490200px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls0_c00122{letter-spacing:0.000000pt;}
.ws0_c00122{word-spacing:0.000000pt;}
.fs1_c00122{font-size:53.333333pt;}
.fs0_c00122{font-size:58.666667pt;}
.fs3_c00122{font-size:64.000000pt;}
.fs2_c00122{font-size:74.666667pt;}
.y0_c00122{bottom:0.000000pt;}
.y38_c00122{bottom:70.520000pt;}
.y31_c00122{bottom:85.853333pt;}
.y32_c00122{bottom:85.920000pt;}
.y33_c00122{bottom:86.853333pt;}
.y34_c00122{bottom:87.186667pt;}
.y35_c00122{bottom:87.520000pt;}
.y36_c00122{bottom:88.186667pt;}
.y37_c00122{bottom:88.786667pt;}
.y2f_c00122{bottom:101.253333pt;}
.y30_c00122{bottom:102.520000pt;}
.y2d_c00122{bottom:115.666667pt;}
.y2c_c00122{bottom:115.720000pt;}
.y2e_c00122{bottom:116.000000pt;}
.y2b_c00122{bottom:130.666667pt;}
.y45_c00122{bottom:133.253333pt;}
.y2a_c00122{bottom:145.386667pt;}
.y44_c00122{bottom:148.000000pt;}
.y29_c00122{bottom:159.786667pt;}
.y28_c00122{bottom:160.120000pt;}
.y43_c00122{bottom:162.386667pt;}
.y27_c00122{bottom:201.453333pt;}
.y26_c00122{bottom:220.920000pt;}
.y25_c00122{bottom:239.853333pt;}
.y24_c00122{bottom:259.053333pt;}
.y23_c00122{bottom:277.920000pt;}
.y22_c00122{bottom:296.800000pt;}
.y1f_c00122{bottom:315.053333pt;}
.y20_c00122{bottom:315.666667pt;}
.y21_c00122{bottom:316.666667pt;}
.y1e_c00122{bottom:334.520000pt;}
.y1c_c00122{bottom:352.800000pt;}
.y1d_c00122{bottom:353.466667pt;}
.y19_c00122{bottom:371.666667pt;}
.y1a_c00122{bottom:372.333333pt;}
.y1b_c00122{bottom:373.253333pt;}
.y18_c00122{bottom:391.520000pt;}
.y16_c00122{bottom:410.386667pt;}
.y17_c00122{bottom:411.000000pt;}
.y15_c00122{bottom:429.920000pt;}
.y14_c00122{bottom:449.453333pt;}
.y13_c00122{bottom:468.586667pt;}
.y12_c00122{bottom:487.520000pt;}
.y11_c00122{bottom:506.720000pt;}
.y10_c00122{bottom:525.920000pt;}
.yf_c00122{bottom:545.120000pt;}
.ye_c00122{bottom:564.333333pt;}
.yd_c00122{bottom:583.853333pt;}
.yc_c00122{bottom:602.386667pt;}
.yb_c00122{bottom:602.720000pt;}
.ya_c00122{bottom:622.253333pt;}
.y9_c00122{bottom:640.786667pt;}
.y8_c00122{bottom:660.333333pt;}
.y7_c00122{bottom:679.186667pt;}
.y6_c00122{bottom:698.720000pt;}
.y5_c00122{bottom:717.600000pt;}
.y42_c00122{bottom:737.466667pt;}
.y41_c00122{bottom:737.720000pt;}
.y40_c00122{bottom:756.666667pt;}
.y3f_c00122{bottom:775.466667pt;}
.y3e_c00122{bottom:775.520000pt;}
.y3d_c00122{bottom:794.053333pt;}
.y3c_c00122{bottom:810.053333pt;}
.y3b_c00122{bottom:811.666667pt;}
.y3a_c00122{bottom:812.000000pt;}
.y39_c00122{bottom:813.266667pt;}
.y4_c00122{bottom:861.600000pt;}
.y3_c00122{bottom:957.000000pt;}
.y1_c00122{bottom:961.133333pt;}
.y2_c00122{bottom:969.600000pt;}
.h4_c00122{height:52.343750pt;}
.h2_c00122{height:53.750000pt;}
.h7_c00122{height:57.549479pt;}
.h8_c00122{height:57.578125pt;}
.h1_c00122{height:59.125000pt;}
.h5_c00122{height:62.812500pt;}
.h6_c00122{height:73.244792pt;}
.h3_c00122{height:73.281250pt;}
.h0_c00122{height:1044.000000pt;}
.w0_c00122{width:650.646400pt;}
.w1_c00122{width:650.666667pt;}
.x0_c00122{left:0.000000pt;}
.x7_c00122{left:40.635733pt;}
.x6_c00122{left:41.569067pt;}
.xf_c00122{left:42.835733pt;}
.x15_c00122{left:44.435733pt;}
.x18_c00122{left:45.435733pt;}
.x1a_c00122{left:47.035733pt;}
.x1d_c00122{left:47.969067pt;}
.xd_c00122{left:61.102400pt;}
.xc_c00122{left:62.035733pt;}
.x5_c00122{left:70.035733pt;}
.xe_c00122{left:71.035733pt;}
.x14_c00122{left:75.489067pt;}
.x19_c00122{left:94.369067pt;}
.x1c_c00122{left:95.969067pt;}
.x2b_c00122{left:99.835733pt;}
.x1e_c00122{left:109.769067pt;}
.x1f_c00122{left:123.835733pt;}
.x28_c00122{left:135.369067pt;}
.x8_c00122{left:138.569067pt;}
.x29_c00122{left:154.555733pt;}
.x9_c00122{left:157.769067pt;}
.x20_c00122{left:171.502400pt;}
.xa_c00122{left:175.635733pt;}
.x2a_c00122{left:180.769067pt;}
.xb_c00122{left:182.702400pt;}
.x10_c00122{left:199.635733pt;}
.x1b_c00122{left:217.569067pt;}
.x1_c00122{left:234.235733pt;}
.x21_c00122{left:252.169067pt;}
.x2_c00122{left:257.235733pt;}
.x13_c00122{left:274.235733pt;}
.x22_c00122{left:280.302400pt;}
.x11_c00122{left:324.435733pt;}
.x16_c00122{left:333.769067pt;}
.x23_c00122{left:341.102400pt;}
.x24_c00122{left:366.022400pt;}
.x3_c00122{left:406.369067pt;}
.x17_c00122{left:419.502400pt;}
.x2d_c00122{left:421.435733pt;}
.x2c_c00122{left:422.702400pt;}
.x12_c00122{left:434.835733pt;}
.x26_c00122{left:455.969067pt;}
.x27_c00122{left:494.035733pt;}
.x25_c00122{left:515.835733pt;}
.x4_c00122{left:549.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0116af239cb0a5ec7b8f37d2.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00123;src:url('chunks/assets/font_7bd44a3fc4d89720caf8b687.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00123;src:url('chunks/assets/font_4bf4c2d5010804572d4c1537.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00123;src:url('chunks/assets/font_2e0987ef56ddca953123df1f.woff2')format("woff");}.ff4_c00123{font-family:ff4_c00123;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14_c00123{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m16_c00123{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m21_c00123{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00123{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m13_c00123{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m15_c00123{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00123{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md_c00123{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00123{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc_c00123{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m10_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);}
.m19_c00123{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c00123{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m20_c00123{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1_c00123{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.ma_c00123{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c00123{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00123{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00123{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c00123{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c00123{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00123{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c00123{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00123{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c00123{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00123{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00123{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c00123{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c00123{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00123{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m22_c00123{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m23_c00123{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00123{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c00123{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3_c00123{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m17_c00123{transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.910000,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.000000px;}
.fc0_c00123{color:transparent;}
.fs1_c00123{font-size:54.000000px;}
.fs0_c00123{font-size:60.000000px;}
.fs3_c00123{font-size:66.000000px;}
.fs5_c00123{font-size:72.000000px;}
.fs2_c00123{font-size:78.000000px;}
.fs4_c00123{font-size:84.000000px;}
.y0_c00123{bottom:0.000000px;}
.y45_c00123{bottom:82.260000px;}
.y44_c00123{bottom:87.660000px;}
.y43_c00123{bottom:96.285000px;}
.y42_c00123{bottom:100.935000px;}
.y41_c00123{bottom:104.160000px;}
.y40_c00123{bottom:110.310000px;}
.y3f_c00123{bottom:127.260000px;}
.y3e_c00123{bottom:138.435000px;}
.y3d_c00123{bottom:153.210000px;}
.y3c_c00123{bottom:173.685000px;}
.y3b_c00123{bottom:184.500000px;}
.y3a_c00123{bottom:185.625000px;}
.y39_c00123{bottom:196.035000px;}
.y38_c00123{bottom:213.285000px;}
.y37_c00123{bottom:219.435000px;}
.y36_c00123{bottom:235.260000px;}
.y35_c00123{bottom:240.285000px;}
.y34_c00123{bottom:261.210000px;}
.y33_c00123{bottom:280.650000px;}
.y32_c00123{bottom:288.210000px;}
.y31_c00123{bottom:289.650000px;}
.y30_c00123{bottom:309.810000px;}
.y2f_c00123{bottom:323.085000px;}
.y2e_c00123{bottom:327.435000px;}
.y2d_c00123{bottom:328.875000px;}
.y2c_c00123{bottom:331.710000px;}
.y2a_c00123{bottom:344.025000px;}
.y2b_c00123{bottom:344.310000px;}
.y29_c00123{bottom:348.000000px;}
.y28_c00123{bottom:369.210000px;}
.y27_c00123{bottom:390.435000px;}
.y26_c00123{bottom:412.710000px;}
.y25_c00123{bottom:433.935000px;}
.y23_c00123{bottom:453.750000px;}
.y24_c00123{bottom:454.500000px;}
.y22_c00123{bottom:455.910000px;}
.y21_c00123{bottom:475.335000px;}
.y20_c00123{bottom:476.085000px;}
.y1f_c00123{bottom:477.885000px;}
.y1e_c00123{bottom:478.260000px;}
.y1d_c00123{bottom:478.935000px;}
.y1c_c00123{bottom:499.500000px;}
.y1b_c00123{bottom:500.535000px;}
.y1a_c00123{bottom:521.085000px;}
.y19_c00123{bottom:521.760000px;}
.y18_c00123{bottom:542.685000px;}
.y17_c00123{bottom:563.535000px;}
.y16_c00123{bottom:584.760000px;}
.y15_c00123{bottom:607.125000px;}
.y14_c00123{bottom:629.085000px;}
.y13_c00123{bottom:702.510000px;}
.y12_c00123{bottom:774.210000px;}
.y10_c00123{bottom:800.835000px;}
.y11_c00123{bottom:805.500000px;}
.yf_c00123{bottom:823.185000px;}
.ye_c00123{bottom:840.060000px;}
.yd_c00123{bottom:865.650000px;}
.yc_c00123{bottom:886.875000px;}
.yb_c00123{bottom:908.085000px;}
.ya_c00123{bottom:928.650000px;}
.y9_c00123{bottom:949.875000px;}
.y8_c00123{bottom:971.460000px;}
.y7_c00123{bottom:991.935000px;}
.y6_c00123{bottom:1012.800000px;}
.y2_c00123{bottom:1023.300000px;}
.y3_c00123{bottom:1026.525000px;}
.y4_c00123{bottom:1027.275000px;}
.y5_c00123{bottom:1037.400000px;}
.y46_c00123{bottom:1078.710000px;}
.y1_c00123{bottom:1090.275000px;}
.h2_c00123{height:52.998047px;}
.h1_c00123{height:58.886719px;}
.h9_c00123{height:62.578125px;}
.h5_c00123{height:64.775391px;}
.h7_c00123{height:66.515625px;}
.h8_c00123{height:70.628906px;}
.ha_c00123{height:72.562500px;}
.h3_c00123{height:76.552734px;}
.h4_c00123{height:78.609375px;}
.h6_c00123{height:82.441406px;}
.h0_c00123{height:1174.500000px;}
.w0_c00123{width:731.977200px;}
.w1_c00123{width:732.000000px;}
.x0_c00123{left:0.000000px;}
.xd_c00123{left:48.940200px;}
.x9_c00123{left:51.115200px;}
.x6_c00123{left:52.165200px;}
.x7_c00123{left:53.290200px;}
.xf_c00123{left:70.540200px;}
.x11_c00123{left:72.340200px;}
.xc_c00123{left:79.540200px;}
.x8_c00123{left:80.965200px;}
.x2_c00123{left:82.090200px;}
.x12_c00123{left:85.990200px;}
.x24_c00123{left:88.165200px;}
.x20_c00123{left:89.590200px;}
.x13_c00123{left:91.090200px;}
.x21_c00123{left:99.340200px;}
.x10_c00123{left:111.190200px;}
.x1c_c00123{left:133.540200px;}
.x3_c00123{left:146.140200px;}
.x14_c00123{left:169.165200px;}
.x1e_c00123{left:176.365200px;}
.x4_c00123{left:202.690200px;}
.x5_c00123{left:209.890200px;}
.xb_c00123{left:240.115200px;}
.x15_c00123{left:244.390200px;}
.x16_c00123{left:256.690200px;}
.x25_c00123{left:259.915200px;}
.x1_c00123{left:267.790200px;}
.x1d_c00123{left:276.790200px;}
.x22_c00123{left:318.940200px;}
.x26_c00123{left:461.515200px;}
.x1a_c00123{left:553.315200px;}
.xe_c00123{left:572.365200px;}
.x1b_c00123{left:574.540200px;}
.x23_c00123{left:601.165200px;}
.xa_c00123{left:602.290200px;}
.x18_c00123{left:605.140200px;}
.x1f_c00123{left:609.115200px;}
.x19_c00123{left:643.315200px;}
.x17_c00123{left:648.340200px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls0_c00123{letter-spacing:0.000000pt;}
.ws0_c00123{word-spacing:0.000000pt;}
.fs1_c00123{font-size:48.000000pt;}
.fs0_c00123{font-size:53.333333pt;}
.fs3_c00123{font-size:58.666667pt;}
.fs5_c00123{font-size:64.000000pt;}
.fs2_c00123{font-size:69.333333pt;}
.fs4_c00123{font-size:74.666667pt;}
.y0_c00123{bottom:0.000000pt;}
.y45_c00123{bottom:73.120000pt;}
.y44_c00123{bottom:77.920000pt;}
.y43_c00123{bottom:85.586667pt;}
.y42_c00123{bottom:89.720000pt;}
.y41_c00123{bottom:92.586667pt;}
.y40_c00123{bottom:98.053333pt;}
.y3f_c00123{bottom:113.120000pt;}
.y3e_c00123{bottom:123.053333pt;}
.y3d_c00123{bottom:136.186667pt;}
.y3c_c00123{bottom:154.386667pt;}
.y3b_c00123{bottom:164.000000pt;}
.y3a_c00123{bottom:165.000000pt;}
.y39_c00123{bottom:174.253333pt;}
.y38_c00123{bottom:189.586667pt;}
.y37_c00123{bottom:195.053333pt;}
.y36_c00123{bottom:209.120000pt;}
.y35_c00123{bottom:213.586667pt;}
.y34_c00123{bottom:232.186667pt;}
.y33_c00123{bottom:249.466667pt;}
.y32_c00123{bottom:256.186667pt;}
.y31_c00123{bottom:257.466667pt;}
.y30_c00123{bottom:275.386667pt;}
.y2f_c00123{bottom:287.186667pt;}
.y2e_c00123{bottom:291.053333pt;}
.y2d_c00123{bottom:292.333333pt;}
.y2c_c00123{bottom:294.853333pt;}
.y2a_c00123{bottom:305.800000pt;}
.y2b_c00123{bottom:306.053333pt;}
.y29_c00123{bottom:309.333333pt;}
.y28_c00123{bottom:328.186667pt;}
.y27_c00123{bottom:347.053333pt;}
.y26_c00123{bottom:366.853333pt;}
.y25_c00123{bottom:385.720000pt;}
.y23_c00123{bottom:403.333333pt;}
.y24_c00123{bottom:404.000000pt;}
.y22_c00123{bottom:405.253333pt;}
.y21_c00123{bottom:422.520000pt;}
.y20_c00123{bottom:423.186667pt;}
.y1f_c00123{bottom:424.786667pt;}
.y1e_c00123{bottom:425.120000pt;}
.y1d_c00123{bottom:425.720000pt;}
.y1c_c00123{bottom:444.000000pt;}
.y1b_c00123{bottom:444.920000pt;}
.y1a_c00123{bottom:463.186667pt;}
.y19_c00123{bottom:463.786667pt;}
.y18_c00123{bottom:482.386667pt;}
.y17_c00123{bottom:500.920000pt;}
.y16_c00123{bottom:519.786667pt;}
.y15_c00123{bottom:539.666667pt;}
.y14_c00123{bottom:559.186667pt;}
.y13_c00123{bottom:624.453333pt;}
.y12_c00123{bottom:688.186667pt;}
.y10_c00123{bottom:711.853333pt;}
.y11_c00123{bottom:716.000000pt;}
.yf_c00123{bottom:731.720000pt;}
.ye_c00123{bottom:746.720000pt;}
.yd_c00123{bottom:769.466667pt;}
.yc_c00123{bottom:788.333333pt;}
.yb_c00123{bottom:807.186667pt;}
.ya_c00123{bottom:825.466667pt;}
.y9_c00123{bottom:844.333333pt;}
.y8_c00123{bottom:863.520000pt;}
.y7_c00123{bottom:881.720000pt;}
.y6_c00123{bottom:900.266667pt;}
.y2_c00123{bottom:909.600000pt;}
.y3_c00123{bottom:912.466667pt;}
.y4_c00123{bottom:913.133333pt;}
.y5_c00123{bottom:922.133333pt;}
.y46_c00123{bottom:958.853333pt;}
.y1_c00123{bottom:969.133333pt;}
.h2_c00123{height:47.109375pt;}
.h1_c00123{height:52.343750pt;}
.h9_c00123{height:55.625000pt;}
.h5_c00123{height:57.578125pt;}
.h7_c00123{height:59.125000pt;}
.h8_c00123{height:62.781250pt;}
.ha_c00123{height:64.500000pt;}
.h3_c00123{height:68.046875pt;}
.h4_c00123{height:69.875000pt;}
.h6_c00123{height:73.281250pt;}
.h0_c00123{height:1044.000000pt;}
.w0_c00123{width:650.646400pt;}
.w1_c00123{width:650.666667pt;}
.x0_c00123{left:0.000000pt;}
.xd_c00123{left:43.502400pt;}
.x9_c00123{left:45.435733pt;}
.x6_c00123{left:46.369067pt;}
.x7_c00123{left:47.369067pt;}
.xf_c00123{left:62.702400pt;}
.x11_c00123{left:64.302400pt;}
.xc_c00123{left:70.702400pt;}
.x8_c00123{left:71.969067pt;}
.x2_c00123{left:72.969067pt;}
.x12_c00123{left:76.435733pt;}
.x24_c00123{left:78.369067pt;}
.x20_c00123{left:79.635733pt;}
.x13_c00123{left:80.969067pt;}
.x21_c00123{left:88.302400pt;}
.x10_c00123{left:98.835733pt;}
.x1c_c00123{left:118.702400pt;}
.x3_c00123{left:129.902400pt;}
.x14_c00123{left:150.369067pt;}
.x1e_c00123{left:156.769067pt;}
.x4_c00123{left:180.169067pt;}
.x5_c00123{left:186.569067pt;}
.xb_c00123{left:213.435733pt;}
.x15_c00123{left:217.235733pt;}
.x16_c00123{left:228.169067pt;}
.x25_c00123{left:231.035733pt;}
.x1_c00123{left:238.035733pt;}
.x1d_c00123{left:246.035733pt;}
.x22_c00123{left:283.502400pt;}
.x26_c00123{left:410.235733pt;}
.x1a_c00123{left:491.835733pt;}
.xe_c00123{left:508.769067pt;}
.x1b_c00123{left:510.702400pt;}
.x23_c00123{left:534.369067pt;}
.xa_c00123{left:535.369067pt;}
.x18_c00123{left:537.902400pt;}
.x1f_c00123{left:541.435733pt;}
.x19_c00123{left:571.835733pt;}
.x17_c00123{left:576.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c0741646c47796b179be47c.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00124;src:url('chunks/assets/font_75f1ebb723539cd8ab1befe4.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00124;src:url('chunks/assets/font_0ac4df5a8ef5e6a7ac0285c1.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00124;src:url('chunks/assets/font_69ad8a12b7f2cc99c0728177.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00124{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00124{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m10_c00124{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8_c00124{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md_c00124{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5_c00124{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c00124{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma_c00124{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4_c00124{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00124{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c00124{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c00124{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0_c00124{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me_c00124{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00124{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00124{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00124{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c00124{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00124{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c00124{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m19_c00124{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17_c00124{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00124{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m13_c00124{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00124{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m18_c00124{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c00124{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00124{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00124{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m9_c00124{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m1_c00124{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.v1_c00124{vertical-align:1.140000px;}
.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;}
}
.ws0_c00124{word-spacing:-15.000000px;}
.ws1_c00124{word-spacing:0.000000px;}
._0_c00124{width:6.332644px;}
.fc0_c00124{color:transparent;}
.fs3_c00124{font-size:36.000000px;}
.fs0_c00124{font-size:60.000000px;}
.fs1_c00124{font-size:66.000000px;}
.fs4_c00124{font-size:78.000000px;}
.fs2_c00124{font-size:84.000000px;}
.y0_c00124{bottom:0.000000px;}
.y36_c00124{bottom:42.960000px;}
.y35_c00124{bottom:154.260000px;}
.y34_c00124{bottom:171.135000px;}
.y33_c00124{bottom:186.285000px;}
.y32_c00124{bottom:187.335000px;}
.y31_c00124{bottom:203.910000px;}
.y2e_c00124{bottom:219.810000px;}
.y2f_c00124{bottom:220.500000px;}
.y30_c00124{bottom:222.285000px;}
.y2d_c00124{bottom:237.060000px;}
.y2c_c00124{bottom:254.025000px;}
.y2b_c00124{bottom:270.900000px;}
.y2a_c00124{bottom:271.275000px;}
.y29_c00124{bottom:287.835000px;}
.y28_c00124{bottom:288.150000px;}
.y27_c00124{bottom:288.525000px;}
.y26_c00124{bottom:305.085000px;}
.y25_c00124{bottom:322.035000px;}
.y24_c00124{bottom:386.085000px;}
.y23_c00124{bottom:407.685000px;}
.y22_c00124{bottom:429.285000px;}
.y20_c00124{bottom:450.885000px;}
.y21_c00124{bottom:451.260000px;}
.y1e_c00124{bottom:472.500000px;}
.y1f_c00124{bottom:473.160000px;}
.y1d_c00124{bottom:571.875000px;}
.y1c_c00124{bottom:593.460000px;}
.y1b_c00124{bottom:614.685000px;}
.y1a_c00124{bottom:635.910000px;}
.y19_c00124{bottom:636.285000px;}
.y18_c00124{bottom:637.035000px;}
.y17_c00124{bottom:657.885000px;}
.y16_c00124{bottom:658.260000px;}
.y15_c00124{bottom:679.500000px;}
.y14_c00124{bottom:701.085000px;}
.y13_c00124{bottom:722.700000px;}
.y12_c00124{bottom:757.260000px;}
.y10_c00124{bottom:831.435000px;}
.y11_c00124{bottom:831.750000px;}
.yf_c00124{bottom:852.585000px;}
.ye_c00124{bottom:873.525000px;}
.yc_c00124{bottom:874.275000px;}
.yd_c00124{bottom:874.650000px;}
.yb_c00124{bottom:895.875000px;}
.ya_c00124{bottom:916.710000px;}
.y9_c00124{bottom:937.275000px;}
.y8_c00124{bottom:939.000000px;}
.y7_c00124{bottom:960.300000px;}
.y6_c00124{bottom:981.525000px;}
.y5_c00124{bottom:1002.060000px;}
.y4_c00124{bottom:1004.925000px;}
.y3_c00124{bottom:1057.500000px;}
.y2_c00124{bottom:1061.835000px;}
.y1_c00124{bottom:1062.525000px;}
.h6_c00124{height:37.546875px;}
.h4_c00124{height:58.886719px;}
.h1_c00124{height:60.468750px;}
.h9_c00124{height:64.743164px;}
.h2_c00124{height:64.775391px;}
.h8_c00124{height:76.514648px;}
.h7_c00124{height:76.552734px;}
.h3_c00124{height:82.441406px;}
.h5_c00124{height:83.581406px;}
.h0_c00124{height:1174.500000px;}
.w0_c00124{width:731.977200px;}
.w1_c00124{width:732.000000px;}
.x0_c00124{left:0.000000px;}
.x6_c00124{left:34.165200px;}
.xd_c00124{left:35.575200px;}
.xa_c00124{left:37.090200px;}
.x1a_c00124{left:38.515200px;}
.x1b_c00124{left:40.315200px;}
.x1d_c00124{left:44.965200px;}
.x21_c00124{left:46.090200px;}
.x25_c00124{left:49.315200px;}
.x28_c00124{left:51.790200px;}
.x1f_c00124{left:53.290200px;}
.x22_c00124{left:55.765200px;}
.x1c_c00124{left:58.990200px;}
.x4_c00124{left:61.540200px;}
.x5_c00124{left:64.765200px;}
.x7_c00124{left:66.190200px;}
.x8_c00124{left:67.315200px;}
.x17_c00124{left:70.165200px;}
.x13_c00124{left:100.765200px;}
.x20_c00124{left:103.315200px;}
.x19_c00124{left:112.990200px;}
.x1e_c00124{left:128.890200px;}
.x11_c00124{left:132.115200px;}
.xe_c00124{left:136.090200px;}
.x26_c00124{left:152.290200px;}
.xf_c00124{left:156.190200px;}
.x27_c00124{left:166.990200px;}
.xb_c00124{left:181.090200px;}
.xc_c00124{left:188.590200px;}
.x9_c00124{left:193.990200px;}
.x10_c00124{left:240.790200px;}
.x1_c00124{left:246.565200px;}
.x12_c00124{left:294.790200px;}
.x23_c00124{left:416.890200px;}
.x16_c00124{left:440.290200px;}
.x2_c00124{left:442.090200px;}
.x18_c00124{left:449.590200px;}
.x24_c00124{left:512.965200px;}
.x14_c00124{left:579.190200px;}
.x29_c00124{left:600.790200px;}
.x3_c00124{left:603.340200px;}
.x15_c00124{left:605.515200px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.v1_c00124{vertical-align:1.013333pt;}
.ls0_c00124{letter-spacing:0.000000pt;}
.ws0_c00124{word-spacing:-13.333333pt;}
.ws1_c00124{word-spacing:0.000000pt;}
._0_c00124{width:5.629017pt;}
.fs3_c00124{font-size:32.000000pt;}
.fs0_c00124{font-size:53.333333pt;}
.fs1_c00124{font-size:58.666667pt;}
.fs4_c00124{font-size:69.333333pt;}
.fs2_c00124{font-size:74.666667pt;}
.y0_c00124{bottom:0.000000pt;}
.y36_c00124{bottom:38.186667pt;}
.y35_c00124{bottom:137.120000pt;}
.y34_c00124{bottom:152.120000pt;}
.y33_c00124{bottom:165.586667pt;}
.y32_c00124{bottom:166.520000pt;}
.y31_c00124{bottom:181.253333pt;}
.y2e_c00124{bottom:195.386667pt;}
.y2f_c00124{bottom:196.000000pt;}
.y30_c00124{bottom:197.586667pt;}
.y2d_c00124{bottom:210.720000pt;}
.y2c_c00124{bottom:225.800000pt;}
.y2b_c00124{bottom:240.800000pt;}
.y2a_c00124{bottom:241.133333pt;}
.y29_c00124{bottom:255.853333pt;}
.y28_c00124{bottom:256.133333pt;}
.y27_c00124{bottom:256.466667pt;}
.y26_c00124{bottom:271.186667pt;}
.y25_c00124{bottom:286.253333pt;}
.y24_c00124{bottom:343.186667pt;}
.y23_c00124{bottom:362.386667pt;}
.y22_c00124{bottom:381.586667pt;}
.y20_c00124{bottom:400.786667pt;}
.y21_c00124{bottom:401.120000pt;}
.y1e_c00124{bottom:420.000000pt;}
.y1f_c00124{bottom:420.586667pt;}
.y1d_c00124{bottom:508.333333pt;}
.y1c_c00124{bottom:527.520000pt;}
.y1b_c00124{bottom:546.386667pt;}
.y1a_c00124{bottom:565.253333pt;}
.y19_c00124{bottom:565.586667pt;}
.y18_c00124{bottom:566.253333pt;}
.y17_c00124{bottom:584.786667pt;}
.y16_c00124{bottom:585.120000pt;}
.y15_c00124{bottom:604.000000pt;}
.y14_c00124{bottom:623.186667pt;}
.y13_c00124{bottom:642.400000pt;}
.y12_c00124{bottom:673.120000pt;}
.y10_c00124{bottom:739.053333pt;}
.y11_c00124{bottom:739.333333pt;}
.yf_c00124{bottom:757.853333pt;}
.ye_c00124{bottom:776.466667pt;}
.yc_c00124{bottom:777.133333pt;}
.yd_c00124{bottom:777.466667pt;}
.yb_c00124{bottom:796.333333pt;}
.ya_c00124{bottom:814.853333pt;}
.y9_c00124{bottom:833.133333pt;}
.y8_c00124{bottom:834.666667pt;}
.y7_c00124{bottom:853.600000pt;}
.y6_c00124{bottom:872.466667pt;}
.y5_c00124{bottom:890.720000pt;}
.y4_c00124{bottom:893.266667pt;}
.y3_c00124{bottom:940.000000pt;}
.y2_c00124{bottom:943.853333pt;}
.y1_c00124{bottom:944.466667pt;}
.h6_c00124{height:33.375000pt;}
.h4_c00124{height:52.343750pt;}
.h1_c00124{height:53.750000pt;}
.h9_c00124{height:57.549479pt;}
.h2_c00124{height:57.578125pt;}
.h8_c00124{height:68.013021pt;}
.h7_c00124{height:68.046875pt;}
.h3_c00124{height:73.281250pt;}
.h5_c00124{height:74.294583pt;}
.h0_c00124{height:1044.000000pt;}
.w0_c00124{width:650.646400pt;}
.w1_c00124{width:650.666667pt;}
.x0_c00124{left:0.000000pt;}
.x6_c00124{left:30.369067pt;}
.xd_c00124{left:31.622400pt;}
.xa_c00124{left:32.969067pt;}
.x1a_c00124{left:34.235733pt;}
.x1b_c00124{left:35.835733pt;}
.x1d_c00124{left:39.969067pt;}
.x21_c00124{left:40.969067pt;}
.x25_c00124{left:43.835733pt;}
.x28_c00124{left:46.035733pt;}
.x1f_c00124{left:47.369067pt;}
.x22_c00124{left:49.569067pt;}
.x1c_c00124{left:52.435733pt;}
.x4_c00124{left:54.702400pt;}
.x5_c00124{left:57.569067pt;}
.x7_c00124{left:58.835733pt;}
.x8_c00124{left:59.835733pt;}
.x17_c00124{left:62.369067pt;}
.x13_c00124{left:89.569067pt;}
.x20_c00124{left:91.835733pt;}
.x19_c00124{left:100.435733pt;}
.x1e_c00124{left:114.569067pt;}
.x11_c00124{left:117.435733pt;}
.xe_c00124{left:120.969067pt;}
.x26_c00124{left:135.369067pt;}
.xf_c00124{left:138.835733pt;}
.x27_c00124{left:148.435733pt;}
.xb_c00124{left:160.969067pt;}
.xc_c00124{left:167.635733pt;}
.x9_c00124{left:172.435733pt;}
.x10_c00124{left:214.035733pt;}
.x1_c00124{left:219.169067pt;}
.x12_c00124{left:262.035733pt;}
.x23_c00124{left:370.569067pt;}
.x16_c00124{left:391.369067pt;}
.x2_c00124{left:392.969067pt;}
.x18_c00124{left:399.635733pt;}
.x24_c00124{left:455.969067pt;}
.x14_c00124{left:514.835733pt;}
.x29_c00124{left:534.035733pt;}
.x3_c00124{left:536.302400pt;}
.x15_c00124{left:538.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1cc4e29537201685d4b45cb9.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00125;src:url('chunks/assets/font_286fcd9edee84b3c7a24daae.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.402354;font-style:normal;font-weight:normal;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_5ea350477c3ccfae661e4381.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00125{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m18_c00125{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2_c00125{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m0_c00125{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4_c00125{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m17_c00125{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10_c00125{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1a_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);}
.md_c00125{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m12_c00125{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11_c00125{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m14_c00125{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mf_c00125{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m13_c00125{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c00125{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c00125{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00125{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc_c00125{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m9_c00125{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00125{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00125{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00125{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c00125{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00125{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00125{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c00125{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00125{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m19_c00125{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,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;}
}
.ws0_c00125{word-spacing:0.000000px;}
.fc0_c00125{color:transparent;}
.fs5_c00125{font-size:48.000000px;}
.fs1_c00125{font-size:60.000000px;}
.fs3_c00125{font-size:66.000000px;}
.fs0_c00125{font-size:78.000000px;}
.fs4_c00125{font-size:84.000000px;}
.fs2_c00125{font-size:150.000000px;}
.y0_c00125{bottom:0.000000px;}
.y3f_c00125{bottom:73.260000px;}
.y3e_c00125{bottom:82.935000px;}
.y3d_c00125{bottom:93.060000px;}
.y3c_c00125{bottom:95.250000px;}
.y3b_c00125{bottom:98.085000px;}
.y3a_c00125{bottom:103.500000px;}
.y38_c00125{bottom:104.625000px;}
.y39_c00125{bottom:122.160000px;}
.y37_c00125{bottom:143.085000px;}
.y36_c00125{bottom:161.760000px;}
.y34_c00125{bottom:166.500000px;}
.y33_c00125{bottom:166.875000px;}
.y35_c00125{bottom:167.250000px;}
.y32_c00125{bottom:167.910000px;}
.y31_c00125{bottom:169.710000px;}
.y30_c00125{bottom:171.885000px;}
.y2f_c00125{bottom:188.460000px;}
.y2e_c00125{bottom:191.310000px;}
.y2d_c00125{bottom:193.125000px;}
.y2c_c00125{bottom:202.875000px;}
.y2b_c00125{bottom:208.260000px;}
.y2a_c00125{bottom:228.435000px;}
.y29_c00125{bottom:255.750000px;}
.y28_c00125{bottom:271.275000px;}
.y27_c00125{bottom:293.160000px;}
.y26_c00125{bottom:313.710000px;}
.y25_c00125{bottom:319.125000px;}
.y24_c00125{bottom:333.150000px;}
.y23_c00125{bottom:335.400000px;}
.y22_c00125{bottom:337.500000px;}
.y21_c00125{bottom:355.125000px;}
.y20_c00125{bottom:357.285000px;}
.y1f_c00125{bottom:378.150000px;}
.y1e_c00125{bottom:381.060000px;}
.y1d_c00125{bottom:398.310000px;}
.y1c_c00125{bottom:400.125000px;}
.y1b_c00125{bottom:422.760000px;}
.y1a_c00125{bottom:442.935000px;}
.y19_c00125{bottom:464.160000px;}
.y18_c00125{bottom:465.285000px;}
.y17_c00125{bottom:485.760000px;}
.y16_c00125{bottom:486.135000px;}
.y15_c00125{bottom:507.435000px;}
.y14_c00125{bottom:528.660000px;}
.y13_c00125{bottom:550.560000px;}
.y12_c00125{bottom:572.625000px;}
.y11_c00125{bottom:594.210000px;}
.y10_c00125{bottom:615.750000px;}
.yf_c00125{bottom:637.035000px;}
.ye_c00125{bottom:658.260000px;}
.yd_c00125{bottom:679.875000px;}
.yc_c00125{bottom:701.085000px;}
.yb_c00125{bottom:723.075000px;}
.ya_c00125{bottom:762.000000px;}
.y9_c00125{bottom:784.260000px;}
.y8_c00125{bottom:802.650000px;}
.y7_c00125{bottom:819.900000px;}
.y4_c00125{bottom:834.300000px;}
.y5_c00125{bottom:840.810000px;}
.y6_c00125{bottom:841.125000px;}
.y3_c00125{bottom:901.935000px;}
.y1_c00125{bottom:1065.000000px;}
.y2_c00125{bottom:1077.300000px;}
.h6_c00125{height:47.109375px;}
.h7_c00125{height:58.886719px;}
.h2_c00125{height:61.670545px;}
.h4_c00125{height:64.775391px;}
.h1_c00125{height:76.552734px;}
.h8_c00125{height:78.609375px;}
.h5_c00125{height:82.441406px;}
.h3_c00125{height:147.216797px;}
.h0_c00125{height:1174.500000px;}
.w0_c00125{width:731.977200px;}
.w1_c00125{width:732.000000px;}
.x0_c00125{left:0.000000px;}
.x12_c00125{left:62.965200px;}
.x9_c00125{left:64.090200px;}
.x4_c00125{left:65.515200px;}
.x1_c00125{left:85.300200px;}
.x7_c00125{left:88.915200px;}
.x16_c00125{left:92.140200px;}
.x11_c00125{left:93.175200px;}
.x8_c00125{left:94.315200px;}
.x14_c00125{left:106.540200px;}
.x1c_c00125{left:108.715200px;}
.x17_c00125{left:123.115200px;}
.xd_c00125{left:143.965200px;}
.x3_c00125{left:170.965200px;}
.xb_c00125{left:175.690200px;}
.x15_c00125{left:202.315200px;}
.x18_c00125{left:204.115200px;}
.x1b_c00125{left:246.565200px;}
.x19_c00125{left:255.940200px;}
.x1a_c00125{left:266.740200px;}
.x2_c00125{left:286.165200px;}
.xf_c00125{left:330.115200px;}
.x10_c00125{left:381.940200px;}
.x1d_c00125{left:416.140200px;}
.x1e_c00125{left:435.940200px;}
.x20_c00125{left:468.340200px;}
.x5_c00125{left:538.915200px;}
.x6_c00125{left:548.590200px;}
.xa_c00125{left:570.565200px;}
.xe_c00125{left:590.365200px;}
.x13_c00125{left:602.290200px;}
.xc_c00125{left:620.590200px;}
.x1f_c00125{left:646.915200px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls0_c00125{letter-spacing:0.000000pt;}
.ws0_c00125{word-spacing:0.000000pt;}
.fs5_c00125{font-size:42.666667pt;}
.fs1_c00125{font-size:53.333333pt;}
.fs3_c00125{font-size:58.666667pt;}
.fs0_c00125{font-size:69.333333pt;}
.fs4_c00125{font-size:74.666667pt;}
.fs2_c00125{font-size:133.333333pt;}
.y0_c00125{bottom:0.000000pt;}
.y3f_c00125{bottom:65.120000pt;}
.y3e_c00125{bottom:73.720000pt;}
.y3d_c00125{bottom:82.720000pt;}
.y3c_c00125{bottom:84.666667pt;}
.y3b_c00125{bottom:87.186667pt;}
.y3a_c00125{bottom:92.000000pt;}
.y38_c00125{bottom:93.000000pt;}
.y39_c00125{bottom:108.586667pt;}
.y37_c00125{bottom:127.186667pt;}
.y36_c00125{bottom:143.786667pt;}
.y34_c00125{bottom:148.000000pt;}
.y33_c00125{bottom:148.333333pt;}
.y35_c00125{bottom:148.666667pt;}
.y32_c00125{bottom:149.253333pt;}
.y31_c00125{bottom:150.853333pt;}
.y30_c00125{bottom:152.786667pt;}
.y2f_c00125{bottom:167.520000pt;}
.y2e_c00125{bottom:170.053333pt;}
.y2d_c00125{bottom:171.666667pt;}
.y2c_c00125{bottom:180.333333pt;}
.y2b_c00125{bottom:185.120000pt;}
.y2a_c00125{bottom:203.053333pt;}
.y29_c00125{bottom:227.333333pt;}
.y28_c00125{bottom:241.133333pt;}
.y27_c00125{bottom:260.586667pt;}
.y26_c00125{bottom:278.853333pt;}
.y25_c00125{bottom:283.666667pt;}
.y24_c00125{bottom:296.133333pt;}
.y23_c00125{bottom:298.133333pt;}
.y22_c00125{bottom:300.000000pt;}
.y21_c00125{bottom:315.666667pt;}
.y20_c00125{bottom:317.586667pt;}
.y1f_c00125{bottom:336.133333pt;}
.y1e_c00125{bottom:338.720000pt;}
.y1d_c00125{bottom:354.053333pt;}
.y1c_c00125{bottom:355.666667pt;}
.y1b_c00125{bottom:375.786667pt;}
.y1a_c00125{bottom:393.720000pt;}
.y19_c00125{bottom:412.586667pt;}
.y18_c00125{bottom:413.586667pt;}
.y17_c00125{bottom:431.786667pt;}
.y16_c00125{bottom:432.120000pt;}
.y15_c00125{bottom:451.053333pt;}
.y14_c00125{bottom:469.920000pt;}
.y13_c00125{bottom:489.386667pt;}
.y12_c00125{bottom:509.000000pt;}
.y11_c00125{bottom:528.186667pt;}
.y10_c00125{bottom:547.333333pt;}
.yf_c00125{bottom:566.253333pt;}
.ye_c00125{bottom:585.120000pt;}
.yd_c00125{bottom:604.333333pt;}
.yc_c00125{bottom:623.186667pt;}
.yb_c00125{bottom:642.733333pt;}
.ya_c00125{bottom:677.333333pt;}
.y9_c00125{bottom:697.120000pt;}
.y8_c00125{bottom:713.466667pt;}
.y7_c00125{bottom:728.800000pt;}
.y4_c00125{bottom:741.600000pt;}
.y5_c00125{bottom:747.386667pt;}
.y6_c00125{bottom:747.666667pt;}
.y3_c00125{bottom:801.720000pt;}
.y1_c00125{bottom:946.666667pt;}
.y2_c00125{bottom:957.600000pt;}
.h6_c00125{height:41.875000pt;}
.h7_c00125{height:52.343750pt;}
.h2_c00125{height:54.818262pt;}
.h4_c00125{height:57.578125pt;}
.h1_c00125{height:68.046875pt;}
.h8_c00125{height:69.875000pt;}
.h5_c00125{height:73.281250pt;}
.h3_c00125{height:130.859375pt;}
.h0_c00125{height:1044.000000pt;}
.w0_c00125{width:650.646400pt;}
.w1_c00125{width:650.666667pt;}
.x0_c00125{left:0.000000pt;}
.x12_c00125{left:55.969067pt;}
.x9_c00125{left:56.969067pt;}
.x4_c00125{left:58.235733pt;}
.x1_c00125{left:75.822400pt;}
.x7_c00125{left:79.035733pt;}
.x16_c00125{left:81.902400pt;}
.x11_c00125{left:82.822400pt;}
.x8_c00125{left:83.835733pt;}
.x14_c00125{left:94.702400pt;}
.x1c_c00125{left:96.635733pt;}
.x17_c00125{left:109.435733pt;}
.xd_c00125{left:127.969067pt;}
.x3_c00125{left:151.969067pt;}
.xb_c00125{left:156.169067pt;}
.x15_c00125{left:179.835733pt;}
.x18_c00125{left:181.435733pt;}
.x1b_c00125{left:219.169067pt;}
.x19_c00125{left:227.502400pt;}
.x1a_c00125{left:237.102400pt;}
.x2_c00125{left:254.369067pt;}
.xf_c00125{left:293.435733pt;}
.x10_c00125{left:339.502400pt;}
.x1d_c00125{left:369.902400pt;}
.x1e_c00125{left:387.502400pt;}
.x20_c00125{left:416.302400pt;}
.x5_c00125{left:479.035733pt;}
.x6_c00125{left:487.635733pt;}
.xa_c00125{left:507.169067pt;}
.xe_c00125{left:524.769067pt;}
.x13_c00125{left:535.369067pt;}
.xc_c00125{left:551.635733pt;}
.x1f_c00125{left:575.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d7b9a72c402bc0fbaa31687.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00126;src:url('chunks/assets/font_6fed4f28f1be990ae30a8586.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00126;src:url('chunks/assets/font_bf704adb93e431f4329eda40.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00126{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mc_c00126{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2_c00126{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me_c00126{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m10_c00126{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00126{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8_c00126{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9_c00126{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c00126{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c00126{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00126{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3_c00126{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00126{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00126{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c00126{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0_c00126{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c00126{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00126{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00126{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00126{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c00126{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17_c00126{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19_c00126{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c00126{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c00126{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00126{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00126{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m16_c00126{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c00126{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m11_c00126{transform:matrix(4.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.797500,0.000000,0.000000,0.250000,0,0);}
.m1_c00126{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.ls0_c00126{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00126{color:transparent;}
.fs0_c00126{font-size:60.000000px;}
.fs2_c00126{font-size:66.000000px;}
.fs1_c00126{font-size:84.000000px;}
.y0_c00126{bottom:0.000000px;}
.y40_c00126{bottom:34.710000px;}
.y41_c00126{bottom:35.760000px;}
.y3f_c00126{bottom:57.060000px;}
.y3d_c00126{bottom:76.875000px;}
.y3e_c00126{bottom:78.660000px;}
.y39_c00126{bottom:98.460000px;}
.y3a_c00126{bottom:99.510000px;}
.y3b_c00126{bottom:100.635000px;}
.y3c_c00126{bottom:101.685000px;}
.y35_c00126{bottom:119.385000px;}
.y36_c00126{bottom:119.685000px;}
.y37_c00126{bottom:120.435000px;}
.y38_c00126{bottom:122.250000px;}
.y32_c00126{bottom:140.625000px;}
.y33_c00126{bottom:143.085000px;}
.y34_c00126{bottom:143.760000px;}
.y31_c00126{bottom:161.460000px;}
.y2e_c00126{bottom:181.260000px;}
.y2f_c00126{bottom:182.310000px;}
.y30_c00126{bottom:184.875000px;}
.y2d_c00126{bottom:202.500000px;}
.y2c_c00126{bottom:202.785000px;}
.y29_c00126{bottom:223.335000px;}
.y2a_c00126{bottom:223.710000px;}
.y2b_c00126{bottom:225.510000px;}
.y27_c00126{bottom:268.335000px;}
.y28_c00126{bottom:268.410000px;}
.y26_c00126{bottom:268.710000px;}
.y25_c00126{bottom:276.960000px;}
.y24_c00126{bottom:277.710000px;}
.y23_c00126{bottom:285.660000px;}
.y22_c00126{bottom:329.535000px;}
.y21_c00126{bottom:351.210000px;}
.y20_c00126{bottom:372.750000px;}
.y1f_c00126{bottom:394.335000px;}
.y1e_c00126{bottom:415.935000px;}
.y1d_c00126{bottom:416.310000px;}
.y1c_c00126{bottom:524.685000px;}
.y1b_c00126{bottom:547.035000px;}
.y1a_c00126{bottom:568.635000px;}
.y19_c00126{bottom:590.250000px;}
.y18_c00126{bottom:611.760000px;}
.y17_c00126{bottom:633.375000px;}
.y16_c00126{bottom:654.960000px;}
.y15_c00126{bottom:676.635000px;}
.y14_c00126{bottom:698.535000px;}
.y13_c00126{bottom:720.510000px;}
.y12_c00126{bottom:742.125000px;}
.y11_c00126{bottom:763.710000px;}
.y10_c00126{bottom:785.310000px;}
.ye_c00126{bottom:806.550000px;}
.yf_c00126{bottom:807.300000px;}
.yd_c00126{bottom:828.900000px;}
.ya_c00126{bottom:850.125000px;}
.yc_c00126{bottom:850.185000px;}
.yb_c00126{bottom:851.175000px;}
.y9_c00126{bottom:872.460000px;}
.y8_c00126{bottom:893.310000px;}
.y7_c00126{bottom:914.925000px;}
.y6_c00126{bottom:936.525000px;}
.y5_c00126{bottom:957.750000px;}
.y4_c00126{bottom:979.335000px;}
.y3_c00126{bottom:1034.835000px;}
.y1_c00126{bottom:1038.060000px;}
.y2_c00126{bottom:1048.335000px;}
.h1_c00126{height:58.886719px;}
.h5_c00126{height:64.775391px;}
.h4_c00126{height:82.400391px;}
.h2_c00126{height:82.441406px;}
.h3_c00126{height:84.656250px;}
.h0_c00126{height:1174.500000px;}
.w0_c00126{width:731.977200px;}
.w1_c00126{width:732.000000px;}
.x0_c00126{left:0.000000px;}
.x4_c00126{left:24.790200px;}
.x5_c00126{left:26.290200px;}
.xb_c00126{left:27.700200px;}
.xc_c00126{left:29.140200px;}
.x10_c00126{left:31.315200px;}
.x11_c00126{left:32.740200px;}
.x16_c00126{left:34.540200px;}
.x1e_c00126{left:36.715200px;}
.x25_c00126{left:39.190200px;}
.x2c_c00126{left:40.990200px;}
.x6_c00126{left:58.315200px;}
.xa_c00126{left:59.365200px;}
.x9_c00126{left:61.165200px;}
.xd_c00126{left:62.290200px;}
.x2d_c00126{left:64.090200px;}
.x12_c00126{left:65.140200px;}
.x1b_c00126{left:67.990200px;}
.x22_c00126{left:69.490200px;}
.xe_c00126{left:83.890200px;}
.xf_c00126{left:92.515200px;}
.x29_c00126{left:121.690200px;}
.x7_c00126{left:124.165200px;}
.x1f_c00126{left:135.715200px;}
.x17_c00126{left:140.740200px;}
.x13_c00126{left:212.740200px;}
.x1_c00126{left:264.565200px;}
.x18_c00126{left:281.890200px;}
.x26_c00126{left:287.965200px;}
.x14_c00126{left:290.515200px;}
.x8_c00126{left:313.540200px;}
.x27_c00126{left:315.715200px;}
.x1c_c00126{left:321.490200px;}
.x19_c00126{left:335.140200px;}
.x15_c00126{left:336.565200px;}
.x1a_c00126{left:363.940200px;}
.x20_c00126{left:366.115200px;}
.x2_c00126{left:432.340200px;}
.x2a_c00126{left:452.140200px;}
.x28_c00126{left:512.290200px;}
.x1d_c00126{left:517.690200px;}
.x23_c00126{left:534.940200px;}
.x21_c00126{left:556.540200px;}
.x2b_c00126{left:580.315200px;}
.x24_c00126{left:586.765200px;}
.x3_c00126{left:595.090200px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls0_c00126{letter-spacing:0.000000pt;}
.ws0_c00126{word-spacing:0.000000pt;}
.fs0_c00126{font-size:53.333333pt;}
.fs2_c00126{font-size:58.666667pt;}
.fs1_c00126{font-size:74.666667pt;}
.y0_c00126{bottom:0.000000pt;}
.y40_c00126{bottom:30.853333pt;}
.y41_c00126{bottom:31.786667pt;}
.y3f_c00126{bottom:50.720000pt;}
.y3d_c00126{bottom:68.333333pt;}
.y3e_c00126{bottom:69.920000pt;}
.y39_c00126{bottom:87.520000pt;}
.y3a_c00126{bottom:88.453333pt;}
.y3b_c00126{bottom:89.453333pt;}
.y3c_c00126{bottom:90.386667pt;}
.y35_c00126{bottom:106.120000pt;}
.y36_c00126{bottom:106.386667pt;}
.y37_c00126{bottom:107.053333pt;}
.y38_c00126{bottom:108.666667pt;}
.y32_c00126{bottom:125.000000pt;}
.y33_c00126{bottom:127.186667pt;}
.y34_c00126{bottom:127.786667pt;}
.y31_c00126{bottom:143.520000pt;}
.y2e_c00126{bottom:161.120000pt;}
.y2f_c00126{bottom:162.053333pt;}
.y30_c00126{bottom:164.333333pt;}
.y2d_c00126{bottom:180.000000pt;}
.y2c_c00126{bottom:180.253333pt;}
.y29_c00126{bottom:198.520000pt;}
.y2a_c00126{bottom:198.853333pt;}
.y2b_c00126{bottom:200.453333pt;}
.y27_c00126{bottom:238.520000pt;}
.y28_c00126{bottom:238.586667pt;}
.y26_c00126{bottom:238.853333pt;}
.y25_c00126{bottom:246.186667pt;}
.y24_c00126{bottom:246.853333pt;}
.y23_c00126{bottom:253.920000pt;}
.y22_c00126{bottom:292.920000pt;}
.y21_c00126{bottom:312.186667pt;}
.y20_c00126{bottom:331.333333pt;}
.y1f_c00126{bottom:350.520000pt;}
.y1e_c00126{bottom:369.720000pt;}
.y1d_c00126{bottom:370.053333pt;}
.y1c_c00126{bottom:466.386667pt;}
.y1b_c00126{bottom:486.253333pt;}
.y1a_c00126{bottom:505.453333pt;}
.y19_c00126{bottom:524.666667pt;}
.y18_c00126{bottom:543.786667pt;}
.y17_c00126{bottom:563.000000pt;}
.y16_c00126{bottom:582.186667pt;}
.y15_c00126{bottom:601.453333pt;}
.y14_c00126{bottom:620.920000pt;}
.y13_c00126{bottom:640.453333pt;}
.y12_c00126{bottom:659.666667pt;}
.y11_c00126{bottom:678.853333pt;}
.y10_c00126{bottom:698.053333pt;}
.ye_c00126{bottom:716.933333pt;}
.yf_c00126{bottom:717.600000pt;}
.yd_c00126{bottom:736.800000pt;}
.ya_c00126{bottom:755.666667pt;}
.yc_c00126{bottom:755.720000pt;}
.yb_c00126{bottom:756.600000pt;}
.y9_c00126{bottom:775.520000pt;}
.y8_c00126{bottom:794.053333pt;}
.y7_c00126{bottom:813.266667pt;}
.y6_c00126{bottom:832.466667pt;}
.y5_c00126{bottom:851.333333pt;}
.y4_c00126{bottom:870.520000pt;}
.y3_c00126{bottom:919.853333pt;}
.y1_c00126{bottom:922.720000pt;}
.y2_c00126{bottom:931.853333pt;}
.h1_c00126{height:52.343750pt;}
.h5_c00126{height:57.578125pt;}
.h4_c00126{height:73.244792pt;}
.h2_c00126{height:73.281250pt;}
.h3_c00126{height:75.250000pt;}
.h0_c00126{height:1044.000000pt;}
.w0_c00126{width:650.646400pt;}
.w1_c00126{width:650.666667pt;}
.x0_c00126{left:0.000000pt;}
.x4_c00126{left:22.035733pt;}
.x5_c00126{left:23.369067pt;}
.xb_c00126{left:24.622400pt;}
.xc_c00126{left:25.902400pt;}
.x10_c00126{left:27.835733pt;}
.x11_c00126{left:29.102400pt;}
.x16_c00126{left:30.702400pt;}
.x1e_c00126{left:32.635733pt;}
.x25_c00126{left:34.835733pt;}
.x2c_c00126{left:36.435733pt;}
.x6_c00126{left:51.835733pt;}
.xa_c00126{left:52.769067pt;}
.x9_c00126{left:54.369067pt;}
.xd_c00126{left:55.369067pt;}
.x2d_c00126{left:56.969067pt;}
.x12_c00126{left:57.902400pt;}
.x1b_c00126{left:60.435733pt;}
.x22_c00126{left:61.769067pt;}
.xe_c00126{left:74.569067pt;}
.xf_c00126{left:82.235733pt;}
.x29_c00126{left:108.169067pt;}
.x7_c00126{left:110.369067pt;}
.x1f_c00126{left:120.635733pt;}
.x17_c00126{left:125.102400pt;}
.x13_c00126{left:189.102400pt;}
.x1_c00126{left:235.169067pt;}
.x18_c00126{left:250.569067pt;}
.x26_c00126{left:255.969067pt;}
.x14_c00126{left:258.235733pt;}
.x8_c00126{left:278.702400pt;}
.x27_c00126{left:280.635733pt;}
.x1c_c00126{left:285.769067pt;}
.x19_c00126{left:297.902400pt;}
.x15_c00126{left:299.169067pt;}
.x1a_c00126{left:323.502400pt;}
.x20_c00126{left:325.435733pt;}
.x2_c00126{left:384.302400pt;}
.x2a_c00126{left:401.902400pt;}
.x28_c00126{left:455.369067pt;}
.x1d_c00126{left:460.169067pt;}
.x23_c00126{left:475.502400pt;}
.x21_c00126{left:494.702400pt;}
.x2b_c00126{left:515.835733pt;}
.x24_c00126{left:521.569067pt;}
.x3_c00126{left:528.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f004d29f0d34a103c25b137.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00127;src:url('chunks/assets/font_f11ad9ff332b27ab2eb99c28.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00127;src:url('chunks/assets/font_3c54a63038fedccca5a94a88.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00127{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m16_c00127{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m17_c00127{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m14_c00127{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3_c00127{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c00127{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md_c00127{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c00127{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00127{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c00127{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c00127{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00127{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00127{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mc_c00127{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c00127{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c00127{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00127{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m19_c00127{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c00127{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00127{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00127{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c00127{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00127{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c00127{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00127{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00127{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c00127{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10_c00127{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00127{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.ls0_c00127{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00127{word-spacing:0.000000px;}
.fc0_c00127{color:transparent;}
.fs1_c00127{font-size:60.000000px;}
.fs3_c00127{font-size:66.000000px;}
.fs0_c00127{font-size:72.000000px;}
.fs2_c00127{font-size:78.000000px;}
.y0_c00127{bottom:0.000000px;}
.y46_c00127{bottom:52.410000px;}
.y45_c00127{bottom:56.685000px;}
.y44_c00127{bottom:62.085000px;}
.y43_c00127{bottom:72.510000px;}
.y42_c00127{bottom:73.635000px;}
.y41_c00127{bottom:74.685000px;}
.y40_c00127{bottom:88.785000px;}
.y3f_c00127{bottom:98.460000px;}
.y3e_c00127{bottom:114.660000px;}
.y3d_c00127{bottom:123.960000px;}
.y3c_c00127{bottom:125.385000px;}
.y3b_c00127{bottom:130.500000px;}
.y3a_c00127{bottom:136.635000px;}
.y39_c00127{bottom:139.125000px;}
.y38_c00127{bottom:140.910000px;}
.y37_c00127{bottom:216.885000px;}
.y36_c00127{bottom:220.785000px;}
.y35_c00127{bottom:221.910000px;}
.y34_c00127{bottom:225.585000px;}
.y33_c00127{bottom:245.385000px;}
.y32_c00127{bottom:259.410000px;}
.y31_c00127{bottom:260.835000px;}
.y30_c00127{bottom:267.585000px;}
.y2f_c00127{bottom:281.310000px;}
.y2e_c00127{bottom:285.000000px;}
.y2d_c00127{bottom:306.900000px;}
.y2c_c00127{bottom:327.810000px;}
.y2b_c00127{bottom:346.500000px;}
.y2a_c00127{bottom:349.035000px;}
.y29_c00127{bottom:351.525000px;}
.y28_c00127{bottom:367.710000px;}
.y27_c00127{bottom:370.650000px;}
.y26_c00127{bottom:392.535000px;}
.y25_c00127{bottom:413.835000px;}
.y24_c00127{bottom:433.260000px;}
.y23_c00127{bottom:435.060000px;}
.y22_c00127{bottom:437.910000px;}
.y21_c00127{bottom:438.000000px;}
.y20_c00127{bottom:456.585000px;}
.y1f_c00127{bottom:478.560000px;}
.y1e_c00127{bottom:499.500000px;}
.y1d_c00127{bottom:521.085000px;}
.y1c_c00127{bottom:542.385000px;}
.y1b_c00127{bottom:563.910000px;}
.y1a_c00127{bottom:585.510000px;}
.y19_c00127{bottom:606.435000px;}
.y18_c00127{bottom:628.710000px;}
.y17_c00127{bottom:650.310000px;}
.y16_c00127{bottom:671.250000px;}
.y15_c00127{bottom:692.460000px;}
.y14_c00127{bottom:714.075000px;}
.y13_c00127{bottom:735.285000px;}
.y12_c00127{bottom:756.585000px;}
.y11_c00127{bottom:778.125000px;}
.y10_c00127{bottom:799.335000px;}
.yf_c00127{bottom:817.050000px;}
.ye_c00127{bottom:840.750000px;}
.yd_c00127{bottom:862.710000px;}
.yc_c00127{bottom:880.710000px;}
.yb_c00127{bottom:905.250000px;}
.y8_c00127{bottom:918.900000px;}
.y9_c00127{bottom:922.875000px;}
.ya_c00127{bottom:928.650000px;}
.y7_c00127{bottom:947.310000px;}
.y6_c00127{bottom:968.550000px;}
.y4_c00127{bottom:979.710000px;}
.y5_c00127{bottom:990.525000px;}
.y1_c00127{bottom:1036.650000px;}
.y3_c00127{bottom:1045.650000px;}
.y2_c00127{bottom:1051.185000px;}
.h2_c00127{height:58.886719px;}
.h4_c00127{height:64.775391px;}
.h5_c00127{height:66.515625px;}
.h1_c00127{height:72.562500px;}
.h6_c00127{height:76.514648px;}
.h3_c00127{height:76.552734px;}
.h0_c00127{height:1174.500000px;}
.w0_c00127{width:731.977200px;}
.w1_c00127{width:732.000000px;}
.x0_c00127{left:0.000000px;}
.x4_c00127{left:75.175200px;}
.x9_c00127{left:76.300200px;}
.xa_c00127{left:77.740200px;}
.xb_c00127{left:78.790200px;}
.x11_c00127{left:79.915200px;}
.x15_c00127{left:81.340200px;}
.x1_c00127{left:93.175200px;}
.x1a_c00127{left:97.165200px;}
.x20_c00127{left:98.590200px;}
.x8_c00127{left:105.490200px;}
.x16_c00127{left:110.890200px;}
.x2_c00127{left:119.515200px;}
.x1b_c00127{left:131.740200px;}
.x21_c00127{left:133.540200px;}
.x1e_c00127{left:137.140200px;}
.x5_c00127{left:142.915200px;}
.x1f_c00127{left:151.915200px;}
.xc_c00127{left:161.965200px;}
.x22_c00127{left:179.590200px;}
.x6_c00127{left:184.990200px;}
.x23_c00127{left:208.375200px;}
.x1c_c00127{left:222.790200px;}
.x24_c00127{left:241.165200px;}
.x1d_c00127{left:246.565200px;}
.x7_c00127{left:277.165200px;}
.x3_c00127{left:290.515200px;}
.x17_c00127{left:337.990200px;}
.x18_c00127{left:359.965200px;}
.xf_c00127{left:364.990200px;}
.x13_c00127{left:382.690200px;}
.x10_c00127{left:384.775200px;}
.x19_c00127{left:432.715200px;}
.x14_c00127{left:604.390200px;}
.xd_c00127{left:655.165200px;}
.x12_c00127{left:671.740200px;}
.xe_c00127{left:677.140200px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls0_c00127{letter-spacing:0.000000pt;}
.ws0_c00127{word-spacing:0.000000pt;}
.fs1_c00127{font-size:53.333333pt;}
.fs3_c00127{font-size:58.666667pt;}
.fs0_c00127{font-size:64.000000pt;}
.fs2_c00127{font-size:69.333333pt;}
.y0_c00127{bottom:0.000000pt;}
.y46_c00127{bottom:46.586667pt;}
.y45_c00127{bottom:50.386667pt;}
.y44_c00127{bottom:55.186667pt;}
.y43_c00127{bottom:64.453333pt;}
.y42_c00127{bottom:65.453333pt;}
.y41_c00127{bottom:66.386667pt;}
.y40_c00127{bottom:78.920000pt;}
.y3f_c00127{bottom:87.520000pt;}
.y3e_c00127{bottom:101.920000pt;}
.y3d_c00127{bottom:110.186667pt;}
.y3c_c00127{bottom:111.453333pt;}
.y3b_c00127{bottom:116.000000pt;}
.y3a_c00127{bottom:121.453333pt;}
.y39_c00127{bottom:123.666667pt;}
.y38_c00127{bottom:125.253333pt;}
.y37_c00127{bottom:192.786667pt;}
.y36_c00127{bottom:196.253333pt;}
.y35_c00127{bottom:197.253333pt;}
.y34_c00127{bottom:200.520000pt;}
.y33_c00127{bottom:218.120000pt;}
.y32_c00127{bottom:230.586667pt;}
.y31_c00127{bottom:231.853333pt;}
.y30_c00127{bottom:237.853333pt;}
.y2f_c00127{bottom:250.053333pt;}
.y2e_c00127{bottom:253.333333pt;}
.y2d_c00127{bottom:272.800000pt;}
.y2c_c00127{bottom:291.386667pt;}
.y2b_c00127{bottom:308.000000pt;}
.y2a_c00127{bottom:310.253333pt;}
.y29_c00127{bottom:312.466667pt;}
.y28_c00127{bottom:326.853333pt;}
.y27_c00127{bottom:329.466667pt;}
.y26_c00127{bottom:348.920000pt;}
.y25_c00127{bottom:367.853333pt;}
.y24_c00127{bottom:385.120000pt;}
.y23_c00127{bottom:386.720000pt;}
.y22_c00127{bottom:389.253333pt;}
.y21_c00127{bottom:389.333333pt;}
.y20_c00127{bottom:405.853333pt;}
.y1f_c00127{bottom:425.386667pt;}
.y1e_c00127{bottom:444.000000pt;}
.y1d_c00127{bottom:463.186667pt;}
.y1c_c00127{bottom:482.120000pt;}
.y1b_c00127{bottom:501.253333pt;}
.y1a_c00127{bottom:520.453333pt;}
.y19_c00127{bottom:539.053333pt;}
.y18_c00127{bottom:558.853333pt;}
.y17_c00127{bottom:578.053333pt;}
.y16_c00127{bottom:596.666667pt;}
.y15_c00127{bottom:615.520000pt;}
.y14_c00127{bottom:634.733333pt;}
.y13_c00127{bottom:653.586667pt;}
.y12_c00127{bottom:672.520000pt;}
.y11_c00127{bottom:691.666667pt;}
.y10_c00127{bottom:710.520000pt;}
.yf_c00127{bottom:726.266667pt;}
.ye_c00127{bottom:747.333333pt;}
.yd_c00127{bottom:766.853333pt;}
.yc_c00127{bottom:782.853333pt;}
.yb_c00127{bottom:804.666667pt;}
.y8_c00127{bottom:816.800000pt;}
.y9_c00127{bottom:820.333333pt;}
.ya_c00127{bottom:825.466667pt;}
.y7_c00127{bottom:842.053333pt;}
.y6_c00127{bottom:860.933333pt;}
.y4_c00127{bottom:870.853333pt;}
.y5_c00127{bottom:880.466667pt;}
.y1_c00127{bottom:921.466667pt;}
.y3_c00127{bottom:929.466667pt;}
.y2_c00127{bottom:934.386667pt;}
.h2_c00127{height:52.343750pt;}
.h4_c00127{height:57.578125pt;}
.h5_c00127{height:59.125000pt;}
.h1_c00127{height:64.500000pt;}
.h6_c00127{height:68.013021pt;}
.h3_c00127{height:68.046875pt;}
.h0_c00127{height:1044.000000pt;}
.w0_c00127{width:650.646400pt;}
.w1_c00127{width:650.666667pt;}
.x0_c00127{left:0.000000pt;}
.x4_c00127{left:66.822400pt;}
.x9_c00127{left:67.822400pt;}
.xa_c00127{left:69.102400pt;}
.xb_c00127{left:70.035733pt;}
.x11_c00127{left:71.035733pt;}
.x15_c00127{left:72.302400pt;}
.x1_c00127{left:82.822400pt;}
.x1a_c00127{left:86.369067pt;}
.x20_c00127{left:87.635733pt;}
.x8_c00127{left:93.769067pt;}
.x16_c00127{left:98.569067pt;}
.x2_c00127{left:106.235733pt;}
.x1b_c00127{left:117.102400pt;}
.x21_c00127{left:118.702400pt;}
.x1e_c00127{left:121.902400pt;}
.x5_c00127{left:127.035733pt;}
.x1f_c00127{left:135.035733pt;}
.xc_c00127{left:143.969067pt;}
.x22_c00127{left:159.635733pt;}
.x6_c00127{left:164.435733pt;}
.x23_c00127{left:185.222400pt;}
.x1c_c00127{left:198.035733pt;}
.x24_c00127{left:214.369067pt;}
.x1d_c00127{left:219.169067pt;}
.x7_c00127{left:246.369067pt;}
.x3_c00127{left:258.235733pt;}
.x17_c00127{left:300.435733pt;}
.x18_c00127{left:319.969067pt;}
.xf_c00127{left:324.435733pt;}
.x13_c00127{left:340.169067pt;}
.x10_c00127{left:342.022400pt;}
.x19_c00127{left:384.635733pt;}
.x14_c00127{left:537.235733pt;}
.xd_c00127{left:582.369067pt;}
.x12_c00127{left:597.102400pt;}
.xe_c00127{left:601.902400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c943bfc4b4667675c05d358.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00128;src:url('chunks/assets/font_d7ccd7f5c81ae4492d697d48.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00128;src:url('chunks/assets/font_0a9e1f1528809e5105a5dd81.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00128;src:url('chunks/assets/font_6a103a2dac56c0701e34c2e2.woff2')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00128;src:url('chunks/assets/font_8f2bb2c824f22c5578cf1cd1.woff2')format("woff");}.ff5_c00128{font-family:ff5_c00128;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00128{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m11_c00128{transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);}
.m13_c00128{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.me_c00128{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m26_c00128{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m15_c00128{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2_c00128{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m20_c00128{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m12_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);}
.md_c00128{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00128{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00128{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c00128{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf_c00128{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c00128{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00128{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c00128{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00128{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c00128{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c00128{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00128{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c00128{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m24_c00128{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m21_c00128{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m0_c00128{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00128{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00128{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c00128{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00128{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m19_c00128{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00128{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c00128{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m23_c00128{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00128{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m25_c00128{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m8_c00128{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m22_c00128{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m17_c00128{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1_c00128{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00128{word-spacing:0.000000px;}
.fc0_c00128{color:transparent;}
.fs4_c00128{font-size:36.000000px;}
.fs0_c00128{font-size:48.000000px;}
.fs5_c00128{font-size:54.000000px;}
.fs6_c00128{font-size:66.000000px;}
.fs3_c00128{font-size:72.000000px;}
.fs1_c00128{font-size:78.000000px;}
.fs2_c00128{font-size:84.000000px;}
.y0_c00128{bottom:0.000000px;}
.y48_c00128{bottom:81.135000px;}
.y46_c00128{bottom:98.085000px;}
.y47_c00128{bottom:98.760000px;}
.y45_c00128{bottom:114.960000px;}
.y44_c00128{bottom:131.910000px;}
.y43_c00128{bottom:148.125000px;}
.y42_c00128{bottom:164.685000px;}
.y41_c00128{bottom:180.510000px;}
.y40_c00128{bottom:196.335000px;}
.y3f_c00128{bottom:197.385000px;}
.y3d_c00128{bottom:212.910000px;}
.y3c_c00128{bottom:213.285000px;}
.y3b_c00128{bottom:213.960000px;}
.y3e_c00128{bottom:214.710000px;}
.y3a_c00128{bottom:268.035000px;}
.y39_c00128{bottom:289.275000px;}
.y38_c00128{bottom:310.500000px;}
.y35_c00128{bottom:331.035000px;}
.y36_c00128{bottom:331.335000px;}
.y34_c00128{bottom:331.410000px;}
.y37_c00128{bottom:332.085000px;}
.y32_c00128{bottom:352.275000px;}
.y33_c00128{bottom:354.750000px;}
.y31_c00128{bottom:373.185000px;}
.y30_c00128{bottom:394.410000px;}
.y2f_c00128{bottom:415.635000px;}
.y2e_c00128{bottom:437.250000px;}
.y2c_c00128{bottom:458.835000px;}
.y2d_c00128{bottom:459.135000px;}
.y2b_c00128{bottom:480.435000px;}
.y29_c00128{bottom:502.035000px;}
.y2a_c00128{bottom:502.410000px;}
.y27_c00128{bottom:523.560000px;}
.y28_c00128{bottom:523.635000px;}
.y26_c00128{bottom:544.875000px;}
.y25_c00128{bottom:545.250000px;}
.y24_c00128{bottom:545.535000px;}
.y23_c00128{bottom:566.460000px;}
.y22_c00128{bottom:566.760000px;}
.y21_c00128{bottom:567.135000px;}
.y20_c00128{bottom:634.785000px;}
.y1f_c00128{bottom:673.710000px;}
.y1e_c00128{bottom:674.085000px;}
.y1d_c00128{bottom:695.685000px;}
.y1c_c00128{bottom:706.500000px;}
.y1b_c00128{bottom:717.660000px;}
.y1a_c00128{bottom:739.575000px;}
.y19_c00128{bottom:761.160000px;}
.y17_c00128{bottom:780.300000px;}
.y18_c00128{bottom:782.760000px;}
.y16_c00128{bottom:804.375000px;}
.y15_c00128{bottom:804.435000px;}
.y14_c00128{bottom:826.335000px;}
.y13_c00128{bottom:847.560000px;}
.y12_c00128{bottom:867.060000px;}
.yf_c00128{bottom:868.875000px;}
.y11_c00128{bottom:869.175000px;}
.y10_c00128{bottom:869.925000px;}
.ye_c00128{bottom:889.335000px;}
.yd_c00128{bottom:890.835000px;}
.yc_c00128{bottom:911.685000px;}
.yb_c00128{bottom:933.300000px;}
.ya_c00128{bottom:952.710000px;}
.y9_c00128{bottom:954.210000px;}
.y8_c00128{bottom:954.900000px;}
.y7_c00128{bottom:974.310000px;}
.y6_c00128{bottom:976.125000px;}
.y5_c00128{bottom:998.775000px;}
.y4_c00128{bottom:1019.310000px;}
.y3_c00128{bottom:1073.685000px;}
.y2_c00128{bottom:1077.675000px;}
.y1_c00128{bottom:1078.335000px;}
.h7_c00128{height:35.332031px;}
.h1_c00128{height:47.085938px;}
.h9_c00128{height:47.109375px;}
.ha_c00128{height:54.421875px;}
.hd_c00128{height:64.743164px;}
.hb_c00128{height:64.775391px;}
.h6_c00128{height:70.664062px;}
.h5_c00128{height:72.562500px;}
.h4_c00128{height:76.514648px;}
.h2_c00128{height:78.609375px;}
.hc_c00128{height:82.400391px;}
.h3_c00128{height:82.441406px;}
.h8_c00128{height:86.338763px;}
.h0_c00128{height:1174.500000px;}
.w0_c00128{width:731.977200px;}
.w1_c00128{width:732.000000px;}
.xf_c00128{left:-21.259800px;}
.x10_c00128{left:-16.909800px;}
.x11_c00128{left:-11.509800px;}
.x0_c00128{left:0.000000px;}
.x4_c00128{left:47.515200px;}
.x7_c00128{left:48.940200px;}
.x12_c00128{left:50.740200px;}
.x1a_c00128{left:52.915200px;}
.x24_c00128{left:54.340200px;}
.x25_c00128{left:55.390200px;}
.x28_c00128{left:56.515200px;}
.x2d_c00128{left:57.940200px;}
.x30_c00128{left:58.990200px;}
.x31_c00128{left:60.490200px;}
.xb_c00128{left:66.940200px;}
.x29_c00128{left:74.515200px;}
.x32_c00128{left:76.300200px;}
.x14_c00128{left:78.790200px;}
.x5_c00128{left:80.965200px;}
.x13_c00128{left:82.390200px;}
.x16_c00128{left:83.515200px;}
.x21_c00128{left:84.925200px;}
.x2e_c00128{left:112.990200px;}
.x15_c00128{left:117.340200px;}
.xc_c00128{left:119.515200px;}
.x1d_c00128{left:129.565200px;}
.x33_c00128{left:135.715200px;}
.x2a_c00128{left:140.365200px;}
.x17_c00128{left:150.790200px;}
.x26_c00128{left:159.115200px;}
.x23_c00128{left:161.590200px;}
.x1b_c00128{left:163.090200px;}
.x18_c00128{left:172.090200px;}
.x19_c00128{left:205.165200px;}
.x2b_c00128{left:206.290200px;}
.x2f_c00128{left:229.315200px;}
.x20_c00128{left:254.515200px;}
.x1c_c00128{left:265.690200px;}
.x22_c00128{left:274.690200px;}
.x1_c00128{left:283.690200px;}
.x2c_c00128{left:297.715200px;}
.xd_c00128{left:346.315200px;}
.xa_c00128{left:375.115200px;}
.x8_c00128{left:387.715200px;}
.x9_c00128{left:406.390200px;}
.x27_c00128{left:408.190200px;}
.x6_c00128{left:446.740200px;}
.x1e_c00128{left:451.390200px;}
.x2_c00128{left:456.490200px;}
.xe_c00128{left:541.390200px;}
.x3_c00128{left:618.115200px;}
.x1f_c00128{left:637.915200px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls0_c00128{letter-spacing:0.000000pt;}
.ws0_c00128{word-spacing:0.000000pt;}
.fs4_c00128{font-size:32.000000pt;}
.fs0_c00128{font-size:42.666667pt;}
.fs5_c00128{font-size:48.000000pt;}
.fs6_c00128{font-size:58.666667pt;}
.fs3_c00128{font-size:64.000000pt;}
.fs1_c00128{font-size:69.333333pt;}
.fs2_c00128{font-size:74.666667pt;}
.y0_c00128{bottom:0.000000pt;}
.y48_c00128{bottom:72.120000pt;}
.y46_c00128{bottom:87.186667pt;}
.y47_c00128{bottom:87.786667pt;}
.y45_c00128{bottom:102.186667pt;}
.y44_c00128{bottom:117.253333pt;}
.y43_c00128{bottom:131.666667pt;}
.y42_c00128{bottom:146.386667pt;}
.y41_c00128{bottom:160.453333pt;}
.y40_c00128{bottom:174.520000pt;}
.y3f_c00128{bottom:175.453333pt;}
.y3d_c00128{bottom:189.253333pt;}
.y3c_c00128{bottom:189.586667pt;}
.y3b_c00128{bottom:190.186667pt;}
.y3e_c00128{bottom:190.853333pt;}
.y3a_c00128{bottom:238.253333pt;}
.y39_c00128{bottom:257.133333pt;}
.y38_c00128{bottom:276.000000pt;}
.y35_c00128{bottom:294.253333pt;}
.y36_c00128{bottom:294.520000pt;}
.y34_c00128{bottom:294.586667pt;}
.y37_c00128{bottom:295.186667pt;}
.y32_c00128{bottom:313.133333pt;}
.y33_c00128{bottom:315.333333pt;}
.y31_c00128{bottom:331.720000pt;}
.y30_c00128{bottom:350.586667pt;}
.y2f_c00128{bottom:369.453333pt;}
.y2e_c00128{bottom:388.666667pt;}
.y2c_c00128{bottom:407.853333pt;}
.y2d_c00128{bottom:408.120000pt;}
.y2b_c00128{bottom:427.053333pt;}
.y29_c00128{bottom:446.253333pt;}
.y2a_c00128{bottom:446.586667pt;}
.y27_c00128{bottom:465.386667pt;}
.y28_c00128{bottom:465.453333pt;}
.y26_c00128{bottom:484.333333pt;}
.y25_c00128{bottom:484.666667pt;}
.y24_c00128{bottom:484.920000pt;}
.y23_c00128{bottom:503.520000pt;}
.y22_c00128{bottom:503.786667pt;}
.y21_c00128{bottom:504.120000pt;}
.y20_c00128{bottom:564.253333pt;}
.y1f_c00128{bottom:598.853333pt;}
.y1e_c00128{bottom:599.186667pt;}
.y1d_c00128{bottom:618.386667pt;}
.y1c_c00128{bottom:628.000000pt;}
.y1b_c00128{bottom:637.920000pt;}
.y1a_c00128{bottom:657.400000pt;}
.y19_c00128{bottom:676.586667pt;}
.y17_c00128{bottom:693.600000pt;}
.y18_c00128{bottom:695.786667pt;}
.y16_c00128{bottom:715.000000pt;}
.y15_c00128{bottom:715.053333pt;}
.y14_c00128{bottom:734.520000pt;}
.y13_c00128{bottom:753.386667pt;}
.y12_c00128{bottom:770.720000pt;}
.yf_c00128{bottom:772.333333pt;}
.y11_c00128{bottom:772.600000pt;}
.y10_c00128{bottom:773.266667pt;}
.ye_c00128{bottom:790.520000pt;}
.yd_c00128{bottom:791.853333pt;}
.yc_c00128{bottom:810.386667pt;}
.yb_c00128{bottom:829.600000pt;}
.ya_c00128{bottom:846.853333pt;}
.y9_c00128{bottom:848.186667pt;}
.y8_c00128{bottom:848.800000pt;}
.y7_c00128{bottom:866.053333pt;}
.y6_c00128{bottom:867.666667pt;}
.y5_c00128{bottom:887.800000pt;}
.y4_c00128{bottom:906.053333pt;}
.y3_c00128{bottom:954.386667pt;}
.y2_c00128{bottom:957.933333pt;}
.y1_c00128{bottom:958.520000pt;}
.h7_c00128{height:31.406250pt;}
.h1_c00128{height:41.854167pt;}
.h9_c00128{height:41.875000pt;}
.ha_c00128{height:48.375000pt;}
.hd_c00128{height:57.549479pt;}
.hb_c00128{height:57.578125pt;}
.h6_c00128{height:62.812500pt;}
.h5_c00128{height:64.500000pt;}
.h4_c00128{height:68.013021pt;}
.h2_c00128{height:69.875000pt;}
.hc_c00128{height:73.244792pt;}
.h3_c00128{height:73.281250pt;}
.h8_c00128{height:76.745567pt;}
.h0_c00128{height:1044.000000pt;}
.w0_c00128{width:650.646400pt;}
.w1_c00128{width:650.666667pt;}
.xf_c00128{left:-18.897600pt;}
.x10_c00128{left:-15.030933pt;}
.x11_c00128{left:-10.230933pt;}
.x0_c00128{left:0.000000pt;}
.x4_c00128{left:42.235733pt;}
.x7_c00128{left:43.502400pt;}
.x12_c00128{left:45.102400pt;}
.x1a_c00128{left:47.035733pt;}
.x24_c00128{left:48.302400pt;}
.x25_c00128{left:49.235733pt;}
.x28_c00128{left:50.235733pt;}
.x2d_c00128{left:51.502400pt;}
.x30_c00128{left:52.435733pt;}
.x31_c00128{left:53.769067pt;}
.xb_c00128{left:59.502400pt;}
.x29_c00128{left:66.235733pt;}
.x32_c00128{left:67.822400pt;}
.x14_c00128{left:70.035733pt;}
.x5_c00128{left:71.969067pt;}
.x13_c00128{left:73.235733pt;}
.x16_c00128{left:74.235733pt;}
.x21_c00128{left:75.489067pt;}
.x2e_c00128{left:100.435733pt;}
.x15_c00128{left:104.302400pt;}
.xc_c00128{left:106.235733pt;}
.x1d_c00128{left:115.169067pt;}
.x33_c00128{left:120.635733pt;}
.x2a_c00128{left:124.769067pt;}
.x17_c00128{left:134.035733pt;}
.x26_c00128{left:141.435733pt;}
.x23_c00128{left:143.635733pt;}
.x1b_c00128{left:144.969067pt;}
.x18_c00128{left:152.969067pt;}
.x19_c00128{left:182.369067pt;}
.x2b_c00128{left:183.369067pt;}
.x2f_c00128{left:203.835733pt;}
.x20_c00128{left:226.235733pt;}
.x1c_c00128{left:236.169067pt;}
.x22_c00128{left:244.169067pt;}
.x1_c00128{left:252.169067pt;}
.x2c_c00128{left:264.635733pt;}
.xd_c00128{left:307.835733pt;}
.xa_c00128{left:333.435733pt;}
.x8_c00128{left:344.635733pt;}
.x9_c00128{left:361.235733pt;}
.x27_c00128{left:362.835733pt;}
.x6_c00128{left:397.102400pt;}
.x1e_c00128{left:401.235733pt;}
.x2_c00128{left:405.769067pt;}
.xe_c00128{left:481.235733pt;}
.x3_c00128{left:549.435733pt;}
.x1f_c00128{left:567.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f80e8d2ee2cdb5779c8b230.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00129;src:url('chunks/assets/font_b6ea0508f5536c2f990bfdb7.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00129;src:url('chunks/assets/font_8f71ab9f9bdcdaa899434068.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00129{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m13_c00129{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m11_c00129{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m9_c00129{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c00129{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6_c00129{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00129{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4_c00129{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c00129{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00129{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb_c00129{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c00129{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc_c00129{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00129{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf_c00129{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00129{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00129{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00129{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c00129{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m17_c00129{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c00129{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c00129{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00129{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00129{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19_c00129{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1_c00129{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00129{color:transparent;}
.fs1_c00129{font-size:54.000000px;}
.fs2_c00129{font-size:66.000000px;}
.fs0_c00129{font-size:78.000000px;}
.y0_c00129{bottom:0.000000px;}
.y39_c00129{bottom:86.625000px;}
.y38_c00129{bottom:93.435000px;}
.y37_c00129{bottom:97.335000px;}
.y36_c00129{bottom:106.335000px;}
.y35_c00129{bottom:114.585000px;}
.y34_c00129{bottom:119.685000px;}
.y33_c00129{bottom:128.685000px;}
.y32_c00129{bottom:136.635000px;}
.y31_c00129{bottom:153.585000px;}
.y30_c00129{bottom:162.510000px;}
.y2f_c00129{bottom:171.885000px;}
.y2e_c00129{bottom:174.750000px;}
.y2d_c00129{bottom:177.285000px;}
.y2c_c00129{bottom:179.460000px;}
.y2b_c00129{bottom:182.685000px;}
.y2a_c00129{bottom:189.510000px;}
.y29_c00129{bottom:205.410000px;}
.y28_c00129{bottom:213.660000px;}
.y27_c00129{bottom:222.000000px;}
.y26_c00129{bottom:229.875000px;}
.y25_c00129{bottom:300.810000px;}
.y24_c00129{bottom:317.685000px;}
.y23_c00129{bottom:336.810000px;}
.y22_c00129{bottom:342.900000px;}
.y21_c00129{bottom:447.285000px;}
.y20_c00129{bottom:469.260000px;}
.y1f_c00129{bottom:490.125000px;}
.y1e_c00129{bottom:511.710000px;}
.y1d_c00129{bottom:512.835000px;}
.y1c_c00129{bottom:532.185000px;}
.y1b_c00129{bottom:533.385000px;}
.y1a_c00129{bottom:554.535000px;}
.y19_c00129{bottom:576.210000px;}
.y18_c00129{bottom:597.060000px;}
.y17_c00129{bottom:618.960000px;}
.y16_c00129{bottom:640.635000px;}
.y15_c00129{bottom:661.875000px;}
.y14_c00129{bottom:683.085000px;}
.y13_c00129{bottom:704.310000px;}
.y12_c00129{bottom:725.625000px;}
.y11_c00129{bottom:745.710000px;}
.y10_c00129{bottom:768.060000px;}
.yf_c00129{bottom:790.425000px;}
.ye_c00129{bottom:805.875000px;}
.yd_c00129{bottom:831.435000px;}
.yc_c00129{bottom:853.050000px;}
.yb_c00129{bottom:874.560000px;}
.ya_c00129{bottom:895.875000px;}
.y9_c00129{bottom:916.335000px;}
.y8_c00129{bottom:939.060000px;}
.y7_c00129{bottom:953.460000px;}
.y6_c00129{bottom:980.085000px;}
.y5_c00129{bottom:1001.400000px;}
.y4_c00129{bottom:1021.500000px;}
.y1_c00129{bottom:1069.335000px;}
.y3_c00129{bottom:1079.085000px;}
.y2_c00129{bottom:1085.250000px;}
.h2_c00129{height:52.998047px;}
.h5_c00129{height:64.743164px;}
.h4_c00129{height:64.775391px;}
.h3_c00129{height:76.514648px;}
.h1_c00129{height:76.552734px;}
.h0_c00129{height:1174.500000px;}
.w0_c00129{width:731.977200px;}
.w1_c00129{width:732.000000px;}
.x0_c00129{left:0.000000px;}
.x7_c00129{left:55.090200px;}
.x4_c00129{left:56.140200px;}
.xb_c00129{left:57.940200px;}
.xd_c00129{left:59.365200px;}
.x12_c00129{left:60.790200px;}
.x17_c00129{left:61.915200px;}
.x1_c00129{left:75.550200px;}
.x10_c00129{left:76.990200px;}
.x8_c00129{left:84.550200px;}
.x6_c00129{left:85.675200px;}
.x5_c00129{left:87.490200px;}
.xf_c00129{left:91.390200px;}
.xa_c00129{left:97.540200px;}
.x2_c00129{left:101.515200px;}
.x13_c00129{left:104.365200px;}
.x16_c00129{left:111.190200px;}
.xe_c00129{left:112.315200px;}
.x18_c00129{left:170.290200px;}
.x14_c00129{left:198.715200px;}
.xc_c00129{left:231.115200px;}
.x1c_c00129{left:262.765200px;}
.x3_c00129{left:272.515200px;}
.x15_c00129{left:307.390200px;}
.x1b_c00129{left:446.365200px;}
.x9_c00129{left:479.890200px;}
.x19_c00129{left:580.690200px;}
.x11_c00129{left:588.190200px;}
.x1a_c00129{left:601.915200px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls0_c00129{letter-spacing:0.000000pt;}
.ws0_c00129{word-spacing:0.000000pt;}
.fs1_c00129{font-size:48.000000pt;}
.fs2_c00129{font-size:58.666667pt;}
.fs0_c00129{font-size:69.333333pt;}
.y0_c00129{bottom:0.000000pt;}
.y39_c00129{bottom:77.000000pt;}
.y38_c00129{bottom:83.053333pt;}
.y37_c00129{bottom:86.520000pt;}
.y36_c00129{bottom:94.520000pt;}
.y35_c00129{bottom:101.853333pt;}
.y34_c00129{bottom:106.386667pt;}
.y33_c00129{bottom:114.386667pt;}
.y32_c00129{bottom:121.453333pt;}
.y31_c00129{bottom:136.520000pt;}
.y30_c00129{bottom:144.453333pt;}
.y2f_c00129{bottom:152.786667pt;}
.y2e_c00129{bottom:155.333333pt;}
.y2d_c00129{bottom:157.586667pt;}
.y2c_c00129{bottom:159.520000pt;}
.y2b_c00129{bottom:162.386667pt;}
.y2a_c00129{bottom:168.453333pt;}
.y29_c00129{bottom:182.586667pt;}
.y28_c00129{bottom:189.920000pt;}
.y27_c00129{bottom:197.333333pt;}
.y26_c00129{bottom:204.333333pt;}
.y25_c00129{bottom:267.386667pt;}
.y24_c00129{bottom:282.386667pt;}
.y23_c00129{bottom:299.386667pt;}
.y22_c00129{bottom:304.800000pt;}
.y21_c00129{bottom:397.586667pt;}
.y20_c00129{bottom:417.120000pt;}
.y1f_c00129{bottom:435.666667pt;}
.y1e_c00129{bottom:454.853333pt;}
.y1d_c00129{bottom:455.853333pt;}
.y1c_c00129{bottom:473.053333pt;}
.y1b_c00129{bottom:474.120000pt;}
.y1a_c00129{bottom:492.920000pt;}
.y19_c00129{bottom:512.186667pt;}
.y18_c00129{bottom:530.720000pt;}
.y17_c00129{bottom:550.186667pt;}
.y16_c00129{bottom:569.453333pt;}
.y15_c00129{bottom:588.333333pt;}
.y14_c00129{bottom:607.186667pt;}
.y13_c00129{bottom:626.053333pt;}
.y12_c00129{bottom:645.000000pt;}
.y11_c00129{bottom:662.853333pt;}
.y10_c00129{bottom:682.720000pt;}
.yf_c00129{bottom:702.600000pt;}
.ye_c00129{bottom:716.333333pt;}
.yd_c00129{bottom:739.053333pt;}
.yc_c00129{bottom:758.266667pt;}
.yb_c00129{bottom:777.386667pt;}
.ya_c00129{bottom:796.333333pt;}
.y9_c00129{bottom:814.520000pt;}
.y8_c00129{bottom:834.720000pt;}
.y7_c00129{bottom:847.520000pt;}
.y6_c00129{bottom:871.186667pt;}
.y5_c00129{bottom:890.133333pt;}
.y4_c00129{bottom:908.000000pt;}
.y1_c00129{bottom:950.520000pt;}
.y3_c00129{bottom:959.186667pt;}
.y2_c00129{bottom:964.666667pt;}
.h2_c00129{height:47.109375pt;}
.h5_c00129{height:57.549479pt;}
.h4_c00129{height:57.578125pt;}
.h3_c00129{height:68.013021pt;}
.h1_c00129{height:68.046875pt;}
.h0_c00129{height:1044.000000pt;}
.w0_c00129{width:650.646400pt;}
.w1_c00129{width:650.666667pt;}
.x0_c00129{left:0.000000pt;}
.x7_c00129{left:48.969067pt;}
.x4_c00129{left:49.902400pt;}
.xb_c00129{left:51.502400pt;}
.xd_c00129{left:52.769067pt;}
.x12_c00129{left:54.035733pt;}
.x17_c00129{left:55.035733pt;}
.x1_c00129{left:67.155733pt;}
.x10_c00129{left:68.435733pt;}
.x8_c00129{left:75.155733pt;}
.x6_c00129{left:76.155733pt;}
.x5_c00129{left:77.769067pt;}
.xf_c00129{left:81.235733pt;}
.xa_c00129{left:86.702400pt;}
.x2_c00129{left:90.235733pt;}
.x13_c00129{left:92.769067pt;}
.x16_c00129{left:98.835733pt;}
.xe_c00129{left:99.835733pt;}
.x18_c00129{left:151.369067pt;}
.x14_c00129{left:176.635733pt;}
.xc_c00129{left:205.435733pt;}
.x1c_c00129{left:233.569067pt;}
.x3_c00129{left:242.235733pt;}
.x15_c00129{left:273.235733pt;}
.x1b_c00129{left:396.769067pt;}
.x9_c00129{left:426.569067pt;}
.x19_c00129{left:516.169067pt;}
.x11_c00129{left:522.835733pt;}
.x1a_c00129{left:535.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95944923edad592dbb99f490.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00130;src:url('chunks/assets/font_1144f4b21edcd83c9f1c4e71.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00130;src:url('chunks/assets/font_22edf84d5e255d67dc32d696.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00130;src:url('chunks/assets/font_4df727af28c8369dde813de1.woff2')format("woff");}.ff4_c00130{font-family:ff4_c00130;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00130{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m2_c00130{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m17_c00130{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1_c00130{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00130{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m19_c00130{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m15_c00130{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00130{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m0_c00130{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00130{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m18_c00130{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m16_c00130{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c00130{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c00130{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00130{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00130{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c00130{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00130{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00130{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00130{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8_c00130{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00130{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00130{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00130{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00130{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00130{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00130{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00130{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c00130{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c00130{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5_c00130{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m10_c00130{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00130{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.v1_c00130{vertical-align:1.500000px;}
.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;}
._0_c00130{width:11.335696px;}
.fc0_c00130{color:transparent;}
.fs4_c00130{font-size:24.000000px;}
.fs2_c00130{font-size:30.000000px;}
.fs1_c00130{font-size:66.000000px;}
.fs3_c00130{font-size:72.000000px;}
.fs0_c00130{font-size:84.000000px;}
.y0_c00130{bottom:0.000000px;}
.y39_c00130{bottom:77.250000px;}
.y38_c00130{bottom:97.785000px;}
.y37_c00130{bottom:114.660000px;}
.y36_c00130{bottom:130.785000px;}
.y35_c00130{bottom:147.060000px;}
.y32_c00130{bottom:203.250000px;}
.y33_c00130{bottom:206.835000px;}
.y34_c00130{bottom:211.500000px;}
.y31_c00130{bottom:238.125000px;}
.y2f_c00130{bottom:245.010000px;}
.y30_c00130{bottom:255.060000px;}
.y2e_c00130{bottom:288.900000px;}
.y2d_c00130{bottom:310.500000px;}
.y2b_c00130{bottom:330.660000px;}
.y2c_c00130{bottom:332.460000px;}
.y28_c00130{bottom:352.275000px;}
.y29_c00130{bottom:355.500000px;}
.y2a_c00130{bottom:356.625000px;}
.y26_c00130{bottom:372.435000px;}
.y27_c00130{bottom:373.125000px;}
.y21_c00130{bottom:394.035000px;}
.y22_c00130{bottom:395.400000px;}
.y23_c00130{bottom:396.150000px;}
.y24_c00130{bottom:397.275000px;}
.y25_c00130{bottom:398.310000px;}
.y20_c00130{bottom:415.260000px;}
.y1f_c00130{bottom:437.625000px;}
.y1e_c00130{bottom:458.085000px;}
.y1d_c00130{bottom:480.435000px;}
.y1c_c00130{bottom:502.710000px;}
.y1a_c00130{bottom:522.885000px;}
.y1b_c00130{bottom:523.935000px;}
.y19_c00130{bottom:543.375000px;}
.y18_c00130{bottom:630.885000px;}
.y17_c00130{bottom:652.500000px;}
.y16_c00130{bottom:674.085000px;}
.y15_c00130{bottom:696.060000px;}
.y14_c00130{bottom:717.285000px;}
.y13_c00130{bottom:738.885000px;}
.y12_c00130{bottom:761.160000px;}
.y11_c00130{bottom:782.385000px;}
.y10_c00130{bottom:804.060000px;}
.yf_c00130{bottom:825.675000px;}
.ye_c00130{bottom:847.275000px;}
.yd_c00130{bottom:868.125000px;}
.yc_c00130{bottom:889.710000px;}
.yb_c00130{bottom:910.935000px;}
.ya_c00130{bottom:932.250000px;}
.y9_c00130{bottom:953.460000px;}
.y4_c00130{bottom:962.085000px;}
.y5_c00130{bottom:962.460000px;}
.y8_c00130{bottom:975.060000px;}
.y3_c00130{bottom:990.900000px;}
.y7_c00130{bottom:996.300000px;}
.y6_c00130{bottom:1018.275000px;}
.y2_c00130{bottom:1072.560000px;}
.y1_c00130{bottom:1077.675000px;}
.h5_c00130{height:23.554688px;}
.h3_c00130{height:29.443359px;}
.h8_c00130{height:64.775391px;}
.h2_c00130{height:66.515625px;}
.h4_c00130{height:70.664062px;}
.h6_c00130{height:82.400391px;}
.h1_c00130{height:84.656250px;}
.h7_c00130{height:86.156250px;}
.h0_c00130{height:1174.500000px;}
.w0_c00130{width:731.977200px;}
.w1_c00130{width:732.000000px;}
.x3_c00130{left:-21.259800px;}
.x4_c00130{left:-18.709800px;}
.x5_c00130{left:-15.859800px;}
.x6_c00130{left:-12.634800px;}
.x0_c00130{left:0.000000px;}
.xe_c00130{left:37.765200px;}
.xb_c00130{left:39.565200px;}
.xa_c00130{left:40.690200px;}
.x9_c00130{left:41.740200px;}
.x8_c00130{left:43.915200px;}
.x1d_c00130{left:57.940200px;}
.xf_c00130{left:69.490200px;}
.xc_c00130{left:71.590200px;}
.x17_c00130{left:72.715200px;}
.x7_c00130{left:76.300200px;}
.x14_c00130{left:100.090200px;}
.x18_c00130{left:191.875200px;}
.x1b_c00130{left:200.875200px;}
.xd_c00130{left:240.490200px;}
.x10_c00130{left:273.565200px;}
.x1_c00130{left:283.990200px;}
.x19_c00130{left:296.965200px;}
.x1a_c00130{left:395.965200px;}
.x11_c00130{left:470.890200px;}
.x12_c00130{left:484.540200px;}
.x15_c00130{left:516.565200px;}
.x16_c00130{left:602.590200px;}
.x13_c00130{left:609.790200px;}
.x2_c00130{left:616.315200px;}
.x1c_c00130{left:637.165200px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.v1_c00130{vertical-align:1.333333pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.ws0_c00130{word-spacing:0.000000pt;}
._0_c00130{width:10.076174pt;}
.fs4_c00130{font-size:21.333333pt;}
.fs2_c00130{font-size:26.666667pt;}
.fs1_c00130{font-size:58.666667pt;}
.fs3_c00130{font-size:64.000000pt;}
.fs0_c00130{font-size:74.666667pt;}
.y0_c00130{bottom:0.000000pt;}
.y39_c00130{bottom:68.666667pt;}
.y38_c00130{bottom:86.920000pt;}
.y37_c00130{bottom:101.920000pt;}
.y36_c00130{bottom:116.253333pt;}
.y35_c00130{bottom:130.720000pt;}
.y32_c00130{bottom:180.666667pt;}
.y33_c00130{bottom:183.853333pt;}
.y34_c00130{bottom:188.000000pt;}
.y31_c00130{bottom:211.666667pt;}
.y2f_c00130{bottom:217.786667pt;}
.y30_c00130{bottom:226.720000pt;}
.y2e_c00130{bottom:256.800000pt;}
.y2d_c00130{bottom:276.000000pt;}
.y2b_c00130{bottom:293.920000pt;}
.y2c_c00130{bottom:295.520000pt;}
.y28_c00130{bottom:313.133333pt;}
.y29_c00130{bottom:316.000000pt;}
.y2a_c00130{bottom:317.000000pt;}
.y26_c00130{bottom:331.053333pt;}
.y27_c00130{bottom:331.666667pt;}
.y21_c00130{bottom:350.253333pt;}
.y22_c00130{bottom:351.466667pt;}
.y23_c00130{bottom:352.133333pt;}
.y24_c00130{bottom:353.133333pt;}
.y25_c00130{bottom:354.053333pt;}
.y20_c00130{bottom:369.120000pt;}
.y1f_c00130{bottom:389.000000pt;}
.y1e_c00130{bottom:407.186667pt;}
.y1d_c00130{bottom:427.053333pt;}
.y1c_c00130{bottom:446.853333pt;}
.y1a_c00130{bottom:464.786667pt;}
.y1b_c00130{bottom:465.720000pt;}
.y19_c00130{bottom:483.000000pt;}
.y18_c00130{bottom:560.786667pt;}
.y17_c00130{bottom:580.000000pt;}
.y16_c00130{bottom:599.186667pt;}
.y15_c00130{bottom:618.720000pt;}
.y14_c00130{bottom:637.586667pt;}
.y13_c00130{bottom:656.786667pt;}
.y12_c00130{bottom:676.586667pt;}
.y11_c00130{bottom:695.453333pt;}
.y10_c00130{bottom:714.720000pt;}
.yf_c00130{bottom:733.933333pt;}
.ye_c00130{bottom:753.133333pt;}
.yd_c00130{bottom:771.666667pt;}
.yc_c00130{bottom:790.853333pt;}
.yb_c00130{bottom:809.720000pt;}
.ya_c00130{bottom:828.666667pt;}
.y9_c00130{bottom:847.520000pt;}
.y4_c00130{bottom:855.186667pt;}
.y5_c00130{bottom:855.520000pt;}
.y8_c00130{bottom:866.720000pt;}
.y3_c00130{bottom:880.800000pt;}
.y7_c00130{bottom:885.600000pt;}
.y6_c00130{bottom:905.133333pt;}
.y2_c00130{bottom:953.386667pt;}
.y1_c00130{bottom:957.933333pt;}
.h5_c00130{height:20.937500pt;}
.h3_c00130{height:26.171875pt;}
.h8_c00130{height:57.578125pt;}
.h2_c00130{height:59.125000pt;}
.h4_c00130{height:62.812500pt;}
.h6_c00130{height:73.244792pt;}
.h1_c00130{height:75.250000pt;}
.h7_c00130{height:76.583333pt;}
.h0_c00130{height:1044.000000pt;}
.w0_c00130{width:650.646400pt;}
.w1_c00130{width:650.666667pt;}
.x3_c00130{left:-18.897600pt;}
.x4_c00130{left:-16.630933pt;}
.x5_c00130{left:-14.097600pt;}
.x6_c00130{left:-11.230933pt;}
.x0_c00130{left:0.000000pt;}
.xe_c00130{left:33.569067pt;}
.xb_c00130{left:35.169067pt;}
.xa_c00130{left:36.169067pt;}
.x9_c00130{left:37.102400pt;}
.x8_c00130{left:39.035733pt;}
.x1d_c00130{left:51.502400pt;}
.xf_c00130{left:61.769067pt;}
.xc_c00130{left:63.635733pt;}
.x17_c00130{left:64.635733pt;}
.x7_c00130{left:67.822400pt;}
.x14_c00130{left:88.969067pt;}
.x18_c00130{left:170.555733pt;}
.x1b_c00130{left:178.555733pt;}
.xd_c00130{left:213.769067pt;}
.x10_c00130{left:243.169067pt;}
.x1_c00130{left:252.435733pt;}
.x19_c00130{left:263.969067pt;}
.x1a_c00130{left:351.969067pt;}
.x11_c00130{left:418.569067pt;}
.x12_c00130{left:430.702400pt;}
.x15_c00130{left:459.169067pt;}
.x16_c00130{left:535.635733pt;}
.x13_c00130{left:542.035733pt;}
.x2_c00130{left:547.835733pt;}
.x1c_c00130{left:566.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cad15451fe07ba44e98e3246.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00131;src:url('chunks/assets/font_4ba699118d83158a381735c5.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00131;src:url('chunks/assets/font_cff7759e0c2c7af2ef7bc68e.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00131{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m11_c00131{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc_c00131{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00131{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8_c00131{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c00131{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3_c00131{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c00131{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00131{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00131{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m0_c00131{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00131{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c00131{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00131{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9_c00131{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00131{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00131{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00131{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c00131{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md_c00131{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,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:0.000000px;}
.fc0_c00131{color:transparent;}
.fs0_c00131{font-size:54.000000px;}
.fs3_c00131{font-size:66.000000px;}
.fs1_c00131{font-size:72.000000px;}
.fs2_c00131{font-size:84.000000px;}
.y0_c00131{bottom:0.000000px;}
.y34_c00131{bottom:72.510000px;}
.y33_c00131{bottom:89.085000px;}
.y32_c00131{bottom:96.285000px;}
.y31_c00131{bottom:116.085000px;}
.y30_c00131{bottom:137.310000px;}
.y2f_c00131{bottom:158.250000px;}
.y2e_c00131{bottom:180.135000px;}
.y2d_c00131{bottom:199.560000px;}
.y2c_c00131{bottom:206.085000px;}
.y2b_c00131{bottom:225.885000px;}
.y2a_c00131{bottom:245.310000px;}
.y29_c00131{bottom:265.125000px;}
.y28_c00131{bottom:286.035000px;}
.y27_c00131{bottom:305.085000px;}
.y26_c00131{bottom:309.060000px;}
.y25_c00131{bottom:311.250000px;}
.y24_c00131{bottom:328.875000px;}
.y23_c00131{bottom:349.710000px;}
.y22_c00131{bottom:371.685000px;}
.y21_c00131{bottom:393.285000px;}
.y20_c00131{bottom:414.510000px;}
.y1f_c00131{bottom:437.910000px;}
.y1e_c00131{bottom:457.035000px;}
.y1d_c00131{bottom:479.310000px;}
.y1c_c00131{bottom:500.250000px;}
.y1b_c00131{bottom:520.335000px;}
.y1a_c00131{bottom:521.460000px;}
.y19_c00131{bottom:521.835000px;}
.y18_c00131{bottom:542.685000px;}
.y17_c00131{bottom:564.285000px;}
.y16_c00131{bottom:585.510000px;}
.y15_c00131{bottom:607.500000px;}
.y14_c00131{bottom:629.085000px;}
.y13_c00131{bottom:650.310000px;}
.y12_c00131{bottom:671.625000px;}
.y11_c00131{bottom:693.135000px;}
.y10_c00131{bottom:714.375000px;}
.yf_c00131{bottom:736.035000px;}
.ye_c00131{bottom:756.885000px;}
.yd_c00131{bottom:778.875000px;}
.yc_c00131{bottom:796.500000px;}
.yb_c00131{bottom:820.275000px;}
.ya_c00131{bottom:841.875000px;}
.y9_c00131{bottom:862.710000px;}
.y8_c00131{bottom:884.025000px;}
.y7_c00131{bottom:905.625000px;}
.y6_c00131{bottom:927.210000px;}
.y5_c00131{bottom:948.060000px;}
.y4_c00131{bottom:963.525000px;}
.y3_c00131{bottom:989.460000px;}
.y2_c00131{bottom:1010.025000px;}
.y35_c00131{bottom:1057.125000px;}
.y1_c00131{bottom:1066.875000px;}
.h1_c00131{height:52.998047px;}
.h4_c00131{height:64.775391px;}
.h2_c00131{height:70.664062px;}
.h5_c00131{height:72.562500px;}
.h3_c00131{height:82.400391px;}
.h0_c00131{height:1174.500000px;}
.w0_c00131{width:731.977200px;}
.w1_c00131{width:732.000000px;}
.x0_c00131{left:0.000000px;}
.x6_c00131{left:65.515200px;}
.x5_c00131{left:66.565200px;}
.x4_c00131{left:68.365200px;}
.x2_c00131{left:70.165200px;}
.xb_c00131{left:71.290200px;}
.x11_c00131{left:73.090200px;}
.x13_c00131{left:87.490200px;}
.x7_c00131{left:96.490200px;}
.xa_c00131{left:97.915200px;}
.x3_c00131{left:98.965200px;}
.xf_c00131{left:100.390200px;}
.xe_c00131{left:102.940200px;}
.x10_c00131{left:216.340200px;}
.xc_c00131{left:245.890200px;}
.x1_c00131{left:283.990200px;}
.x8_c00131{left:339.115200px;}
.xd_c00131{left:345.190200px;}
.x12_c00131{left:439.915200px;}
.x9_c00131{left:570.940200px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls0_c00131{letter-spacing:0.000000pt;}
.ws0_c00131{word-spacing:0.000000pt;}
.fs0_c00131{font-size:48.000000pt;}
.fs3_c00131{font-size:58.666667pt;}
.fs1_c00131{font-size:64.000000pt;}
.fs2_c00131{font-size:74.666667pt;}
.y0_c00131{bottom:0.000000pt;}
.y34_c00131{bottom:64.453333pt;}
.y33_c00131{bottom:79.186667pt;}
.y32_c00131{bottom:85.586667pt;}
.y31_c00131{bottom:103.186667pt;}
.y30_c00131{bottom:122.053333pt;}
.y2f_c00131{bottom:140.666667pt;}
.y2e_c00131{bottom:160.120000pt;}
.y2d_c00131{bottom:177.386667pt;}
.y2c_c00131{bottom:183.186667pt;}
.y2b_c00131{bottom:200.786667pt;}
.y2a_c00131{bottom:218.053333pt;}
.y29_c00131{bottom:235.666667pt;}
.y28_c00131{bottom:254.253333pt;}
.y27_c00131{bottom:271.186667pt;}
.y26_c00131{bottom:274.720000pt;}
.y25_c00131{bottom:276.666667pt;}
.y24_c00131{bottom:292.333333pt;}
.y23_c00131{bottom:310.853333pt;}
.y22_c00131{bottom:330.386667pt;}
.y21_c00131{bottom:349.586667pt;}
.y20_c00131{bottom:368.453333pt;}
.y1f_c00131{bottom:389.253333pt;}
.y1e_c00131{bottom:406.253333pt;}
.y1d_c00131{bottom:426.053333pt;}
.y1c_c00131{bottom:444.666667pt;}
.y1b_c00131{bottom:462.520000pt;}
.y1a_c00131{bottom:463.520000pt;}
.y19_c00131{bottom:463.853333pt;}
.y18_c00131{bottom:482.386667pt;}
.y17_c00131{bottom:501.586667pt;}
.y16_c00131{bottom:520.453333pt;}
.y15_c00131{bottom:540.000000pt;}
.y14_c00131{bottom:559.186667pt;}
.y13_c00131{bottom:578.053333pt;}
.y12_c00131{bottom:597.000000pt;}
.y11_c00131{bottom:616.120000pt;}
.y10_c00131{bottom:635.000000pt;}
.yf_c00131{bottom:654.253333pt;}
.ye_c00131{bottom:672.786667pt;}
.yd_c00131{bottom:692.333333pt;}
.yc_c00131{bottom:708.000000pt;}
.yb_c00131{bottom:729.133333pt;}
.ya_c00131{bottom:748.333333pt;}
.y9_c00131{bottom:766.853333pt;}
.y8_c00131{bottom:785.800000pt;}
.y7_c00131{bottom:805.000000pt;}
.y6_c00131{bottom:824.186667pt;}
.y5_c00131{bottom:842.720000pt;}
.y4_c00131{bottom:856.466667pt;}
.y3_c00131{bottom:879.520000pt;}
.y2_c00131{bottom:897.800000pt;}
.y35_c00131{bottom:939.666667pt;}
.y1_c00131{bottom:948.333333pt;}
.h1_c00131{height:47.109375pt;}
.h4_c00131{height:57.578125pt;}
.h2_c00131{height:62.812500pt;}
.h5_c00131{height:64.500000pt;}
.h3_c00131{height:73.244792pt;}
.h0_c00131{height:1044.000000pt;}
.w0_c00131{width:650.646400pt;}
.w1_c00131{width:650.666667pt;}
.x0_c00131{left:0.000000pt;}
.x6_c00131{left:58.235733pt;}
.x5_c00131{left:59.169067pt;}
.x4_c00131{left:60.769067pt;}
.x2_c00131{left:62.369067pt;}
.xb_c00131{left:63.369067pt;}
.x11_c00131{left:64.969067pt;}
.x13_c00131{left:77.769067pt;}
.x7_c00131{left:85.769067pt;}
.xa_c00131{left:87.035733pt;}
.x3_c00131{left:87.969067pt;}
.xf_c00131{left:89.235733pt;}
.xe_c00131{left:91.502400pt;}
.x10_c00131{left:192.302400pt;}
.xc_c00131{left:218.569067pt;}
.x1_c00131{left:252.435733pt;}
.x8_c00131{left:301.435733pt;}
.xd_c00131{left:306.835733pt;}
.x12_c00131{left:391.035733pt;}
.x9_c00131{left:507.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d55d36e2d25fc8f3bd393b51.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00132;src:url('chunks/assets/font_cf639e6b3c40498ba9d12505.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00132;src:url('chunks/assets/font_30f1cdfec9af382fa13c09df.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00132;src:url('chunks/assets/font_70762334745cc4ba62efa0fb.woff2')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00132;src:url('chunks/assets/font_63cd845c3d98b410e19d081c.woff2')format("woff");}.ff5_c00132{font-family:ff5_c00132;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00132;src:url('chunks/assets/font_236dd84de12d64f282af61f3.woff2')format("woff");}.ff6_c00132{font-family:ff6_c00132;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00132{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m1_c00132{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m6_c00132{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m0_c00132{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m28_c00132{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m5_c00132{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m27_c00132{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m25_c00132{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m2_c00132{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m4_c00132{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me_c00132{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf_c00132{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m7_c00132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m10_c00132{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb_c00132{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9_c00132{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc_c00132{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00132{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.md_c00132{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00132{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c00132{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m13_c00132{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00132{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m11_c00132{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m23_c00132{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c00132{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m21_c00132{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m20_c00132{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00132{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m22_c00132{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m16_c00132{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00132{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00132{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m19_c00132{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00132{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00132{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00132{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m17_c00132{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m26_c00132{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m15_c00132{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00132{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00132{word-spacing:0.000000px;}
.fc0_c00132{color:transparent;}
.fs4_c00132{font-size:30.000000px;}
.fs2_c00132{font-size:36.000000px;}
.fs3_c00132{font-size:42.000000px;}
.fs1_c00132{font-size:48.000000px;}
.fs8_c00132{font-size:54.000000px;}
.fs9_c00132{font-size:60.000000px;}
.fs0_c00132{font-size:66.000000px;}
.fs7_c00132{font-size:72.000000px;}
.fs6_c00132{font-size:78.000000px;}
.fs5_c00132{font-size:84.000000px;}
.fsa_c00132{font-size:96.000000px;}
.y0_c00132{bottom:0.000000px;}
.y4b_c00132{bottom:15.285000px;}
.y38_c00132{bottom:80.460000px;}
.y34_c00132{bottom:101.685000px;}
.y35_c00132{bottom:102.435000px;}
.y36_c00132{bottom:102.810000px;}
.y37_c00132{bottom:103.875000px;}
.y8_c00132{bottom:111.810000px;}
.y32_c00132{bottom:122.910000px;}
.y33_c00132{bottom:123.660000px;}
.y2f_c00132{bottom:142.035000px;}
.y2e_c00132{bottom:142.785000px;}
.y30_c00132{bottom:143.460000px;}
.y31_c00132{bottom:145.935000px;}
.y2d_c00132{bottom:162.885000px;}
.y2c_c00132{bottom:184.185000px;}
.y2a_c00132{bottom:203.910000px;}
.y2b_c00132{bottom:204.000000px;}
.y29_c00132{bottom:224.835000px;}
.y28_c00132{bottom:246.435000px;}
.y27_c00132{bottom:267.660000px;}
.y26_c00132{bottom:288.900000px;}
.y25_c00132{bottom:309.750000px;}
.y24_c00132{bottom:310.125000px;}
.y22_c00132{bottom:331.035000px;}
.y23_c00132{bottom:333.900000px;}
.y21_c00132{bottom:352.275000px;}
.y1f_c00132{bottom:372.810000px;}
.y20_c00132{bottom:373.875000px;}
.y1d_c00132{bottom:393.660000px;}
.y1c_c00132{bottom:393.960000px;}
.y1e_c00132{bottom:394.335000px;}
.y1a_c00132{bottom:415.260000px;}
.y1b_c00132{bottom:417.060000px;}
.y19_c00132{bottom:437.250000px;}
.y18_c00132{bottom:458.835000px;}
.y17_c00132{bottom:480.435000px;}
.y16_c00132{bottom:502.335000px;}
.y48_c00132{bottom:563.910000px;}
.y47_c00132{bottom:581.250000px;}
.y46_c00132{bottom:598.500000px;}
.y49_c00132{bottom:607.125000px;}
.y4a_c00132{bottom:607.500000px;}
.y45_c00132{bottom:615.750000px;}
.y44_c00132{bottom:632.685000px;}
.y43_c00132{bottom:649.935000px;}
.y7_c00132{bottom:658.635000px;}
.y42_c00132{bottom:666.885000px;}
.y39_c00132{bottom:676.560000px;}
.y41_c00132{bottom:684.210000px;}
.y40_c00132{bottom:701.460000px;}
.y3f_c00132{bottom:718.710000px;}
.y3a_c00132{bottom:727.710000px;}
.y5_c00132{bottom:731.700000px;}
.y3e_c00132{bottom:735.660000px;}
.y3d_c00132{bottom:753.285000px;}
.y4_c00132{bottom:756.510000px;}
.y3c_c00132{bottom:770.250000px;}
.y6_c00132{bottom:781.335000px;}
.y3b_c00132{bottom:787.500000px;}
.y3_c00132{bottom:808.050000px;}
.y15_c00132{bottom:845.460000px;}
.y14_c00132{bottom:846.210000px;}
.y13_c00132{bottom:865.560000px;}
.y12_c00132{bottom:867.750000px;}
.y2_c00132{bottom:884.685000px;}
.y11_c00132{bottom:888.675000px;}
.y10_c00132{bottom:909.525000px;}
.yf_c00132{bottom:930.750000px;}
.ye_c00132{bottom:932.250000px;}
.y1_c00132{bottom:952.710000px;}
.yd_c00132{bottom:953.085000px;}
.yc_c00132{bottom:973.275000px;}
.yb_c00132{bottom:995.250000px;}
.ya_c00132{bottom:1014.300000px;}
.y9_c00132{bottom:1017.150000px;}
.hd_c00132{height:29.443359px;}
.h5_c00132{height:31.289062px;}
.h3_c00132{height:35.332031px;}
.h4_c00132{height:41.220703px;}
.h2_c00132{height:47.109375px;}
.he_c00132{height:52.998047px;}
.hb_c00132{height:54.421875px;}
.h1_c00132{height:64.775391px;}
.h9_c00132{height:70.628906px;}
.h8_c00132{height:76.514648px;}
.ha_c00132{height:82.400391px;}
.h7_c00132{height:82.441406px;}
.h6_c00132{height:84.656250px;}
.hc_c00132{height:94.218750px;}
.h0_c00132{height:1174.500000px;}
.w0_c00132{width:731.977200px;}
.w1_c00132{width:732.000000px;}
.x2_c00132{left:-20.509800px;}
.x1_c00132{left:-19.459800px;}
.x2b_c00132{left:-17.284800px;}
.x2c_c00132{left:-15.109800px;}
.x2d_c00132{left:-13.009800px;}
.x0_c00132{left:0.000000px;}
.x3_c00132{left:73.390200px;}
.x6_c00132{left:74.890200px;}
.xb_c00132{left:76.675200px;}
.xd_c00132{left:77.740200px;}
.x14_c00132{left:79.165200px;}
.x16_c00132{left:80.290200px;}
.x1c_c00132{left:82.765200px;}
.x25_c00132{left:101.890200px;}
.x5_c00132{left:106.915200px;}
.x7_c00132{left:109.090200px;}
.x12_c00132{left:110.140200px;}
.x19_c00132{left:111.190200px;}
.x18_c00132{left:112.690200px;}
.x1b_c00132{left:113.740200px;}
.x20_c00132{left:120.565200px;}
.xe_c00132{left:134.590200px;}
.x8_c00132{left:136.765200px;}
.x17_c00132{left:150.115200px;}
.x1d_c00132{left:202.690200px;}
.xa_c00132{left:230.740200px;}
.xf_c00132{left:246.190200px;}
.x10_c00132{left:265.690200px;}
.x1a_c00132{left:278.290200px;}
.x26_c00132{left:282.940200px;}
.x21_c00132{left:287.290200px;}
.x2a_c00132{left:291.190200px;}
.x11_c00132{left:296.965200px;}
.x13_c00132{left:319.690200px;}
.x1e_c00132{left:333.715200px;}
.x22_c00132{left:353.140200px;}
.x27_c00132{left:354.190200px;}
.x23_c00132{left:384.490200px;}
.x28_c00132{left:436.990200px;}
.x29_c00132{left:438.115200px;}
.x1f_c00132{left:466.165200px;}
.xc_c00132{left:499.690200px;}
.x24_c00132{left:541.090200px;}
.x4_c00132{left:588.565200px;}
.x9_c00132{left:608.740200px;}
.x15_c00132{left:660.940200px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls0_c00132{letter-spacing:0.000000pt;}
.ws0_c00132{word-spacing:0.000000pt;}
.fs4_c00132{font-size:26.666667pt;}
.fs2_c00132{font-size:32.000000pt;}
.fs3_c00132{font-size:37.333333pt;}
.fs1_c00132{font-size:42.666667pt;}
.fs8_c00132{font-size:48.000000pt;}
.fs9_c00132{font-size:53.333333pt;}
.fs0_c00132{font-size:58.666667pt;}
.fs7_c00132{font-size:64.000000pt;}
.fs6_c00132{font-size:69.333333pt;}
.fs5_c00132{font-size:74.666667pt;}
.fsa_c00132{font-size:85.333333pt;}
.y0_c00132{bottom:0.000000pt;}
.y4b_c00132{bottom:13.586667pt;}
.y38_c00132{bottom:71.520000pt;}
.y34_c00132{bottom:90.386667pt;}
.y35_c00132{bottom:91.053333pt;}
.y36_c00132{bottom:91.386667pt;}
.y37_c00132{bottom:92.333333pt;}
.y8_c00132{bottom:99.386667pt;}
.y32_c00132{bottom:109.253333pt;}
.y33_c00132{bottom:109.920000pt;}
.y2f_c00132{bottom:126.253333pt;}
.y2e_c00132{bottom:126.920000pt;}
.y30_c00132{bottom:127.520000pt;}
.y31_c00132{bottom:129.720000pt;}
.y2d_c00132{bottom:144.786667pt;}
.y2c_c00132{bottom:163.720000pt;}
.y2a_c00132{bottom:181.253333pt;}
.y2b_c00132{bottom:181.333333pt;}
.y29_c00132{bottom:199.853333pt;}
.y28_c00132{bottom:219.053333pt;}
.y27_c00132{bottom:237.920000pt;}
.y26_c00132{bottom:256.800000pt;}
.y25_c00132{bottom:275.333333pt;}
.y24_c00132{bottom:275.666667pt;}
.y22_c00132{bottom:294.253333pt;}
.y23_c00132{bottom:296.800000pt;}
.y21_c00132{bottom:313.133333pt;}
.y1f_c00132{bottom:331.386667pt;}
.y20_c00132{bottom:332.333333pt;}
.y1d_c00132{bottom:349.920000pt;}
.y1c_c00132{bottom:350.186667pt;}
.y1e_c00132{bottom:350.520000pt;}
.y1a_c00132{bottom:369.120000pt;}
.y1b_c00132{bottom:370.720000pt;}
.y19_c00132{bottom:388.666667pt;}
.y18_c00132{bottom:407.853333pt;}
.y17_c00132{bottom:427.053333pt;}
.y16_c00132{bottom:446.520000pt;}
.y48_c00132{bottom:501.253333pt;}
.y47_c00132{bottom:516.666667pt;}
.y46_c00132{bottom:532.000000pt;}
.y49_c00132{bottom:539.666667pt;}
.y4a_c00132{bottom:540.000000pt;}
.y45_c00132{bottom:547.333333pt;}
.y44_c00132{bottom:562.386667pt;}
.y43_c00132{bottom:577.720000pt;}
.y7_c00132{bottom:585.453333pt;}
.y42_c00132{bottom:592.786667pt;}
.y39_c00132{bottom:601.386667pt;}
.y41_c00132{bottom:608.186667pt;}
.y40_c00132{bottom:623.520000pt;}
.y3f_c00132{bottom:638.853333pt;}
.y3a_c00132{bottom:646.853333pt;}
.y5_c00132{bottom:650.400000pt;}
.y3e_c00132{bottom:653.920000pt;}
.y3d_c00132{bottom:669.586667pt;}
.y4_c00132{bottom:672.453333pt;}
.y3c_c00132{bottom:684.666667pt;}
.y6_c00132{bottom:694.520000pt;}
.y3b_c00132{bottom:700.000000pt;}
.y3_c00132{bottom:718.266667pt;}
.y15_c00132{bottom:751.520000pt;}
.y14_c00132{bottom:752.186667pt;}
.y13_c00132{bottom:769.386667pt;}
.y12_c00132{bottom:771.333333pt;}
.y2_c00132{bottom:786.386667pt;}
.y11_c00132{bottom:789.933333pt;}
.y10_c00132{bottom:808.466667pt;}
.yf_c00132{bottom:827.333333pt;}
.ye_c00132{bottom:828.666667pt;}
.y1_c00132{bottom:846.853333pt;}
.yd_c00132{bottom:847.186667pt;}
.yc_c00132{bottom:865.133333pt;}
.yb_c00132{bottom:884.666667pt;}
.ya_c00132{bottom:901.600000pt;}
.y9_c00132{bottom:904.133333pt;}
.hd_c00132{height:26.171875pt;}
.h5_c00132{height:27.812500pt;}
.h3_c00132{height:31.406250pt;}
.h4_c00132{height:36.640625pt;}
.h2_c00132{height:41.875000pt;}
.he_c00132{height:47.109375pt;}
.hb_c00132{height:48.375000pt;}
.h1_c00132{height:57.578125pt;}
.h9_c00132{height:62.781250pt;}
.h8_c00132{height:68.013021pt;}
.ha_c00132{height:73.244792pt;}
.h7_c00132{height:73.281250pt;}
.h6_c00132{height:75.250000pt;}
.hc_c00132{height:83.750000pt;}
.h0_c00132{height:1044.000000pt;}
.w0_c00132{width:650.646400pt;}
.w1_c00132{width:650.666667pt;}
.x2_c00132{left:-18.230933pt;}
.x1_c00132{left:-17.297600pt;}
.x2b_c00132{left:-15.364267pt;}
.x2c_c00132{left:-13.430933pt;}
.x2d_c00132{left:-11.564267pt;}
.x0_c00132{left:0.000000pt;}
.x3_c00132{left:65.235733pt;}
.x6_c00132{left:66.569067pt;}
.xb_c00132{left:68.155733pt;}
.xd_c00132{left:69.102400pt;}
.x14_c00132{left:70.369067pt;}
.x16_c00132{left:71.369067pt;}
.x1c_c00132{left:73.569067pt;}
.x25_c00132{left:90.569067pt;}
.x5_c00132{left:95.035733pt;}
.x7_c00132{left:96.969067pt;}
.x12_c00132{left:97.902400pt;}
.x19_c00132{left:98.835733pt;}
.x18_c00132{left:100.169067pt;}
.x1b_c00132{left:101.102400pt;}
.x20_c00132{left:107.169067pt;}
.xe_c00132{left:119.635733pt;}
.x8_c00132{left:121.569067pt;}
.x17_c00132{left:133.435733pt;}
.x1d_c00132{left:180.169067pt;}
.xa_c00132{left:205.102400pt;}
.xf_c00132{left:218.835733pt;}
.x10_c00132{left:236.169067pt;}
.x1a_c00132{left:247.369067pt;}
.x26_c00132{left:251.502400pt;}
.x21_c00132{left:255.369067pt;}
.x2a_c00132{left:258.835733pt;}
.x11_c00132{left:263.969067pt;}
.x13_c00132{left:284.169067pt;}
.x1e_c00132{left:296.635733pt;}
.x22_c00132{left:313.902400pt;}
.x27_c00132{left:314.835733pt;}
.x23_c00132{left:341.769067pt;}
.x28_c00132{left:388.435733pt;}
.x29_c00132{left:389.435733pt;}
.x1f_c00132{left:414.369067pt;}
.xc_c00132{left:444.169067pt;}
.x24_c00132{left:480.969067pt;}
.x4_c00132{left:523.169067pt;}
.x9_c00132{left:541.102400pt;}
.x15_c00132{left:587.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83a56740c44b527e0f41ef05.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00133;src:url('chunks/assets/font_2d69cfb40e19d9d40fae3766.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00133{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5_c00133{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m19_c00133{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m18_c00133{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1a_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);}
.m9_c00133{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me_c00133{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m17_c00133{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m15_c00133{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c00133{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m0_c00133{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m13_c00133{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m16_c00133{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c00133{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c00133{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8_c00133{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m21_c00133{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c00133{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c00133{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00133{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c00133{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00133{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00133{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00133{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m24_c00133{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00133{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m23_c00133{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00133{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c00133{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00133{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m20_c00133{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00133{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m22_c00133{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c00133{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7_c00133{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m6_c00133{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1_c00133{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00133{color:transparent;}
.fs1_c00133{font-size:48.000000px;}
.fs2_c00133{font-size:54.000000px;}
.fs4_c00133{font-size:66.000000px;}
.fs0_c00133{font-size:72.000000px;}
.fs3_c00133{font-size:78.000000px;}
.y0_c00133{bottom:0.000000px;}
.y6e_c00133{bottom:81.510000px;}
.y6d_c00133{bottom:86.250000px;}
.y6c_c00133{bottom:88.335000px;}
.y6b_c00133{bottom:91.935000px;}
.y6a_c00133{bottom:96.285000px;}
.y69_c00133{bottom:101.310000px;}
.y68_c00133{bottom:128.685000px;}
.y67_c00133{bottom:141.660000px;}
.y65_c00133{bottom:148.875000px;}
.y66_c00133{bottom:149.160000px;}
.y64_c00133{bottom:154.935000px;}
.y63_c00133{bottom:163.635000px;}
.y62_c00133{bottom:166.875000px;}
.y61_c00133{bottom:170.835000px;}
.y60_c00133{bottom:177.000000px;}
.y5f_c00133{bottom:192.750000px;}
.y5e_c00133{bottom:196.710000px;}
.y5d_c00133{bottom:203.250000px;}
.y5c_c00133{bottom:207.885000px;}
.y5b_c00133{bottom:218.685000px;}
.y5a_c00133{bottom:236.010000px;}
.y59_c00133{bottom:242.085000px;}
.y58_c00133{bottom:264.810000px;}
.y57_c00133{bottom:270.525000px;}
.y56_c00133{bottom:281.025000px;}
.y55_c00133{bottom:287.085000px;}
.y54_c00133{bottom:291.750000px;}
.y53_c00133{bottom:302.535000px;}
.y52_c00133{bottom:307.275000px;}
.y51_c00133{bottom:325.275000px;}
.y50_c00133{bottom:331.335000px;}
.y4f_c00133{bottom:346.500000px;}
.y4e_c00133{bottom:349.335000px;}
.y4d_c00133{bottom:368.835000px;}
.y4c_c00133{bottom:373.785000px;}
.y4b_c00133{bottom:392.535000px;}
.y4a_c00133{bottom:413.835000px;}
.y49_c00133{bottom:414.510000px;}
.y48_c00133{bottom:419.160000px;}
.y47_c00133{bottom:435.060000px;}
.y46_c00133{bottom:436.875000px;}
.y45_c00133{bottom:457.335000px;}
.y44_c00133{bottom:458.085000px;}
.y43_c00133{bottom:461.310000px;}
.y42_c00133{bottom:480.435000px;}
.y41_c00133{bottom:501.660000px;}
.y40_c00133{bottom:502.710000px;}
.y3f_c00133{bottom:504.135000px;}
.y3e_c00133{bottom:523.260000px;}
.y3d_c00133{bottom:523.935000px;}
.y3c_c00133{bottom:524.310000px;}
.y3b_c00133{bottom:547.035000px;}
.y3a_c00133{bottom:566.760000px;}
.y39_c00133{bottom:567.510000px;}
.y38_c00133{bottom:589.125000px;}
.y37_c00133{bottom:589.500000px;}
.y36_c00133{bottom:611.460000px;}
.y35_c00133{bottom:633.060000px;}
.y33_c00133{bottom:654.660000px;}
.y34_c00133{bottom:656.460000px;}
.y31_c00133{bottom:674.085000px;}
.y32_c00133{bottom:674.835000px;}
.y2f_c00133{bottom:698.535000px;}
.y30_c00133{bottom:699.000000px;}
.y2c_c00133{bottom:716.250000px;}
.y2d_c00133{bottom:720.585000px;}
.y2e_c00133{bottom:721.575000px;}
.y2a_c00133{bottom:742.500000px;}
.y2b_c00133{bottom:742.875000px;}
.y29_c00133{bottom:764.085000px;}
.y28_c00133{bottom:786.060000px;}
.y27_c00133{bottom:806.925000px;}
.y26_c00133{bottom:827.460000px;}
.y1f_c00133{bottom:848.685000px;}
.y25_c00133{bottom:852.675000px;}
.y23_c00133{bottom:854.025000px;}
.y24_c00133{bottom:854.085000px;}
.y22_c00133{bottom:854.400000px;}
.y21_c00133{bottom:854.460000px;}
.y20_c00133{bottom:854.775000px;}
.y1e_c00133{bottom:873.210000px;}
.y1d_c00133{bottom:886.125000px;}
.y1b_c00133{bottom:908.085000px;}
.y1c_c00133{bottom:918.150000px;}
.y1a_c00133{bottom:932.250000px;}
.y18_c00133{bottom:957.435000px;}
.y19_c00133{bottom:958.875000px;}
.y14_c00133{bottom:966.750000px;}
.y15_c00133{bottom:972.900000px;}
.y16_c00133{bottom:979.050000px;}
.y17_c00133{bottom:983.685000px;}
.y12_c00133{bottom:989.460000px;}
.y13_c00133{bottom:1003.500000px;}
.y11_c00133{bottom:1011.060000px;}
.yc_c00133{bottom:1032.585000px;}
.yd_c00133{bottom:1036.275000px;}
.ye_c00133{bottom:1043.085000px;}
.yf_c00133{bottom:1046.310000px;}
.y10_c00133{bottom:1048.500000px;}
.y1_c00133{bottom:1087.335000px;}
.y3_c00133{bottom:1096.710000px;}
.y4_c00133{bottom:1097.460000px;}
.y5_c00133{bottom:1099.560000px;}
.y2_c00133{bottom:1100.400000px;}
.y6_c00133{bottom:1100.685000px;}
.y7_c00133{bottom:1101.750000px;}
.y8_c00133{bottom:1102.500000px;}
.y9_c00133{bottom:1103.250000px;}
.ya_c00133{bottom:1103.550000px;}
.yb_c00133{bottom:1104.960000px;}
.h2_c00133{height:47.109375px;}
.h3_c00133{height:52.998047px;}
.h5_c00133{height:64.775391px;}
.h6_c00133{height:70.628906px;}
.h1_c00133{height:70.664062px;}
.h7_c00133{height:76.514648px;}
.h4_c00133{height:76.552734px;}
.h0_c00133{height:1174.500000px;}
.w0_c00133{width:731.977200px;}
.w1_c00133{width:732.000000px;}
.x0_c00133{left:0.000000px;}
.x26_c00133{left:55.765200px;}
.x22_c00133{left:57.190200px;}
.x21_c00133{left:58.315200px;}
.x1a_c00133{left:59.740200px;}
.x15_c00133{left:61.540200px;}
.x11_c00133{left:62.965200px;}
.x46_c00133{left:74.890200px;}
.x42_c00133{left:78.490200px;}
.x1_c00133{left:82.390200px;}
.x29_c00133{left:84.550200px;}
.x2d_c00133{left:86.740200px;}
.x19_c00133{left:89.590200px;}
.x17_c00133{left:90.715200px;}
.xc_c00133{left:92.140200px;}
.x3e_c00133{left:96.115200px;}
.x30_c00133{left:97.165200px;}
.x2_c00133{left:107.290200px;}
.x28_c00133{left:111.190200px;}
.x34_c00133{left:114.490200px;}
.x13_c00133{left:123.490200px;}
.x24_c00133{left:131.365200px;}
.x47_c00133{left:132.490200px;}
.xd_c00133{left:154.765200px;}
.x43_c00133{left:170.965200px;}
.x3c_c00133{left:174.190200px;}
.x32_c00133{left:175.315200px;}
.x3a_c00133{left:210.565200px;}
.x45_c00133{left:212.740200px;}
.x12_c00133{left:228.940200px;}
.x48_c00133{left:240.115200px;}
.x3f_c00133{left:247.990200px;}
.x3_c00133{left:277.915200px;}
.x4_c00133{left:288.715200px;}
.x18_c00133{left:294.115200px;}
.x5_c00133{left:309.940200px;}
.x6_c00133{left:329.740200px;}
.x31_c00133{left:336.940200px;}
.x7_c00133{left:337.990200px;}
.x3b_c00133{left:339.115200px;}
.x38_c00133{left:341.290200px;}
.x14_c00133{left:346.690200px;}
.x49_c00133{left:350.290200px;}
.xe_c00133{left:356.365200px;}
.x8_c00133{left:363.565200px;}
.xf_c00133{left:364.690200px;}
.x9_c00133{left:372.565200px;}
.x2e_c00133{left:381.565200px;}
.xa_c00133{left:382.990200px;}
.xb_c00133{left:394.525200px;}
.x44_c00133{left:449.965200px;}
.x36_c00133{left:458.290200px;}
.x40_c00133{left:472.990200px;}
.x39_c00133{left:492.490200px;}
.x10_c00133{left:507.940200px;}
.x2a_c00133{left:525.940200px;}
.x2f_c00133{left:537.115200px;}
.x3d_c00133{left:546.790200px;}
.x2b_c00133{left:554.740200px;}
.x41_c00133{left:559.390200px;}
.x1b_c00133{left:569.515200px;}
.x1c_c00133{left:578.515200px;}
.x1d_c00133{left:585.715200px;}
.x25_c00133{left:589.690200px;}
.x1e_c00133{left:595.390200px;}
.x1f_c00133{left:596.890200px;}
.x33_c00133{left:598.315200px;}
.x20_c00133{left:608.740200px;}
.x27_c00133{left:614.890200px;}
.x2c_c00133{left:620.590200px;}
.x23_c00133{left:633.940200px;}
.x16_c00133{left:644.740200px;}
.x35_c00133{left:653.740200px;}
.x37_c00133{left:656.590200px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls0_c00133{letter-spacing:0.000000pt;}
.ws0_c00133{word-spacing:0.000000pt;}
.fs1_c00133{font-size:42.666667pt;}
.fs2_c00133{font-size:48.000000pt;}
.fs4_c00133{font-size:58.666667pt;}
.fs0_c00133{font-size:64.000000pt;}
.fs3_c00133{font-size:69.333333pt;}
.y0_c00133{bottom:0.000000pt;}
.y6e_c00133{bottom:72.453333pt;}
.y6d_c00133{bottom:76.666667pt;}
.y6c_c00133{bottom:78.520000pt;}
.y6b_c00133{bottom:81.720000pt;}
.y6a_c00133{bottom:85.586667pt;}
.y69_c00133{bottom:90.053333pt;}
.y68_c00133{bottom:114.386667pt;}
.y67_c00133{bottom:125.920000pt;}
.y65_c00133{bottom:132.333333pt;}
.y66_c00133{bottom:132.586667pt;}
.y64_c00133{bottom:137.720000pt;}
.y63_c00133{bottom:145.453333pt;}
.y62_c00133{bottom:148.333333pt;}
.y61_c00133{bottom:151.853333pt;}
.y60_c00133{bottom:157.333333pt;}
.y5f_c00133{bottom:171.333333pt;}
.y5e_c00133{bottom:174.853333pt;}
.y5d_c00133{bottom:180.666667pt;}
.y5c_c00133{bottom:184.786667pt;}
.y5b_c00133{bottom:194.386667pt;}
.y5a_c00133{bottom:209.786667pt;}
.y59_c00133{bottom:215.186667pt;}
.y58_c00133{bottom:235.386667pt;}
.y57_c00133{bottom:240.466667pt;}
.y56_c00133{bottom:249.800000pt;}
.y55_c00133{bottom:255.186667pt;}
.y54_c00133{bottom:259.333333pt;}
.y53_c00133{bottom:268.920000pt;}
.y52_c00133{bottom:273.133333pt;}
.y51_c00133{bottom:289.133333pt;}
.y50_c00133{bottom:294.520000pt;}
.y4f_c00133{bottom:308.000000pt;}
.y4e_c00133{bottom:310.520000pt;}
.y4d_c00133{bottom:327.853333pt;}
.y4c_c00133{bottom:332.253333pt;}
.y4b_c00133{bottom:348.920000pt;}
.y4a_c00133{bottom:367.853333pt;}
.y49_c00133{bottom:368.453333pt;}
.y48_c00133{bottom:372.586667pt;}
.y47_c00133{bottom:386.720000pt;}
.y46_c00133{bottom:388.333333pt;}
.y45_c00133{bottom:406.520000pt;}
.y44_c00133{bottom:407.186667pt;}
.y43_c00133{bottom:410.053333pt;}
.y42_c00133{bottom:427.053333pt;}
.y41_c00133{bottom:445.920000pt;}
.y40_c00133{bottom:446.853333pt;}
.y3f_c00133{bottom:448.120000pt;}
.y3e_c00133{bottom:465.120000pt;}
.y3d_c00133{bottom:465.720000pt;}
.y3c_c00133{bottom:466.053333pt;}
.y3b_c00133{bottom:486.253333pt;}
.y3a_c00133{bottom:503.786667pt;}
.y39_c00133{bottom:504.453333pt;}
.y38_c00133{bottom:523.666667pt;}
.y37_c00133{bottom:524.000000pt;}
.y36_c00133{bottom:543.520000pt;}
.y35_c00133{bottom:562.720000pt;}
.y33_c00133{bottom:581.920000pt;}
.y34_c00133{bottom:583.520000pt;}
.y31_c00133{bottom:599.186667pt;}
.y32_c00133{bottom:599.853333pt;}
.y2f_c00133{bottom:620.920000pt;}
.y30_c00133{bottom:621.333333pt;}
.y2c_c00133{bottom:636.666667pt;}
.y2d_c00133{bottom:640.520000pt;}
.y2e_c00133{bottom:641.400000pt;}
.y2a_c00133{bottom:660.000000pt;}
.y2b_c00133{bottom:660.333333pt;}
.y29_c00133{bottom:679.186667pt;}
.y28_c00133{bottom:698.720000pt;}
.y27_c00133{bottom:717.266667pt;}
.y26_c00133{bottom:735.520000pt;}
.y1f_c00133{bottom:754.386667pt;}
.y25_c00133{bottom:757.933333pt;}
.y23_c00133{bottom:759.133333pt;}
.y24_c00133{bottom:759.186667pt;}
.y22_c00133{bottom:759.466667pt;}
.y21_c00133{bottom:759.520000pt;}
.y20_c00133{bottom:759.800000pt;}
.y1e_c00133{bottom:776.186667pt;}
.y1d_c00133{bottom:787.666667pt;}
.y1b_c00133{bottom:807.186667pt;}
.y1c_c00133{bottom:816.133333pt;}
.y1a_c00133{bottom:828.666667pt;}
.y18_c00133{bottom:851.053333pt;}
.y19_c00133{bottom:852.333333pt;}
.y14_c00133{bottom:859.333333pt;}
.y15_c00133{bottom:864.800000pt;}
.y16_c00133{bottom:870.266667pt;}
.y17_c00133{bottom:874.386667pt;}
.y12_c00133{bottom:879.520000pt;}
.y13_c00133{bottom:892.000000pt;}
.y11_c00133{bottom:898.720000pt;}
.yc_c00133{bottom:917.853333pt;}
.yd_c00133{bottom:921.133333pt;}
.ye_c00133{bottom:927.186667pt;}
.yf_c00133{bottom:930.053333pt;}
.y10_c00133{bottom:932.000000pt;}
.y1_c00133{bottom:966.520000pt;}
.y3_c00133{bottom:974.853333pt;}
.y4_c00133{bottom:975.520000pt;}
.y5_c00133{bottom:977.386667pt;}
.y2_c00133{bottom:978.133333pt;}
.y6_c00133{bottom:978.386667pt;}
.y7_c00133{bottom:979.333333pt;}
.y8_c00133{bottom:980.000000pt;}
.y9_c00133{bottom:980.666667pt;}
.ya_c00133{bottom:980.933333pt;}
.yb_c00133{bottom:982.186667pt;}
.h2_c00133{height:41.875000pt;}
.h3_c00133{height:47.109375pt;}
.h5_c00133{height:57.578125pt;}
.h6_c00133{height:62.781250pt;}
.h1_c00133{height:62.812500pt;}
.h7_c00133{height:68.013021pt;}
.h4_c00133{height:68.046875pt;}
.h0_c00133{height:1044.000000pt;}
.w0_c00133{width:650.646400pt;}
.w1_c00133{width:650.666667pt;}
.x0_c00133{left:0.000000pt;}
.x26_c00133{left:49.569067pt;}
.x22_c00133{left:50.835733pt;}
.x21_c00133{left:51.835733pt;}
.x1a_c00133{left:53.102400pt;}
.x15_c00133{left:54.702400pt;}
.x11_c00133{left:55.969067pt;}
.x46_c00133{left:66.569067pt;}
.x42_c00133{left:69.769067pt;}
.x1_c00133{left:73.235733pt;}
.x29_c00133{left:75.155733pt;}
.x2d_c00133{left:77.102400pt;}
.x19_c00133{left:79.635733pt;}
.x17_c00133{left:80.635733pt;}
.xc_c00133{left:81.902400pt;}
.x3e_c00133{left:85.435733pt;}
.x30_c00133{left:86.369067pt;}
.x2_c00133{left:95.369067pt;}
.x28_c00133{left:98.835733pt;}
.x34_c00133{left:101.769067pt;}
.x13_c00133{left:109.769067pt;}
.x24_c00133{left:116.769067pt;}
.x47_c00133{left:117.769067pt;}
.xd_c00133{left:137.569067pt;}
.x43_c00133{left:151.969067pt;}
.x3c_c00133{left:154.835733pt;}
.x32_c00133{left:155.835733pt;}
.x3a_c00133{left:187.169067pt;}
.x45_c00133{left:189.102400pt;}
.x12_c00133{left:203.502400pt;}
.x48_c00133{left:213.435733pt;}
.x3f_c00133{left:220.435733pt;}
.x3_c00133{left:247.035733pt;}
.x4_c00133{left:256.635733pt;}
.x18_c00133{left:261.435733pt;}
.x5_c00133{left:275.502400pt;}
.x6_c00133{left:293.102400pt;}
.x31_c00133{left:299.502400pt;}
.x7_c00133{left:300.435733pt;}
.x3b_c00133{left:301.435733pt;}
.x38_c00133{left:303.369067pt;}
.x14_c00133{left:308.169067pt;}
.x49_c00133{left:311.369067pt;}
.xe_c00133{left:316.769067pt;}
.x8_c00133{left:323.169067pt;}
.xf_c00133{left:324.169067pt;}
.x9_c00133{left:331.169067pt;}
.x2e_c00133{left:339.169067pt;}
.xa_c00133{left:340.435733pt;}
.xb_c00133{left:350.689067pt;}
.x44_c00133{left:399.969067pt;}
.x36_c00133{left:407.369067pt;}
.x40_c00133{left:420.435733pt;}
.x39_c00133{left:437.769067pt;}
.x10_c00133{left:451.502400pt;}
.x2a_c00133{left:467.502400pt;}
.x2f_c00133{left:477.435733pt;}
.x3d_c00133{left:486.035733pt;}
.x2b_c00133{left:493.102400pt;}
.x41_c00133{left:497.235733pt;}
.x1b_c00133{left:506.235733pt;}
.x1c_c00133{left:514.235733pt;}
.x1d_c00133{left:520.635733pt;}
.x25_c00133{left:524.169067pt;}
.x1e_c00133{left:529.235733pt;}
.x1f_c00133{left:530.569067pt;}
.x33_c00133{left:531.835733pt;}
.x20_c00133{left:541.102400pt;}
.x27_c00133{left:546.569067pt;}
.x2c_c00133{left:551.635733pt;}
.x23_c00133{left:563.502400pt;}
.x16_c00133{left:573.102400pt;}
.x35_c00133{left:581.102400pt;}
.x37_c00133{left:583.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_abd8135dfebfbec198b25bbe.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00134;src:url('chunks/assets/font_9faff9f599e3bf706732f233.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00134;src:url('chunks/assets/font_c058ecf67755f6d56bbc11d6.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00134;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff4_c00134{font-family:ff4_c00134;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00134{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2_c00134{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00134{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m15_c00134{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m14_c00134{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m19_c00134{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3_c00134{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4_c00134{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m20_c00134{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c00134{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m22_c00134{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m10_c00134{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00134{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00134{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00134{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c00134{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m13_c00134{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00134{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00134{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00134{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00134{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00134{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00134{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00134{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00134{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00134{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma_c00134{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00134{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m18_c00134{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m21_c00134{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mf_c00134{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m16_c00134{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m11_c00134{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m1_c00134{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.ls0_c00134{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00134{color:transparent;}
.fs4_c00134{font-size:54.000000px;}
.fs0_c00134{font-size:60.000000px;}
.fs5_c00134{font-size:66.000000px;}
.fs3_c00134{font-size:72.000000px;}
.fs1_c00134{font-size:78.000000px;}
.fs2_c00134{font-size:84.000000px;}
.y0_c00134{bottom:0.000000px;}
.y41_c00134{bottom:88.410000px;}
.y42_c00134{bottom:88.785000px;}
.y40_c00134{bottom:104.910000px;}
.y3f_c00134{bottom:122.535000px;}
.y3e_c00134{bottom:138.060000px;}
.y3b_c00134{bottom:154.560000px;}
.y3c_c00134{bottom:156.750000px;}
.y3d_c00134{bottom:157.875000px;}
.y3a_c00134{bottom:212.535000px;}
.y38_c00134{bottom:233.460000px;}
.y39_c00134{bottom:233.835000px;}
.y37_c00134{bottom:255.060000px;}
.y36_c00134{bottom:275.910000px;}
.y35_c00134{bottom:297.525000px;}
.y32_c00134{bottom:318.750000px;}
.y33_c00134{bottom:318.810000px;}
.y34_c00134{bottom:319.500000px;}
.y31_c00134{bottom:339.660000px;}
.y30_c00134{bottom:360.900000px;}
.y2f_c00134{bottom:382.125000px;}
.y2e_c00134{bottom:403.410000px;}
.y2c_c00134{bottom:424.185000px;}
.y2b_c00134{bottom:424.260000px;}
.y2d_c00134{bottom:424.935000px;}
.y2a_c00134{bottom:446.250000px;}
.y27_c00134{bottom:467.760000px;}
.y28_c00134{bottom:468.135000px;}
.y29_c00134{bottom:469.635000px;}
.y26_c00134{bottom:489.435000px;}
.y25_c00134{bottom:511.035000px;}
.y23_c00134{bottom:532.635000px;}
.y24_c00134{bottom:533.310000px;}
.y21_c00134{bottom:554.250000px;}
.y22_c00134{bottom:554.535000px;}
.y20_c00134{bottom:575.835000px;}
.y1f_c00134{bottom:597.060000px;}
.y1e_c00134{bottom:618.285000px;}
.y1d_c00134{bottom:618.660000px;}
.y1c_c00134{bottom:619.035000px;}
.y1b_c00134{bottom:640.260000px;}
.y1a_c00134{bottom:661.500000px;}
.y18_c00134{bottom:661.785000px;}
.y19_c00134{bottom:661.875000px;}
.y17_c00134{bottom:662.160000px;}
.y16_c00134{bottom:662.250000px;}
.y15_c00134{bottom:770.550000px;}
.y14_c00134{bottom:771.675000px;}
.y13_c00134{bottom:793.275000px;}
.y12_c00134{bottom:811.275000px;}
.y11_c00134{bottom:814.500000px;}
.y10_c00134{bottom:815.925000px;}
.yf_c00134{bottom:816.300000px;}
.ye_c00134{bottom:836.460000px;}
.yd_c00134{bottom:858.060000px;}
.yc_c00134{bottom:879.300000px;}
.yb_c00134{bottom:900.525000px;}
.ya_c00134{bottom:921.750000px;}
.y9_c00134{bottom:942.585000px;}
.y8_c00134{bottom:964.275000px;}
.y7_c00134{bottom:985.500000px;}
.y6_c00134{bottom:1004.925000px;}
.y5_c00134{bottom:1008.150000px;}
.y4_c00134{bottom:1028.685000px;}
.y3_c00134{bottom:1082.685000px;}
.y1_c00134{bottom:1088.835000px;}
.y2_c00134{bottom:1098.375000px;}
.h5_c00134{height:52.998047px;}
.h1_c00134{height:60.468750px;}
.h7_c00134{height:64.775391px;}
.h8_c00134{height:70.628906px;}
.h4_c00134{height:70.664062px;}
.h2_c00134{height:78.609375px;}
.h6_c00134{height:82.400391px;}
.h3_c00134{height:82.441406px;}
.h0_c00134{height:1174.500000px;}
.w0_c00134{width:731.977200px;}
.w1_c00134{width:732.000000px;}
.x0_c00134{left:0.000000px;}
.xb_c00134{left:57.940200px;}
.x7_c00134{left:59.365200px;}
.x5_c00134{left:60.490200px;}
.x20_c00134{left:62.965200px;}
.x24_c00134{left:64.090200px;}
.x1e_c00134{left:79.915200px;}
.x1a_c00134{left:86.365200px;}
.x23_c00134{left:88.915200px;}
.xd_c00134{left:90.340200px;}
.x4_c00134{left:92.890200px;}
.xc_c00134{left:93.940200px;}
.x8_c00134{left:98.965200px;}
.x1b_c00134{left:114.490200px;}
.x1c_c00134{left:122.740200px;}
.x14_c00134{left:129.565200px;}
.x1f_c00134{left:131.740200px;}
.x9_c00134{left:133.915200px;}
.xe_c00134{left:218.890200px;}
.x11_c00134{left:235.765200px;}
.xf_c00134{left:240.490200px;}
.x1d_c00134{left:251.965200px;}
.x1_c00134{left:291.190200px;}
.x10_c00134{left:298.765200px;}
.x12_c00134{left:309.190200px;}
.x17_c00134{left:312.490200px;}
.x18_c00134{left:343.390200px;}
.x13_c00134{left:407.890200px;}
.x6_c00134{left:422.275200px;}
.x16_c00134{left:449.290200px;}
.x2_c00134{left:464.740200px;}
.x15_c00134{left:480.940200px;}
.x21_c00134{left:515.140200px;}
.x19_c00134{left:519.115200px;}
.x22_c00134{left:535.315200px;}
.x3_c00134{left:627.115200px;}
.xa_c00134{left:629.590200px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls0_c00134{letter-spacing:0.000000pt;}
.ws0_c00134{word-spacing:0.000000pt;}
.fs4_c00134{font-size:48.000000pt;}
.fs0_c00134{font-size:53.333333pt;}
.fs5_c00134{font-size:58.666667pt;}
.fs3_c00134{font-size:64.000000pt;}
.fs1_c00134{font-size:69.333333pt;}
.fs2_c00134{font-size:74.666667pt;}
.y0_c00134{bottom:0.000000pt;}
.y41_c00134{bottom:78.586667pt;}
.y42_c00134{bottom:78.920000pt;}
.y40_c00134{bottom:93.253333pt;}
.y3f_c00134{bottom:108.920000pt;}
.y3e_c00134{bottom:122.720000pt;}
.y3b_c00134{bottom:137.386667pt;}
.y3c_c00134{bottom:139.333333pt;}
.y3d_c00134{bottom:140.333333pt;}
.y3a_c00134{bottom:188.920000pt;}
.y38_c00134{bottom:207.520000pt;}
.y39_c00134{bottom:207.853333pt;}
.y37_c00134{bottom:226.720000pt;}
.y36_c00134{bottom:245.253333pt;}
.y35_c00134{bottom:264.466667pt;}
.y32_c00134{bottom:283.333333pt;}
.y33_c00134{bottom:283.386667pt;}
.y34_c00134{bottom:284.000000pt;}
.y31_c00134{bottom:301.920000pt;}
.y30_c00134{bottom:320.800000pt;}
.y2f_c00134{bottom:339.666667pt;}
.y2e_c00134{bottom:358.586667pt;}
.y2c_c00134{bottom:377.053333pt;}
.y2b_c00134{bottom:377.120000pt;}
.y2d_c00134{bottom:377.720000pt;}
.y2a_c00134{bottom:396.666667pt;}
.y27_c00134{bottom:415.786667pt;}
.y28_c00134{bottom:416.120000pt;}
.y29_c00134{bottom:417.453333pt;}
.y26_c00134{bottom:435.053333pt;}
.y25_c00134{bottom:454.253333pt;}
.y23_c00134{bottom:473.453333pt;}
.y24_c00134{bottom:474.053333pt;}
.y21_c00134{bottom:492.666667pt;}
.y22_c00134{bottom:492.920000pt;}
.y20_c00134{bottom:511.853333pt;}
.y1f_c00134{bottom:530.720000pt;}
.y1e_c00134{bottom:549.586667pt;}
.y1d_c00134{bottom:549.920000pt;}
.y1c_c00134{bottom:550.253333pt;}
.y1b_c00134{bottom:569.120000pt;}
.y1a_c00134{bottom:588.000000pt;}
.y18_c00134{bottom:588.253333pt;}
.y19_c00134{bottom:588.333333pt;}
.y17_c00134{bottom:588.586667pt;}
.y16_c00134{bottom:588.666667pt;}
.y15_c00134{bottom:684.933333pt;}
.y14_c00134{bottom:685.933333pt;}
.y13_c00134{bottom:705.133333pt;}
.y12_c00134{bottom:721.133333pt;}
.y11_c00134{bottom:724.000000pt;}
.y10_c00134{bottom:725.266667pt;}
.yf_c00134{bottom:725.600000pt;}
.ye_c00134{bottom:743.520000pt;}
.yd_c00134{bottom:762.720000pt;}
.yc_c00134{bottom:781.600000pt;}
.yb_c00134{bottom:800.466667pt;}
.ya_c00134{bottom:819.333333pt;}
.y9_c00134{bottom:837.853333pt;}
.y8_c00134{bottom:857.133333pt;}
.y7_c00134{bottom:876.000000pt;}
.y6_c00134{bottom:893.266667pt;}
.y5_c00134{bottom:896.133333pt;}
.y4_c00134{bottom:914.386667pt;}
.y3_c00134{bottom:962.386667pt;}
.y1_c00134{bottom:967.853333pt;}
.y2_c00134{bottom:976.333333pt;}
.h5_c00134{height:47.109375pt;}
.h1_c00134{height:53.750000pt;}
.h7_c00134{height:57.578125pt;}
.h8_c00134{height:62.781250pt;}
.h4_c00134{height:62.812500pt;}
.h2_c00134{height:69.875000pt;}
.h6_c00134{height:73.244792pt;}
.h3_c00134{height:73.281250pt;}
.h0_c00134{height:1044.000000pt;}
.w0_c00134{width:650.646400pt;}
.w1_c00134{width:650.666667pt;}
.x0_c00134{left:0.000000pt;}
.xb_c00134{left:51.502400pt;}
.x7_c00134{left:52.769067pt;}
.x5_c00134{left:53.769067pt;}
.x20_c00134{left:55.969067pt;}
.x24_c00134{left:56.969067pt;}
.x1e_c00134{left:71.035733pt;}
.x1a_c00134{left:76.769067pt;}
.x23_c00134{left:79.035733pt;}
.xd_c00134{left:80.302400pt;}
.x4_c00134{left:82.569067pt;}
.xc_c00134{left:83.502400pt;}
.x8_c00134{left:87.969067pt;}
.x1b_c00134{left:101.769067pt;}
.x1c_c00134{left:109.102400pt;}
.x14_c00134{left:115.169067pt;}
.x1f_c00134{left:117.102400pt;}
.x9_c00134{left:119.035733pt;}
.xe_c00134{left:194.569067pt;}
.x11_c00134{left:209.569067pt;}
.xf_c00134{left:213.769067pt;}
.x1d_c00134{left:223.969067pt;}
.x1_c00134{left:258.835733pt;}
.x10_c00134{left:265.569067pt;}
.x12_c00134{left:274.835733pt;}
.x17_c00134{left:277.769067pt;}
.x18_c00134{left:305.235733pt;}
.x13_c00134{left:362.569067pt;}
.x6_c00134{left:375.355733pt;}
.x16_c00134{left:399.369067pt;}
.x2_c00134{left:413.102400pt;}
.x15_c00134{left:427.502400pt;}
.x21_c00134{left:457.902400pt;}
.x19_c00134{left:461.435733pt;}
.x22_c00134{left:475.835733pt;}
.x3_c00134{left:557.435733pt;}
.xa_c00134{left:559.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5c31b806196ce5a51fc36341.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00135;src:url('chunks/assets/font_5c7faadf1d7e6bf9ebabf09d.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00135;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00135{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m0_c00135{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3_c00135{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c00135{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c00135{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c00135{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00135{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00135{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c00135{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00135{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00135{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00135{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c00135{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c00135{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00135{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00135{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mb_c00135{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1_c00135{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.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;}
}
.ws0_c00135{word-spacing:0.000000px;}
.fc0_c00135{color:transparent;}
.fs2_c00135{font-size:54.000000px;}
.fs1_c00135{font-size:60.000000px;}
.fs0_c00135{font-size:72.000000px;}
.y0_c00135{bottom:0.000000px;}
.y17_c00135{bottom:770.550000px;}
.y16_c00135{bottom:774.135000px;}
.y15_c00135{bottom:774.885000px;}
.y14_c00135{bottom:794.310000px;}
.y13_c00135{bottom:815.625000px;}
.y11_c00135{bottom:921.435000px;}
.y12_c00135{bottom:922.500000px;}
.y10_c00135{bottom:943.335000px;}
.yf_c00135{bottom:961.335000px;}
.ye_c00135{bottom:964.650000px;}
.yb_c00135{bottom:984.060000px;}
.yc_c00135{bottom:985.125000px;}
.yd_c00135{bottom:985.875000px;}
.ya_c00135{bottom:1006.050000px;}
.y9_c00135{bottom:1027.275000px;}
.y8_c00135{bottom:1043.460000px;}
.y4_c00135{bottom:1044.900000px;}
.y5_c00135{bottom:1046.025000px;}
.y7_c00135{bottom:1047.060000px;}
.y6_c00135{bottom:1049.550000px;}
.y1_c00135{bottom:1100.400000px;}
.y2_c00135{bottom:1100.685000px;}
.y3_c00135{bottom:1105.050000px;}
.h5_c00135{height:52.998047px;}
.h3_c00135{height:54.421875px;}
.h2_c00135{height:60.468750px;}
.h6_c00135{height:70.628906px;}
.h4_c00135{height:70.664062px;}
.h1_c00135{height:72.562500px;}
.h0_c00135{height:1174.500000px;}
.w0_c00135{width:731.977200px;}
.w1_c00135{width:732.000000px;}
.x0_c00135{left:0.000000px;}
.x15_c00135{left:75.550200px;}
.x14_c00135{left:76.675200px;}
.x10_c00135{left:79.915200px;}
.xd_c00135{left:82.090200px;}
.x9_c00135{left:84.175200px;}
.x1_c00135{left:105.790200px;}
.x13_c00135{left:107.290200px;}
.xa_c00135{left:112.315200px;}
.x4_c00135{left:115.165200px;}
.x2_c00135{left:132.115200px;}
.x16_c00135{left:157.690200px;}
.x5_c00135{left:228.940200px;}
.x6_c00135{left:234.715200px;}
.xb_c00135{left:249.490200px;}
.xc_c00135{left:276.115200px;}
.x11_c00135{left:295.540200px;}
.x3_c00135{left:301.315200px;}
.x12_c00135{left:315.340200px;}
.x17_c00135{left:323.590200px;}
.xe_c00135{left:543.190200px;}
.xf_c00135{left:559.090200px;}
.x7_c00135{left:610.540200px;}
.x8_c00135{left:637.540200px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls0_c00135{letter-spacing:0.000000pt;}
.ws0_c00135{word-spacing:0.000000pt;}
.fs2_c00135{font-size:48.000000pt;}
.fs1_c00135{font-size:53.333333pt;}
.fs0_c00135{font-size:64.000000pt;}
.y0_c00135{bottom:0.000000pt;}
.y17_c00135{bottom:684.933333pt;}
.y16_c00135{bottom:688.120000pt;}
.y15_c00135{bottom:688.786667pt;}
.y14_c00135{bottom:706.053333pt;}
.y13_c00135{bottom:725.000000pt;}
.y11_c00135{bottom:819.053333pt;}
.y12_c00135{bottom:820.000000pt;}
.y10_c00135{bottom:838.520000pt;}
.yf_c00135{bottom:854.520000pt;}
.ye_c00135{bottom:857.466667pt;}
.yb_c00135{bottom:874.720000pt;}
.yc_c00135{bottom:875.666667pt;}
.yd_c00135{bottom:876.333333pt;}
.ya_c00135{bottom:894.266667pt;}
.y9_c00135{bottom:913.133333pt;}
.y8_c00135{bottom:927.520000pt;}
.y4_c00135{bottom:928.800000pt;}
.y5_c00135{bottom:929.800000pt;}
.y7_c00135{bottom:930.720000pt;}
.y6_c00135{bottom:932.933333pt;}
.y1_c00135{bottom:978.133333pt;}
.y2_c00135{bottom:978.386667pt;}
.y3_c00135{bottom:982.266667pt;}
.h5_c00135{height:47.109375pt;}
.h3_c00135{height:48.375000pt;}
.h2_c00135{height:53.750000pt;}
.h6_c00135{height:62.781250pt;}
.h4_c00135{height:62.812500pt;}
.h1_c00135{height:64.500000pt;}
.h0_c00135{height:1044.000000pt;}
.w0_c00135{width:650.646400pt;}
.w1_c00135{width:650.666667pt;}
.x0_c00135{left:0.000000pt;}
.x15_c00135{left:67.155733pt;}
.x14_c00135{left:68.155733pt;}
.x10_c00135{left:71.035733pt;}
.xd_c00135{left:72.969067pt;}
.x9_c00135{left:74.822400pt;}
.x1_c00135{left:94.035733pt;}
.x13_c00135{left:95.369067pt;}
.xa_c00135{left:99.835733pt;}
.x4_c00135{left:102.369067pt;}
.x2_c00135{left:117.435733pt;}
.x16_c00135{left:140.169067pt;}
.x5_c00135{left:203.502400pt;}
.x6_c00135{left:208.635733pt;}
.xb_c00135{left:221.769067pt;}
.xc_c00135{left:245.435733pt;}
.x11_c00135{left:262.702400pt;}
.x3_c00135{left:267.835733pt;}
.x12_c00135{left:280.302400pt;}
.x17_c00135{left:287.635733pt;}
.xe_c00135{left:482.835733pt;}
.xf_c00135{left:496.969067pt;}
.x7_c00135{left:542.702400pt;}
.x8_c00135{left:566.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d59a2efac54c64b1d8fbc3a4.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00136{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.ls0_c00136{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00136{word-spacing:0.000000px;}
.fc0_c00136{color:transparent;}
.fs0_c00136{font-size:150.000000px;}
.y0_c00136{bottom:0.000000px;}
.y1_c00136{bottom:649.935000px;}
.h1_c00136{height:147.216797px;}
.h0_c00136{height:1174.500000px;}
.w0_c00136{width:731.977200px;}
.w1_c00136{width:732.000000px;}
.x0_c00136{left:0.000000px;}
.x1_c00136{left:205.540200px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls0_c00136{letter-spacing:0.000000pt;}
.ws0_c00136{word-spacing:0.000000pt;}
.fs0_c00136{font-size:133.333333pt;}
.y0_c00136{bottom:0.000000pt;}
.y1_c00136{bottom:577.720000pt;}
.h1_c00136{height:130.859375pt;}
.h0_c00136{height:1044.000000pt;}
.w0_c00136{width:650.646400pt;}
.w1_c00136{width:650.666667pt;}
.x0_c00136{left:0.000000pt;}
.x1_c00136{left:182.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe4706f274206ac3c61d0135.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00137;src:url('chunks/assets/font_d8dd3194d02e1609da684263.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.402354;font-style:normal;font-weight:normal;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_9f03b9ec1134c9175516df3c.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00137;src:url('chunks/assets/font_0a118f019c949b53fae06645.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00137{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c00137{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c00137{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5_c00137{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00137{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me_c00137{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c00137{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c00137{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00137{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c00137{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c00137{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00137{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1_c00137{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3_c00137{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2_c00137{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m0_c00137{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4_c00137{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m11_c00137{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.ls0_c00137{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00137{color:transparent;}
.fs2_c00137{font-size:60.000000px;}
.fs5_c00137{font-size:66.000000px;}
.fs3_c00137{font-size:90.000000px;}
.fs0_c00137{font-size:96.000000px;}
.fs4_c00137{font-size:102.000000px;}
.fs1_c00137{font-size:126.000000px;}
.y0_c00137{bottom:0.000000px;}
.y15_c00137{bottom:451.635000px;}
.y14_c00137{bottom:478.635000px;}
.y13_c00137{bottom:504.885000px;}
.y12_c00137{bottom:531.210000px;}
.y11_c00137{bottom:557.460000px;}
.y10_c00137{bottom:583.335000px;}
.yf_c00137{bottom:583.710000px;}
.y18_c00137{bottom:586.185000px;}
.y19_c00137{bottom:586.260000px;}
.ye_c00137{bottom:610.335000px;}
.y17_c00137{bottom:611.460000px;}
.yd_c00137{bottom:636.660000px;}
.yb_c00137{bottom:636.960000px;}
.yc_c00137{bottom:637.035000px;}
.y16_c00137{bottom:637.335000px;}
.ya_c00137{bottom:662.910000px;}
.y9_c00137{bottom:689.160000px;}
.y8_c00137{bottom:715.500000px;}
.y7_c00137{bottom:741.450000px;}
.y6_c00137{bottom:767.700000px;}
.y1_c00137{bottom:873.900000px;}
.y2_c00137{bottom:875.400000px;}
.y3_c00137{bottom:876.060000px;}
.y4_c00137{bottom:876.810000px;}
.y5_c00137{bottom:878.925000px;}
.h5_c00137{height:64.775391px;}
.h3_c00137{height:88.286133px;}
.h1_c00137{height:96.750000px;}
.h4_c00137{height:100.057617px;}
.h2_c00137{height:126.984375px;}
.h0_c00137{height:1174.500000px;}
.w0_c00137{width:731.977200px;}
.w1_c00137{width:732.000000px;}
.x0_c00137{left:0.000000px;}
.xc_c00137{left:50.365200px;}
.xd_c00137{left:74.515200px;}
.xe_c00137{left:107.290200px;}
.x1_c00137{left:190.375200px;}
.x2_c00137{left:256.990200px;}
.x3_c00137{left:285.490200px;}
.x4_c00137{left:317.515200px;}
.x5_c00137{left:343.390200px;}
.x8_c00137{left:348.790200px;}
.x6_c00137{left:350.290200px;}
.x7_c00137{left:351.340200px;}
.xb_c00137{left:431.965200px;}
.x9_c00137{left:433.390200px;}
.xa_c00137{left:481.990200px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls0_c00137{letter-spacing:0.000000pt;}
.ws0_c00137{word-spacing:0.000000pt;}
.fs2_c00137{font-size:53.333333pt;}
.fs5_c00137{font-size:58.666667pt;}
.fs3_c00137{font-size:80.000000pt;}
.fs0_c00137{font-size:85.333333pt;}
.fs4_c00137{font-size:90.666667pt;}
.fs1_c00137{font-size:112.000000pt;}
.y0_c00137{bottom:0.000000pt;}
.y15_c00137{bottom:401.453333pt;}
.y14_c00137{bottom:425.453333pt;}
.y13_c00137{bottom:448.786667pt;}
.y12_c00137{bottom:472.186667pt;}
.y11_c00137{bottom:495.520000pt;}
.y10_c00137{bottom:518.520000pt;}
.yf_c00137{bottom:518.853333pt;}
.y18_c00137{bottom:521.053333pt;}
.y19_c00137{bottom:521.120000pt;}
.ye_c00137{bottom:542.520000pt;}
.y17_c00137{bottom:543.520000pt;}
.yd_c00137{bottom:565.920000pt;}
.yb_c00137{bottom:566.186667pt;}
.yc_c00137{bottom:566.253333pt;}
.y16_c00137{bottom:566.520000pt;}
.ya_c00137{bottom:589.253333pt;}
.y9_c00137{bottom:612.586667pt;}
.y8_c00137{bottom:636.000000pt;}
.y7_c00137{bottom:659.066667pt;}
.y6_c00137{bottom:682.400000pt;}
.y1_c00137{bottom:776.800000pt;}
.y2_c00137{bottom:778.133333pt;}
.y3_c00137{bottom:778.720000pt;}
.y4_c00137{bottom:779.386667pt;}
.y5_c00137{bottom:781.266667pt;}
.h5_c00137{height:57.578125pt;}
.h3_c00137{height:78.476562pt;}
.h1_c00137{height:86.000000pt;}
.h4_c00137{height:88.940104pt;}
.h2_c00137{height:112.875000pt;}
.h0_c00137{height:1044.000000pt;}
.w0_c00137{width:650.646400pt;}
.w1_c00137{width:650.666667pt;}
.x0_c00137{left:0.000000pt;}
.xc_c00137{left:44.769067pt;}
.xd_c00137{left:66.235733pt;}
.xe_c00137{left:95.369067pt;}
.x1_c00137{left:169.222400pt;}
.x2_c00137{left:228.435733pt;}
.x3_c00137{left:253.769067pt;}
.x4_c00137{left:282.235733pt;}
.x5_c00137{left:305.235733pt;}
.x8_c00137{left:310.035733pt;}
.x6_c00137{left:311.369067pt;}
.x7_c00137{left:312.302400pt;}
.xb_c00137{left:383.969067pt;}
.x9_c00137{left:385.235733pt;}
.xa_c00137{left:428.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_67ab65f83383d383b270a584.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00138;src:url('chunks/assets/font_eefc1146ae4ba06fcb435cfa.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00138{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m8_c00138{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md_c00138{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb_c00138{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00138{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc_c00138{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00138{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m0_c00138{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00138{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00138{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00138{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6_c00138{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00138{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00138{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00138{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00138{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00138{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.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;}
}
.ws0_c00138{word-spacing:0.000000px;}
.fc0_c00138{color:transparent;}
.fs0_c00138{font-size:60.000000px;}
.fs3_c00138{font-size:66.000000px;}
.fs4_c00138{font-size:78.000000px;}
.fs2_c00138{font-size:84.000000px;}
.fs1_c00138{font-size:228.000000px;}
.y0_c00138{bottom:0.000000px;}
.y25_c00138{bottom:73.260000px;}
.y24_c00138{bottom:94.500000px;}
.y23_c00138{bottom:116.085000px;}
.y22_c00138{bottom:136.560000px;}
.y21_c00138{bottom:157.500000px;}
.y1e_c00138{bottom:177.285000px;}
.y1f_c00138{bottom:178.035000px;}
.y20_c00138{bottom:179.085000px;}
.y1d_c00138{bottom:197.835000px;}
.y1b_c00138{bottom:218.685000px;}
.y1c_c00138{bottom:220.125000px;}
.y1a_c00138{bottom:239.910000px;}
.y19_c00138{bottom:260.835000px;}
.y18_c00138{bottom:282.060000px;}
.y17_c00138{bottom:303.660000px;}
.y16_c00138{bottom:324.900000px;}
.y15_c00138{bottom:345.810000px;}
.y14_c00138{bottom:366.960000px;}
.y13_c00138{bottom:388.275000px;}
.y12_c00138{bottom:409.500000px;}
.y11_c00138{bottom:431.085000px;}
.y10_c00138{bottom:452.685000px;}
.yf_c00138{bottom:473.910000px;}
.ye_c00138{bottom:495.510000px;}
.yd_c00138{bottom:517.500000px;}
.yc_c00138{bottom:538.710000px;}
.yb_c00138{bottom:584.460000px;}
.ya_c00138{bottom:601.335000px;}
.y9_c00138{bottom:617.625000px;}
.y8_c00138{bottom:618.660000px;}
.y7_c00138{bottom:635.625000px;}
.y6_c00138{bottom:652.875000px;}
.y5_c00138{bottom:670.125000px;}
.y4_c00138{bottom:687.060000px;}
.y3_c00138{bottom:758.385000px;}
.y2_c00138{bottom:880.050000px;}
.y1_c00138{bottom:1067.550000px;}
.h1_c00138{height:58.886719px;}
.h5_c00138{height:64.743164px;}
.h4_c00138{height:64.775391px;}
.h6_c00138{height:76.552734px;}
.h3_c00138{height:82.441406px;}
.h2_c00138{height:223.769531px;}
.h0_c00138{height:1174.500000px;}
.w0_c00138{width:731.977200px;}
.w1_c00138{width:732.000000px;}
.x0_c00138{left:0.000000px;}
.x4_c00138{left:58.690200px;}
.x8_c00138{left:60.115200px;}
.x9_c00138{left:61.165200px;}
.xa_c00138{left:62.290200px;}
.xb_c00138{left:63.715200px;}
.xe_c00138{left:64.765200px;}
.x5_c00138{left:76.300200px;}
.x2_c00138{left:81.340200px;}
.x7_c00138{left:91.390200px;}
.x3_c00138{left:154.390200px;}
.x1_c00138{left:296.965200px;}
.xd_c00138{left:473.365200px;}
.xc_c00138{left:572.740200px;}
.x6_c00138{left:662.740200px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls0_c00138{letter-spacing:0.000000pt;}
.ws0_c00138{word-spacing:0.000000pt;}
.fs0_c00138{font-size:53.333333pt;}
.fs3_c00138{font-size:58.666667pt;}
.fs4_c00138{font-size:69.333333pt;}
.fs2_c00138{font-size:74.666667pt;}
.fs1_c00138{font-size:202.666667pt;}
.y0_c00138{bottom:0.000000pt;}
.y25_c00138{bottom:65.120000pt;}
.y24_c00138{bottom:84.000000pt;}
.y23_c00138{bottom:103.186667pt;}
.y22_c00138{bottom:121.386667pt;}
.y21_c00138{bottom:140.000000pt;}
.y1e_c00138{bottom:157.586667pt;}
.y1f_c00138{bottom:158.253333pt;}
.y20_c00138{bottom:159.186667pt;}
.y1d_c00138{bottom:175.853333pt;}
.y1b_c00138{bottom:194.386667pt;}
.y1c_c00138{bottom:195.666667pt;}
.y1a_c00138{bottom:213.253333pt;}
.y19_c00138{bottom:231.853333pt;}
.y18_c00138{bottom:250.720000pt;}
.y17_c00138{bottom:269.920000pt;}
.y16_c00138{bottom:288.800000pt;}
.y15_c00138{bottom:307.386667pt;}
.y14_c00138{bottom:326.186667pt;}
.y13_c00138{bottom:345.133333pt;}
.y12_c00138{bottom:364.000000pt;}
.y11_c00138{bottom:383.186667pt;}
.y10_c00138{bottom:402.386667pt;}
.yf_c00138{bottom:421.253333pt;}
.ye_c00138{bottom:440.453333pt;}
.yd_c00138{bottom:460.000000pt;}
.yc_c00138{bottom:478.853333pt;}
.yb_c00138{bottom:519.520000pt;}
.ya_c00138{bottom:534.520000pt;}
.y9_c00138{bottom:549.000000pt;}
.y8_c00138{bottom:549.920000pt;}
.y7_c00138{bottom:565.000000pt;}
.y6_c00138{bottom:580.333333pt;}
.y5_c00138{bottom:595.666667pt;}
.y4_c00138{bottom:610.720000pt;}
.y3_c00138{bottom:674.120000pt;}
.y2_c00138{bottom:782.266667pt;}
.y1_c00138{bottom:948.933333pt;}
.h1_c00138{height:52.343750pt;}
.h5_c00138{height:57.549479pt;}
.h4_c00138{height:57.578125pt;}
.h6_c00138{height:68.046875pt;}
.h3_c00138{height:73.281250pt;}
.h2_c00138{height:198.906250pt;}
.h0_c00138{height:1044.000000pt;}
.w0_c00138{width:650.646400pt;}
.w1_c00138{width:650.666667pt;}
.x0_c00138{left:0.000000pt;}
.x4_c00138{left:52.169067pt;}
.x8_c00138{left:53.435733pt;}
.x9_c00138{left:54.369067pt;}
.xa_c00138{left:55.369067pt;}
.xb_c00138{left:56.635733pt;}
.xe_c00138{left:57.569067pt;}
.x5_c00138{left:67.822400pt;}
.x2_c00138{left:72.302400pt;}
.x7_c00138{left:81.235733pt;}
.x3_c00138{left:137.235733pt;}
.x1_c00138{left:263.969067pt;}
.xd_c00138{left:420.769067pt;}
.xc_c00138{left:509.102400pt;}
.x6_c00138{left:589.102400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_599bd67f1c7e3c9874da2731.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00139;src:url('chunks/assets/font_22c4f77d20445b2cd75cde00.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00139;src:url('chunks/assets/font_0f42b4ef2a6a90ebc9e66fad.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00139;src:url('chunks/assets/font_b2024e2e4b66e8cc5eff98bc.woff2')format("woff");}.ff4_c00139{font-family:ff4_c00139;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1a_c00139{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m15_c00139{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m11_c00139{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00139{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9_c00139{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3_c00139{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m17_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);}
.m12_c00139{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8_c00139{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c00139{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m10_c00139{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c00139{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6_c00139{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c00139{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m16_c00139{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c00139{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c00139{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c00139{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c00139{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00139{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c00139{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00139{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m18_c00139{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00139{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m19_c00139{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c00139{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00139{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00139{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00139{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.v1_c00139{vertical-align:1.200000px;}
.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:0.000000px;}
._0_c00139{margin-left:-8.232549px;}
.fc0_c00139{color:transparent;}
.fs4_c00139{font-size:36.000000px;}
.fs0_c00139{font-size:54.000000px;}
.fs3_c00139{font-size:72.000000px;}
.fs1_c00139{font-size:78.000000px;}
.fs2_c00139{font-size:84.000000px;}
.y0_c00139{bottom:0.000000px;}
.y46_c00139{bottom:28.935000px;}
.y45_c00139{bottom:84.060000px;}
.y44_c00139{bottom:90.885000px;}
.y43_c00139{bottom:93.375000px;}
.y42_c00139{bottom:94.500000px;}
.y40_c00139{bottom:145.635000px;}
.y3f_c00139{bottom:151.035000px;}
.y3e_c00139{bottom:158.250000px;}
.y3d_c00139{bottom:167.250000px;}
.y3c_c00139{bottom:172.260000px;}
.y3b_c00139{bottom:179.835000px;}
.y3a_c00139{bottom:193.875000px;}
.y39_c00139{bottom:219.810000px;}
.y38_c00139{bottom:238.125000px;}
.y37_c00139{bottom:260.085000px;}
.y36_c00139{bottom:280.560000px;}
.y35_c00139{bottom:302.625000px;}
.y34_c00139{bottom:320.160000px;}
.y33_c00139{bottom:326.310000px;}
.y32_c00139{bottom:330.660000px;}
.y31_c00139{bottom:346.125000px;}
.y30_c00139{bottom:367.335000px;}
.y2f_c00139{bottom:389.685000px;}
.y2e_c00139{bottom:408.060000px;}
.y2d_c00139{bottom:413.460000px;}
.y2c_c00139{bottom:415.560000px;}
.y2b_c00139{bottom:429.960000px;}
.y2a_c00139{bottom:430.035000px;}
.y29_c00139{bottom:431.460000px;}
.y28_c00139{bottom:435.810000px;}
.y27_c00139{bottom:451.635000px;}
.y26_c00139{bottom:455.910000px;}
.y25_c00139{bottom:478.935000px;}
.y24_c00139{bottom:498.060000px;}
.y23_c00139{bottom:519.960000px;}
.y22_c00139{bottom:541.260000px;}
.y21_c00139{bottom:542.685000px;}
.y20_c00139{bottom:563.250000px;}
.y1f_c00139{bottom:584.835000px;}
.y1e_c00139{bottom:606.750000px;}
.y1d_c00139{bottom:628.035000px;}
.y1a_c00139{bottom:628.335000px;}
.y1c_c00139{bottom:628.410000px;}
.y1b_c00139{bottom:628.710000px;}
.y18_c00139{bottom:648.885000px;}
.y19_c00139{bottom:649.260000px;}
.y17_c00139{bottom:671.250000px;}
.y15_c00139{bottom:692.460000px;}
.y16_c00139{bottom:694.260000px;}
.y14_c00139{bottom:714.450000px;}
.y13_c00139{bottom:735.660000px;}
.y12_c00139{bottom:757.260000px;}
.y11_c00139{bottom:779.250000px;}
.y10_c00139{bottom:800.460000px;}
.yf_c00139{bottom:817.050000px;}
.ye_c00139{bottom:842.625000px;}
.yd_c00139{bottom:864.150000px;}
.yc_c00139{bottom:885.435000px;}
.ya_c00139{bottom:899.085000px;}
.yb_c00139{bottom:908.460000px;}
.y9_c00139{bottom:927.900000px;}
.y8_c00139{bottom:949.500000px;}
.y7_c00139{bottom:970.800000px;}
.y6_c00139{bottom:991.935000px;}
.y4_c00139{bottom:1000.275000px;}
.y5_c00139{bottom:1013.250000px;}
.y3_c00139{bottom:1032.675000px;}
.y41_c00139{bottom:1077.960000px;}
.y1_c00139{bottom:1087.710000px;}
.y2_c00139{bottom:1091.685000px;}
.ha_c00139{height:37.546875px;}
.h2_c00139{height:52.998047px;}
.h1_c00139{height:54.421875px;}
.h6_c00139{height:70.628906px;}
.h9_c00139{height:76.514648px;}
.h3_c00139{height:76.552734px;}
.h8_c00139{height:78.609375px;}
.h4_c00139{height:82.441406px;}
.h7_c00139{height:83.641406px;}
.h5_c00139{height:84.656250px;}
.h0_c00139{height:1174.500000px;}
.w0_c00139{width:731.977200px;}
.w1_c00139{width:732.000000px;}
.x0_c00139{left:0.000000px;}
.xc_c00139{left:59.365200px;}
.xa_c00139{left:60.790200px;}
.x9_c00139{left:61.915200px;}
.x7_c00139{left:63.715200px;}
.x5_c00139{left:64.765200px;}
.x3_c00139{left:65.890200px;}
.x19_c00139{left:83.515200px;}
.x22_c00139{left:85.300200px;}
.xe_c00139{left:88.915200px;}
.x1d_c00139{left:90.715200px;}
.x8_c00139{left:92.140200px;}
.x4_c00139{left:117.715200px;}
.x26_c00139{left:122.365200px;}
.x23_c00139{left:142.915200px;}
.x1b_c00139{left:145.090200px;}
.x24_c00139{left:159.490200px;}
.x13_c00139{left:181.090200px;}
.x6_c00139{left:195.490200px;}
.xd_c00139{left:201.190200px;}
.x25_c00139{left:249.115200px;}
.x1_c00139{left:281.890200px;}
.x20_c00139{left:294.490200px;}
.x1e_c00139{left:298.090200px;}
.x17_c00139{left:322.540200px;}
.xf_c00139{left:345.940200px;}
.x21_c00139{left:362.890200px;}
.x2_c00139{left:367.900200px;}
.x1c_c00139{left:427.690200px;}
.x1f_c00139{left:442.090200px;}
.x1a_c00139{left:449.590200px;}
.x10_c00139{left:488.890200px;}
.x11_c00139{left:520.540200px;}
.x14_c00139{left:525.940200px;}
.x15_c00139{left:554.365200px;}
.xb_c00139{left:570.940200px;}
.x16_c00139{left:580.315200px;}
.x12_c00139{left:618.490200px;}
.x18_c00139{left:641.140200px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.v1_c00139{vertical-align:1.066667pt;}
.ls0_c00139{letter-spacing:0.000000pt;}
.ws0_c00139{word-spacing:0.000000pt;}
._0_c00139{margin-left:-7.317821pt;}
.fs4_c00139{font-size:32.000000pt;}
.fs0_c00139{font-size:48.000000pt;}
.fs3_c00139{font-size:64.000000pt;}
.fs1_c00139{font-size:69.333333pt;}
.fs2_c00139{font-size:74.666667pt;}
.y0_c00139{bottom:0.000000pt;}
.y46_c00139{bottom:25.720000pt;}
.y45_c00139{bottom:74.720000pt;}
.y44_c00139{bottom:80.786667pt;}
.y43_c00139{bottom:83.000000pt;}
.y42_c00139{bottom:84.000000pt;}
.y40_c00139{bottom:129.453333pt;}
.y3f_c00139{bottom:134.253333pt;}
.y3e_c00139{bottom:140.666667pt;}
.y3d_c00139{bottom:148.666667pt;}
.y3c_c00139{bottom:153.120000pt;}
.y3b_c00139{bottom:159.853333pt;}
.y3a_c00139{bottom:172.333333pt;}
.y39_c00139{bottom:195.386667pt;}
.y38_c00139{bottom:211.666667pt;}
.y37_c00139{bottom:231.186667pt;}
.y36_c00139{bottom:249.386667pt;}
.y35_c00139{bottom:269.000000pt;}
.y34_c00139{bottom:284.586667pt;}
.y33_c00139{bottom:290.053333pt;}
.y32_c00139{bottom:293.920000pt;}
.y31_c00139{bottom:307.666667pt;}
.y30_c00139{bottom:326.520000pt;}
.y2f_c00139{bottom:346.386667pt;}
.y2e_c00139{bottom:362.720000pt;}
.y2d_c00139{bottom:367.520000pt;}
.y2c_c00139{bottom:369.386667pt;}
.y2b_c00139{bottom:382.186667pt;}
.y2a_c00139{bottom:382.253333pt;}
.y29_c00139{bottom:383.520000pt;}
.y28_c00139{bottom:387.386667pt;}
.y27_c00139{bottom:401.453333pt;}
.y26_c00139{bottom:405.253333pt;}
.y25_c00139{bottom:425.720000pt;}
.y24_c00139{bottom:442.720000pt;}
.y23_c00139{bottom:462.186667pt;}
.y22_c00139{bottom:481.120000pt;}
.y21_c00139{bottom:482.386667pt;}
.y20_c00139{bottom:500.666667pt;}
.y1f_c00139{bottom:519.853333pt;}
.y1e_c00139{bottom:539.333333pt;}
.y1d_c00139{bottom:558.253333pt;}
.y1a_c00139{bottom:558.520000pt;}
.y1c_c00139{bottom:558.586667pt;}
.y1b_c00139{bottom:558.853333pt;}
.y18_c00139{bottom:576.786667pt;}
.y19_c00139{bottom:577.120000pt;}
.y17_c00139{bottom:596.666667pt;}
.y15_c00139{bottom:615.520000pt;}
.y16_c00139{bottom:617.120000pt;}
.y14_c00139{bottom:635.066667pt;}
.y13_c00139{bottom:653.920000pt;}
.y12_c00139{bottom:673.120000pt;}
.y11_c00139{bottom:692.666667pt;}
.y10_c00139{bottom:711.520000pt;}
.yf_c00139{bottom:726.266667pt;}
.ye_c00139{bottom:749.000000pt;}
.yd_c00139{bottom:768.133333pt;}
.yc_c00139{bottom:787.053333pt;}
.ya_c00139{bottom:799.186667pt;}
.yb_c00139{bottom:807.520000pt;}
.y9_c00139{bottom:824.800000pt;}
.y8_c00139{bottom:844.000000pt;}
.y7_c00139{bottom:862.933333pt;}
.y6_c00139{bottom:881.720000pt;}
.y4_c00139{bottom:889.133333pt;}
.y5_c00139{bottom:900.666667pt;}
.y3_c00139{bottom:917.933333pt;}
.y41_c00139{bottom:958.186667pt;}
.y1_c00139{bottom:966.853333pt;}
.y2_c00139{bottom:970.386667pt;}
.ha_c00139{height:33.375000pt;}
.h2_c00139{height:47.109375pt;}
.h1_c00139{height:48.375000pt;}
.h6_c00139{height:62.781250pt;}
.h9_c00139{height:68.013021pt;}
.h3_c00139{height:68.046875pt;}
.h8_c00139{height:69.875000pt;}
.h4_c00139{height:73.281250pt;}
.h7_c00139{height:74.347917pt;}
.h5_c00139{height:75.250000pt;}
.h0_c00139{height:1044.000000pt;}
.w0_c00139{width:650.646400pt;}
.w1_c00139{width:650.666667pt;}
.x0_c00139{left:0.000000pt;}
.xc_c00139{left:52.769067pt;}
.xa_c00139{left:54.035733pt;}
.x9_c00139{left:55.035733pt;}
.x7_c00139{left:56.635733pt;}
.x5_c00139{left:57.569067pt;}
.x3_c00139{left:58.569067pt;}
.x19_c00139{left:74.235733pt;}
.x22_c00139{left:75.822400pt;}
.xe_c00139{left:79.035733pt;}
.x1d_c00139{left:80.635733pt;}
.x8_c00139{left:81.902400pt;}
.x4_c00139{left:104.635733pt;}
.x26_c00139{left:108.769067pt;}
.x23_c00139{left:127.035733pt;}
.x1b_c00139{left:128.969067pt;}
.x24_c00139{left:141.769067pt;}
.x13_c00139{left:160.969067pt;}
.x6_c00139{left:173.769067pt;}
.xd_c00139{left:178.835733pt;}
.x25_c00139{left:221.435733pt;}
.x1_c00139{left:250.569067pt;}
.x20_c00139{left:261.769067pt;}
.x1e_c00139{left:264.969067pt;}
.x17_c00139{left:286.702400pt;}
.xf_c00139{left:307.502400pt;}
.x21_c00139{left:322.569067pt;}
.x2_c00139{left:327.022400pt;}
.x1c_c00139{left:380.169067pt;}
.x1f_c00139{left:392.969067pt;}
.x1a_c00139{left:399.635733pt;}
.x10_c00139{left:434.569067pt;}
.x11_c00139{left:462.702400pt;}
.x14_c00139{left:467.502400pt;}
.x15_c00139{left:492.769067pt;}
.xb_c00139{left:507.502400pt;}
.x16_c00139{left:515.835733pt;}
.x12_c00139{left:549.769067pt;}
.x18_c00139{left:569.902400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27028c2aa66573a190a2ab93.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00140;src:url('chunks/assets/font_f37d555ed9a195cd448c5f62.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00140;src:url('chunks/assets/font_135c05c57c5d72fa05dcf67e.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00140;src:url('chunks/assets/font_f4e80021ae826c6c8ae3aef9.woff2')format("woff");}.ff4_c00140{font-family:ff4_c00140;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00140;src:url('chunks/assets/font_7a735b1bd9c7611a50ac4d14.woff2')format("woff");}.ff5_c00140{font-family:ff5_c00140;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00140;src:url('chunks/assets/font_bb6a587235dae1981b1eacaf.woff2')format("woff");}.ff6_c00140{font-family:ff6_c00140;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00140{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00140{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00140{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5_c00140{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc_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);}
.mb_c00140{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma_c00140{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c00140{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00140{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c00140{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c00140{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00140{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md_c00140{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c00140{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m10_c00140{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00140{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00140{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00140{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00140{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c00140{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m11_c00140{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00140{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m15_c00140{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00140{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m19_c00140{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00140{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m18_c00140{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m16_c00140{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00140{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m12_c00140{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00140{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m1_c00140{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.v1_c00140{vertical-align:1.500000px;}
.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;}
}
.ws0_c00140{word-spacing:0.000000px;}
._0_c00140{margin-left:-11.823874px;}
.fc0_c00140{color:transparent;}
.fs5_c00140{font-size:30.000000px;}
.fs4_c00140{font-size:36.000000px;}
.fs0_c00140{font-size:60.000000px;}
.fs2_c00140{font-size:66.000000px;}
.fs3_c00140{font-size:72.000000px;}
.fs1_c00140{font-size:84.000000px;}
.y0_c00140{bottom:0.000000px;}
.y43_c00140{bottom:59.910000px;}
.y40_c00140{bottom:81.885000px;}
.y41_c00140{bottom:94.125000px;}
.y42_c00140{bottom:95.250000px;}
.y3d_c00140{bottom:147.060000px;}
.y3e_c00140{bottom:148.785000px;}
.y3f_c00140{bottom:149.625000px;}
.y3b_c00140{bottom:168.285000px;}
.y3c_c00140{bottom:171.885000px;}
.y3a_c00140{bottom:189.885000px;}
.y39_c00140{bottom:210.435000px;}
.y37_c00140{bottom:230.250000px;}
.y38_c00140{bottom:231.585000px;}
.y33_c00140{bottom:251.460000px;}
.y35_c00140{bottom:251.760000px;}
.y34_c00140{bottom:251.835000px;}
.y36_c00140{bottom:252.510000px;}
.y32_c00140{bottom:273.810000px;}
.y31_c00140{bottom:380.310000px;}
.y2f_c00140{bottom:401.535000px;}
.y30_c00140{bottom:402.285000px;}
.y2d_c00140{bottom:423.885000px;}
.y2e_c00140{bottom:424.935000px;}
.y2a_c00140{bottom:444.435000px;}
.y2b_c00140{bottom:445.125000px;}
.y2c_c00140{bottom:445.875000px;}
.y29_c00140{bottom:467.460000px;}
.y26_c00140{bottom:488.685000px;}
.y27_c00140{bottom:489.060000px;}
.y28_c00140{bottom:489.750000px;}
.y25_c00140{bottom:511.335000px;}
.y24_c00140{bottom:532.935000px;}
.y22_c00140{bottom:554.535000px;}
.y23_c00140{bottom:554.910000px;}
.y21_c00140{bottom:576.510000px;}
.y20_c00140{bottom:598.125000px;}
.y1f_c00140{bottom:620.085000px;}
.y1e_c00140{bottom:641.685000px;}
.y1d_c00140{bottom:663.660000px;}
.y1c_c00140{bottom:685.185000px;}
.y1b_c00140{bottom:707.535000px;}
.y1a_c00140{bottom:728.460000px;}
.y19_c00140{bottom:729.135000px;}
.y18_c00140{bottom:750.750000px;}
.y17_c00140{bottom:771.675000px;}
.y16_c00140{bottom:772.710000px;}
.y15_c00140{bottom:794.310000px;}
.y14_c00140{bottom:815.625000px;}
.y13_c00140{bottom:816.675000px;}
.y12_c00140{bottom:838.275000px;}
.y11_c00140{bottom:859.500000px;}
.y10_c00140{bottom:860.250000px;}
.yf_c00140{bottom:878.925000px;}
.ye_c00140{bottom:879.675000px;}
.yd_c00140{bottom:881.085000px;}
.yb_c00140{bottom:881.460000px;}
.yc_c00140{bottom:882.150000px;}
.ya_c00140{bottom:902.685000px;}
.y9_c00140{bottom:924.675000px;}
.y8_c00140{bottom:946.275000px;}
.y7_c00140{bottom:967.125000px;}
.y6_c00140{bottom:990.900000px;}
.y5_c00140{bottom:1011.060000px;}
.y4_c00140{bottom:1032.585000px;}
.y3_c00140{bottom:1088.085000px;}
.y2_c00140{bottom:1091.685000px;}
.y1_c00140{bottom:1093.125000px;}
.ha_c00140{height:31.289062px;}
.h9_c00140{height:37.546875px;}
.h1_c00140{height:58.886719px;}
.h6_c00140{height:64.775391px;}
.h8_c00140{height:70.628906px;}
.h7_c00140{height:70.664062px;}
.hb_c00140{height:72.562500px;}
.h4_c00140{height:82.400391px;}
.h2_c00140{height:82.441406px;}
.h5_c00140{height:83.941406px;}
.h3_c00140{height:84.656250px;}
.h0_c00140{height:1174.500000px;}
.w0_c00140{width:731.977200px;}
.w1_c00140{width:732.000000px;}
.x0_c00140{left:0.000000px;}
.xf_c00140{left:55.390200px;}
.x4_c00140{left:56.515200px;}
.x7_c00140{left:58.315200px;}
.x6_c00140{left:60.115200px;}
.x20_c00140{left:61.165200px;}
.x24_c00140{left:78.490200px;}
.x14_c00140{left:89.590200px;}
.x5_c00140{left:90.715200px;}
.x10_c00140{left:91.765200px;}
.x1d_c00140{left:115.915200px;}
.x1e_c00140{left:127.090200px;}
.x13_c00140{left:131.365200px;}
.xd_c00140{left:154.090200px;}
.x8_c00140{left:155.890200px;}
.x17_c00140{left:161.965200px;}
.x1f_c00140{left:186.115200px;}
.x1a_c00140{left:218.140200px;}
.xc_c00140{left:236.515200px;}
.x1b_c00140{left:240.115200px;}
.x15_c00140{left:241.165200px;}
.xe_c00140{left:246.190200px;}
.x18_c00140{left:258.115200px;}
.x16_c00140{left:272.140200px;}
.x19_c00140{left:274.990200px;}
.x1_c00140{left:298.765200px;}
.x11_c00140{left:317.890200px;}
.x9_c00140{left:333.340200px;}
.x12_c00140{left:359.290200px;}
.x25_c00140{left:409.690200px;}
.x22_c00140{left:443.515200px;}
.x26_c00140{left:466.540200px;}
.x2_c00140{left:469.765200px;}
.x23_c00140{left:480.190200px;}
.xa_c00140{left:554.365200px;}
.xb_c00140{left:570.940200px;}
.x27_c00140{left:579.190200px;}
.x28_c00140{left:597.565200px;}
.x21_c00140{left:610.915200px;}
.x3_c00140{left:633.940200px;}
.x1c_c00140{left:655.165200px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.v1_c00140{vertical-align:1.333333pt;}
.ls0_c00140{letter-spacing:0.000000pt;}
.ws0_c00140{word-spacing:0.000000pt;}
._0_c00140{margin-left:-10.510110pt;}
.fs5_c00140{font-size:26.666667pt;}
.fs4_c00140{font-size:32.000000pt;}
.fs0_c00140{font-size:53.333333pt;}
.fs2_c00140{font-size:58.666667pt;}
.fs3_c00140{font-size:64.000000pt;}
.fs1_c00140{font-size:74.666667pt;}
.y0_c00140{bottom:0.000000pt;}
.y43_c00140{bottom:53.253333pt;}
.y40_c00140{bottom:72.786667pt;}
.y41_c00140{bottom:83.666667pt;}
.y42_c00140{bottom:84.666667pt;}
.y3d_c00140{bottom:130.720000pt;}
.y3e_c00140{bottom:132.253333pt;}
.y3f_c00140{bottom:133.000000pt;}
.y3b_c00140{bottom:149.586667pt;}
.y3c_c00140{bottom:152.786667pt;}
.y3a_c00140{bottom:168.786667pt;}
.y39_c00140{bottom:187.053333pt;}
.y37_c00140{bottom:204.666667pt;}
.y38_c00140{bottom:205.853333pt;}
.y33_c00140{bottom:223.520000pt;}
.y35_c00140{bottom:223.786667pt;}
.y34_c00140{bottom:223.853333pt;}
.y36_c00140{bottom:224.453333pt;}
.y32_c00140{bottom:243.386667pt;}
.y31_c00140{bottom:338.053333pt;}
.y2f_c00140{bottom:356.920000pt;}
.y30_c00140{bottom:357.586667pt;}
.y2d_c00140{bottom:376.786667pt;}
.y2e_c00140{bottom:377.720000pt;}
.y2a_c00140{bottom:395.053333pt;}
.y2b_c00140{bottom:395.666667pt;}
.y2c_c00140{bottom:396.333333pt;}
.y29_c00140{bottom:415.520000pt;}
.y26_c00140{bottom:434.386667pt;}
.y27_c00140{bottom:434.720000pt;}
.y28_c00140{bottom:435.333333pt;}
.y25_c00140{bottom:454.520000pt;}
.y24_c00140{bottom:473.720000pt;}
.y22_c00140{bottom:492.920000pt;}
.y23_c00140{bottom:493.253333pt;}
.y21_c00140{bottom:512.453333pt;}
.y20_c00140{bottom:531.666667pt;}
.y1f_c00140{bottom:551.186667pt;}
.y1e_c00140{bottom:570.386667pt;}
.y1d_c00140{bottom:589.920000pt;}
.y1c_c00140{bottom:609.053333pt;}
.y1b_c00140{bottom:628.920000pt;}
.y1a_c00140{bottom:647.520000pt;}
.y19_c00140{bottom:648.120000pt;}
.y18_c00140{bottom:667.333333pt;}
.y17_c00140{bottom:685.933333pt;}
.y16_c00140{bottom:686.853333pt;}
.y15_c00140{bottom:706.053333pt;}
.y14_c00140{bottom:725.000000pt;}
.y13_c00140{bottom:725.933333pt;}
.y12_c00140{bottom:745.133333pt;}
.y11_c00140{bottom:764.000000pt;}
.y10_c00140{bottom:764.666667pt;}
.yf_c00140{bottom:781.266667pt;}
.ye_c00140{bottom:781.933333pt;}
.yd_c00140{bottom:783.186667pt;}
.yb_c00140{bottom:783.520000pt;}
.yc_c00140{bottom:784.133333pt;}
.ya_c00140{bottom:802.386667pt;}
.y9_c00140{bottom:821.933333pt;}
.y8_c00140{bottom:841.133333pt;}
.y7_c00140{bottom:859.666667pt;}
.y6_c00140{bottom:880.800000pt;}
.y5_c00140{bottom:898.720000pt;}
.y4_c00140{bottom:917.853333pt;}
.y3_c00140{bottom:967.186667pt;}
.y2_c00140{bottom:970.386667pt;}
.y1_c00140{bottom:971.666667pt;}
.ha_c00140{height:27.812500pt;}
.h9_c00140{height:33.375000pt;}
.h1_c00140{height:52.343750pt;}
.h6_c00140{height:57.578125pt;}
.h8_c00140{height:62.781250pt;}
.h7_c00140{height:62.812500pt;}
.hb_c00140{height:64.500000pt;}
.h4_c00140{height:73.244792pt;}
.h2_c00140{height:73.281250pt;}
.h5_c00140{height:74.614583pt;}
.h3_c00140{height:75.250000pt;}
.h0_c00140{height:1044.000000pt;}
.w0_c00140{width:650.646400pt;}
.w1_c00140{width:650.666667pt;}
.x0_c00140{left:0.000000pt;}
.xf_c00140{left:49.235733pt;}
.x4_c00140{left:50.235733pt;}
.x7_c00140{left:51.835733pt;}
.x6_c00140{left:53.435733pt;}
.x20_c00140{left:54.369067pt;}
.x24_c00140{left:69.769067pt;}
.x14_c00140{left:79.635733pt;}
.x5_c00140{left:80.635733pt;}
.x10_c00140{left:81.569067pt;}
.x1d_c00140{left:103.035733pt;}
.x1e_c00140{left:112.969067pt;}
.x13_c00140{left:116.769067pt;}
.xd_c00140{left:136.969067pt;}
.x8_c00140{left:138.569067pt;}
.x17_c00140{left:143.969067pt;}
.x1f_c00140{left:165.435733pt;}
.x1a_c00140{left:193.902400pt;}
.xc_c00140{left:210.235733pt;}
.x1b_c00140{left:213.435733pt;}
.x15_c00140{left:214.369067pt;}
.xe_c00140{left:218.835733pt;}
.x18_c00140{left:229.435733pt;}
.x16_c00140{left:241.902400pt;}
.x19_c00140{left:244.435733pt;}
.x1_c00140{left:265.569067pt;}
.x11_c00140{left:282.569067pt;}
.x9_c00140{left:296.302400pt;}
.x12_c00140{left:319.369067pt;}
.x25_c00140{left:364.169067pt;}
.x22_c00140{left:394.235733pt;}
.x26_c00140{left:414.702400pt;}
.x2_c00140{left:417.569067pt;}
.x23_c00140{left:426.835733pt;}
.xa_c00140{left:492.769067pt;}
.xb_c00140{left:507.502400pt;}
.x27_c00140{left:514.835733pt;}
.x28_c00140{left:531.169067pt;}
.x21_c00140{left:543.035733pt;}
.x3_c00140{left:563.502400pt;}
.x1c_c00140{left:582.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d15b2ed0d3e3f7d859cd480d.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00141;src:url('chunks/assets/font_3196b0e954f80f0747d31652.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00141;src:url('chunks/assets/font_cc27aa56026346eb7bdd8da2.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00141;src:url('chunks/assets/font_0e65eb7072171cdd95c8ad98.woff2')format("woff");}.ff4_c00141{font-family:ff4_c00141;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m25_c00141{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m23_c00141{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00141{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m24_c00141{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m29_c00141{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m0_c00141{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m22_c00141{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m28_c00141{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10_c00141{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c00141{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m18_c00141{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c00141{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00141{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00141{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00141{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00141{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m21_c00141{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00141{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00141{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00141{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00141{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00141{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m13_c00141{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00141{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m20_c00141{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00141{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00141{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00141{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00141{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m17_c00141{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c00141{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c00141{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m26_c00141{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c00141{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m12_c00141{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c00141{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m19_c00141{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m27_c00141{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m16_c00141{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00141{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00141{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m14_c00141{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1_c00141{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00141{color:transparent;}
.fs1_c00141{font-size:54.000000px;}
.fs0_c00141{font-size:66.000000px;}
.fs2_c00141{font-size:72.000000px;}
.fs3_c00141{font-size:78.000000px;}
.y0_c00141{bottom:0.000000px;}
.y62_c00141{bottom:81.885000px;}
.y61_c00141{bottom:91.635000px;}
.y60_c00141{bottom:94.500000px;}
.y5f_c00141{bottom:102.375000px;}
.y5e_c00141{bottom:106.035000px;}
.y5d_c00141{bottom:109.635000px;}
.y5c_c00141{bottom:115.335000px;}
.y5b_c00141{bottom:118.935000px;}
.y5a_c00141{bottom:124.710000px;}
.y59_c00141{bottom:125.085000px;}
.y58_c00141{bottom:127.935000px;}
.y57_c00141{bottom:130.875000px;}
.y56_c00141{bottom:136.260000px;}
.y53_c00141{bottom:146.685000px;}
.y54_c00141{bottom:147.435000px;}
.y55_c00141{bottom:148.125000px;}
.y52_c00141{bottom:148.785000px;}
.y51_c00141{bottom:150.660000px;}
.y50_c00141{bottom:156.375000px;}
.y4f_c00141{bottom:171.135000px;}
.y4d_c00141{bottom:178.335000px;}
.y4e_c00141{bottom:178.410000px;}
.y4c_c00141{bottom:178.710000px;}
.y4b_c00141{bottom:180.135000px;}
.y4a_c00141{bottom:201.750000px;}
.y49_c00141{bottom:203.250000px;}
.y48_c00141{bottom:212.160000px;}
.y47_c00141{bottom:217.935000px;}
.y46_c00141{bottom:234.135000px;}
.y45_c00141{bottom:239.910000px;}
.y44_c00141{bottom:262.275000px;}
.y43_c00141{bottom:266.250000px;}
.y42_c00141{bottom:277.410000px;}
.y41_c00141{bottom:282.060000px;}
.y40_c00141{bottom:303.660000px;}
.y3f_c00141{bottom:324.900000px;}
.y3e_c00141{bottom:346.875000px;}
.y3d_c00141{bottom:367.710000px;}
.y3c_c00141{bottom:390.060000px;}
.y3b_c00141{bottom:410.250000px;}
.y3a_c00141{bottom:413.835000px;}
.y39_c00141{bottom:434.310000px;}
.y38_c00141{bottom:435.435000px;}
.y37_c00141{bottom:455.250000px;}
.y36_c00141{bottom:476.835000px;}
.y35_c00141{bottom:498.750000px;}
.y33_c00141{bottom:520.035000px;}
.y34_c00141{bottom:520.410000px;}
.y32_c00141{bottom:541.260000px;}
.y2f_c00141{bottom:563.160000px;}
.y31_c00141{bottom:563.250000px;}
.y30_c00141{bottom:563.535000px;}
.y2b_c00141{bottom:583.035000px;}
.y2c_c00141{bottom:584.085000px;}
.y2e_c00141{bottom:584.760000px;}
.y2d_c00141{bottom:585.135000px;}
.y28_c00141{bottom:604.635000px;}
.y29_c00141{bottom:606.435000px;}
.y2a_c00141{bottom:606.750000px;}
.y26_c00141{bottom:627.960000px;}
.y27_c00141{bottom:628.335000px;}
.y23_c00141{bottom:646.035000px;}
.y24_c00141{bottom:647.460000px;}
.y25_c00141{bottom:650.310000px;}
.y20_c00141{bottom:667.260000px;}
.y21_c00141{bottom:670.875000px;}
.y22_c00141{bottom:672.660000px;}
.y1c_c00141{bottom:688.185000px;}
.y1d_c00141{bottom:691.335000px;}
.y1e_c00141{bottom:693.885000px;}
.y1f_c00141{bottom:694.635000px;}
.y1a_c00141{bottom:713.010000px;}
.y1b_c00141{bottom:716.535000px;}
.y15_c00141{bottom:731.700000px;}
.y16_c00141{bottom:734.910000px;}
.y17_c00141{bottom:736.710000px;}
.y19_c00141{bottom:737.385000px;}
.y18_c00141{bottom:738.135000px;}
.y10_c00141{bottom:751.875000px;}
.y11_c00141{bottom:755.460000px;}
.y12_c00141{bottom:757.260000px;}
.y14_c00141{bottom:759.450000px;}
.y13_c00141{bottom:759.825000px;}
.yd_c00141{bottom:776.310000px;}
.ye_c00141{bottom:780.675000px;}
.yf_c00141{bottom:781.710000px;}
.ya_c00141{bottom:795.435000px;}
.yb_c00141{bottom:797.925000px;}
.yc_c00141{bottom:802.650000px;}
.y9_c00141{bottom:926.835000px;}
.y8_c00141{bottom:955.275000px;}
.y7_c00141{bottom:976.875000px;}
.y6_c00141{bottom:998.085000px;}
.y5_c00141{bottom:1018.935000px;}
.y4_c00141{bottom:1039.125000px;}
.y1_c00141{bottom:1083.810000px;}
.y3_c00141{bottom:1094.925000px;}
.y2_c00141{bottom:1099.275000px;}
.h2_c00141{height:52.998047px;}
.h6_c00141{height:64.743164px;}
.h1_c00141{height:64.775391px;}
.h3_c00141{height:70.628906px;}
.h4_c00141{height:70.664062px;}
.h5_c00141{height:78.609375px;}
.h0_c00141{height:1174.500000px;}
.w0_c00141{width:731.977200px;}
.w1_c00141{width:732.000000px;}
.x0_c00141{left:0.000000px;}
.x2d_c00141{left:60.490200px;}
.x20_c00141{left:61.915200px;}
.x1a_c00141{left:62.965200px;}
.x11_c00141{left:64.090200px;}
.x8_c00141{left:65.515200px;}
.x5_c00141{left:69.490200px;}
.x4_c00141{left:70.540200px;}
.x31_c00141{left:88.165200px;}
.x1_c00141{left:90.340200px;}
.x2e_c00141{left:91.390200px;}
.x29_c00141{left:93.175200px;}
.xc_c00141{left:94.690200px;}
.x6_c00141{left:96.115200px;}
.x1d_c00141{left:112.990200px;}
.x2_c00141{left:116.290200px;}
.x1b_c00141{left:128.890200px;}
.x23_c00141{left:136.090200px;}
.xd_c00141{left:155.515200px;}
.x32_c00141{left:162.715200px;}
.x17_c00141{left:165.190200px;}
.x2a_c00141{left:183.190200px;}
.x2b_c00141{left:196.915200px;}
.x33_c00141{left:207.340200px;}
.x21_c00141{left:214.540200px;}
.x34_c00141{left:216.340200px;}
.x28_c00141{left:218.515200px;}
.x12_c00141{left:225.715200px;}
.x41_c00141{left:228.190200px;}
.x1e_c00141{left:229.990200px;}
.x7_c00141{left:237.190200px;}
.x3e_c00141{left:277.165200px;}
.x3_c00141{left:287.290200px;}
.xe_c00141{left:304.915200px;}
.x3a_c00141{left:318.190200px;}
.x3f_c00141{left:323.290200px;}
.x24_c00141{left:328.315200px;}
.x3b_c00141{left:341.290200px;}
.x13_c00141{left:343.390200px;}
.x18_c00141{left:346.690200px;}
.x35_c00141{left:350.590200px;}
.x26_c00141{left:362.515200px;}
.x22_c00141{left:378.340200px;}
.x27_c00141{left:381.565200px;}
.x36_c00141{left:391.990200px;}
.x9_c00141{left:420.775200px;}
.x1c_c00141{left:457.165200px;}
.xf_c00141{left:462.940200px;}
.x40_c00141{left:467.590200px;}
.x19_c00141{left:481.690200px;}
.x3c_c00141{left:484.165200px;}
.x16_c00141{left:492.790200px;}
.xa_c00141{left:499.990200px;}
.x37_c00141{left:508.990200px;}
.x25_c00141{left:512.590200px;}
.x2f_c00141{left:524.140200px;}
.x14_c00141{left:541.090200px;}
.x38_c00141{left:574.915200px;}
.xb_c00141{left:586.765200px;}
.x10_c00141{left:601.540200px;}
.x3d_c00141{left:604.390200px;}
.x30_c00141{left:612.715200px;}
.x15_c00141{left:619.540200px;}
.x39_c00141{left:623.140200px;}
.x1f_c00141{left:631.390200px;}
.x2c_c00141{left:637.540200px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls0_c00141{letter-spacing:0.000000pt;}
.ws0_c00141{word-spacing:0.000000pt;}
.fs1_c00141{font-size:48.000000pt;}
.fs0_c00141{font-size:58.666667pt;}
.fs2_c00141{font-size:64.000000pt;}
.fs3_c00141{font-size:69.333333pt;}
.y0_c00141{bottom:0.000000pt;}
.y62_c00141{bottom:72.786667pt;}
.y61_c00141{bottom:81.453333pt;}
.y60_c00141{bottom:84.000000pt;}
.y5f_c00141{bottom:91.000000pt;}
.y5e_c00141{bottom:94.253333pt;}
.y5d_c00141{bottom:97.453333pt;}
.y5c_c00141{bottom:102.520000pt;}
.y5b_c00141{bottom:105.720000pt;}
.y5a_c00141{bottom:110.853333pt;}
.y59_c00141{bottom:111.186667pt;}
.y58_c00141{bottom:113.720000pt;}
.y57_c00141{bottom:116.333333pt;}
.y56_c00141{bottom:121.120000pt;}
.y53_c00141{bottom:130.386667pt;}
.y54_c00141{bottom:131.053333pt;}
.y55_c00141{bottom:131.666667pt;}
.y52_c00141{bottom:132.253333pt;}
.y51_c00141{bottom:133.920000pt;}
.y50_c00141{bottom:139.000000pt;}
.y4f_c00141{bottom:152.120000pt;}
.y4d_c00141{bottom:158.520000pt;}
.y4e_c00141{bottom:158.586667pt;}
.y4c_c00141{bottom:158.853333pt;}
.y4b_c00141{bottom:160.120000pt;}
.y4a_c00141{bottom:179.333333pt;}
.y49_c00141{bottom:180.666667pt;}
.y48_c00141{bottom:188.586667pt;}
.y47_c00141{bottom:193.720000pt;}
.y46_c00141{bottom:208.120000pt;}
.y45_c00141{bottom:213.253333pt;}
.y44_c00141{bottom:233.133333pt;}
.y43_c00141{bottom:236.666667pt;}
.y42_c00141{bottom:246.586667pt;}
.y41_c00141{bottom:250.720000pt;}
.y40_c00141{bottom:269.920000pt;}
.y3f_c00141{bottom:288.800000pt;}
.y3e_c00141{bottom:308.333333pt;}
.y3d_c00141{bottom:326.853333pt;}
.y3c_c00141{bottom:346.720000pt;}
.y3b_c00141{bottom:364.666667pt;}
.y3a_c00141{bottom:367.853333pt;}
.y39_c00141{bottom:386.053333pt;}
.y38_c00141{bottom:387.053333pt;}
.y37_c00141{bottom:404.666667pt;}
.y36_c00141{bottom:423.853333pt;}
.y35_c00141{bottom:443.333333pt;}
.y33_c00141{bottom:462.253333pt;}
.y34_c00141{bottom:462.586667pt;}
.y32_c00141{bottom:481.120000pt;}
.y2f_c00141{bottom:500.586667pt;}
.y31_c00141{bottom:500.666667pt;}
.y30_c00141{bottom:500.920000pt;}
.y2b_c00141{bottom:518.253333pt;}
.y2c_c00141{bottom:519.186667pt;}
.y2e_c00141{bottom:519.786667pt;}
.y2d_c00141{bottom:520.120000pt;}
.y28_c00141{bottom:537.453333pt;}
.y29_c00141{bottom:539.053333pt;}
.y2a_c00141{bottom:539.333333pt;}
.y26_c00141{bottom:558.186667pt;}
.y27_c00141{bottom:558.520000pt;}
.y23_c00141{bottom:574.253333pt;}
.y24_c00141{bottom:575.520000pt;}
.y25_c00141{bottom:578.053333pt;}
.y20_c00141{bottom:593.120000pt;}
.y21_c00141{bottom:596.333333pt;}
.y22_c00141{bottom:597.920000pt;}
.y1c_c00141{bottom:611.720000pt;}
.y1d_c00141{bottom:614.520000pt;}
.y1e_c00141{bottom:616.786667pt;}
.y1f_c00141{bottom:617.453333pt;}
.y1a_c00141{bottom:633.786667pt;}
.y1b_c00141{bottom:636.920000pt;}
.y15_c00141{bottom:650.400000pt;}
.y16_c00141{bottom:653.253333pt;}
.y17_c00141{bottom:654.853333pt;}
.y19_c00141{bottom:655.453333pt;}
.y18_c00141{bottom:656.120000pt;}
.y10_c00141{bottom:668.333333pt;}
.y11_c00141{bottom:671.520000pt;}
.y12_c00141{bottom:673.120000pt;}
.y14_c00141{bottom:675.066667pt;}
.y13_c00141{bottom:675.400000pt;}
.yd_c00141{bottom:690.053333pt;}
.ye_c00141{bottom:693.933333pt;}
.yf_c00141{bottom:694.853333pt;}
.ya_c00141{bottom:707.053333pt;}
.yb_c00141{bottom:709.266667pt;}
.yc_c00141{bottom:713.466667pt;}
.y9_c00141{bottom:823.853333pt;}
.y8_c00141{bottom:849.133333pt;}
.y7_c00141{bottom:868.333333pt;}
.y6_c00141{bottom:887.186667pt;}
.y5_c00141{bottom:905.720000pt;}
.y4_c00141{bottom:923.666667pt;}
.y1_c00141{bottom:963.386667pt;}
.y3_c00141{bottom:973.266667pt;}
.y2_c00141{bottom:977.133333pt;}
.h2_c00141{height:47.109375pt;}
.h6_c00141{height:57.549479pt;}
.h1_c00141{height:57.578125pt;}
.h3_c00141{height:62.781250pt;}
.h4_c00141{height:62.812500pt;}
.h5_c00141{height:69.875000pt;}
.h0_c00141{height:1044.000000pt;}
.w0_c00141{width:650.646400pt;}
.w1_c00141{width:650.666667pt;}
.x0_c00141{left:0.000000pt;}
.x2d_c00141{left:53.769067pt;}
.x20_c00141{left:55.035733pt;}
.x1a_c00141{left:55.969067pt;}
.x11_c00141{left:56.969067pt;}
.x8_c00141{left:58.235733pt;}
.x5_c00141{left:61.769067pt;}
.x4_c00141{left:62.702400pt;}
.x31_c00141{left:78.369067pt;}
.x1_c00141{left:80.302400pt;}
.x2e_c00141{left:81.235733pt;}
.x29_c00141{left:82.822400pt;}
.xc_c00141{left:84.169067pt;}
.x6_c00141{left:85.435733pt;}
.x1d_c00141{left:100.435733pt;}
.x2_c00141{left:103.369067pt;}
.x1b_c00141{left:114.569067pt;}
.x23_c00141{left:120.969067pt;}
.xd_c00141{left:138.235733pt;}
.x32_c00141{left:144.635733pt;}
.x17_c00141{left:146.835733pt;}
.x2a_c00141{left:162.835733pt;}
.x2b_c00141{left:175.035733pt;}
.x33_c00141{left:184.302400pt;}
.x21_c00141{left:190.702400pt;}
.x34_c00141{left:192.302400pt;}
.x28_c00141{left:194.235733pt;}
.x12_c00141{left:200.635733pt;}
.x41_c00141{left:202.835733pt;}
.x1e_c00141{left:204.435733pt;}
.x7_c00141{left:210.835733pt;}
.x3e_c00141{left:246.369067pt;}
.x3_c00141{left:255.369067pt;}
.xe_c00141{left:271.035733pt;}
.x3a_c00141{left:282.835733pt;}
.x3f_c00141{left:287.369067pt;}
.x24_c00141{left:291.835733pt;}
.x3b_c00141{left:303.369067pt;}
.x13_c00141{left:305.235733pt;}
.x18_c00141{left:308.169067pt;}
.x35_c00141{left:311.635733pt;}
.x26_c00141{left:322.235733pt;}
.x22_c00141{left:336.302400pt;}
.x27_c00141{left:339.169067pt;}
.x36_c00141{left:348.435733pt;}
.x9_c00141{left:374.022400pt;}
.x1c_c00141{left:406.369067pt;}
.xf_c00141{left:411.502400pt;}
.x40_c00141{left:415.635733pt;}
.x19_c00141{left:428.169067pt;}
.x3c_c00141{left:430.369067pt;}
.x16_c00141{left:438.035733pt;}
.xa_c00141{left:444.435733pt;}
.x37_c00141{left:452.435733pt;}
.x25_c00141{left:455.635733pt;}
.x2f_c00141{left:465.902400pt;}
.x14_c00141{left:480.969067pt;}
.x38_c00141{left:511.035733pt;}
.xb_c00141{left:521.569067pt;}
.x10_c00141{left:534.702400pt;}
.x3d_c00141{left:537.235733pt;}
.x30_c00141{left:544.635733pt;}
.x15_c00141{left:550.702400pt;}
.x39_c00141{left:553.902400pt;}
.x1f_c00141{left:561.235733pt;}
.x2c_c00141{left:566.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_839a6f0b658cb2bd778f65a9.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00142;src:url('chunks/assets/font_c4b34c203bd06339451c7379.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00142;src:url('chunks/assets/font_ce4ff9b9f8ab1ea535aee0a3.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00142;src:url('chunks/assets/font_3b82e3892f0d07424daa639b.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00142{transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);}
.m0_c00142{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m22_c00142{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m18_c00142{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m12_c00142{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5_c00142{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00142{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00142{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m23_c00142{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00142{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c00142{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m19_c00142{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00142{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m27_c00142{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00142{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m24_c00142{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m17_c00142{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m25_c00142{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m26_c00142{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c00142{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c00142{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00142{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00142{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00142{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c00142{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00142{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m16_c00142{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00142{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00142{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00142{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c00142{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m21_c00142{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.ma_c00142{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00142{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m10_c00142{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m28_c00142{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00142{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mb_c00142{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c00142{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2_c00142{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m4_c00142{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00142{color:transparent;}
.fs6_c00142{font-size:48.000000px;}
.fs5_c00142{font-size:60.000000px;}
.fs1_c00142{font-size:66.000000px;}
.fs0_c00142{font-size:72.000000px;}
.fs3_c00142{font-size:78.000000px;}
.fs2_c00142{font-size:84.000000px;}
.fs4_c00142{font-size:90.000000px;}
.y0_c00142{bottom:0.000000px;}
.y4f_c00142{bottom:72.135000px;}
.y50_c00142{bottom:73.260000px;}
.y51_c00142{bottom:74.310000px;}
.y52_c00142{bottom:74.685000px;}
.y53_c00142{bottom:75.375000px;}
.y4d_c00142{bottom:91.560000px;}
.y4e_c00142{bottom:93.000000px;}
.y4a_c00142{bottom:107.085000px;}
.y4b_c00142{bottom:108.510000px;}
.y4c_c00142{bottom:110.685000px;}
.y49_c00142{bottom:126.585000px;}
.y47_c00142{bottom:142.410000px;}
.y48_c00142{bottom:145.260000px;}
.y45_c00142{bottom:159.285000px;}
.y46_c00142{bottom:162.510000px;}
.y44_c00142{bottom:176.625000px;}
.y41_c00142{bottom:192.060000px;}
.y40_c00142{bottom:192.375000px;}
.y42_c00142{bottom:193.125000px;}
.y43_c00142{bottom:194.910000px;}
.y3e_c00142{bottom:266.160000px;}
.y3d_c00142{bottom:266.250000px;}
.y3f_c00142{bottom:267.285000px;}
.y3b_c00142{bottom:288.150000px;}
.y3c_c00142{bottom:288.900000px;}
.y3a_c00142{bottom:310.500000px;}
.y34_c00142{bottom:330.585000px;}
.y36_c00142{bottom:330.960000px;}
.y35_c00142{bottom:331.035000px;}
.y37_c00142{bottom:331.335000px;}
.y39_c00142{bottom:331.710000px;}
.y38_c00142{bottom:332.085000px;}
.y32_c00142{bottom:353.310000px;}
.y33_c00142{bottom:354.060000px;}
.y31_c00142{bottom:374.910000px;}
.y30_c00142{bottom:396.150000px;}
.y2e_c00142{bottom:417.060000px;}
.y2f_c00142{bottom:417.750000px;}
.y2d_c00142{bottom:438.660000px;}
.y2c_c00142{bottom:460.935000px;}
.y2b_c00142{bottom:482.910000px;}
.y2a_c00142{bottom:504.510000px;}
.y29_c00142{bottom:526.500000px;}
.y28_c00142{bottom:548.385000px;}
.y27_c00142{bottom:570.060000px;}
.y26_c00142{bottom:591.285000px;}
.y25_c00142{bottom:591.660000px;}
.y24_c00142{bottom:613.560000px;}
.y23_c00142{bottom:635.250000px;}
.y21_c00142{bottom:656.835000px;}
.y22_c00142{bottom:657.135000px;}
.y20_c00142{bottom:677.685000px;}
.y1f_c00142{bottom:679.125000px;}
.y1e_c00142{bottom:700.710000px;}
.y1d_c00142{bottom:722.700000px;}
.y1c_c00142{bottom:723.075000px;}
.y1b_c00142{bottom:744.660000px;}
.y1a_c00142{bottom:766.635000px;}
.y19_c00142{bottom:788.250000px;}
.y18_c00142{bottom:810.525000px;}
.y17_c00142{bottom:832.185000px;}
.y16_c00142{bottom:854.460000px;}
.y15_c00142{bottom:876.435000px;}
.y12_c00142{bottom:896.925000px;}
.y14_c00142{bottom:897.300000px;}
.y13_c00142{bottom:897.960000px;}
.y11_c00142{bottom:916.335000px;}
.y10_c00142{bottom:919.275000px;}
.yf_c00142{bottom:940.125000px;}
.yd_c00142{bottom:941.550000px;}
.ye_c00142{bottom:941.625000px;}
.yc_c00142{bottom:962.400000px;}
.yb_c00142{bottom:982.935000px;}
.ya_c00142{bottom:984.375000px;}
.y9_c00142{bottom:985.500000px;}
.y8_c00142{bottom:1003.875000px;}
.y7_c00142{bottom:1006.335000px;}
.y6_c00142{bottom:1027.185000px;}
.y5_c00142{bottom:1029.375000px;}
.y4_c00142{bottom:1083.435000px;}
.y3_c00142{bottom:1087.335000px;}
.y2_c00142{bottom:1087.710000px;}
.y1_c00142{bottom:1088.085000px;}
.h9_c00142{height:47.109375px;}
.h8_c00142{height:58.886719px;}
.ha_c00142{height:60.468750px;}
.h5_c00142{height:64.743164px;}
.h3_c00142{height:64.775391px;}
.h2_c00142{height:70.664062px;}
.h1_c00142{height:72.562500px;}
.h6_c00142{height:76.514648px;}
.h4_c00142{height:82.400391px;}
.h7_c00142{height:88.286133px;}
.h0_c00142{height:1174.500000px;}
.w0_c00142{width:731.977200px;}
.w1_c00142{width:732.000000px;}
.x0_c00142{left:0.000000px;}
.x12_c00142{left:45.715200px;}
.x7_c00142{left:47.515200px;}
.x9_c00142{left:48.565200px;}
.x15_c00142{left:49.990200px;}
.x1c_c00142{left:51.115200px;}
.x19_c00142{left:52.540200px;}
.x27_c00142{left:53.590200px;}
.x2f_c00142{left:55.765200px;}
.x31_c00142{left:57.565200px;}
.x2a_c00142{left:72.340200px;}
.xb_c00142{left:80.965200px;}
.x1d_c00142{left:84.175200px;}
.x13_c00142{left:85.300200px;}
.x18_c00142{left:120.190200px;}
.x33_c00142{left:140.740200px;}
.x2b_c00142{left:143.590200px;}
.x8_c00142{left:144.715200px;}
.x1f_c00142{left:147.190200px;}
.x1e_c00142{left:151.915200px;}
.xe_c00142{left:156.940200px;}
.x20_c00142{left:166.990200px;}
.x36_c00142{left:171.715200px;}
.xf_c00142{left:183.565200px;}
.x16_c00142{left:188.290200px;}
.x37_c00142{left:199.750200px;}
.x14_c00142{left:205.915200px;}
.x2c_c00142{left:210.940200px;}
.xc_c00142{left:225.340200px;}
.x10_c00142{left:229.990200px;}
.x21_c00142{left:242.590200px;}
.x34_c00142{left:258.790200px;}
.x1_c00142{left:262.390200px;}
.x22_c00142{left:264.940200px;}
.xd_c00142{left:271.765200px;}
.x28_c00142{left:273.190200px;}
.x2_c00142{left:280.390200px;}
.x3_c00142{left:281.890200px;}
.x4_c00142{left:290.890200px;}
.x2d_c00142{left:295.540200px;}
.x29_c00142{left:304.915200px;}
.x38_c00142{left:315.715200px;}
.x25_c00142{left:326.515200px;}
.x39_c00142{left:346.690200px;}
.x26_c00142{left:415.765200px;}
.xa_c00142{left:419.365200px;}
.x23_c00142{left:422.965200px;}
.x2e_c00142{left:433.765200px;}
.x35_c00142{left:451.765200px;}
.x5_c00142{left:461.140200px;}
.x24_c00142{left:462.940200px;}
.x1a_c00142{left:565.540200px;}
.x32_c00142{left:580.315200px;}
.x1b_c00142{left:598.690200px;}
.x17_c00142{left:603.340200px;}
.x6_c00142{left:624.565200px;}
.x11_c00142{left:629.590200px;}
.x30_c00142{left:664.165200px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls0_c00142{letter-spacing:0.000000pt;}
.ws0_c00142{word-spacing:0.000000pt;}
.fs6_c00142{font-size:42.666667pt;}
.fs5_c00142{font-size:53.333333pt;}
.fs1_c00142{font-size:58.666667pt;}
.fs0_c00142{font-size:64.000000pt;}
.fs3_c00142{font-size:69.333333pt;}
.fs2_c00142{font-size:74.666667pt;}
.fs4_c00142{font-size:80.000000pt;}
.y0_c00142{bottom:0.000000pt;}
.y4f_c00142{bottom:64.120000pt;}
.y50_c00142{bottom:65.120000pt;}
.y51_c00142{bottom:66.053333pt;}
.y52_c00142{bottom:66.386667pt;}
.y53_c00142{bottom:67.000000pt;}
.y4d_c00142{bottom:81.386667pt;}
.y4e_c00142{bottom:82.666667pt;}
.y4a_c00142{bottom:95.186667pt;}
.y4b_c00142{bottom:96.453333pt;}
.y4c_c00142{bottom:98.386667pt;}
.y49_c00142{bottom:112.520000pt;}
.y47_c00142{bottom:126.586667pt;}
.y48_c00142{bottom:129.120000pt;}
.y45_c00142{bottom:141.586667pt;}
.y46_c00142{bottom:144.453333pt;}
.y44_c00142{bottom:157.000000pt;}
.y41_c00142{bottom:170.720000pt;}
.y40_c00142{bottom:171.000000pt;}
.y42_c00142{bottom:171.666667pt;}
.y43_c00142{bottom:173.253333pt;}
.y3e_c00142{bottom:236.586667pt;}
.y3d_c00142{bottom:236.666667pt;}
.y3f_c00142{bottom:237.586667pt;}
.y3b_c00142{bottom:256.133333pt;}
.y3c_c00142{bottom:256.800000pt;}
.y3a_c00142{bottom:276.000000pt;}
.y34_c00142{bottom:293.853333pt;}
.y36_c00142{bottom:294.186667pt;}
.y35_c00142{bottom:294.253333pt;}
.y37_c00142{bottom:294.520000pt;}
.y39_c00142{bottom:294.853333pt;}
.y38_c00142{bottom:295.186667pt;}
.y32_c00142{bottom:314.053333pt;}
.y33_c00142{bottom:314.720000pt;}
.y31_c00142{bottom:333.253333pt;}
.y30_c00142{bottom:352.133333pt;}
.y2e_c00142{bottom:370.720000pt;}
.y2f_c00142{bottom:371.333333pt;}
.y2d_c00142{bottom:389.920000pt;}
.y2c_c00142{bottom:409.720000pt;}
.y2b_c00142{bottom:429.253333pt;}
.y2a_c00142{bottom:448.453333pt;}
.y29_c00142{bottom:468.000000pt;}
.y28_c00142{bottom:487.453333pt;}
.y27_c00142{bottom:506.720000pt;}
.y26_c00142{bottom:525.586667pt;}
.y25_c00142{bottom:525.920000pt;}
.y24_c00142{bottom:545.386667pt;}
.y23_c00142{bottom:564.666667pt;}
.y21_c00142{bottom:583.853333pt;}
.y22_c00142{bottom:584.120000pt;}
.y20_c00142{bottom:602.386667pt;}
.y1f_c00142{bottom:603.666667pt;}
.y1e_c00142{bottom:622.853333pt;}
.y1d_c00142{bottom:642.400000pt;}
.y1c_c00142{bottom:642.733333pt;}
.y1b_c00142{bottom:661.920000pt;}
.y1a_c00142{bottom:681.453333pt;}
.y19_c00142{bottom:700.666667pt;}
.y18_c00142{bottom:720.466667pt;}
.y17_c00142{bottom:739.720000pt;}
.y16_c00142{bottom:759.520000pt;}
.y15_c00142{bottom:779.053333pt;}
.y12_c00142{bottom:797.266667pt;}
.y14_c00142{bottom:797.600000pt;}
.y13_c00142{bottom:798.186667pt;}
.y11_c00142{bottom:814.520000pt;}
.y10_c00142{bottom:817.133333pt;}
.yf_c00142{bottom:835.666667pt;}
.yd_c00142{bottom:836.933333pt;}
.ye_c00142{bottom:837.000000pt;}
.yc_c00142{bottom:855.466667pt;}
.yb_c00142{bottom:873.720000pt;}
.ya_c00142{bottom:875.000000pt;}
.y9_c00142{bottom:876.000000pt;}
.y8_c00142{bottom:892.333333pt;}
.y7_c00142{bottom:894.520000pt;}
.y6_c00142{bottom:913.053333pt;}
.y5_c00142{bottom:915.000000pt;}
.y4_c00142{bottom:963.053333pt;}
.y3_c00142{bottom:966.520000pt;}
.y2_c00142{bottom:966.853333pt;}
.y1_c00142{bottom:967.186667pt;}
.h9_c00142{height:41.875000pt;}
.h8_c00142{height:52.343750pt;}
.ha_c00142{height:53.750000pt;}
.h5_c00142{height:57.549479pt;}
.h3_c00142{height:57.578125pt;}
.h2_c00142{height:62.812500pt;}
.h1_c00142{height:64.500000pt;}
.h6_c00142{height:68.013021pt;}
.h4_c00142{height:73.244792pt;}
.h7_c00142{height:78.476562pt;}
.h0_c00142{height:1044.000000pt;}
.w0_c00142{width:650.646400pt;}
.w1_c00142{width:650.666667pt;}
.x0_c00142{left:0.000000pt;}
.x12_c00142{left:40.635733pt;}
.x7_c00142{left:42.235733pt;}
.x9_c00142{left:43.169067pt;}
.x15_c00142{left:44.435733pt;}
.x1c_c00142{left:45.435733pt;}
.x19_c00142{left:46.702400pt;}
.x27_c00142{left:47.635733pt;}
.x2f_c00142{left:49.569067pt;}
.x31_c00142{left:51.169067pt;}
.x2a_c00142{left:64.302400pt;}
.xb_c00142{left:71.969067pt;}
.x1d_c00142{left:74.822400pt;}
.x13_c00142{left:75.822400pt;}
.x18_c00142{left:106.835733pt;}
.x33_c00142{left:125.102400pt;}
.x2b_c00142{left:127.635733pt;}
.x8_c00142{left:128.635733pt;}
.x1f_c00142{left:130.835733pt;}
.x1e_c00142{left:135.035733pt;}
.xe_c00142{left:139.502400pt;}
.x20_c00142{left:148.435733pt;}
.x36_c00142{left:152.635733pt;}
.xf_c00142{left:163.169067pt;}
.x16_c00142{left:167.369067pt;}
.x37_c00142{left:177.555733pt;}
.x14_c00142{left:183.035733pt;}
.x2c_c00142{left:187.502400pt;}
.xc_c00142{left:200.302400pt;}
.x10_c00142{left:204.435733pt;}
.x21_c00142{left:215.635733pt;}
.x34_c00142{left:230.035733pt;}
.x1_c00142{left:233.235733pt;}
.x22_c00142{left:235.502400pt;}
.xd_c00142{left:241.569067pt;}
.x28_c00142{left:242.835733pt;}
.x2_c00142{left:249.235733pt;}
.x3_c00142{left:250.569067pt;}
.x4_c00142{left:258.569067pt;}
.x2d_c00142{left:262.702400pt;}
.x29_c00142{left:271.035733pt;}
.x38_c00142{left:280.635733pt;}
.x25_c00142{left:290.235733pt;}
.x39_c00142{left:308.169067pt;}
.x26_c00142{left:369.569067pt;}
.xa_c00142{left:372.769067pt;}
.x23_c00142{left:375.969067pt;}
.x2e_c00142{left:385.569067pt;}
.x35_c00142{left:401.569067pt;}
.x5_c00142{left:409.902400pt;}
.x24_c00142{left:411.502400pt;}
.x1a_c00142{left:502.702400pt;}
.x32_c00142{left:515.835733pt;}
.x1b_c00142{left:532.169067pt;}
.x17_c00142{left:536.302400pt;}
.x6_c00142{left:555.169067pt;}
.x11_c00142{left:559.635733pt;}
.x30_c00142{left:590.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ed0a795b674e207280840a62.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00143;src:url('chunks/assets/font_b58c7dfb1631377fbcefe32e.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00143;src:url('chunks/assets/font_565bfee55f3b49c9e2cdb4a5.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00143{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00143{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m0_c00143{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m20_c00143{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m23_c00143{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md_c00143{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00143{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m22_c00143{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4_c00143{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c00143{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c00143{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc_c00143{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1_c00143{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf_c00143{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m17_c00143{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m19_c00143{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00143{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00143{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00143{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00143{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3_c00143{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c00143{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00143{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m16_c00143{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m21_c00143{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00143{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c00143{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00143{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00143{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c00143{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c00143{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00143{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m13_c00143{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c00143{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m10_c00143{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00143{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,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:0.000000px;}
.fc0_c00143{color:transparent;}
.fs4_c00143{font-size:54.000000px;}
.fs1_c00143{font-size:60.000000px;}
.fs2_c00143{font-size:66.000000px;}
.fs3_c00143{font-size:72.000000px;}
.fs0_c00143{font-size:78.000000px;}
.y0_c00143{bottom:0.000000px;}
.y48_c00143{bottom:82.185000px;}
.y47_c00143{bottom:83.010000px;}
.y46_c00143{bottom:84.750000px;}
.y45_c00143{bottom:90.585000px;}
.y44_c00143{bottom:96.960000px;}
.y43_c00143{bottom:99.885000px;}
.y42_c00143{bottom:100.935000px;}
.y41_c00143{bottom:176.250000px;}
.y40_c00143{bottom:184.125000px;}
.y3f_c00143{bottom:185.625000px;}
.y3e_c00143{bottom:199.635000px;}
.y3c_c00143{bottom:215.760000px;}
.y3d_c00143{bottom:215.835000px;}
.y3b_c00143{bottom:218.310000px;}
.y3a_c00143{bottom:226.635000px;}
.y39_c00143{bottom:243.210000px;}
.y38_c00143{bottom:263.685000px;}
.y37_c00143{bottom:271.275000px;}
.y36_c00143{bottom:292.125000px;}
.y35_c00143{bottom:307.650000px;}
.y34_c00143{bottom:329.250000px;}
.y33_c00143{bottom:350.460000px;}
.y32_c00143{bottom:372.435000px;}
.y31_c00143{bottom:394.410000px;}
.y30_c00143{bottom:415.935000px;}
.y2f_c00143{bottom:437.625000px;}
.y2e_c00143{bottom:461.310000px;}
.y2d_c00143{bottom:478.635000px;}
.y2c_c00143{bottom:480.435000px;}
.y2b_c00143{bottom:482.625000px;}
.y2a_c00143{bottom:502.710000px;}
.y29_c00143{bottom:524.310000px;}
.y28_c00143{bottom:545.625000px;}
.y27_c00143{bottom:567.510000px;}
.y26_c00143{bottom:589.125000px;}
.y23_c00143{bottom:610.035000px;}
.y24_c00143{bottom:610.335000px;}
.y25_c00143{bottom:611.085000px;}
.y22_c00143{bottom:631.260000px;}
.y20_c00143{bottom:653.625000px;}
.y21_c00143{bottom:653.910000px;}
.y1c_c00143{bottom:674.085000px;}
.y1d_c00143{bottom:675.210000px;}
.y1e_c00143{bottom:675.510000px;}
.y1f_c00143{bottom:676.185000px;}
.y1b_c00143{bottom:696.750000px;}
.y1a_c00143{bottom:718.335000px;}
.y17_c00143{bottom:738.885000px;}
.y18_c00143{bottom:741.075000px;}
.y19_c00143{bottom:741.450000px;}
.y16_c00143{bottom:756.510000px;}
.y14_c00143{bottom:782.085000px;}
.y15_c00143{bottom:783.135000px;}
.y13_c00143{bottom:803.685000px;}
.y12_c00143{bottom:825.000000px;}
.y11_c00143{bottom:845.835000px;}
.y10_c00143{bottom:867.060000px;}
.yf_c00143{bottom:888.300000px;}
.ye_c00143{bottom:909.585000px;}
.yd_c00143{bottom:931.500000px;}
.yc_c00143{bottom:952.050000px;}
.y8_c00143{bottom:966.000000px;}
.y9_c00143{bottom:973.560000px;}
.yb_c00143{bottom:976.500000px;}
.ya_c00143{bottom:977.250000px;}
.y7_c00143{bottom:994.125000px;}
.y4_c00143{bottom:1004.625000px;}
.y5_c00143{bottom:1007.835000px;}
.y6_c00143{bottom:1016.835000px;}
.y3_c00143{bottom:1035.585000px;}
.y1_c00143{bottom:1081.935000px;}
.y2_c00143{bottom:1092.435000px;}
.h7_c00143{height:52.998047px;}
.h2_c00143{height:58.886719px;}
.h3_c00143{height:64.775391px;}
.h4_c00143{height:70.628906px;}
.h6_c00143{height:70.664062px;}
.h8_c00143{height:72.562500px;}
.h5_c00143{height:76.552734px;}
.h1_c00143{height:78.609375px;}
.h0_c00143{height:1174.500000px;}
.w0_c00143{width:731.977200px;}
.w1_c00143{width:732.000000px;}
.x0_c00143{left:0.000000px;}
.x28_c00143{left:60.790200px;}
.x24_c00143{left:62.290200px;}
.x21_c00143{left:63.715200px;}
.x20_c00143{left:64.765200px;}
.x1d_c00143{left:65.890200px;}
.x18_c00143{left:66.940200px;}
.x12_c00143{left:67.990200px;}
.xd_c00143{left:69.115200px;}
.xc_c00143{left:70.915200px;}
.xb_c00143{left:71.965200px;}
.x7_c00143{left:73.090200px;}
.x6_c00143{left:74.140200px;}
.x3_c00143{left:75.175200px;}
.x2b_c00143{left:76.990200px;}
.x22_c00143{left:93.550200px;}
.x1_c00143{left:95.365200px;}
.x1a_c00143{left:97.165200px;}
.xf_c00143{left:99.340200px;}
.x2c_c00143{left:112.690200px;}
.x2d_c00143{left:139.990200px;}
.x23_c00143{left:157.315200px;}
.x1b_c00143{left:168.115200px;}
.x29_c00143{left:172.375200px;}
.x4_c00143{left:186.490200px;}
.x2a_c00143{left:191.125200px;}
.x5_c00143{left:194.365200px;}
.x1c_c00143{left:220.990200px;}
.x8_c00143{left:229.315200px;}
.x2e_c00143{left:251.290200px;}
.x13_c00143{left:274.690200px;}
.x2_c00143{left:294.490200px;}
.x14_c00143{left:305.590200px;}
.x15_c00143{left:311.740200px;}
.x25_c00143{left:319.315200px;}
.x16_c00143{left:330.790200px;}
.x1e_c00143{left:402.115200px;}
.x1f_c00143{left:408.565200px;}
.x2f_c00143{left:418.690200px;}
.x10_c00143{left:494.290200px;}
.x9_c00143{left:518.740200px;}
.x11_c00143{left:525.190200px;}
.x30_c00143{left:526.990200px;}
.x19_c00143{left:537.790200px;}
.x17_c00143{left:558.340200px;}
.x31_c00143{left:569.140200px;}
.x26_c00143{left:598.690200px;}
.x27_c00143{left:613.390200px;}
.xa_c00143{left:623.515200px;}
.xe_c00143{left:624.940200px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls0_c00143{letter-spacing:0.000000pt;}
.ws0_c00143{word-spacing:0.000000pt;}
.fs4_c00143{font-size:48.000000pt;}
.fs1_c00143{font-size:53.333333pt;}
.fs2_c00143{font-size:58.666667pt;}
.fs3_c00143{font-size:64.000000pt;}
.fs0_c00143{font-size:69.333333pt;}
.y0_c00143{bottom:0.000000pt;}
.y48_c00143{bottom:73.053333pt;}
.y47_c00143{bottom:73.786667pt;}
.y46_c00143{bottom:75.333333pt;}
.y45_c00143{bottom:80.520000pt;}
.y44_c00143{bottom:86.186667pt;}
.y43_c00143{bottom:88.786667pt;}
.y42_c00143{bottom:89.720000pt;}
.y41_c00143{bottom:156.666667pt;}
.y40_c00143{bottom:163.666667pt;}
.y3f_c00143{bottom:165.000000pt;}
.y3e_c00143{bottom:177.453333pt;}
.y3c_c00143{bottom:191.786667pt;}
.y3d_c00143{bottom:191.853333pt;}
.y3b_c00143{bottom:194.053333pt;}
.y3a_c00143{bottom:201.453333pt;}
.y39_c00143{bottom:216.186667pt;}
.y38_c00143{bottom:234.386667pt;}
.y37_c00143{bottom:241.133333pt;}
.y36_c00143{bottom:259.666667pt;}
.y35_c00143{bottom:273.466667pt;}
.y34_c00143{bottom:292.666667pt;}
.y33_c00143{bottom:311.520000pt;}
.y32_c00143{bottom:331.053333pt;}
.y31_c00143{bottom:350.586667pt;}
.y30_c00143{bottom:369.720000pt;}
.y2f_c00143{bottom:389.000000pt;}
.y2e_c00143{bottom:410.053333pt;}
.y2d_c00143{bottom:425.453333pt;}
.y2c_c00143{bottom:427.053333pt;}
.y2b_c00143{bottom:429.000000pt;}
.y2a_c00143{bottom:446.853333pt;}
.y29_c00143{bottom:466.053333pt;}
.y28_c00143{bottom:485.000000pt;}
.y27_c00143{bottom:504.453333pt;}
.y26_c00143{bottom:523.666667pt;}
.y23_c00143{bottom:542.253333pt;}
.y24_c00143{bottom:542.520000pt;}
.y25_c00143{bottom:543.186667pt;}
.y22_c00143{bottom:561.120000pt;}
.y20_c00143{bottom:581.000000pt;}
.y21_c00143{bottom:581.253333pt;}
.y1c_c00143{bottom:599.186667pt;}
.y1d_c00143{bottom:600.186667pt;}
.y1e_c00143{bottom:600.453333pt;}
.y1f_c00143{bottom:601.053333pt;}
.y1b_c00143{bottom:619.333333pt;}
.y1a_c00143{bottom:638.520000pt;}
.y17_c00143{bottom:656.786667pt;}
.y18_c00143{bottom:658.733333pt;}
.y19_c00143{bottom:659.066667pt;}
.y16_c00143{bottom:672.453333pt;}
.y14_c00143{bottom:695.186667pt;}
.y15_c00143{bottom:696.120000pt;}
.y13_c00143{bottom:714.386667pt;}
.y12_c00143{bottom:733.333333pt;}
.y11_c00143{bottom:751.853333pt;}
.y10_c00143{bottom:770.720000pt;}
.yf_c00143{bottom:789.600000pt;}
.ye_c00143{bottom:808.520000pt;}
.yd_c00143{bottom:828.000000pt;}
.yc_c00143{bottom:846.266667pt;}
.y8_c00143{bottom:858.666667pt;}
.y9_c00143{bottom:865.386667pt;}
.yb_c00143{bottom:868.000000pt;}
.ya_c00143{bottom:868.666667pt;}
.y7_c00143{bottom:883.666667pt;}
.y4_c00143{bottom:893.000000pt;}
.y5_c00143{bottom:895.853333pt;}
.y6_c00143{bottom:903.853333pt;}
.y3_c00143{bottom:920.520000pt;}
.y1_c00143{bottom:961.720000pt;}
.y2_c00143{bottom:971.053333pt;}
.h7_c00143{height:47.109375pt;}
.h2_c00143{height:52.343750pt;}
.h3_c00143{height:57.578125pt;}
.h4_c00143{height:62.781250pt;}
.h6_c00143{height:62.812500pt;}
.h8_c00143{height:64.500000pt;}
.h5_c00143{height:68.046875pt;}
.h1_c00143{height:69.875000pt;}
.h0_c00143{height:1044.000000pt;}
.w0_c00143{width:650.646400pt;}
.w1_c00143{width:650.666667pt;}
.x0_c00143{left:0.000000pt;}
.x28_c00143{left:54.035733pt;}
.x24_c00143{left:55.369067pt;}
.x21_c00143{left:56.635733pt;}
.x20_c00143{left:57.569067pt;}
.x1d_c00143{left:58.569067pt;}
.x18_c00143{left:59.502400pt;}
.x12_c00143{left:60.435733pt;}
.xd_c00143{left:61.435733pt;}
.xc_c00143{left:63.035733pt;}
.xb_c00143{left:63.969067pt;}
.x7_c00143{left:64.969067pt;}
.x6_c00143{left:65.902400pt;}
.x3_c00143{left:66.822400pt;}
.x2b_c00143{left:68.435733pt;}
.x22_c00143{left:83.155733pt;}
.x1_c00143{left:84.769067pt;}
.x1a_c00143{left:86.369067pt;}
.xf_c00143{left:88.302400pt;}
.x2c_c00143{left:100.169067pt;}
.x2d_c00143{left:124.435733pt;}
.x23_c00143{left:139.835733pt;}
.x1b_c00143{left:149.435733pt;}
.x29_c00143{left:153.222400pt;}
.x4_c00143{left:165.769067pt;}
.x2a_c00143{left:169.889067pt;}
.x5_c00143{left:172.769067pt;}
.x1c_c00143{left:196.435733pt;}
.x8_c00143{left:203.835733pt;}
.x2e_c00143{left:223.369067pt;}
.x13_c00143{left:244.169067pt;}
.x2_c00143{left:261.769067pt;}
.x14_c00143{left:271.635733pt;}
.x15_c00143{left:277.102400pt;}
.x25_c00143{left:283.835733pt;}
.x16_c00143{left:294.035733pt;}
.x1e_c00143{left:357.435733pt;}
.x1f_c00143{left:363.169067pt;}
.x2f_c00143{left:372.169067pt;}
.x10_c00143{left:439.369067pt;}
.x9_c00143{left:461.102400pt;}
.x11_c00143{left:466.835733pt;}
.x30_c00143{left:468.435733pt;}
.x19_c00143{left:478.035733pt;}
.x17_c00143{left:496.302400pt;}
.x31_c00143{left:505.902400pt;}
.x26_c00143{left:532.169067pt;}
.x27_c00143{left:545.235733pt;}
.xa_c00143{left:554.235733pt;}
.xe_c00143{left:555.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e839b1f9f63ef07fb292819.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00144;src:url('chunks/assets/font_8e6107276fd4cd56c6bdb1da.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00144;src:url('chunks/assets/font_1cdbebb47226632718430d9e.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00144{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00144{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m19_c00144{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2_c00144{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00144{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m14_c00144{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m11_c00144{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c00144{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00144{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3_c00144{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c00144{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5_c00144{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00144{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m13_c00144{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00144{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c00144{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m10_c00144{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c00144{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00144{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m20_c00144{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00144{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m17_c00144{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m15_c00144{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00144{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00144{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00144{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m18_c00144{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00144{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00144{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c00144{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m12_c00144{transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);}
.m1_c00144{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.ls0_c00144{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00144{color:transparent;}
.fs2_c00144{font-size:54.000000px;}
.fs0_c00144{font-size:60.000000px;}
.fs3_c00144{font-size:66.000000px;}
.fs4_c00144{font-size:78.000000px;}
.fs1_c00144{font-size:84.000000px;}
.y0_c00144{bottom:0.000000px;}
.y45_c00144{bottom:82.935000px;}
.y41_c00144{bottom:99.510000px;}
.y42_c00144{bottom:101.010000px;}
.y43_c00144{bottom:103.500000px;}
.y44_c00144{bottom:105.585000px;}
.y40_c00144{bottom:118.560000px;}
.y3f_c00144{bottom:135.135000px;}
.y3e_c00144{bottom:150.285000px;}
.y3d_c00144{bottom:167.535000px;}
.y3a_c00144{bottom:183.375000px;}
.y3b_c00144{bottom:184.500000px;}
.y3c_c00144{bottom:186.585000px;}
.y39_c00144{bottom:200.685000px;}
.y38_c00144{bottom:217.260000px;}
.y37_c00144{bottom:234.135000px;}
.y34_c00144{bottom:251.085000px;}
.y36_c00144{bottom:255.000000px;}
.y35_c00144{bottom:255.060000px;}
.y33_c00144{bottom:268.335000px;}
.y32_c00144{bottom:285.585000px;}
.y30_c00144{bottom:302.160000px;}
.y31_c00144{bottom:302.625000px;}
.y2f_c00144{bottom:319.500000px;}
.y2c_c00144{bottom:336.435000px;}
.y2d_c00144{bottom:336.810000px;}
.y2e_c00144{bottom:337.500000px;}
.y2b_c00144{bottom:403.035000px;}
.y2a_c00144{bottom:424.935000px;}
.y29_c00144{bottom:446.535000px;}
.y28_c00144{bottom:468.510000px;}
.y27_c00144{bottom:490.125000px;}
.y26_c00144{bottom:512.085000px;}
.y24_c00144{bottom:533.310000px;}
.y25_c00144{bottom:533.685000px;}
.y23_c00144{bottom:534.060000px;}
.y22_c00144{bottom:555.660000px;}
.y21_c00144{bottom:576.885000px;}
.y1f_c00144{bottom:577.185000px;}
.y20_c00144{bottom:577.260000px;}
.y1e_c00144{bottom:599.250000px;}
.y1d_c00144{bottom:620.085000px;}
.y1c_c00144{bottom:620.460000px;}
.y1b_c00144{bottom:642.060000px;}
.y1a_c00144{bottom:663.660000px;}
.y19_c00144{bottom:685.560000px;}
.y18_c00144{bottom:686.310000px;}
.y17_c00144{bottom:707.535000px;}
.y16_c00144{bottom:729.135000px;}
.y15_c00144{bottom:751.125000px;}
.y14_c00144{bottom:773.085000px;}
.y13_c00144{bottom:795.060000px;}
.y12_c00144{bottom:817.050000px;}
.y11_c00144{bottom:837.900000px;}
.y10_c00144{bottom:839.310000px;}
.yf_c00144{bottom:860.550000px;}
.ye_c00144{bottom:882.150000px;}
.yd_c00144{bottom:903.750000px;}
.yc_c00144{bottom:925.050000px;}
.yb_c00144{bottom:946.275000px;}
.ya_c00144{bottom:947.310000px;}
.y9_c00144{bottom:968.550000px;}
.y8_c00144{bottom:987.675000px;}
.y7_c00144{bottom:987.960000px;}
.y6_c00144{bottom:989.835000px;}
.y5_c00144{bottom:1011.435000px;}
.y4_c00144{bottom:1033.335000px;}
.y3_c00144{bottom:1088.835000px;}
.y2_c00144{bottom:1093.125000px;}
.y1_c00144{bottom:1093.875000px;}
.h3_c00144{height:52.998047px;}
.h6_c00144{height:58.857422px;}
.h1_c00144{height:60.468750px;}
.h4_c00144{height:64.775391px;}
.h5_c00144{height:76.514648px;}
.h2_c00144{height:82.441406px;}
.h0_c00144{height:1174.500000px;}
.w0_c00144{width:731.977200px;}
.w1_c00144{width:732.000000px;}
.x0_c00144{left:0.000000px;}
.xd_c00144{left:56.890200px;}
.xc_c00144{left:57.940200px;}
.x9_c00144{left:58.990200px;}
.x4_c00144{left:60.490200px;}
.x1b_c00144{left:61.540200px;}
.x1f_c00144{left:62.965200px;}
.x21_c00144{left:64.390200px;}
.x25_c00144{left:65.515200px;}
.x17_c00144{left:78.115200px;}
.x22_c00144{left:81.715200px;}
.x1c_c00144{left:87.490200px;}
.xe_c00144{left:89.590200px;}
.xa_c00144{left:91.390200px;}
.x7_c00144{left:93.175200px;}
.x18_c00144{left:115.540200px;}
.x23_c00144{left:119.890200px;}
.x19_c00144{left:138.565200px;}
.x8_c00144{left:186.490200px;}
.xf_c00144{left:196.915200px;}
.xb_c00144{left:259.165200px;}
.x15_c00144{left:263.515200px;}
.x1a_c00144{left:264.565200px;}
.x12_c00144{left:275.365200px;}
.x1_c00144{left:276.790200px;}
.x13_c00144{left:315.715200px;}
.x14_c00144{left:327.565200px;}
.x20_c00144{left:371.890200px;}
.x16_c00144{left:399.940200px;}
.x10_c00144{left:449.965200px;}
.x2_c00144{left:474.490200px;}
.x11_c00144{left:502.915200px;}
.x24_c00144{left:521.965200px;}
.x5_c00144{left:555.790200px;}
.x6_c00144{left:557.590200px;}
.x3_c00144{left:639.340200px;}
.x1d_c00144{left:641.515200px;}
.x1e_c00144{left:649.390200px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls0_c00144{letter-spacing:0.000000pt;}
.ws0_c00144{word-spacing:0.000000pt;}
.fs2_c00144{font-size:48.000000pt;}
.fs0_c00144{font-size:53.333333pt;}
.fs3_c00144{font-size:58.666667pt;}
.fs4_c00144{font-size:69.333333pt;}
.fs1_c00144{font-size:74.666667pt;}
.y0_c00144{bottom:0.000000pt;}
.y45_c00144{bottom:73.720000pt;}
.y41_c00144{bottom:88.453333pt;}
.y42_c00144{bottom:89.786667pt;}
.y43_c00144{bottom:92.000000pt;}
.y44_c00144{bottom:93.853333pt;}
.y40_c00144{bottom:105.386667pt;}
.y3f_c00144{bottom:120.120000pt;}
.y3e_c00144{bottom:133.586667pt;}
.y3d_c00144{bottom:148.920000pt;}
.y3a_c00144{bottom:163.000000pt;}
.y3b_c00144{bottom:164.000000pt;}
.y3c_c00144{bottom:165.853333pt;}
.y39_c00144{bottom:178.386667pt;}
.y38_c00144{bottom:193.120000pt;}
.y37_c00144{bottom:208.120000pt;}
.y34_c00144{bottom:223.186667pt;}
.y36_c00144{bottom:226.666667pt;}
.y35_c00144{bottom:226.720000pt;}
.y33_c00144{bottom:238.520000pt;}
.y32_c00144{bottom:253.853333pt;}
.y30_c00144{bottom:268.586667pt;}
.y31_c00144{bottom:269.000000pt;}
.y2f_c00144{bottom:284.000000pt;}
.y2c_c00144{bottom:299.053333pt;}
.y2d_c00144{bottom:299.386667pt;}
.y2e_c00144{bottom:300.000000pt;}
.y2b_c00144{bottom:358.253333pt;}
.y2a_c00144{bottom:377.720000pt;}
.y29_c00144{bottom:396.920000pt;}
.y28_c00144{bottom:416.453333pt;}
.y27_c00144{bottom:435.666667pt;}
.y26_c00144{bottom:455.186667pt;}
.y24_c00144{bottom:474.053333pt;}
.y25_c00144{bottom:474.386667pt;}
.y23_c00144{bottom:474.720000pt;}
.y22_c00144{bottom:493.920000pt;}
.y21_c00144{bottom:512.786667pt;}
.y1f_c00144{bottom:513.053333pt;}
.y20_c00144{bottom:513.120000pt;}
.y1e_c00144{bottom:532.666667pt;}
.y1d_c00144{bottom:551.186667pt;}
.y1c_c00144{bottom:551.520000pt;}
.y1b_c00144{bottom:570.720000pt;}
.y1a_c00144{bottom:589.920000pt;}
.y19_c00144{bottom:609.386667pt;}
.y18_c00144{bottom:610.053333pt;}
.y17_c00144{bottom:628.920000pt;}
.y16_c00144{bottom:648.120000pt;}
.y15_c00144{bottom:667.666667pt;}
.y14_c00144{bottom:687.186667pt;}
.y13_c00144{bottom:706.720000pt;}
.y12_c00144{bottom:726.266667pt;}
.y11_c00144{bottom:744.800000pt;}
.y10_c00144{bottom:746.053333pt;}
.yf_c00144{bottom:764.933333pt;}
.ye_c00144{bottom:784.133333pt;}
.yd_c00144{bottom:803.333333pt;}
.yc_c00144{bottom:822.266667pt;}
.yb_c00144{bottom:841.133333pt;}
.ya_c00144{bottom:842.053333pt;}
.y9_c00144{bottom:860.933333pt;}
.y8_c00144{bottom:877.933333pt;}
.y7_c00144{bottom:878.186667pt;}
.y6_c00144{bottom:879.853333pt;}
.y5_c00144{bottom:899.053333pt;}
.y4_c00144{bottom:918.520000pt;}
.y3_c00144{bottom:967.853333pt;}
.y2_c00144{bottom:971.666667pt;}
.y1_c00144{bottom:972.333333pt;}
.h3_c00144{height:47.109375pt;}
.h6_c00144{height:52.317708pt;}
.h1_c00144{height:53.750000pt;}
.h4_c00144{height:57.578125pt;}
.h5_c00144{height:68.013021pt;}
.h2_c00144{height:73.281250pt;}
.h0_c00144{height:1044.000000pt;}
.w0_c00144{width:650.646400pt;}
.w1_c00144{width:650.666667pt;}
.x0_c00144{left:0.000000pt;}
.xd_c00144{left:50.569067pt;}
.xc_c00144{left:51.502400pt;}
.x9_c00144{left:52.435733pt;}
.x4_c00144{left:53.769067pt;}
.x1b_c00144{left:54.702400pt;}
.x1f_c00144{left:55.969067pt;}
.x21_c00144{left:57.235733pt;}
.x25_c00144{left:58.235733pt;}
.x17_c00144{left:69.435733pt;}
.x22_c00144{left:72.635733pt;}
.x1c_c00144{left:77.769067pt;}
.xe_c00144{left:79.635733pt;}
.xa_c00144{left:81.235733pt;}
.x7_c00144{left:82.822400pt;}
.x18_c00144{left:102.702400pt;}
.x23_c00144{left:106.569067pt;}
.x19_c00144{left:123.169067pt;}
.x8_c00144{left:165.769067pt;}
.xf_c00144{left:175.035733pt;}
.xb_c00144{left:230.369067pt;}
.x15_c00144{left:234.235733pt;}
.x1a_c00144{left:235.169067pt;}
.x12_c00144{left:244.769067pt;}
.x1_c00144{left:246.035733pt;}
.x13_c00144{left:280.635733pt;}
.x14_c00144{left:291.169067pt;}
.x20_c00144{left:330.569067pt;}
.x16_c00144{left:355.502400pt;}
.x10_c00144{left:399.969067pt;}
.x2_c00144{left:421.769067pt;}
.x11_c00144{left:447.035733pt;}
.x24_c00144{left:463.969067pt;}
.x5_c00144{left:494.035733pt;}
.x6_c00144{left:495.635733pt;}
.x3_c00144{left:568.302400pt;}
.x1d_c00144{left:570.235733pt;}
.x1e_c00144{left:577.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cfc3a0e4fa59c0e90f63ace1.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00145;src:url('chunks/assets/font_51dd80663b6aa89fa94f56fa.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00145;src:url('chunks/assets/font_be51fa42c5169d374c5f13ac.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00145;src:url('chunks/assets/font_035411f850e93f8c157c6bfe.woff2')format("woff");}.ff4_c00145{font-family:ff4_c00145;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00145;src:url('chunks/assets/font_c0626913183b3e0d6b0f0d25.woff2')format("woff");}.ff5_c00145{font-family:ff5_c00145;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1e_c00145{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m18_c00145{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00145{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m19_c00145{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m0_c00145{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00145{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m15_c00145{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m17_c00145{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c00145{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00145{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c00145{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00145{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m14_c00145{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m16_c00145{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2_c00145{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c00145{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00145{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00145{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00145{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00145{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c00145{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00145{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13_c00145{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00145{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00145{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.ma_c00145{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m12_c00145{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c00145{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c00145{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00145{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mf_c00145{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1_c00145{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.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;}
}
.ws0_c00145{word-spacing:0.000000px;}
.fc0_c00145{color:transparent;}
.fs1_c00145{font-size:54.000000px;}
.fs2_c00145{font-size:66.000000px;}
.fs0_c00145{font-size:72.000000px;}
.y0_c00145{bottom:0.000000px;}
.y3e_c00145{bottom:85.875000px;}
.y3d_c00145{bottom:92.685000px;}
.y3c_c00145{bottom:95.910000px;}
.y3b_c00145{bottom:96.285000px;}
.y3a_c00145{bottom:97.410000px;}
.y39_c00145{bottom:98.460000px;}
.y38_c00145{bottom:153.210000px;}
.y37_c00145{bottom:170.835000px;}
.y36_c00145{bottom:174.435000px;}
.y35_c00145{bottom:184.125000px;}
.y34_c00145{bottom:184.875000px;}
.y33_c00145{bottom:196.410000px;}
.y32_c00145{bottom:217.635000px;}
.y31_c00145{bottom:239.910000px;}
.y30_c00145{bottom:261.525000px;}
.y2f_c00145{bottom:281.685000px;}
.y2e_c00145{bottom:289.275000px;}
.y2d_c00145{bottom:289.650000px;}
.y2c_c00145{bottom:308.685000px;}
.y2b_c00145{bottom:325.650000px;}
.y2a_c00145{bottom:347.160000px;}
.y29_c00145{bottom:368.835000px;}
.y28_c00145{bottom:390.435000px;}
.y27_c00145{bottom:409.875000px;}
.y26_c00145{bottom:412.335000px;}
.y25_c00145{bottom:416.685000px;}
.y24_c00145{bottom:431.460000px;}
.y23_c00145{bottom:434.685000px;}
.y22_c00145{bottom:456.000000px;}
.y21_c00145{bottom:477.210000px;}
.y20_c00145{bottom:499.125000px;}
.y1f_c00145{bottom:520.785000px;}
.y1e_c00145{bottom:542.310000px;}
.y1d_c00145{bottom:563.910000px;}
.y1c_c00145{bottom:585.510000px;}
.y1b_c00145{bottom:607.125000px;}
.y1a_c00145{bottom:629.085000px;}
.y19_c00145{bottom:651.060000px;}
.y17_c00145{bottom:672.000000px;}
.y18_c00145{bottom:672.285000px;}
.y14_c00145{bottom:775.260000px;}
.y15_c00145{bottom:777.375000px;}
.y16_c00145{bottom:778.125000px;}
.y13_c00145{bottom:801.150000px;}
.y12_c00145{bottom:822.435000px;}
.y11_c00145{bottom:843.300000px;}
.y10_c00145{bottom:864.900000px;}
.yf_c00145{bottom:886.500000px;}
.ye_c00145{bottom:907.050000px;}
.yd_c00145{bottom:928.650000px;}
.yc_c00145{bottom:949.500000px;}
.ya_c00145{bottom:961.050000px;}
.yb_c00145{bottom:972.150000px;}
.y9_c00145{bottom:991.650000px;}
.y6_c00145{bottom:1002.435000px;}
.y7_c00145{bottom:1005.585000px;}
.y8_c00145{bottom:1015.050000px;}
.y4_c00145{bottom:1022.925000px;}
.y5_c00145{bottom:1034.835000px;}
.y1_c00145{bottom:1080.210000px;}
.y3_c00145{bottom:1090.275000px;}
.y2_c00145{bottom:1096.050000px;}
.h2_c00145{height:52.998047px;}
.h4_c00145{height:64.743164px;}
.h3_c00145{height:64.775391px;}
.h5_c00145{height:68.835938px;}
.h1_c00145{height:72.562500px;}
.h0_c00145{height:1174.500000px;}
.w0_c00145{width:731.977200px;}
.w1_c00145{width:732.000000px;}
.x0_c00145{left:0.000000px;}
.xe_c00145{left:63.340200px;}
.xd_c00145{left:64.390200px;}
.x8_c00145{left:66.565200px;}
.x4_c00145{left:67.990200px;}
.x16_c00145{left:80.965200px;}
.x1_c00145{left:88.165200px;}
.xb_c00145{left:94.315200px;}
.x11_c00145{left:95.365200px;}
.x14_c00145{left:98.590200px;}
.x2_c00145{left:114.115200px;}
.x17_c00145{left:117.715200px;}
.x12_c00145{left:125.290200px;}
.x13_c00145{left:133.165200px;}
.x5_c00145{left:140.740200px;}
.x18_c00145{left:147.190200px;}
.x19_c00145{left:156.940200px;}
.x6_c00145{left:157.990200px;}
.x1a_c00145{left:164.515200px;}
.x7_c00145{left:182.500200px;}
.x9_c00145{left:255.565200px;}
.x1b_c00145{left:268.915200px;}
.xa_c00145{left:274.315200px;}
.x3_c00145{left:286.165200px;}
.xf_c00145{left:543.940200px;}
.x10_c00145{left:610.540200px;}
.xc_c00145{left:642.940200px;}
.x15_c00145{left:660.940200px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls0_c00145{letter-spacing:0.000000pt;}
.ws0_c00145{word-spacing:0.000000pt;}
.fs1_c00145{font-size:48.000000pt;}
.fs2_c00145{font-size:58.666667pt;}
.fs0_c00145{font-size:64.000000pt;}
.y0_c00145{bottom:0.000000pt;}
.y3e_c00145{bottom:76.333333pt;}
.y3d_c00145{bottom:82.386667pt;}
.y3c_c00145{bottom:85.253333pt;}
.y3b_c00145{bottom:85.586667pt;}
.y3a_c00145{bottom:86.586667pt;}
.y39_c00145{bottom:87.520000pt;}
.y38_c00145{bottom:136.186667pt;}
.y37_c00145{bottom:151.853333pt;}
.y36_c00145{bottom:155.053333pt;}
.y35_c00145{bottom:163.666667pt;}
.y34_c00145{bottom:164.333333pt;}
.y33_c00145{bottom:174.586667pt;}
.y32_c00145{bottom:193.453333pt;}
.y31_c00145{bottom:213.253333pt;}
.y30_c00145{bottom:232.466667pt;}
.y2f_c00145{bottom:250.386667pt;}
.y2e_c00145{bottom:257.133333pt;}
.y2d_c00145{bottom:257.466667pt;}
.y2c_c00145{bottom:274.386667pt;}
.y2b_c00145{bottom:289.466667pt;}
.y2a_c00145{bottom:308.586667pt;}
.y29_c00145{bottom:327.853333pt;}
.y28_c00145{bottom:347.053333pt;}
.y27_c00145{bottom:364.333333pt;}
.y26_c00145{bottom:366.520000pt;}
.y25_c00145{bottom:370.386667pt;}
.y24_c00145{bottom:383.520000pt;}
.y23_c00145{bottom:386.386667pt;}
.y22_c00145{bottom:405.333333pt;}
.y21_c00145{bottom:424.186667pt;}
.y20_c00145{bottom:443.666667pt;}
.y1f_c00145{bottom:462.920000pt;}
.y1e_c00145{bottom:482.053333pt;}
.y1d_c00145{bottom:501.253333pt;}
.y1c_c00145{bottom:520.453333pt;}
.y1b_c00145{bottom:539.666667pt;}
.y1a_c00145{bottom:559.186667pt;}
.y19_c00145{bottom:578.720000pt;}
.y17_c00145{bottom:597.333333pt;}
.y18_c00145{bottom:597.586667pt;}
.y14_c00145{bottom:689.120000pt;}
.y15_c00145{bottom:691.000000pt;}
.y16_c00145{bottom:691.666667pt;}
.y13_c00145{bottom:712.133333pt;}
.y12_c00145{bottom:731.053333pt;}
.y11_c00145{bottom:749.600000pt;}
.y10_c00145{bottom:768.800000pt;}
.yf_c00145{bottom:788.000000pt;}
.ye_c00145{bottom:806.266667pt;}
.yd_c00145{bottom:825.466667pt;}
.yc_c00145{bottom:844.000000pt;}
.ya_c00145{bottom:854.266667pt;}
.yb_c00145{bottom:864.133333pt;}
.y9_c00145{bottom:881.466667pt;}
.y6_c00145{bottom:891.053333pt;}
.y7_c00145{bottom:893.853333pt;}
.y8_c00145{bottom:902.266667pt;}
.y4_c00145{bottom:909.266667pt;}
.y5_c00145{bottom:919.853333pt;}
.y1_c00145{bottom:960.186667pt;}
.y3_c00145{bottom:969.133333pt;}
.y2_c00145{bottom:974.266667pt;}
.h2_c00145{height:47.109375pt;}
.h4_c00145{height:57.549479pt;}
.h3_c00145{height:57.578125pt;}
.h5_c00145{height:61.187500pt;}
.h1_c00145{height:64.500000pt;}
.h0_c00145{height:1044.000000pt;}
.w0_c00145{width:650.646400pt;}
.w1_c00145{width:650.666667pt;}
.x0_c00145{left:0.000000pt;}
.xe_c00145{left:56.302400pt;}
.xd_c00145{left:57.235733pt;}
.x8_c00145{left:59.169067pt;}
.x4_c00145{left:60.435733pt;}
.x16_c00145{left:71.969067pt;}
.x1_c00145{left:78.369067pt;}
.xb_c00145{left:83.835733pt;}
.x11_c00145{left:84.769067pt;}
.x14_c00145{left:87.635733pt;}
.x2_c00145{left:101.435733pt;}
.x17_c00145{left:104.635733pt;}
.x12_c00145{left:111.369067pt;}
.x13_c00145{left:118.369067pt;}
.x5_c00145{left:125.102400pt;}
.x18_c00145{left:130.835733pt;}
.x19_c00145{left:139.502400pt;}
.x6_c00145{left:140.435733pt;}
.x1a_c00145{left:146.235733pt;}
.x7_c00145{left:162.222400pt;}
.x9_c00145{left:227.169067pt;}
.x1b_c00145{left:239.035733pt;}
.xa_c00145{left:243.835733pt;}
.x3_c00145{left:254.369067pt;}
.xf_c00145{left:483.502400pt;}
.x10_c00145{left:542.702400pt;}
.xc_c00145{left:571.502400pt;}
.x15_c00145{left:587.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9ab05efee5f7e90524a3a192.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00146;src:url('chunks/assets/font_d8b422ef49dd55477151588a.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00146;src:url('chunks/assets/font_b08a0fc4a172370668e3cd7f.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00146;src:url('chunks/assets/font_380e30bd0d2ba00dd5ec9239.woff2')format("woff");}.ff4_c00146{font-family:ff4_c00146;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00146{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m4_c00146{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m21_c00146{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3_c00146{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m12_c00146{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c00146{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00146{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6_c00146{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c00146{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m13_c00146{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c00146{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00146{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8_c00146{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00146{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c00146{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00146{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00146{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c00146{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c00146{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m11_c00146{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00146{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00146{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00146{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c00146{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m16_c00146{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00146{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00146{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00146{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c00146{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00146{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m20_c00146{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m19_c00146{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m18_c00146{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00146{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,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:0.000000px;}
.fc0_c00146{color:transparent;}
.fs5_c00146{font-size:54.000000px;}
.fs4_c00146{font-size:60.000000px;}
.fs1_c00146{font-size:66.000000px;}
.fs2_c00146{font-size:72.000000px;}
.fs0_c00146{font-size:78.000000px;}
.fs3_c00146{font-size:84.000000px;}
.y0_c00146{bottom:0.000000px;}
.y48_c00146{bottom:86.535000px;}
.y49_c00146{bottom:88.335000px;}
.y4a_c00146{bottom:89.385000px;}
.y4b_c00146{bottom:92.010000px;}
.y47_c00146{bottom:108.885000px;}
.y46_c00146{bottom:129.435000px;}
.y45_c00146{bottom:150.285000px;}
.y44_c00146{bottom:170.835000px;}
.y42_c00146{bottom:190.635000px;}
.y43_c00146{bottom:194.625000px;}
.y3f_c00146{bottom:211.500000px;}
.y40_c00146{bottom:214.710000px;}
.y41_c00146{bottom:216.885000px;}
.y3c_c00146{bottom:232.335000px;}
.y3b_c00146{bottom:232.710000px;}
.y3d_c00146{bottom:233.460000px;}
.y3e_c00146{bottom:236.310000px;}
.y3a_c00146{bottom:254.025000px;}
.y39_c00146{bottom:275.625000px;}
.y38_c00146{bottom:297.210000px;}
.y37_c00146{bottom:319.125000px;}
.y36_c00146{bottom:340.335000px;}
.y35_c00146{bottom:361.935000px;}
.y34_c00146{bottom:383.250000px;}
.y33_c00146{bottom:404.400000px;}
.y32_c00146{bottom:425.685000px;}
.y31_c00146{bottom:447.660000px;}
.y30_c00146{bottom:469.260000px;}
.y2f_c00146{bottom:469.635000px;}
.y2d_c00146{bottom:490.875000px;}
.y2e_c00146{bottom:491.910000px;}
.y2c_c00146{bottom:512.835000px;}
.y2b_c00146{bottom:534.750000px;}
.y2a_c00146{bottom:556.035000px;}
.y29_c00146{bottom:577.560000px;}
.y28_c00146{bottom:577.935000px;}
.y27_c00146{bottom:578.010000px;}
.y26_c00146{bottom:578.310000px;}
.y25_c00146{bottom:599.535000px;}
.y23_c00146{bottom:620.835000px;}
.y24_c00146{bottom:621.135000px;}
.y22_c00146{bottom:621.510000px;}
.y21_c00146{bottom:642.810000px;}
.y20_c00146{bottom:664.710000px;}
.y1f_c00146{bottom:686.385000px;}
.y1e_c00146{bottom:708.285000px;}
.y1d_c00146{bottom:729.510000px;}
.y1c_c00146{bottom:729.885000px;}
.y1b_c00146{bottom:731.325000px;}
.y1a_c00146{bottom:752.250000px;}
.y19_c00146{bottom:773.085000px;}
.y18_c00146{bottom:774.885000px;}
.y17_c00146{bottom:775.560000px;}
.y16_c00146{bottom:794.310000px;}
.y15_c00146{bottom:796.125000px;}
.y14_c00146{bottom:817.710000px;}
.y13_c00146{bottom:839.685000px;}
.y12_c00146{bottom:861.300000px;}
.y11_c00146{bottom:883.935000px;}
.y10_c00146{bottom:904.500000px;}
.yf_c00146{bottom:926.400000px;}
.ye_c00146{bottom:947.685000px;}
.yd_c00146{bottom:968.925000px;}
.yc_c00146{bottom:990.525000px;}
.yb_c00146{bottom:993.060000px;}
.ya_c00146{bottom:993.750000px;}
.y9_c00146{bottom:1010.685000px;}
.y8_c00146{bottom:1011.810000px;}
.y7_c00146{bottom:1012.875000px;}
.y6_c00146{bottom:1014.675000px;}
.y5_c00146{bottom:1034.460000px;}
.y4_c00146{bottom:1090.650000px;}
.y3_c00146{bottom:1094.925000px;}
.y1_c00146{bottom:1095.300000px;}
.y2_c00146{bottom:1095.675000px;}
.h7_c00146{height:52.998047px;}
.h6_c00146{height:58.886719px;}
.h5_c00146{height:64.775391px;}
.h2_c00146{height:66.515625px;}
.h3_c00146{height:70.664062px;}
.h1_c00146{height:78.609375px;}
.h4_c00146{height:82.400391px;}
.h0_c00146{height:1174.500000px;}
.w0_c00146{width:731.977200px;}
.w1_c00146{width:732.000000px;}
.x0_c00146{left:0.000000px;}
.x1a_c00146{left:75.175200px;}
.x13_c00146{left:76.300200px;}
.x10_c00146{left:77.365200px;}
.x6_c00146{left:78.490200px;}
.x25_c00146{left:79.915200px;}
.x16_c00146{left:102.940200px;}
.x1c_c00146{left:103.990200px;}
.x1d_c00146{left:108.715200px;}
.xc_c00146{left:111.190200px;}
.xa_c00146{left:132.790200px;}
.xe_c00146{left:145.390200px;}
.xb_c00146{left:156.565200px;}
.x1e_c00146{left:186.790200px;}
.x1f_c00146{left:206.590200px;}
.x20_c00146{left:215.290200px;}
.x17_c00146{left:260.290200px;}
.xf_c00146{left:272.890200px;}
.x1_c00146{left:294.115200px;}
.x7_c00146{left:304.915200px;}
.x2_c00146{left:321.490200px;}
.x3_c00146{left:358.540200px;}
.x4_c00146{left:360.715200px;}
.x14_c00146{left:367.525200px;}
.x11_c00146{left:370.390200px;}
.x18_c00146{left:382.690200px;}
.x21_c00146{left:384.775200px;}
.x8_c00146{left:413.590200px;}
.x24_c00146{left:480.565200px;}
.x26_c00146{left:506.515200px;}
.x12_c00146{left:531.340200px;}
.x19_c00146{left:538.540200px;}
.x22_c00146{left:543.565200px;}
.x15_c00146{left:556.915200px;}
.x1b_c00146{left:565.165200px;}
.x27_c00146{left:583.915200px;}
.x23_c00146{left:621.715200px;}
.xd_c00146{left:631.090200px;}
.x9_c00146{left:637.165200px;}
.x5_c00146{left:654.115200px;}
.x28_c00146{left:661.690200px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls0_c00146{letter-spacing:0.000000pt;}
.ws0_c00146{word-spacing:0.000000pt;}
.fs5_c00146{font-size:48.000000pt;}
.fs4_c00146{font-size:53.333333pt;}
.fs1_c00146{font-size:58.666667pt;}
.fs2_c00146{font-size:64.000000pt;}
.fs0_c00146{font-size:69.333333pt;}
.fs3_c00146{font-size:74.666667pt;}
.y0_c00146{bottom:0.000000pt;}
.y48_c00146{bottom:76.920000pt;}
.y49_c00146{bottom:78.520000pt;}
.y4a_c00146{bottom:79.453333pt;}
.y4b_c00146{bottom:81.786667pt;}
.y47_c00146{bottom:96.786667pt;}
.y46_c00146{bottom:115.053333pt;}
.y45_c00146{bottom:133.586667pt;}
.y44_c00146{bottom:151.853333pt;}
.y42_c00146{bottom:169.453333pt;}
.y43_c00146{bottom:173.000000pt;}
.y3f_c00146{bottom:188.000000pt;}
.y40_c00146{bottom:190.853333pt;}
.y41_c00146{bottom:192.786667pt;}
.y3c_c00146{bottom:206.520000pt;}
.y3b_c00146{bottom:206.853333pt;}
.y3d_c00146{bottom:207.520000pt;}
.y3e_c00146{bottom:210.053333pt;}
.y3a_c00146{bottom:225.800000pt;}
.y39_c00146{bottom:245.000000pt;}
.y38_c00146{bottom:264.186667pt;}
.y37_c00146{bottom:283.666667pt;}
.y36_c00146{bottom:302.520000pt;}
.y35_c00146{bottom:321.720000pt;}
.y34_c00146{bottom:340.666667pt;}
.y33_c00146{bottom:359.466667pt;}
.y32_c00146{bottom:378.386667pt;}
.y31_c00146{bottom:397.920000pt;}
.y30_c00146{bottom:417.120000pt;}
.y2f_c00146{bottom:417.453333pt;}
.y2d_c00146{bottom:436.333333pt;}
.y2e_c00146{bottom:437.253333pt;}
.y2c_c00146{bottom:455.853333pt;}
.y2b_c00146{bottom:475.333333pt;}
.y2a_c00146{bottom:494.253333pt;}
.y29_c00146{bottom:513.386667pt;}
.y28_c00146{bottom:513.720000pt;}
.y27_c00146{bottom:513.786667pt;}
.y26_c00146{bottom:514.053333pt;}
.y25_c00146{bottom:532.920000pt;}
.y23_c00146{bottom:551.853333pt;}
.y24_c00146{bottom:552.120000pt;}
.y22_c00146{bottom:552.453333pt;}
.y21_c00146{bottom:571.386667pt;}
.y20_c00146{bottom:590.853333pt;}
.y1f_c00146{bottom:610.120000pt;}
.y1e_c00146{bottom:629.586667pt;}
.y1d_c00146{bottom:648.453333pt;}
.y1c_c00146{bottom:648.786667pt;}
.y1b_c00146{bottom:650.066667pt;}
.y1a_c00146{bottom:668.666667pt;}
.y19_c00146{bottom:687.186667pt;}
.y18_c00146{bottom:688.786667pt;}
.y17_c00146{bottom:689.386667pt;}
.y16_c00146{bottom:706.053333pt;}
.y15_c00146{bottom:707.666667pt;}
.y14_c00146{bottom:726.853333pt;}
.y13_c00146{bottom:746.386667pt;}
.y12_c00146{bottom:765.600000pt;}
.y11_c00146{bottom:785.720000pt;}
.y10_c00146{bottom:804.000000pt;}
.yf_c00146{bottom:823.466667pt;}
.ye_c00146{bottom:842.386667pt;}
.yd_c00146{bottom:861.266667pt;}
.yc_c00146{bottom:880.466667pt;}
.yb_c00146{bottom:882.720000pt;}
.ya_c00146{bottom:883.333333pt;}
.y9_c00146{bottom:898.386667pt;}
.y8_c00146{bottom:899.386667pt;}
.y7_c00146{bottom:900.333333pt;}
.y6_c00146{bottom:901.933333pt;}
.y5_c00146{bottom:919.520000pt;}
.y4_c00146{bottom:969.466667pt;}
.y3_c00146{bottom:973.266667pt;}
.y1_c00146{bottom:973.600000pt;}
.y2_c00146{bottom:973.933333pt;}
.h7_c00146{height:47.109375pt;}
.h6_c00146{height:52.343750pt;}
.h5_c00146{height:57.578125pt;}
.h2_c00146{height:59.125000pt;}
.h3_c00146{height:62.812500pt;}
.h1_c00146{height:69.875000pt;}
.h4_c00146{height:73.244792pt;}
.h0_c00146{height:1044.000000pt;}
.w0_c00146{width:650.646400pt;}
.w1_c00146{width:650.666667pt;}
.x0_c00146{left:0.000000pt;}
.x1a_c00146{left:66.822400pt;}
.x13_c00146{left:67.822400pt;}
.x10_c00146{left:68.769067pt;}
.x6_c00146{left:69.769067pt;}
.x25_c00146{left:71.035733pt;}
.x16_c00146{left:91.502400pt;}
.x1c_c00146{left:92.435733pt;}
.x1d_c00146{left:96.635733pt;}
.xc_c00146{left:98.835733pt;}
.xa_c00146{left:118.035733pt;}
.xe_c00146{left:129.235733pt;}
.xb_c00146{left:139.169067pt;}
.x1e_c00146{left:166.035733pt;}
.x1f_c00146{left:183.635733pt;}
.x20_c00146{left:191.369067pt;}
.x17_c00146{left:231.369067pt;}
.xf_c00146{left:242.569067pt;}
.x1_c00146{left:261.435733pt;}
.x7_c00146{left:271.035733pt;}
.x2_c00146{left:285.769067pt;}
.x3_c00146{left:318.702400pt;}
.x4_c00146{left:320.635733pt;}
.x14_c00146{left:326.689067pt;}
.x11_c00146{left:329.235733pt;}
.x18_c00146{left:340.169067pt;}
.x21_c00146{left:342.022400pt;}
.x8_c00146{left:367.635733pt;}
.x24_c00146{left:427.169067pt;}
.x26_c00146{left:450.235733pt;}
.x12_c00146{left:472.302400pt;}
.x19_c00146{left:478.702400pt;}
.x22_c00146{left:483.169067pt;}
.x15_c00146{left:495.035733pt;}
.x1b_c00146{left:502.369067pt;}
.x27_c00146{left:519.035733pt;}
.x23_c00146{left:552.635733pt;}
.xd_c00146{left:560.969067pt;}
.x9_c00146{left:566.369067pt;}
.x5_c00146{left:581.435733pt;}
.x28_c00146{left:588.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c9cb8905bd0d8a03766b5bf.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00147;src:url('chunks/assets/font_22ee891ab2b4f0b2ebc2ff90.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00147;src:url('chunks/assets/font_102b59d1b1df8e40eeefe9a8.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00147{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7_c00147{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mb_c00147{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4_c00147{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c00147{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00147{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c00147{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00147{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c00147{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00147{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00147{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00147{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11_c00147{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00147{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00147{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c00147{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c00147{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00147{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m12_c00147{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c00147{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00147{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m14_c00147{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00147{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.v1_c00147{vertical-align:18.660000px;}
.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;}
}
.ws0_c00147{word-spacing:0.000000px;}
._0_c00147{margin-left:-11.902973px;}
.fc0_c00147{color:transparent;}
.fs1_c00147{font-size:54.000000px;}
.fs2_c00147{font-size:66.000000px;}
.fs0_c00147{font-size:78.000000px;}
.y0_c00147{bottom:0.000000px;}
.y38_c00147{bottom:93.000000px;}
.y37_c00147{bottom:101.310000px;}
.y36_c00147{bottom:115.785000px;}
.y35_c00147{bottom:124.785000px;}
.y34_c00147{bottom:140.910000px;}
.y33_c00147{bottom:162.585000px;}
.y32_c00147{bottom:183.375000px;}
.y31_c00147{bottom:205.710000px;}
.y30_c00147{bottom:227.310000px;}
.y2f_c00147{bottom:248.910000px;}
.y2e_c00147{bottom:270.525000px;}
.y2d_c00147{bottom:289.275000px;}
.y2c_c00147{bottom:292.875000px;}
.y2b_c00147{bottom:313.035000px;}
.y2a_c00147{bottom:332.460000px;}
.y29_c00147{bottom:335.310000px;}
.y28_c00147{bottom:354.810000px;}
.y27_c00147{bottom:356.910000px;}
.y26_c00147{bottom:376.710000px;}
.y25_c00147{bottom:378.210000px;}
.y24_c00147{bottom:399.810000px;}
.y23_c00147{bottom:420.660000px;}
.y22_c00147{bottom:422.085000px;}
.y21_c00147{bottom:444.810000px;}
.y20_c00147{bottom:464.910000px;}
.y1f_c00147{bottom:486.885000px;}
.y1e_c00147{bottom:508.125000px;}
.y1d_c00147{bottom:508.875000px;}
.y1c_c00147{bottom:530.460000px;}
.y1a_c00147{bottom:552.060000px;}
.y1b_c00147{bottom:552.435000px;}
.y19_c00147{bottom:573.660000px;}
.y18_c00147{bottom:595.560000px;}
.y17_c00147{bottom:616.875000px;}
.y16_c00147{bottom:638.835000px;}
.y15_c00147{bottom:660.435000px;}
.y14_c00147{bottom:682.410000px;}
.y13_c00147{bottom:704.010000px;}
.y12_c00147{bottom:724.875000px;}
.y11_c00147{bottom:746.835000px;}
.yf_c00147{bottom:768.810000px;}
.y10_c00147{bottom:771.300000px;}
.ye_c00147{bottom:783.885000px;}
.yc_c00147{bottom:805.875000px;}
.yd_c00147{bottom:809.085000px;}
.yb_c00147{bottom:832.875000px;}
.ya_c00147{bottom:854.085000px;}
.y9_c00147{bottom:875.685000px;}
.y8_c00147{bottom:969.000000px;}
.y6_c00147{bottom:994.500000px;}
.y7_c00147{bottom:1007.085000px;}
.y5_c00147{bottom:1013.250000px;}
.y4_c00147{bottom:1043.460000px;}
.y1_c00147{bottom:1088.460000px;}
.y3_c00147{bottom:1102.125000px;}
.y2_c00147{bottom:1104.675000px;}
.h2_c00147{height:52.998047px;}
.h4_c00147{height:66.515625px;}
.h1_c00147{height:76.552734px;}
.h3_c00147{height:95.212734px;}
.h0_c00147{height:1174.500000px;}
.w0_c00147{width:731.977200px;}
.w1_c00147{width:732.000000px;}
.x0_c00147{left:0.000000px;}
.xc_c00147{left:50.365200px;}
.x8_c00147{left:51.790200px;}
.x4_c00147{left:53.290200px;}
.x7_c00147{left:54.715200px;}
.x15_c00147{left:56.140200px;}
.x16_c00147{left:57.190200px;}
.x18_c00147{left:58.315200px;}
.x1_c00147{left:71.965200px;}
.xf_c00147{left:73.090200px;}
.xa_c00147{left:80.590200px;}
.x5_c00147{left:82.765200px;}
.x2_c00147{left:98.290200px;}
.x9_c00147{left:215.290200px;}
.x3_c00147{left:268.540200px;}
.x6_c00147{left:271.765200px;}
.x17_c00147{left:391.690200px;}
.x19_c00147{left:479.515200px;}
.xd_c00147{left:514.765200px;}
.x12_c00147{left:587.890200px;}
.x13_c00147{left:597.565200px;}
.xb_c00147{left:599.740200px;}
.x10_c00147{left:613.390200px;}
.xe_c00147{left:623.515200px;}
.x14_c00147{left:627.790200px;}
.x11_c00147{left:637.165200px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.v1_c00147{vertical-align:16.586667pt;}
.ls0_c00147{letter-spacing:0.000000pt;}
.ws0_c00147{word-spacing:0.000000pt;}
._0_c00147{margin-left:-10.580420pt;}
.fs1_c00147{font-size:48.000000pt;}
.fs2_c00147{font-size:58.666667pt;}
.fs0_c00147{font-size:69.333333pt;}
.y0_c00147{bottom:0.000000pt;}
.y38_c00147{bottom:82.666667pt;}
.y37_c00147{bottom:90.053333pt;}
.y36_c00147{bottom:102.920000pt;}
.y35_c00147{bottom:110.920000pt;}
.y34_c00147{bottom:125.253333pt;}
.y33_c00147{bottom:144.520000pt;}
.y32_c00147{bottom:163.000000pt;}
.y31_c00147{bottom:182.853333pt;}
.y30_c00147{bottom:202.053333pt;}
.y2f_c00147{bottom:221.253333pt;}
.y2e_c00147{bottom:240.466667pt;}
.y2d_c00147{bottom:257.133333pt;}
.y2c_c00147{bottom:260.333333pt;}
.y2b_c00147{bottom:278.253333pt;}
.y2a_c00147{bottom:295.520000pt;}
.y29_c00147{bottom:298.053333pt;}
.y28_c00147{bottom:315.386667pt;}
.y27_c00147{bottom:317.253333pt;}
.y26_c00147{bottom:334.853333pt;}
.y25_c00147{bottom:336.186667pt;}
.y24_c00147{bottom:355.386667pt;}
.y23_c00147{bottom:373.920000pt;}
.y22_c00147{bottom:375.186667pt;}
.y21_c00147{bottom:395.386667pt;}
.y20_c00147{bottom:413.253333pt;}
.y1f_c00147{bottom:432.786667pt;}
.y1e_c00147{bottom:451.666667pt;}
.y1d_c00147{bottom:452.333333pt;}
.y1c_c00147{bottom:471.520000pt;}
.y1a_c00147{bottom:490.720000pt;}
.y1b_c00147{bottom:491.053333pt;}
.y19_c00147{bottom:509.920000pt;}
.y18_c00147{bottom:529.386667pt;}
.y17_c00147{bottom:548.333333pt;}
.y16_c00147{bottom:567.853333pt;}
.y15_c00147{bottom:587.053333pt;}
.y14_c00147{bottom:606.586667pt;}
.y13_c00147{bottom:625.786667pt;}
.y12_c00147{bottom:644.333333pt;}
.y11_c00147{bottom:663.853333pt;}
.yf_c00147{bottom:683.386667pt;}
.y10_c00147{bottom:685.600000pt;}
.ye_c00147{bottom:696.786667pt;}
.yc_c00147{bottom:716.333333pt;}
.yd_c00147{bottom:719.186667pt;}
.yb_c00147{bottom:740.333333pt;}
.ya_c00147{bottom:759.186667pt;}
.y9_c00147{bottom:778.386667pt;}
.y8_c00147{bottom:861.333333pt;}
.y6_c00147{bottom:884.000000pt;}
.y7_c00147{bottom:895.186667pt;}
.y5_c00147{bottom:900.666667pt;}
.y4_c00147{bottom:927.520000pt;}
.y1_c00147{bottom:967.520000pt;}
.y3_c00147{bottom:979.666667pt;}
.y2_c00147{bottom:981.933333pt;}
.h2_c00147{height:47.109375pt;}
.h4_c00147{height:59.125000pt;}
.h1_c00147{height:68.046875pt;}
.h3_c00147{height:84.633542pt;}
.h0_c00147{height:1044.000000pt;}
.w0_c00147{width:650.646400pt;}
.w1_c00147{width:650.666667pt;}
.x0_c00147{left:0.000000pt;}
.xc_c00147{left:44.769067pt;}
.x8_c00147{left:46.035733pt;}
.x4_c00147{left:47.369067pt;}
.x7_c00147{left:48.635733pt;}
.x15_c00147{left:49.902400pt;}
.x16_c00147{left:50.835733pt;}
.x18_c00147{left:51.835733pt;}
.x1_c00147{left:63.969067pt;}
.xf_c00147{left:64.969067pt;}
.xa_c00147{left:71.635733pt;}
.x5_c00147{left:73.569067pt;}
.x2_c00147{left:87.369067pt;}
.x9_c00147{left:191.369067pt;}
.x3_c00147{left:238.702400pt;}
.x6_c00147{left:241.569067pt;}
.x17_c00147{left:348.169067pt;}
.x19_c00147{left:426.235733pt;}
.xd_c00147{left:457.569067pt;}
.x12_c00147{left:522.569067pt;}
.x13_c00147{left:531.169067pt;}
.xb_c00147{left:533.102400pt;}
.x10_c00147{left:545.235733pt;}
.xe_c00147{left:554.235733pt;}
.x14_c00147{left:558.035733pt;}
.x11_c00147{left:566.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83124a29e4f10d902b8d2076.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00148;src:url('chunks/assets/font_7da16d13f4860d8329fe72e0.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00148;src:url('chunks/assets/font_b3dbee1d802591a912fbfb56.woff2')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_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);}
.m0_c00148{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m13_c00148{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00148{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10_c00148{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c00148{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c00148{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00148{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00148{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00148{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00148{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00148{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00148{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c00148{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00148{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00148{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c00148{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00148{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00148{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m14_c00148{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00148{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.ls0_c00148{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00148{word-spacing:0.000000px;}
.fc0_c00148{color:transparent;}
.fs0_c00148{font-size:60.000000px;}
.fs3_c00148{font-size:66.000000px;}
.fs1_c00148{font-size:72.000000px;}
.fs2_c00148{font-size:78.000000px;}
.y0_c00148{bottom:0.000000px;}
.y37_c00148{bottom:83.310000px;}
.y36_c00148{bottom:101.685000px;}
.y35_c00148{bottom:147.810000px;}
.y34_c00148{bottom:148.125000px;}
.y33_c00148{bottom:169.335000px;}
.y32_c00148{bottom:189.885000px;}
.y31_c00148{bottom:210.435000px;}
.y30_c00148{bottom:231.660000px;}
.y2e_c00148{bottom:252.885000px;}
.y2f_c00148{bottom:253.935000px;}
.y2d_c00148{bottom:274.500000px;}
.y2c_c00148{bottom:296.085000px;}
.y2b_c00148{bottom:317.310000px;}
.y2a_c00148{bottom:338.910000px;}
.y28_c00148{bottom:359.835000px;}
.y29_c00148{bottom:360.525000px;}
.y27_c00148{bottom:381.060000px;}
.y25_c00148{bottom:402.285000px;}
.y26_c00148{bottom:403.710000px;}
.y24_c00148{bottom:424.260000px;}
.y23_c00148{bottom:424.935000px;}
.y22_c00148{bottom:446.250000px;}
.y21_c00148{bottom:468.135000px;}
.y20_c00148{bottom:489.750000px;}
.y1f_c00148{bottom:511.710000px;}
.y1e_c00148{bottom:533.310000px;}
.y1d_c00148{bottom:554.910000px;}
.y1c_c00148{bottom:576.510000px;}
.y1b_c00148{bottom:598.500000px;}
.y1a_c00148{bottom:619.710000px;}
.y19_c00148{bottom:641.685000px;}
.y18_c00148{bottom:663.285000px;}
.y17_c00148{bottom:685.260000px;}
.y16_c00148{bottom:706.500000px;}
.y15_c00148{bottom:728.760000px;}
.y14_c00148{bottom:750.450000px;}
.y13_c00148{bottom:772.335000px;}
.y12_c00148{bottom:793.650000px;}
.y11_c00148{bottom:815.925000px;}
.y10_c00148{bottom:837.900000px;}
.yf_c00148{bottom:859.500000px;}
.ye_c00148{bottom:881.775000px;}
.yd_c00148{bottom:902.685000px;}
.yc_c00148{bottom:924.000000px;}
.yb_c00148{bottom:945.525000px;}
.ya_c00148{bottom:966.750000px;}
.y9_c00148{bottom:986.550000px;}
.y8_c00148{bottom:986.925000px;}
.y7_c00148{bottom:989.085000px;}
.y6_c00148{bottom:1011.060000px;}
.y5_c00148{bottom:1031.925000px;}
.y4_c00148{bottom:1034.835000px;}
.y3_c00148{bottom:1089.525000px;}
.y1_c00148{bottom:1092.810000px;}
.y2_c00148{bottom:1103.400000px;}
.h1_c00148{height:60.468750px;}
.h5_c00148{height:64.775391px;}
.h3_c00148{height:70.664062px;}
.h2_c00148{height:72.562500px;}
.h4_c00148{height:76.514648px;}
.h0_c00148{height:1174.500000px;}
.w0_c00148{width:731.977200px;}
.w1_c00148{width:732.000000px;}
.x0_c00148{left:0.000000px;}
.xa_c00148{left:57.190200px;}
.x4_c00148{left:58.315200px;}
.xd_c00148{left:59.740200px;}
.x10_c00148{left:60.790200px;}
.x13_c00148{left:62.290200px;}
.x14_c00148{left:63.715200px;}
.x6_c00148{left:80.290200px;}
.x9_c00148{left:90.715200px;}
.xe_c00148{left:92.140200px;}
.x11_c00148{left:93.550200px;}
.x15_c00148{left:112.990200px;}
.x5_c00148{left:136.090200px;}
.xb_c00148{left:150.115200px;}
.xf_c00148{left:263.515200px;}
.x1_c00148{left:296.590200px;}
.xc_c00148{left:307.390200px;}
.x12_c00148{left:335.515200px;}
.x2_c00148{left:467.290200px;}
.x7_c00148{left:570.190200px;}
.x8_c00148{left:601.165200px;}
.x3_c00148{left:633.565200px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls0_c00148{letter-spacing:0.000000pt;}
.ws0_c00148{word-spacing:0.000000pt;}
.fs0_c00148{font-size:53.333333pt;}
.fs3_c00148{font-size:58.666667pt;}
.fs1_c00148{font-size:64.000000pt;}
.fs2_c00148{font-size:69.333333pt;}
.y0_c00148{bottom:0.000000pt;}
.y37_c00148{bottom:74.053333pt;}
.y36_c00148{bottom:90.386667pt;}
.y35_c00148{bottom:131.386667pt;}
.y34_c00148{bottom:131.666667pt;}
.y33_c00148{bottom:150.520000pt;}
.y32_c00148{bottom:168.786667pt;}
.y31_c00148{bottom:187.053333pt;}
.y30_c00148{bottom:205.920000pt;}
.y2e_c00148{bottom:224.786667pt;}
.y2f_c00148{bottom:225.720000pt;}
.y2d_c00148{bottom:244.000000pt;}
.y2c_c00148{bottom:263.186667pt;}
.y2b_c00148{bottom:282.053333pt;}
.y2a_c00148{bottom:301.253333pt;}
.y28_c00148{bottom:319.853333pt;}
.y29_c00148{bottom:320.466667pt;}
.y27_c00148{bottom:338.720000pt;}
.y25_c00148{bottom:357.586667pt;}
.y26_c00148{bottom:358.853333pt;}
.y24_c00148{bottom:377.120000pt;}
.y23_c00148{bottom:377.720000pt;}
.y22_c00148{bottom:396.666667pt;}
.y21_c00148{bottom:416.120000pt;}
.y20_c00148{bottom:435.333333pt;}
.y1f_c00148{bottom:454.853333pt;}
.y1e_c00148{bottom:474.053333pt;}
.y1d_c00148{bottom:493.253333pt;}
.y1c_c00148{bottom:512.453333pt;}
.y1b_c00148{bottom:532.000000pt;}
.y1a_c00148{bottom:550.853333pt;}
.y19_c00148{bottom:570.386667pt;}
.y18_c00148{bottom:589.586667pt;}
.y17_c00148{bottom:609.120000pt;}
.y16_c00148{bottom:628.000000pt;}
.y15_c00148{bottom:647.786667pt;}
.y14_c00148{bottom:667.066667pt;}
.y13_c00148{bottom:686.520000pt;}
.y12_c00148{bottom:705.466667pt;}
.y11_c00148{bottom:725.266667pt;}
.y10_c00148{bottom:744.800000pt;}
.yf_c00148{bottom:764.000000pt;}
.ye_c00148{bottom:783.800000pt;}
.yd_c00148{bottom:802.386667pt;}
.yc_c00148{bottom:821.333333pt;}
.yb_c00148{bottom:840.466667pt;}
.ya_c00148{bottom:859.333333pt;}
.y9_c00148{bottom:876.933333pt;}
.y8_c00148{bottom:877.266667pt;}
.y7_c00148{bottom:879.186667pt;}
.y6_c00148{bottom:898.720000pt;}
.y5_c00148{bottom:917.266667pt;}
.y4_c00148{bottom:919.853333pt;}
.y3_c00148{bottom:968.466667pt;}
.y1_c00148{bottom:971.386667pt;}
.y2_c00148{bottom:980.800000pt;}
.h1_c00148{height:53.750000pt;}
.h5_c00148{height:57.578125pt;}
.h3_c00148{height:62.812500pt;}
.h2_c00148{height:64.500000pt;}
.h4_c00148{height:68.013021pt;}
.h0_c00148{height:1044.000000pt;}
.w0_c00148{width:650.646400pt;}
.w1_c00148{width:650.666667pt;}
.x0_c00148{left:0.000000pt;}
.xa_c00148{left:50.835733pt;}
.x4_c00148{left:51.835733pt;}
.xd_c00148{left:53.102400pt;}
.x10_c00148{left:54.035733pt;}
.x13_c00148{left:55.369067pt;}
.x14_c00148{left:56.635733pt;}
.x6_c00148{left:71.369067pt;}
.x9_c00148{left:80.635733pt;}
.xe_c00148{left:81.902400pt;}
.x11_c00148{left:83.155733pt;}
.x15_c00148{left:100.435733pt;}
.x5_c00148{left:120.969067pt;}
.xb_c00148{left:133.435733pt;}
.xf_c00148{left:234.235733pt;}
.x1_c00148{left:263.635733pt;}
.xc_c00148{left:273.235733pt;}
.x12_c00148{left:298.235733pt;}
.x2_c00148{left:415.369067pt;}
.x7_c00148{left:506.835733pt;}
.x8_c00148{left:534.369067pt;}
.x3_c00148{left:563.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c142f30c3f0e623357cc271.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00149;src:url('chunks/assets/font_7cd5b786df12ce5d67388143.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00149;src:url('chunks/assets/font_f12766a739bf100b29395670.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00149;src:url('chunks/assets/font_d28214b3a9ca2ed720237f4d.woff2')format("woff");}.ff4_c00149{font-family:ff4_c00149;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c00149{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m0_c00149{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9_c00149{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m10_c00149{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m16_c00149{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00149{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma_c00149{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m13_c00149{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8_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);}
.mf_c00149{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00149{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m12_c00149{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c00149{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00149{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c00149{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00149{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c00149{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c00149{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc_c00149{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c00149{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c00149{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00149{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c00149{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m19_c00149{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00149{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00149{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c00149{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00149{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00149{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00149{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c00149{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c00149{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m1_c00149{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.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;}
}
.ws0_c00149{word-spacing:0.000000px;}
.fc0_c00149{color:transparent;}
.fs1_c00149{font-size:60.000000px;}
.fs2_c00149{font-size:66.000000px;}
.fs0_c00149{font-size:78.000000px;}
.fs3_c00149{font-size:84.000000px;}
.y0_c00149{bottom:0.000000px;}
.y44_c00149{bottom:82.260000px;}
.y43_c00149{bottom:91.260000px;}
.y42_c00149{bottom:103.875000px;}
.y41_c00149{bottom:108.885000px;}
.y40_c00149{bottom:117.510000px;}
.y3f_c00149{bottom:120.060000px;}
.y3e_c00149{bottom:125.760000px;}
.y3d_c00149{bottom:132.660000px;}
.y3c_c00149{bottom:224.760000px;}
.y3b_c00149{bottom:238.125000px;}
.y3a_c00149{bottom:257.160000px;}
.y39_c00149{bottom:260.835000px;}
.y38_c00149{bottom:281.310000px;}
.y37_c00149{bottom:302.910000px;}
.y36_c00149{bottom:320.910000px;}
.y35_c00149{bottom:325.185000px;}
.y34_c00149{bottom:345.810000px;}
.y33_c00149{bottom:364.875000px;}
.y32_c00149{bottom:368.460000px;}
.y31_c00149{bottom:389.310000px;}
.y30_c00149{bottom:411.285000px;}
.y2f_c00149{bottom:432.885000px;}
.y2e_c00149{bottom:454.125000px;}
.y2d_c00149{bottom:454.500000px;}
.y2c_c00149{bottom:476.460000px;}
.y2b_c00149{bottom:499.500000px;}
.y2a_c00149{bottom:519.285000px;}
.y29_c00149{bottom:541.260000px;}
.y28_c00149{bottom:563.250000px;}
.y27_c00149{bottom:584.460000px;}
.y26_c00149{bottom:606.375000px;}
.y23_c00149{bottom:627.285000px;}
.y25_c00149{bottom:627.960000px;}
.y24_c00149{bottom:628.335000px;}
.y20_c00149{bottom:648.510000px;}
.y21_c00149{bottom:649.635000px;}
.y22_c00149{bottom:650.685000px;}
.y1f_c00149{bottom:671.625000px;}
.y1e_c00149{bottom:693.510000px;}
.y1d_c00149{bottom:714.750000px;}
.y1c_c00149{bottom:736.710000px;}
.y1a_c00149{bottom:754.710000px;}
.y1b_c00149{bottom:759.075000px;}
.y19_c00149{bottom:777.435000px;}
.y15_c00149{bottom:797.550000px;}
.y16_c00149{bottom:799.050000px;}
.y18_c00149{bottom:801.900000px;}
.y17_c00149{bottom:802.560000px;}
.y13_c00149{bottom:820.650000px;}
.y14_c00149{bottom:824.925000px;}
.y11_c00149{bottom:844.335000px;}
.y12_c00149{bottom:845.085000px;}
.y10_c00149{bottom:865.650000px;}
.yf_c00149{bottom:887.175000px;}
.yb_c00149{bottom:903.060000px;}
.yc_c00149{bottom:907.425000px;}
.yd_c00149{bottom:908.460000px;}
.ye_c00149{bottom:911.310000px;}
.ya_c00149{bottom:922.125000px;}
.y9_c00149{bottom:951.300000px;}
.y8_c00149{bottom:973.275000px;}
.y6_c00149{bottom:992.685000px;}
.y7_c00149{bottom:997.425000px;}
.y5_c00149{bottom:1015.050000px;}
.y4_c00149{bottom:1036.650000px;}
.y1_c00149{bottom:1081.650000px;}
.y2_c00149{bottom:1082.025000px;}
.y3_c00149{bottom:1093.185000px;}
.h2_c00149{height:58.886719px;}
.h5_c00149{height:64.775391px;}
.h3_c00149{height:66.515625px;}
.h1_c00149{height:76.552734px;}
.h4_c00149{height:82.400391px;}
.h0_c00149{height:1174.500000px;}
.w0_c00149{width:731.977200px;}
.w1_c00149{width:732.000000px;}
.x0_c00149{left:0.000000px;}
.x22_c00149{left:67.315200px;}
.x18_c00149{left:68.365200px;}
.x15_c00149{left:69.490200px;}
.x14_c00149{left:70.540200px;}
.xf_c00149{left:72.340200px;}
.x8_c00149{left:74.140200px;}
.x7_c00149{left:75.175200px;}
.x5_c00149{left:76.675200px;}
.x1c_c00149{left:90.715200px;}
.x1d_c00149{left:91.765200px;}
.x1_c00149{left:96.790200px;}
.x1b_c00149{left:99.340200px;}
.x1e_c00149{left:101.140200px;}
.x12_c00149{left:103.315200px;}
.x9_c00149{left:104.740200px;}
.x4_c00149{left:107.290200px;}
.x2_c00149{left:122.740200px;}
.x24_c00149{left:170.965200px;}
.x25_c00149{left:179.590200px;}
.x16_c00149{left:181.750200px;}
.x10_c00149{left:245.890200px;}
.x13_c00149{left:250.915200px;}
.x11_c00149{left:271.090200px;}
.x3_c00149{left:294.790200px;}
.xa_c00149{left:298.090200px;}
.xb_c00149{left:368.590200px;}
.xc_c00149{left:377.275200px;}
.x19_c00149{left:402.490200px;}
.x17_c00149{left:455.365200px;}
.xe_c00149{left:460.090200px;}
.x27_c00149{left:484.915200px;}
.x23_c00149{left:521.590200px;}
.x1a_c00149{left:573.790200px;}
.x6_c00149{left:577.765200px;}
.x26_c00149{left:581.365200px;}
.x1f_c00149{left:618.790200px;}
.x20_c00149{left:622.390200px;}
.x21_c00149{left:655.915200px;}
.xd_c00149{left:669.190200px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls0_c00149{letter-spacing:0.000000pt;}
.ws0_c00149{word-spacing:0.000000pt;}
.fs1_c00149{font-size:53.333333pt;}
.fs2_c00149{font-size:58.666667pt;}
.fs0_c00149{font-size:69.333333pt;}
.fs3_c00149{font-size:74.666667pt;}
.y0_c00149{bottom:0.000000pt;}
.y44_c00149{bottom:73.120000pt;}
.y43_c00149{bottom:81.120000pt;}
.y42_c00149{bottom:92.333333pt;}
.y41_c00149{bottom:96.786667pt;}
.y40_c00149{bottom:104.453333pt;}
.y3f_c00149{bottom:106.720000pt;}
.y3e_c00149{bottom:111.786667pt;}
.y3d_c00149{bottom:117.920000pt;}
.y3c_c00149{bottom:199.786667pt;}
.y3b_c00149{bottom:211.666667pt;}
.y3a_c00149{bottom:228.586667pt;}
.y39_c00149{bottom:231.853333pt;}
.y38_c00149{bottom:250.053333pt;}
.y37_c00149{bottom:269.253333pt;}
.y36_c00149{bottom:285.253333pt;}
.y35_c00149{bottom:289.053333pt;}
.y34_c00149{bottom:307.386667pt;}
.y33_c00149{bottom:324.333333pt;}
.y32_c00149{bottom:327.520000pt;}
.y31_c00149{bottom:346.053333pt;}
.y30_c00149{bottom:365.586667pt;}
.y2f_c00149{bottom:384.786667pt;}
.y2e_c00149{bottom:403.666667pt;}
.y2d_c00149{bottom:404.000000pt;}
.y2c_c00149{bottom:423.520000pt;}
.y2b_c00149{bottom:444.000000pt;}
.y2a_c00149{bottom:461.586667pt;}
.y29_c00149{bottom:481.120000pt;}
.y28_c00149{bottom:500.666667pt;}
.y27_c00149{bottom:519.520000pt;}
.y26_c00149{bottom:539.000000pt;}
.y23_c00149{bottom:557.586667pt;}
.y25_c00149{bottom:558.186667pt;}
.y24_c00149{bottom:558.520000pt;}
.y20_c00149{bottom:576.453333pt;}
.y21_c00149{bottom:577.453333pt;}
.y22_c00149{bottom:578.386667pt;}
.y1f_c00149{bottom:597.000000pt;}
.y1e_c00149{bottom:616.453333pt;}
.y1d_c00149{bottom:635.333333pt;}
.y1c_c00149{bottom:654.853333pt;}
.y1a_c00149{bottom:670.853333pt;}
.y1b_c00149{bottom:674.733333pt;}
.y19_c00149{bottom:691.053333pt;}
.y15_c00149{bottom:708.933333pt;}
.y16_c00149{bottom:710.266667pt;}
.y18_c00149{bottom:712.800000pt;}
.y17_c00149{bottom:713.386667pt;}
.y13_c00149{bottom:729.466667pt;}
.y14_c00149{bottom:733.266667pt;}
.y11_c00149{bottom:750.520000pt;}
.y12_c00149{bottom:751.186667pt;}
.y10_c00149{bottom:769.466667pt;}
.yf_c00149{bottom:788.600000pt;}
.yb_c00149{bottom:802.720000pt;}
.yc_c00149{bottom:806.600000pt;}
.yd_c00149{bottom:807.520000pt;}
.ye_c00149{bottom:810.053333pt;}
.ya_c00149{bottom:819.666667pt;}
.y9_c00149{bottom:845.600000pt;}
.y8_c00149{bottom:865.133333pt;}
.y6_c00149{bottom:882.386667pt;}
.y7_c00149{bottom:886.600000pt;}
.y5_c00149{bottom:902.266667pt;}
.y4_c00149{bottom:921.466667pt;}
.y1_c00149{bottom:961.466667pt;}
.y2_c00149{bottom:961.800000pt;}
.y3_c00149{bottom:971.720000pt;}
.h2_c00149{height:52.343750pt;}
.h5_c00149{height:57.578125pt;}
.h3_c00149{height:59.125000pt;}
.h1_c00149{height:68.046875pt;}
.h4_c00149{height:73.244792pt;}
.h0_c00149{height:1044.000000pt;}
.w0_c00149{width:650.646400pt;}
.w1_c00149{width:650.666667pt;}
.x0_c00149{left:0.000000pt;}
.x22_c00149{left:59.835733pt;}
.x18_c00149{left:60.769067pt;}
.x15_c00149{left:61.769067pt;}
.x14_c00149{left:62.702400pt;}
.xf_c00149{left:64.302400pt;}
.x8_c00149{left:65.902400pt;}
.x7_c00149{left:66.822400pt;}
.x5_c00149{left:68.155733pt;}
.x1c_c00149{left:80.635733pt;}
.x1d_c00149{left:81.569067pt;}
.x1_c00149{left:86.035733pt;}
.x1b_c00149{left:88.302400pt;}
.x1e_c00149{left:89.902400pt;}
.x12_c00149{left:91.835733pt;}
.x9_c00149{left:93.102400pt;}
.x4_c00149{left:95.369067pt;}
.x2_c00149{left:109.102400pt;}
.x24_c00149{left:151.969067pt;}
.x25_c00149{left:159.635733pt;}
.x16_c00149{left:161.555733pt;}
.x10_c00149{left:218.569067pt;}
.x13_c00149{left:223.035733pt;}
.x11_c00149{left:240.969067pt;}
.x3_c00149{left:262.035733pt;}
.xa_c00149{left:264.969067pt;}
.xb_c00149{left:327.635733pt;}
.xc_c00149{left:335.355733pt;}
.x19_c00149{left:357.769067pt;}
.x17_c00149{left:404.769067pt;}
.xe_c00149{left:408.969067pt;}
.x27_c00149{left:431.035733pt;}
.x23_c00149{left:463.635733pt;}
.x1a_c00149{left:510.035733pt;}
.x6_c00149{left:513.569067pt;}
.x26_c00149{left:516.769067pt;}
.x1f_c00149{left:550.035733pt;}
.x20_c00149{left:553.235733pt;}
.x21_c00149{left:583.035733pt;}
.xd_c00149{left:594.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d785ce8abab5f948be218b3c.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00150;src:url('chunks/assets/font_774476a30a3a98d74c9291d4.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00150;src:url('chunks/assets/font_32f69eaee59ddc6483f7a022.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00150;src:url('chunks/assets/font_027c788fe0c7d0aa829e0074.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00150{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00150{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m10_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);}
.m7_c00150{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8_c00150{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00150{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me_c00150{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6_c00150{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00150{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m16_c00150{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4_c00150{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m15_c00150{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c00150{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c00150{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00150{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m17_c00150{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00150{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c00150{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00150{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00150{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c00150{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m11_c00150{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00150{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00150{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m19_c00150{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c00150{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m20_c00150{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00150{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc_c00150{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3_c00150{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00150{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c00150{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m1_c00150{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00150{word-spacing:0.000000px;}
.fc0_c00150{color:transparent;}
.fs4_c00150{font-size:54.000000px;}
.fs2_c00150{font-size:66.000000px;}
.fs0_c00150{font-size:72.000000px;}
.fs1_c00150{font-size:78.000000px;}
.fs3_c00150{font-size:84.000000px;}
.y0_c00150{bottom:0.000000px;}
.y4b_c00150{bottom:76.785000px;}
.y4c_c00150{bottom:78.660000px;}
.y4a_c00150{bottom:99.885000px;}
.y48_c00150{bottom:120.435000px;}
.y49_c00150{bottom:123.285000px;}
.y47_c00150{bottom:141.285000px;}
.y44_c00150{bottom:161.460000px;}
.y45_c00150{bottom:164.310000px;}
.y46_c00150{bottom:166.125000px;}
.y41_c00150{bottom:182.310000px;}
.y42_c00150{bottom:184.125000px;}
.y43_c00150{bottom:187.710000px;}
.y3e_c00150{bottom:202.500000px;}
.y3f_c00150{bottom:203.160000px;}
.y40_c00150{bottom:205.710000px;}
.y3d_c00150{bottom:224.085000px;}
.y3c_c00150{bottom:245.685000px;}
.y3b_c00150{bottom:266.910000px;}
.y3a_c00150{bottom:288.525000px;}
.y37_c00150{bottom:309.435000px;}
.y38_c00150{bottom:309.750000px;}
.y39_c00150{bottom:311.160000px;}
.y36_c00150{bottom:331.335000px;}
.y34_c00150{bottom:352.560000px;}
.y35_c00150{bottom:352.650000px;}
.y33_c00150{bottom:353.310000px;}
.y32_c00150{bottom:374.250000px;}
.y31_c00150{bottom:395.460000px;}
.y30_c00150{bottom:417.060000px;}
.y2f_c00150{bottom:438.285000px;}
.y2e_c00150{bottom:459.885000px;}
.y2d_c00150{bottom:481.875000px;}
.y2c_c00150{bottom:503.835000px;}
.y2b_c00150{bottom:525.435000px;}
.y2a_c00150{bottom:547.035000px;}
.y29_c00150{bottom:569.010000px;}
.y28_c00150{bottom:590.535000px;}
.y27_c00150{bottom:612.135000px;}
.y26_c00150{bottom:633.750000px;}
.y25_c00150{bottom:655.710000px;}
.y24_c00150{bottom:677.310000px;}
.y23_c00150{bottom:698.910000px;}
.y22_c00150{bottom:699.285000px;}
.y21_c00150{bottom:721.200000px;}
.y20_c00150{bottom:743.160000px;}
.y1f_c00150{bottom:764.460000px;}
.y1e_c00150{bottom:765.885000px;}
.y1d_c00150{bottom:766.260000px;}
.y1c_c00150{bottom:786.750000px;}
.y1b_c00150{bottom:808.335000px;}
.y1a_c00150{bottom:809.835000px;}
.y19_c00150{bottom:830.310000px;}
.y18_c00150{bottom:832.500000px;}
.y17_c00150{bottom:851.175000px;}
.y16_c00150{bottom:852.300000px;}
.y15_c00150{bottom:853.710000px;}
.y14_c00150{bottom:873.900000px;}
.y12_c00150{bottom:875.400000px;}
.y13_c00150{bottom:875.685000px;}
.y11_c00150{bottom:896.175000px;}
.y10_c00150{bottom:918.150000px;}
.yf_c00150{bottom:918.900000px;}
.ye_c00150{bottom:937.935000px;}
.yd_c00150{bottom:939.435000px;}
.yc_c00150{bottom:939.750000px;}
.yb_c00150{bottom:940.125000px;}
.ya_c00150{bottom:940.500000px;}
.y9_c00150{bottom:960.675000px;}
.y8_c00150{bottom:981.900000px;}
.y7_c00150{bottom:984.060000px;}
.y6_c00150{bottom:1003.500000px;}
.y5_c00150{bottom:1025.835000px;}
.y4_c00150{bottom:1029.060000px;}
.y1_c00150{bottom:1086.960000px;}
.y3_c00150{bottom:1088.460000px;}
.y2_c00150{bottom:1098.525000px;}
.h7_c00150{height:52.998047px;}
.h6_c00150{height:64.775391px;}
.h3_c00150{height:66.515625px;}
.h4_c00150{height:70.664062px;}
.h1_c00150{height:72.562500px;}
.h9_c00150{height:76.514648px;}
.h2_c00150{height:78.609375px;}
.h8_c00150{height:82.400391px;}
.h5_c00150{height:82.441406px;}
.h0_c00150{height:1174.500000px;}
.w0_c00150{width:731.977200px;}
.w1_c00150{width:732.000000px;}
.x0_c00150{left:0.000000px;}
.x18_c00150{left:67.990200px;}
.x15_c00150{left:69.115200px;}
.x10_c00150{left:70.165200px;}
.x6_c00150{left:71.290200px;}
.x4_c00150{left:78.115200px;}
.xf_c00150{left:98.590200px;}
.x5_c00150{left:100.390200px;}
.x13_c00150{left:101.515200px;}
.xe_c00150{left:102.940200px;}
.x8_c00150{left:103.990200px;}
.x1c_c00150{left:146.515200px;}
.x27_c00150{left:172.090200px;}
.x9_c00150{left:187.165200px;}
.x16_c00150{left:197.590200px;}
.x17_c00150{left:229.315200px;}
.x12_c00150{left:231.790200px;}
.xd_c00150{left:237.940200px;}
.x14_c00150{left:248.365200px;}
.xa_c00150{left:268.915200px;}
.x7_c00150{left:281.515200px;}
.x1_c00150{left:287.590200px;}
.x1f_c00150{left:334.090200px;}
.x20_c00150{left:355.315200px;}
.x1b_c00150{left:381.940200px;}
.xb_c00150{left:388.090200px;}
.xc_c00150{left:395.965200px;}
.x21_c00150{left:420.775200px;}
.x1d_c00150{left:453.565200px;}
.x1e_c00150{left:472.990200px;}
.x2_c00150{left:482.740200px;}
.x24_c00150{left:488.140200px;}
.x11_c00150{left:490.690200px;}
.x26_c00150{left:539.290200px;}
.x19_c00150{left:603.340200px;}
.x25_c00150{left:604.390200px;}
.x22_c00150{left:613.090200px;}
.x1a_c00150{left:631.390200px;}
.x3_c00150{left:646.540200px;}
.x23_c00150{left:675.340200px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls0_c00150{letter-spacing:0.000000pt;}
.ws0_c00150{word-spacing:0.000000pt;}
.fs4_c00150{font-size:48.000000pt;}
.fs2_c00150{font-size:58.666667pt;}
.fs0_c00150{font-size:64.000000pt;}
.fs1_c00150{font-size:69.333333pt;}
.fs3_c00150{font-size:74.666667pt;}
.y0_c00150{bottom:0.000000pt;}
.y4b_c00150{bottom:68.253333pt;}
.y4c_c00150{bottom:69.920000pt;}
.y4a_c00150{bottom:88.786667pt;}
.y48_c00150{bottom:107.053333pt;}
.y49_c00150{bottom:109.586667pt;}
.y47_c00150{bottom:125.586667pt;}
.y44_c00150{bottom:143.520000pt;}
.y45_c00150{bottom:146.053333pt;}
.y46_c00150{bottom:147.666667pt;}
.y41_c00150{bottom:162.053333pt;}
.y42_c00150{bottom:163.666667pt;}
.y43_c00150{bottom:166.853333pt;}
.y3e_c00150{bottom:180.000000pt;}
.y3f_c00150{bottom:180.586667pt;}
.y40_c00150{bottom:182.853333pt;}
.y3d_c00150{bottom:199.186667pt;}
.y3c_c00150{bottom:218.386667pt;}
.y3b_c00150{bottom:237.253333pt;}
.y3a_c00150{bottom:256.466667pt;}
.y37_c00150{bottom:275.053333pt;}
.y38_c00150{bottom:275.333333pt;}
.y39_c00150{bottom:276.586667pt;}
.y36_c00150{bottom:294.520000pt;}
.y34_c00150{bottom:313.386667pt;}
.y35_c00150{bottom:313.466667pt;}
.y33_c00150{bottom:314.053333pt;}
.y32_c00150{bottom:332.666667pt;}
.y31_c00150{bottom:351.520000pt;}
.y30_c00150{bottom:370.720000pt;}
.y2f_c00150{bottom:389.586667pt;}
.y2e_c00150{bottom:408.786667pt;}
.y2d_c00150{bottom:428.333333pt;}
.y2c_c00150{bottom:447.853333pt;}
.y2b_c00150{bottom:467.053333pt;}
.y2a_c00150{bottom:486.253333pt;}
.y29_c00150{bottom:505.786667pt;}
.y28_c00150{bottom:524.920000pt;}
.y27_c00150{bottom:544.120000pt;}
.y26_c00150{bottom:563.333333pt;}
.y25_c00150{bottom:582.853333pt;}
.y24_c00150{bottom:602.053333pt;}
.y23_c00150{bottom:621.253333pt;}
.y22_c00150{bottom:621.586667pt;}
.y21_c00150{bottom:641.066667pt;}
.y20_c00150{bottom:660.586667pt;}
.y1f_c00150{bottom:679.520000pt;}
.y1e_c00150{bottom:680.786667pt;}
.y1d_c00150{bottom:681.120000pt;}
.y1c_c00150{bottom:699.333333pt;}
.y1b_c00150{bottom:718.520000pt;}
.y1a_c00150{bottom:719.853333pt;}
.y19_c00150{bottom:738.053333pt;}
.y18_c00150{bottom:740.000000pt;}
.y17_c00150{bottom:756.600000pt;}
.y16_c00150{bottom:757.600000pt;}
.y15_c00150{bottom:758.853333pt;}
.y14_c00150{bottom:776.800000pt;}
.y12_c00150{bottom:778.133333pt;}
.y13_c00150{bottom:778.386667pt;}
.y11_c00150{bottom:796.600000pt;}
.y10_c00150{bottom:816.133333pt;}
.yf_c00150{bottom:816.800000pt;}
.ye_c00150{bottom:833.720000pt;}
.yd_c00150{bottom:835.053333pt;}
.yc_c00150{bottom:835.333333pt;}
.yb_c00150{bottom:835.666667pt;}
.ya_c00150{bottom:836.000000pt;}
.y9_c00150{bottom:853.933333pt;}
.y8_c00150{bottom:872.800000pt;}
.y7_c00150{bottom:874.720000pt;}
.y6_c00150{bottom:892.000000pt;}
.y5_c00150{bottom:911.853333pt;}
.y4_c00150{bottom:914.720000pt;}
.y1_c00150{bottom:966.186667pt;}
.y3_c00150{bottom:967.520000pt;}
.y2_c00150{bottom:976.466667pt;}
.h7_c00150{height:47.109375pt;}
.h6_c00150{height:57.578125pt;}
.h3_c00150{height:59.125000pt;}
.h4_c00150{height:62.812500pt;}
.h1_c00150{height:64.500000pt;}
.h9_c00150{height:68.013021pt;}
.h2_c00150{height:69.875000pt;}
.h8_c00150{height:73.244792pt;}
.h5_c00150{height:73.281250pt;}
.h0_c00150{height:1044.000000pt;}
.w0_c00150{width:650.646400pt;}
.w1_c00150{width:650.666667pt;}
.x0_c00150{left:0.000000pt;}
.x18_c00150{left:60.435733pt;}
.x15_c00150{left:61.435733pt;}
.x10_c00150{left:62.369067pt;}
.x6_c00150{left:63.369067pt;}
.x4_c00150{left:69.435733pt;}
.xf_c00150{left:87.635733pt;}
.x5_c00150{left:89.235733pt;}
.x13_c00150{left:90.235733pt;}
.xe_c00150{left:91.502400pt;}
.x8_c00150{left:92.435733pt;}
.x1c_c00150{left:130.235733pt;}
.x27_c00150{left:152.969067pt;}
.x9_c00150{left:166.369067pt;}
.x16_c00150{left:175.635733pt;}
.x17_c00150{left:203.835733pt;}
.x12_c00150{left:206.035733pt;}
.xd_c00150{left:211.502400pt;}
.x14_c00150{left:220.769067pt;}
.xa_c00150{left:239.035733pt;}
.x7_c00150{left:250.235733pt;}
.x1_c00150{left:255.635733pt;}
.x1f_c00150{left:296.969067pt;}
.x20_c00150{left:315.835733pt;}
.x1b_c00150{left:339.502400pt;}
.xb_c00150{left:344.969067pt;}
.xc_c00150{left:351.969067pt;}
.x21_c00150{left:374.022400pt;}
.x1d_c00150{left:403.169067pt;}
.x1e_c00150{left:420.435733pt;}
.x2_c00150{left:429.102400pt;}
.x24_c00150{left:433.902400pt;}
.x11_c00150{left:436.169067pt;}
.x26_c00150{left:479.369067pt;}
.x19_c00150{left:536.302400pt;}
.x25_c00150{left:537.235733pt;}
.x22_c00150{left:544.969067pt;}
.x1a_c00150{left:561.235733pt;}
.x3_c00150{left:574.702400pt;}
.x23_c00150{left:600.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8eef019097da0c9caf18e14.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00151;src:url('chunks/assets/font_8a022cf57ce1109cd7c1a75e.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00151;src:url('chunks/assets/font_79685c71c9bfda0ae64cd887.woff2')format("woff");}.ff3_c00151{font-family:ff3_c00151;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1b_c00151{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m4_c00151{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00151{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0_c00151{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00151{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3_c00151{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c00151{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8_c00151{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c00151{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c00151{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c00151{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00151{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc_c00151{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00151{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c00151{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m20_c00151{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c00151{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2_c00151{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00151{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00151{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma_c00151{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m17_c00151{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00151{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00151{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00151{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00151{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c00151{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13_c00151{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c00151{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m18_c00151{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00151{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00151{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c00151{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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.000000px;}
.fc0_c00151{color:transparent;}
.fs1_c00151{font-size:54.000000px;}
.fs3_c00151{font-size:66.000000px;}
.fs0_c00151{font-size:72.000000px;}
.fs2_c00151{font-size:78.000000px;}
.y0_c00151{bottom:0.000000px;}
.y41_c00151{bottom:96.660000px;}
.y40_c00151{bottom:105.285000px;}
.y3f_c00151{bottom:109.635000px;}
.y3e_c00151{bottom:111.060000px;}
.y3d_c00151{bottom:114.660000px;}
.y3c_c00151{bottom:173.685000px;}
.y3b_c00151{bottom:178.335000px;}
.y3a_c00151{bottom:199.560000px;}
.y39_c00151{bottom:221.910000px;}
.y38_c00151{bottom:243.510000px;}
.y37_c00151{bottom:259.710000px;}
.y36_c00151{bottom:260.835000px;}
.y35_c00151{bottom:267.285000px;}
.y34_c00151{bottom:285.660000px;}
.y33_c00151{bottom:306.150000px;}
.y32_c00151{bottom:329.625000px;}
.y31_c00151{bottom:349.710000px;}
.y30_c00151{bottom:371.310000px;}
.y2f_c00151{bottom:392.625000px;}
.y2d_c00151{bottom:412.710000px;}
.y2e_c00151{bottom:413.085000px;}
.y2c_c00151{bottom:415.260000px;}
.y2b_c00151{bottom:435.810000px;}
.y2a_c00151{bottom:455.535000px;}
.y29_c00151{bottom:458.085000px;}
.y28_c00151{bottom:479.010000px;}
.y27_c00151{bottom:502.035000px;}
.y26_c00151{bottom:521.835000px;}
.y25_c00151{bottom:543.810000px;}
.y24_c00151{bottom:565.410000px;}
.y23_c00151{bottom:587.310000px;}
.y20_c00151{bottom:608.250000px;}
.y21_c00151{bottom:608.535000px;}
.y22_c00151{bottom:608.625000px;}
.y1f_c00151{bottom:630.210000px;}
.y1e_c00151{bottom:651.810000px;}
.y1c_c00151{bottom:673.035000px;}
.y1d_c00151{bottom:674.835000px;}
.y1b_c00151{bottom:693.210000px;}
.y1a_c00151{bottom:715.875000px;}
.y19_c00151{bottom:737.460000px;}
.y16_c00151{bottom:756.510000px;}
.y17_c00151{bottom:758.700000px;}
.y18_c00151{bottom:761.910000px;}
.y14_c00151{bottom:779.925000px;}
.y15_c00151{bottom:783.510000px;}
.y13_c00151{bottom:799.425000px;}
.y12_c00151{bottom:823.500000px;}
.y11_c00151{bottom:844.335000px;}
.y10_c00151{bottom:865.650000px;}
.yd_c00151{bottom:882.150000px;}
.ye_c00151{bottom:884.025000px;}
.yf_c00151{bottom:889.425000px;}
.yc_c00151{bottom:908.085000px;}
.yb_c00151{bottom:929.685000px;}
.ya_c00151{bottom:944.460000px;}
.y9_c00151{bottom:972.150000px;}
.y8_c00151{bottom:993.435000px;}
.y7_c00151{bottom:1013.925000px;}
.y4_c00151{bottom:1027.935000px;}
.y5_c00151{bottom:1033.335000px;}
.y6_c00151{bottom:1038.750000px;}
.y1_c00151{bottom:1082.310000px;}
.y3_c00151{bottom:1091.685000px;}
.y2_c00151{bottom:1097.085000px;}
.h2_c00151{height:52.998047px;}
.h4_c00151{height:64.775391px;}
.h7_c00151{height:66.515625px;}
.h5_c00151{height:70.628906px;}
.h1_c00151{height:72.562500px;}
.h3_c00151{height:76.552734px;}
.h6_c00151{height:78.609375px;}
.h0_c00151{height:1174.500000px;}
.w0_c00151{width:731.977200px;}
.w1_c00151{width:732.000000px;}
.x0_c00151{left:0.000000px;}
.x13_c00151{left:55.765200px;}
.xe_c00151{left:57.190200px;}
.xb_c00151{left:59.365200px;}
.x7_c00151{left:60.490200px;}
.x4_c00151{left:61.540200px;}
.x1f_c00151{left:74.140200px;}
.x1b_c00151{left:77.365200px;}
.x17_c00151{left:79.165200px;}
.x1_c00151{left:80.965200px;}
.x16_c00151{left:85.300200px;}
.x11_c00151{left:86.740200px;}
.xc_c00151{left:87.790200px;}
.x8_c00151{left:89.590200px;}
.x14_c00151{left:98.965200px;}
.x2_c00151{left:107.590200px;}
.xf_c00151{left:165.940200px;}
.x15_c00151{left:173.500200px;}
.x9_c00151{left:213.115200px;}
.x20_c00151{left:236.140200px;}
.xa_c00151{left:244.765200px;}
.x21_c00151{left:259.165200px;}
.x22_c00151{left:278.965200px;}
.x3_c00151{left:280.090200px;}
.x5_c00151{left:295.540200px;}
.x6_c00151{left:301.990200px;}
.xd_c00151{left:430.525200px;}
.x10_c00151{left:431.590200px;}
.x1c_c00151{left:451.390200px;}
.x19_c00151{left:529.165200px;}
.x1d_c00151{left:561.190200px;}
.x1e_c00151{left:616.315200px;}
.x12_c00151{left:617.365200px;}
.x1a_c00151{left:634.990200px;}
.x18_c00151{left:647.290200px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls0_c00151{letter-spacing:0.000000pt;}
.ws0_c00151{word-spacing:0.000000pt;}
.fs1_c00151{font-size:48.000000pt;}
.fs3_c00151{font-size:58.666667pt;}
.fs0_c00151{font-size:64.000000pt;}
.fs2_c00151{font-size:69.333333pt;}
.y0_c00151{bottom:0.000000pt;}
.y41_c00151{bottom:85.920000pt;}
.y40_c00151{bottom:93.586667pt;}
.y3f_c00151{bottom:97.453333pt;}
.y3e_c00151{bottom:98.720000pt;}
.y3d_c00151{bottom:101.920000pt;}
.y3c_c00151{bottom:154.386667pt;}
.y3b_c00151{bottom:158.520000pt;}
.y3a_c00151{bottom:177.386667pt;}
.y39_c00151{bottom:197.253333pt;}
.y38_c00151{bottom:216.453333pt;}
.y37_c00151{bottom:230.853333pt;}
.y36_c00151{bottom:231.853333pt;}
.y35_c00151{bottom:237.586667pt;}
.y34_c00151{bottom:253.920000pt;}
.y33_c00151{bottom:272.133333pt;}
.y32_c00151{bottom:293.000000pt;}
.y31_c00151{bottom:310.853333pt;}
.y30_c00151{bottom:330.053333pt;}
.y2f_c00151{bottom:349.000000pt;}
.y2d_c00151{bottom:366.853333pt;}
.y2e_c00151{bottom:367.186667pt;}
.y2c_c00151{bottom:369.120000pt;}
.y2b_c00151{bottom:387.386667pt;}
.y2a_c00151{bottom:404.920000pt;}
.y29_c00151{bottom:407.186667pt;}
.y28_c00151{bottom:425.786667pt;}
.y27_c00151{bottom:446.253333pt;}
.y26_c00151{bottom:463.853333pt;}
.y25_c00151{bottom:483.386667pt;}
.y24_c00151{bottom:502.586667pt;}
.y23_c00151{bottom:522.053333pt;}
.y20_c00151{bottom:540.666667pt;}
.y21_c00151{bottom:540.920000pt;}
.y22_c00151{bottom:541.000000pt;}
.y1f_c00151{bottom:560.186667pt;}
.y1e_c00151{bottom:579.386667pt;}
.y1c_c00151{bottom:598.253333pt;}
.y1d_c00151{bottom:599.853333pt;}
.y1b_c00151{bottom:616.186667pt;}
.y1a_c00151{bottom:636.333333pt;}
.y19_c00151{bottom:655.520000pt;}
.y16_c00151{bottom:672.453333pt;}
.y17_c00151{bottom:674.400000pt;}
.y18_c00151{bottom:677.253333pt;}
.y14_c00151{bottom:693.266667pt;}
.y15_c00151{bottom:696.453333pt;}
.y13_c00151{bottom:710.600000pt;}
.y12_c00151{bottom:732.000000pt;}
.y11_c00151{bottom:750.520000pt;}
.y10_c00151{bottom:769.466667pt;}
.yd_c00151{bottom:784.133333pt;}
.ye_c00151{bottom:785.800000pt;}
.yf_c00151{bottom:790.600000pt;}
.yc_c00151{bottom:807.186667pt;}
.yb_c00151{bottom:826.386667pt;}
.ya_c00151{bottom:839.520000pt;}
.y9_c00151{bottom:864.133333pt;}
.y8_c00151{bottom:883.053333pt;}
.y7_c00151{bottom:901.266667pt;}
.y4_c00151{bottom:913.720000pt;}
.y5_c00151{bottom:918.520000pt;}
.y6_c00151{bottom:923.333333pt;}
.y1_c00151{bottom:962.053333pt;}
.y3_c00151{bottom:970.386667pt;}
.y2_c00151{bottom:975.186667pt;}
.h2_c00151{height:47.109375pt;}
.h4_c00151{height:57.578125pt;}
.h7_c00151{height:59.125000pt;}
.h5_c00151{height:62.781250pt;}
.h1_c00151{height:64.500000pt;}
.h3_c00151{height:68.046875pt;}
.h6_c00151{height:69.875000pt;}
.h0_c00151{height:1044.000000pt;}
.w0_c00151{width:650.646400pt;}
.w1_c00151{width:650.666667pt;}
.x0_c00151{left:0.000000pt;}
.x13_c00151{left:49.569067pt;}
.xe_c00151{left:50.835733pt;}
.xb_c00151{left:52.769067pt;}
.x7_c00151{left:53.769067pt;}
.x4_c00151{left:54.702400pt;}
.x1f_c00151{left:65.902400pt;}
.x1b_c00151{left:68.769067pt;}
.x17_c00151{left:70.369067pt;}
.x1_c00151{left:71.969067pt;}
.x16_c00151{left:75.822400pt;}
.x11_c00151{left:77.102400pt;}
.xc_c00151{left:78.035733pt;}
.x8_c00151{left:79.635733pt;}
.x14_c00151{left:87.969067pt;}
.x2_c00151{left:95.635733pt;}
.xf_c00151{left:147.502400pt;}
.x15_c00151{left:154.222400pt;}
.x9_c00151{left:189.435733pt;}
.x20_c00151{left:209.902400pt;}
.xa_c00151{left:217.569067pt;}
.x21_c00151{left:230.369067pt;}
.x22_c00151{left:247.969067pt;}
.x3_c00151{left:248.969067pt;}
.x5_c00151{left:262.702400pt;}
.x6_c00151{left:268.435733pt;}
.xd_c00151{left:382.689067pt;}
.x10_c00151{left:383.635733pt;}
.x1c_c00151{left:401.235733pt;}
.x19_c00151{left:470.369067pt;}
.x1d_c00151{left:498.835733pt;}
.x1e_c00151{left:547.835733pt;}
.x12_c00151{left:548.769067pt;}
.x1a_c00151{left:564.435733pt;}
.x18_c00151{left:575.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a85304cb1c720caab264777.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00152;src:url('chunks/assets/font_a4bebc192163a67c94582312.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00152;src:url('chunks/assets/font_349b8838a403e8eb2805a9e5.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00152{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m13_c00152{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00152{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00152{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00152{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c00152{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00152{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00152{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00152{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00152{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00152{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00152{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md_c00152{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00152{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00152{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00152{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00152{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c00152{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c00152{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11_c00152{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m17_c00152{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m14_c00152{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00152{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00152{word-spacing:0.000000px;}
.fc0_c00152{color:transparent;}
.fs0_c00152{font-size:60.000000px;}
.fs2_c00152{font-size:66.000000px;}
.fs1_c00152{font-size:72.000000px;}
.y0_c00152{bottom:0.000000px;}
.y3b_c00152{bottom:93.750000px;}
.y3a_c00152{bottom:111.750000px;}
.y38_c00152{bottom:133.785000px;}
.y39_c00152{bottom:136.935000px;}
.y37_c00152{bottom:156.435000px;}
.y36_c00152{bottom:177.285000px;}
.y35_c00152{bottom:197.760000px;}
.y33_c00152{bottom:217.260000px;}
.y34_c00152{bottom:220.500000px;}
.y30_c00152{bottom:237.810000px;}
.y31_c00152{bottom:240.285000px;}
.y32_c00152{bottom:242.460000px;}
.y2f_c00152{bottom:260.085000px;}
.y2e_c00152{bottom:281.685000px;}
.y2d_c00152{bottom:303.285000px;}
.y2c_c00152{bottom:324.525000px;}
.y2a_c00152{bottom:346.500000px;}
.y2b_c00152{bottom:347.535000px;}
.y29_c00152{bottom:367.035000px;}
.y28_c00152{bottom:389.025000px;}
.y27_c00152{bottom:410.910000px;}
.y26_c00152{bottom:432.210000px;}
.y24_c00152{bottom:452.310000px;}
.y25_c00152{bottom:454.500000px;}
.y23_c00152{bottom:474.285000px;}
.y20_c00152{bottom:496.260000px;}
.y21_c00152{bottom:497.685000px;}
.y22_c00152{bottom:498.060000px;}
.y1f_c00152{bottom:519.285000px;}
.y1d_c00152{bottom:540.135000px;}
.y1e_c00152{bottom:540.885000px;}
.y1c_c00152{bottom:562.500000px;}
.y1b_c00152{bottom:584.085000px;}
.y1a_c00152{bottom:605.685000px;}
.y19_c00152{bottom:626.625000px;}
.y17_c00152{bottom:626.910000px;}
.y18_c00152{bottom:627.285000px;}
.y16_c00152{bottom:648.885000px;}
.y15_c00152{bottom:670.875000px;}
.y14_c00152{bottom:692.835000px;}
.y13_c00152{bottom:714.450000px;}
.y12_c00152{bottom:736.035000px;}
.y11_c00152{bottom:757.950000px;}
.y10_c00152{bottom:779.550000px;}
.yf_c00152{bottom:801.525000px;}
.ye_c00152{bottom:823.500000px;}
.yd_c00152{bottom:845.085000px;}
.yc_c00152{bottom:867.000000px;}
.yb_c00152{bottom:888.300000px;}
.ya_c00152{bottom:909.900000px;}
.y9_c00152{bottom:931.500000px;}
.y8_c00152{bottom:952.425000px;}
.y7_c00152{bottom:974.310000px;}
.y6_c00152{bottom:995.925000px;}
.y5_c00152{bottom:1018.275000px;}
.y4_c00152{bottom:1039.875000px;}
.y3_c00152{bottom:1094.925000px;}
.y1_c00152{bottom:1099.650000px;}
.y2_c00152{bottom:1110.060000px;}
.h5_c00152{height:58.886719px;}
.h1_c00152{height:60.468750px;}
.h4_c00152{height:64.775391px;}
.h3_c00152{height:70.628906px;}
.h2_c00152{height:70.664062px;}
.h0_c00152{height:1174.500000px;}
.w0_c00152{width:731.977200px;}
.w1_c00152{width:732.000000px;}
.x0_c00152{left:0.000000px;}
.x9_c00152{left:64.390200px;}
.x7_c00152{left:65.515200px;}
.x4_c00152{left:66.565200px;}
.xc_c00152{left:68.740200px;}
.x1c_c00152{left:70.165200px;}
.x13_c00152{left:71.965200px;}
.x14_c00152{left:73.090200px;}
.x16_c00152{left:74.140200px;}
.xa_c00152{left:96.115200px;}
.x8_c00152{left:97.165200px;}
.x5_c00152{left:98.965200px;}
.xb_c00152{left:100.090200px;}
.x17_c00152{left:102.565200px;}
.x1d_c00152{left:105.490200px;}
.x1f_c00152{left:107.290200px;}
.x10_c00152{left:118.765200px;}
.x1a_c00152{left:121.315200px;}
.x11_c00152{left:173.500200px;}
.xd_c00152{left:222.115200px;}
.x12_c00152{left:229.315200px;}
.x6_c00152{left:241.165200px;}
.x1_c00152{left:281.890200px;}
.xf_c00152{left:313.165200px;}
.x18_c00152{left:381.565200px;}
.x1e_c00152{left:438.775200px;}
.x2_c00152{left:476.290200px;}
.x1b_c00152{left:477.340200px;}
.x3_c00152{left:639.715200px;}
.x19_c00152{left:665.290200px;}
.x15_c00152{left:669.190200px;}
.xe_c00152{left:677.890200px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls0_c00152{letter-spacing:0.000000pt;}
.ws0_c00152{word-spacing:0.000000pt;}
.fs0_c00152{font-size:53.333333pt;}
.fs2_c00152{font-size:58.666667pt;}
.fs1_c00152{font-size:64.000000pt;}
.y0_c00152{bottom:0.000000pt;}
.y3b_c00152{bottom:83.333333pt;}
.y3a_c00152{bottom:99.333333pt;}
.y38_c00152{bottom:118.920000pt;}
.y39_c00152{bottom:121.720000pt;}
.y37_c00152{bottom:139.053333pt;}
.y36_c00152{bottom:157.586667pt;}
.y35_c00152{bottom:175.786667pt;}
.y33_c00152{bottom:193.120000pt;}
.y34_c00152{bottom:196.000000pt;}
.y30_c00152{bottom:211.386667pt;}
.y31_c00152{bottom:213.586667pt;}
.y32_c00152{bottom:215.520000pt;}
.y2f_c00152{bottom:231.186667pt;}
.y2e_c00152{bottom:250.386667pt;}
.y2d_c00152{bottom:269.586667pt;}
.y2c_c00152{bottom:288.466667pt;}
.y2a_c00152{bottom:308.000000pt;}
.y2b_c00152{bottom:308.920000pt;}
.y29_c00152{bottom:326.253333pt;}
.y28_c00152{bottom:345.800000pt;}
.y27_c00152{bottom:365.253333pt;}
.y26_c00152{bottom:384.186667pt;}
.y24_c00152{bottom:402.053333pt;}
.y25_c00152{bottom:404.000000pt;}
.y23_c00152{bottom:421.586667pt;}
.y20_c00152{bottom:441.120000pt;}
.y21_c00152{bottom:442.386667pt;}
.y22_c00152{bottom:442.720000pt;}
.y1f_c00152{bottom:461.586667pt;}
.y1d_c00152{bottom:480.120000pt;}
.y1e_c00152{bottom:480.786667pt;}
.y1c_c00152{bottom:500.000000pt;}
.y1b_c00152{bottom:519.186667pt;}
.y1a_c00152{bottom:538.386667pt;}
.y19_c00152{bottom:557.000000pt;}
.y17_c00152{bottom:557.253333pt;}
.y18_c00152{bottom:557.586667pt;}
.y16_c00152{bottom:576.786667pt;}
.y15_c00152{bottom:596.333333pt;}
.y14_c00152{bottom:615.853333pt;}
.y13_c00152{bottom:635.066667pt;}
.y12_c00152{bottom:654.253333pt;}
.y11_c00152{bottom:673.733333pt;}
.y10_c00152{bottom:692.933333pt;}
.yf_c00152{bottom:712.466667pt;}
.ye_c00152{bottom:732.000000pt;}
.yd_c00152{bottom:751.186667pt;}
.yc_c00152{bottom:770.666667pt;}
.yb_c00152{bottom:789.600000pt;}
.ya_c00152{bottom:808.800000pt;}
.y9_c00152{bottom:828.000000pt;}
.y8_c00152{bottom:846.600000pt;}
.y7_c00152{bottom:866.053333pt;}
.y6_c00152{bottom:885.266667pt;}
.y5_c00152{bottom:905.133333pt;}
.y4_c00152{bottom:924.333333pt;}
.y3_c00152{bottom:973.266667pt;}
.y1_c00152{bottom:977.466667pt;}
.y2_c00152{bottom:986.720000pt;}
.h5_c00152{height:52.343750pt;}
.h1_c00152{height:53.750000pt;}
.h4_c00152{height:57.578125pt;}
.h3_c00152{height:62.781250pt;}
.h2_c00152{height:62.812500pt;}
.h0_c00152{height:1044.000000pt;}
.w0_c00152{width:650.646400pt;}
.w1_c00152{width:650.666667pt;}
.x0_c00152{left:0.000000pt;}
.x9_c00152{left:57.235733pt;}
.x7_c00152{left:58.235733pt;}
.x4_c00152{left:59.169067pt;}
.xc_c00152{left:61.102400pt;}
.x1c_c00152{left:62.369067pt;}
.x13_c00152{left:63.969067pt;}
.x14_c00152{left:64.969067pt;}
.x16_c00152{left:65.902400pt;}
.xa_c00152{left:85.435733pt;}
.x8_c00152{left:86.369067pt;}
.x5_c00152{left:87.969067pt;}
.xb_c00152{left:88.969067pt;}
.x17_c00152{left:91.169067pt;}
.x1d_c00152{left:93.769067pt;}
.x1f_c00152{left:95.369067pt;}
.x10_c00152{left:105.569067pt;}
.x1a_c00152{left:107.835733pt;}
.x11_c00152{left:154.222400pt;}
.xd_c00152{left:197.435733pt;}
.x12_c00152{left:203.835733pt;}
.x6_c00152{left:214.369067pt;}
.x1_c00152{left:250.569067pt;}
.xf_c00152{left:278.369067pt;}
.x18_c00152{left:339.169067pt;}
.x1e_c00152{left:390.022400pt;}
.x2_c00152{left:423.369067pt;}
.x1b_c00152{left:424.302400pt;}
.x3_c00152{left:568.635733pt;}
.x19_c00152{left:591.369067pt;}
.x15_c00152{left:594.835733pt;}
.xe_c00152{left:602.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33c8635d328b705ed56a0630.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00153;src:url('chunks/assets/font_8db6dad307909af92dba7653.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00153;src:url('chunks/assets/font_193809c9547c4807b8e375f4.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00153;src:url('chunks/assets/font_e35bf136fd512d493e4c06fe.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00153{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m17_c00153{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m9_c00153{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00153{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00153{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00153{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00153{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5_c00153{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00153{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md_c00153{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c00153{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c00153{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00153{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10_c00153{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00153{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11_c00153{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00153{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m14_c00153{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c00153{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c00153{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2_c00153{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c00153{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00153{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00153{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m18_c00153{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00153{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00153{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00153{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00153{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m16_c00153{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.ma_c00153{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m1_c00153{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00153{color:transparent;}
.fs5_c00153{font-size:48.000000px;}
.fs1_c00153{font-size:54.000000px;}
.fs3_c00153{font-size:60.000000px;}
.fs4_c00153{font-size:66.000000px;}
.fs2_c00153{font-size:72.000000px;}
.fs0_c00153{font-size:78.000000px;}
.fs6_c00153{font-size:84.000000px;}
.y0_c00153{bottom:0.000000px;}
.y49_c00153{bottom:101.010000px;}
.y48_c00153{bottom:110.310000px;}
.y47_c00153{bottom:121.125000px;}
.y46_c00153{bottom:126.885000px;}
.y45_c00153{bottom:129.375000px;}
.y44_c00153{bottom:137.685000px;}
.y43_c00153{bottom:144.585000px;}
.y42_c00153{bottom:161.835000px;}
.y41_c00153{bottom:163.635000px;}
.y40_c00153{bottom:168.285000px;}
.y3f_c00153{bottom:173.685000px;}
.y3e_c00153{bottom:177.000000px;}
.y3d_c00153{bottom:180.885000px;}
.y3c_c00153{bottom:181.635000px;}
.y3b_c00153{bottom:189.210000px;}
.y3a_c00153{bottom:199.935000px;}
.y39_c00153{bottom:205.410000px;}
.y38_c00153{bottom:210.750000px;}
.y37_c00153{bottom:211.875000px;}
.y36_c00153{bottom:265.785000px;}
.y35_c00153{bottom:271.935000px;}
.y34_c00153{bottom:292.785000px;}
.y33_c00153{bottom:298.275000px;}
.y32_c00153{bottom:314.085000px;}
.y31_c00153{bottom:336.060000px;}
.y30_c00153{bottom:353.685000px;}
.y2f_c00153{bottom:357.585000px;}
.y2e_c00153{bottom:382.125000px;}
.y2d_c00153{bottom:399.060000px;}
.y2c_c00153{bottom:402.285000px;}
.y2b_c00153{bottom:422.085000px;}
.y2a_c00153{bottom:444.060000px;}
.y29_c00153{bottom:465.000000px;}
.y28_c00153{bottom:467.085000px;}
.y27_c00153{bottom:484.710000px;}
.y26_c00153{bottom:487.260000px;}
.y25_c00153{bottom:508.785000px;}
.y24_c00153{bottom:530.085000px;}
.y23_c00153{bottom:551.310000px;}
.y22_c00153{bottom:572.910000px;}
.y21_c00153{bottom:594.210000px;}
.y20_c00153{bottom:616.125000px;}
.y1f_c00153{bottom:637.785000px;}
.y1e_c00153{bottom:659.685000px;}
.y1d_c00153{bottom:680.910000px;}
.y1c_c00153{bottom:702.510000px;}
.y1b_c00153{bottom:724.125000px;}
.y1a_c00153{bottom:744.960000px;}
.y19_c00153{bottom:766.635000px;}
.y18_c00153{bottom:788.250000px;}
.y17_c00153{bottom:809.775000px;}
.y16_c00153{bottom:830.685000px;}
.y14_c00153{bottom:846.525000px;}
.y15_c00153{bottom:852.300000px;}
.y12_c00153{bottom:873.150000px;}
.y13_c00153{bottom:876.750000px;}
.y11_c00153{bottom:894.060000px;}
.ye_c00153{bottom:912.060000px;}
.yf_c00153{bottom:915.675000px;}
.y10_c00153{bottom:918.525000px;}
.yb_c00153{bottom:931.875000px;}
.yc_c00153{bottom:934.425000px;}
.yd_c00153{bottom:937.275000px;}
.ya_c00153{bottom:953.460000px;}
.y9_c00153{bottom:979.425000px;}
.y8_c00153{bottom:994.875000px;}
.y7_c00153{bottom:1021.185000px;}
.y4_c00153{bottom:1037.685000px;}
.y5_c00153{bottom:1044.900000px;}
.y6_c00153{bottom:1046.310000px;}
.y1_c00153{bottom:1087.710000px;}
.y3_c00153{bottom:1098.210000px;}
.y2_c00153{bottom:1103.625000px;}
.h9_c00153{height:48.375000px;}
.h2_c00153{height:52.998047px;}
.h5_c00153{height:58.886719px;}
.h8_c00153{height:60.468750px;}
.h7_c00153{height:64.743164px;}
.h6_c00153{height:64.775391px;}
.h4_c00153{height:70.628906px;}
.h3_c00153{height:72.562500px;}
.h1_c00153{height:76.552734px;}
.ha_c00153{height:84.656250px;}
.h0_c00153{height:1174.500000px;}
.w0_c00153{width:731.977200px;}
.w1_c00153{width:732.000000px;}
.x0_c00153{left:0.000000px;}
.x15_c00153{left:45.715200px;}
.x14_c00153{left:46.765200px;}
.x13_c00153{left:48.190200px;}
.x11_c00153{left:49.690200px;}
.x9_c00153{left:50.740200px;}
.x7_c00153{left:51.790200px;}
.x4_c00153{left:52.915200px;}
.x1d_c00153{left:63.715200px;}
.x1_c00153{left:71.965200px;}
.x1b_c00153{left:73.765200px;}
.x19_c00153{left:76.990200px;}
.xe_c00153{left:80.290200px;}
.x8_c00153{left:81.715200px;}
.xa_c00153{left:83.140200px;}
.x27_c00153{left:95.365200px;}
.x2_c00153{left:97.915200px;}
.x1e_c00153{left:98.965200px;}
.x28_c00153{left:128.140200px;}
.x17_c00153{left:135.715200px;}
.x1f_c00153{left:206.590200px;}
.x23_c00153{left:208.090200px;}
.xb_c00153{left:227.515200px;}
.xc_c00153{left:235.765200px;}
.xd_c00153{left:244.090200px;}
.x3_c00153{left:269.965200px;}
.x24_c00153{left:278.590200px;}
.x18_c00153{left:285.790200px;}
.xf_c00153{left:318.940200px;}
.x10_c00153{left:385.150200px;}
.x5_c00153{left:427.990200px;}
.x6_c00153{left:452.515200px;}
.x20_c00153{left:499.690200px;}
.x26_c00153{left:511.915200px;}
.x1c_c00153{left:569.140200px;}
.x1a_c00153{left:588.565200px;}
.x21_c00153{left:596.140200px;}
.x16_c00153{left:599.740200px;}
.x12_c00153{left:637.915200px;}
.x25_c00153{left:643.315200px;}
.x22_c00153{left:648.340200px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls0_c00153{letter-spacing:0.000000pt;}
.ws0_c00153{word-spacing:0.000000pt;}
.fs5_c00153{font-size:42.666667pt;}
.fs1_c00153{font-size:48.000000pt;}
.fs3_c00153{font-size:53.333333pt;}
.fs4_c00153{font-size:58.666667pt;}
.fs2_c00153{font-size:64.000000pt;}
.fs0_c00153{font-size:69.333333pt;}
.fs6_c00153{font-size:74.666667pt;}
.y0_c00153{bottom:0.000000pt;}
.y49_c00153{bottom:89.786667pt;}
.y48_c00153{bottom:98.053333pt;}
.y47_c00153{bottom:107.666667pt;}
.y46_c00153{bottom:112.786667pt;}
.y45_c00153{bottom:115.000000pt;}
.y44_c00153{bottom:122.386667pt;}
.y43_c00153{bottom:128.520000pt;}
.y42_c00153{bottom:143.853333pt;}
.y41_c00153{bottom:145.453333pt;}
.y40_c00153{bottom:149.586667pt;}
.y3f_c00153{bottom:154.386667pt;}
.y3e_c00153{bottom:157.333333pt;}
.y3d_c00153{bottom:160.786667pt;}
.y3c_c00153{bottom:161.453333pt;}
.y3b_c00153{bottom:168.186667pt;}
.y3a_c00153{bottom:177.720000pt;}
.y39_c00153{bottom:182.586667pt;}
.y38_c00153{bottom:187.333333pt;}
.y37_c00153{bottom:188.333333pt;}
.y36_c00153{bottom:236.253333pt;}
.y35_c00153{bottom:241.720000pt;}
.y34_c00153{bottom:260.253333pt;}
.y33_c00153{bottom:265.133333pt;}
.y32_c00153{bottom:279.186667pt;}
.y31_c00153{bottom:298.720000pt;}
.y30_c00153{bottom:314.386667pt;}
.y2f_c00153{bottom:317.853333pt;}
.y2e_c00153{bottom:339.666667pt;}
.y2d_c00153{bottom:354.720000pt;}
.y2c_c00153{bottom:357.586667pt;}
.y2b_c00153{bottom:375.186667pt;}
.y2a_c00153{bottom:394.720000pt;}
.y29_c00153{bottom:413.333333pt;}
.y28_c00153{bottom:415.186667pt;}
.y27_c00153{bottom:430.853333pt;}
.y26_c00153{bottom:433.120000pt;}
.y25_c00153{bottom:452.253333pt;}
.y24_c00153{bottom:471.186667pt;}
.y23_c00153{bottom:490.053333pt;}
.y22_c00153{bottom:509.253333pt;}
.y21_c00153{bottom:528.186667pt;}
.y20_c00153{bottom:547.666667pt;}
.y1f_c00153{bottom:566.920000pt;}
.y1e_c00153{bottom:586.386667pt;}
.y1d_c00153{bottom:605.253333pt;}
.y1c_c00153{bottom:624.453333pt;}
.y1b_c00153{bottom:643.666667pt;}
.y1a_c00153{bottom:662.186667pt;}
.y19_c00153{bottom:681.453333pt;}
.y18_c00153{bottom:700.666667pt;}
.y17_c00153{bottom:719.800000pt;}
.y16_c00153{bottom:738.386667pt;}
.y14_c00153{bottom:752.466667pt;}
.y15_c00153{bottom:757.600000pt;}
.y12_c00153{bottom:776.133333pt;}
.y13_c00153{bottom:779.333333pt;}
.y11_c00153{bottom:794.720000pt;}
.ye_c00153{bottom:810.720000pt;}
.yf_c00153{bottom:813.933333pt;}
.y10_c00153{bottom:816.466667pt;}
.yb_c00153{bottom:828.333333pt;}
.yc_c00153{bottom:830.600000pt;}
.yd_c00153{bottom:833.133333pt;}
.ya_c00153{bottom:847.520000pt;}
.y9_c00153{bottom:870.600000pt;}
.y8_c00153{bottom:884.333333pt;}
.y7_c00153{bottom:907.720000pt;}
.y4_c00153{bottom:922.386667pt;}
.y5_c00153{bottom:928.800000pt;}
.y6_c00153{bottom:930.053333pt;}
.y1_c00153{bottom:966.853333pt;}
.y3_c00153{bottom:976.186667pt;}
.y2_c00153{bottom:981.000000pt;}
.h9_c00153{height:43.000000pt;}
.h2_c00153{height:47.109375pt;}
.h5_c00153{height:52.343750pt;}
.h8_c00153{height:53.750000pt;}
.h7_c00153{height:57.549479pt;}
.h6_c00153{height:57.578125pt;}
.h4_c00153{height:62.781250pt;}
.h3_c00153{height:64.500000pt;}
.h1_c00153{height:68.046875pt;}
.ha_c00153{height:75.250000pt;}
.h0_c00153{height:1044.000000pt;}
.w0_c00153{width:650.646400pt;}
.w1_c00153{width:650.666667pt;}
.x0_c00153{left:0.000000pt;}
.x15_c00153{left:40.635733pt;}
.x14_c00153{left:41.569067pt;}
.x13_c00153{left:42.835733pt;}
.x11_c00153{left:44.169067pt;}
.x9_c00153{left:45.102400pt;}
.x7_c00153{left:46.035733pt;}
.x4_c00153{left:47.035733pt;}
.x1d_c00153{left:56.635733pt;}
.x1_c00153{left:63.969067pt;}
.x1b_c00153{left:65.569067pt;}
.x19_c00153{left:68.435733pt;}
.xe_c00153{left:71.369067pt;}
.x8_c00153{left:72.635733pt;}
.xa_c00153{left:73.902400pt;}
.x27_c00153{left:84.769067pt;}
.x2_c00153{left:87.035733pt;}
.x1e_c00153{left:87.969067pt;}
.x28_c00153{left:113.902400pt;}
.x17_c00153{left:120.635733pt;}
.x1f_c00153{left:183.635733pt;}
.x23_c00153{left:184.969067pt;}
.xb_c00153{left:202.235733pt;}
.xc_c00153{left:209.569067pt;}
.xd_c00153{left:216.969067pt;}
.x3_c00153{left:239.969067pt;}
.x24_c00153{left:247.635733pt;}
.x18_c00153{left:254.035733pt;}
.xf_c00153{left:283.502400pt;}
.x10_c00153{left:342.355733pt;}
.x5_c00153{left:380.435733pt;}
.x6_c00153{left:402.235733pt;}
.x20_c00153{left:444.169067pt;}
.x26_c00153{left:455.035733pt;}
.x1c_c00153{left:505.902400pt;}
.x1a_c00153{left:523.169067pt;}
.x21_c00153{left:529.902400pt;}
.x16_c00153{left:533.102400pt;}
.x12_c00153{left:567.035733pt;}
.x25_c00153{left:571.835733pt;}
.x22_c00153{left:576.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_460e97328b0b15faa675903a.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00154;src:url('chunks/assets/font_e036484c7b488cd0c5423088.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00154;src:url('chunks/assets/font_b64579b72fd13a55d613623f.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00154;src:url('chunks/assets/font_d74ea9b6fb15c0469374e499.woff2')format("woff");}.ff4_c00154{font-family:ff4_c00154;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1c_c00154{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m0_c00154{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3_c00154{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m17_c00154{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m19_c00154{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c00154{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf_c00154{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m15_c00154{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m13_c00154{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00154{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00154{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00154{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00154{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c00154{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00154{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00154{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1_c00154{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00154{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00154{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00154{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00154{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00154{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c00154{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00154{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00154{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c00154{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16_c00154{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c00154{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m18_c00154{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7_c00154{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,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.000000px;}
.fc0_c00154{color:transparent;}
.fs2_c00154{font-size:60.000000px;}
.fs3_c00154{font-size:66.000000px;}
.fs1_c00154{font-size:72.000000px;}
.fs4_c00154{font-size:78.000000px;}
.fs0_c00154{font-size:84.000000px;}
.y0_c00154{bottom:0.000000px;}
.y37_c00154{bottom:95.160000px;}
.y38_c00154{bottom:96.585000px;}
.y39_c00154{bottom:98.460000px;}
.y3b_c00154{bottom:98.760000px;}
.y3a_c00154{bottom:99.510000px;}
.y35_c00154{bottom:118.260000px;}
.y36_c00154{bottom:120.435000px;}
.y34_c00154{bottom:139.125000px;}
.y30_c00154{bottom:158.910000px;}
.y2f_c00154{bottom:159.660000px;}
.y31_c00154{bottom:161.760000px;}
.y32_c00154{bottom:163.260000px;}
.y33_c00154{bottom:163.560000px;}
.y2d_c00154{bottom:180.135000px;}
.y2e_c00154{bottom:183.060000px;}
.y2c_c00154{bottom:202.500000px;}
.y2b_c00154{bottom:221.535000px;}
.y2a_c00154{bottom:243.885000px;}
.y28_c00154{bottom:264.000000px;}
.y29_c00154{bottom:265.185000px;}
.y27_c00154{bottom:286.710000px;}
.y26_c00154{bottom:308.310000px;}
.y25_c00154{bottom:330.285000px;}
.y24_c00154{bottom:350.775000px;}
.y23_c00154{bottom:372.810000px;}
.y22_c00154{bottom:394.335000px;}
.y21_c00154{bottom:415.260000px;}
.y20_c00154{bottom:437.250000px;}
.y1e_c00154{bottom:457.710000px;}
.y1f_c00154{bottom:459.135000px;}
.y1d_c00154{bottom:479.685000px;}
.y1c_c00154{bottom:502.335000px;}
.y1b_c00154{bottom:523.635000px;}
.y1a_c00154{bottom:545.535000px;}
.y19_c00154{bottom:566.835000px;}
.y18_c00154{bottom:588.750000px;}
.y17_c00154{bottom:610.335000px;}
.y16_c00154{bottom:631.635000px;}
.y15_c00154{bottom:631.935000px;}
.y14_c00154{bottom:653.910000px;}
.y13_c00154{bottom:675.510000px;}
.y12_c00154{bottom:697.500000px;}
.y11_c00154{bottom:719.460000px;}
.y10_c00154{bottom:741.075000px;}
.yf_c00154{bottom:762.285000px;}
.ye_c00154{bottom:784.260000px;}
.yd_c00154{bottom:806.550000px;}
.yc_c00154{bottom:828.525000px;}
.yb_c00154{bottom:850.500000px;}
.ya_c00154{bottom:871.710000px;}
.y9_c00154{bottom:893.310000px;}
.y8_c00154{bottom:914.550000px;}
.y7_c00154{bottom:935.835000px;}
.y6_c00154{bottom:957.435000px;}
.y5_c00154{bottom:978.675000px;}
.y4_c00154{bottom:1000.650000px;}
.y3_c00154{bottom:1023.300000px;}
.y2_c00154{bottom:1044.150000px;}
.y1_c00154{bottom:1100.685000px;}
.h4_c00154{height:58.886719px;}
.h5_c00154{height:64.775391px;}
.h2_c00154{height:70.664062px;}
.h6_c00154{height:76.552734px;}
.h7_c00154{height:78.609375px;}
.h3_c00154{height:82.400391px;}
.h1_c00154{height:82.441406px;}
.h0_c00154{height:1174.500000px;}
.w0_c00154{width:731.977200px;}
.w1_c00154{width:732.000000px;}
.x0_c00154{left:0.000000px;}
.xc_c00154{left:51.490200px;}
.x2_c00154{left:52.540200px;}
.x5_c00154{left:53.590200px;}
.xf_c00154{left:55.090200px;}
.x11_c00154{left:56.140200px;}
.x12_c00154{left:57.190200px;}
.x7_c00154{left:74.515200px;}
.x6_c00154{left:76.300200px;}
.x4_c00154{left:85.300200px;}
.xa_c00154{left:87.490200px;}
.x14_c00154{left:89.290200px;}
.xd_c00154{left:92.140200px;}
.x3_c00154{left:116.290200px;}
.x15_c00154{left:118.090200px;}
.x10_c00154{left:120.190200px;}
.x1a_c00154{left:174.190200px;}
.x16_c00154{left:196.540200px;}
.xe_c00154{left:233.290200px;}
.x8_c00154{left:364.315200px;}
.x13_c00154{left:387.340200px;}
.x9_c00154{left:484.915200px;}
.xb_c00154{left:488.140200px;}
.x1b_c00154{left:535.690200px;}
.x19_c00154{left:587.140200px;}
.x17_c00154{left:598.690200px;}
.x1c_c00154{left:612.340200px;}
.x1d_c00154{left:615.565200px;}
.x1_c00154{left:627.490200px;}
.x18_c00154{left:658.390200px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls0_c00154{letter-spacing:0.000000pt;}
.ws0_c00154{word-spacing:0.000000pt;}
.fs2_c00154{font-size:53.333333pt;}
.fs3_c00154{font-size:58.666667pt;}
.fs1_c00154{font-size:64.000000pt;}
.fs4_c00154{font-size:69.333333pt;}
.fs0_c00154{font-size:74.666667pt;}
.y0_c00154{bottom:0.000000pt;}
.y37_c00154{bottom:84.586667pt;}
.y38_c00154{bottom:85.853333pt;}
.y39_c00154{bottom:87.520000pt;}
.y3b_c00154{bottom:87.786667pt;}
.y3a_c00154{bottom:88.453333pt;}
.y35_c00154{bottom:105.120000pt;}
.y36_c00154{bottom:107.053333pt;}
.y34_c00154{bottom:123.666667pt;}
.y30_c00154{bottom:141.253333pt;}
.y2f_c00154{bottom:141.920000pt;}
.y31_c00154{bottom:143.786667pt;}
.y32_c00154{bottom:145.120000pt;}
.y33_c00154{bottom:145.386667pt;}
.y2d_c00154{bottom:160.120000pt;}
.y2e_c00154{bottom:162.720000pt;}
.y2c_c00154{bottom:180.000000pt;}
.y2b_c00154{bottom:196.920000pt;}
.y2a_c00154{bottom:216.786667pt;}
.y28_c00154{bottom:234.666667pt;}
.y29_c00154{bottom:235.720000pt;}
.y27_c00154{bottom:254.853333pt;}
.y26_c00154{bottom:274.053333pt;}
.y25_c00154{bottom:293.586667pt;}
.y24_c00154{bottom:311.800000pt;}
.y23_c00154{bottom:331.386667pt;}
.y22_c00154{bottom:350.520000pt;}
.y21_c00154{bottom:369.120000pt;}
.y20_c00154{bottom:388.666667pt;}
.y1e_c00154{bottom:406.853333pt;}
.y1f_c00154{bottom:408.120000pt;}
.y1d_c00154{bottom:426.386667pt;}
.y1c_c00154{bottom:446.520000pt;}
.y1b_c00154{bottom:465.453333pt;}
.y1a_c00154{bottom:484.920000pt;}
.y19_c00154{bottom:503.853333pt;}
.y18_c00154{bottom:523.333333pt;}
.y17_c00154{bottom:542.520000pt;}
.y16_c00154{bottom:561.453333pt;}
.y15_c00154{bottom:561.720000pt;}
.y14_c00154{bottom:581.253333pt;}
.y13_c00154{bottom:600.453333pt;}
.y12_c00154{bottom:620.000000pt;}
.y11_c00154{bottom:639.520000pt;}
.y10_c00154{bottom:658.733333pt;}
.yf_c00154{bottom:677.586667pt;}
.ye_c00154{bottom:697.120000pt;}
.yd_c00154{bottom:716.933333pt;}
.yc_c00154{bottom:736.466667pt;}
.yb_c00154{bottom:756.000000pt;}
.ya_c00154{bottom:774.853333pt;}
.y9_c00154{bottom:794.053333pt;}
.y8_c00154{bottom:812.933333pt;}
.y7_c00154{bottom:831.853333pt;}
.y6_c00154{bottom:851.053333pt;}
.y5_c00154{bottom:869.933333pt;}
.y4_c00154{bottom:889.466667pt;}
.y3_c00154{bottom:909.600000pt;}
.y2_c00154{bottom:928.133333pt;}
.y1_c00154{bottom:978.386667pt;}
.h4_c00154{height:52.343750pt;}
.h5_c00154{height:57.578125pt;}
.h2_c00154{height:62.812500pt;}
.h6_c00154{height:68.046875pt;}
.h7_c00154{height:69.875000pt;}
.h3_c00154{height:73.244792pt;}
.h1_c00154{height:73.281250pt;}
.h0_c00154{height:1044.000000pt;}
.w0_c00154{width:650.646400pt;}
.w1_c00154{width:650.666667pt;}
.x0_c00154{left:0.000000pt;}
.xc_c00154{left:45.769067pt;}
.x2_c00154{left:46.702400pt;}
.x5_c00154{left:47.635733pt;}
.xf_c00154{left:48.969067pt;}
.x11_c00154{left:49.902400pt;}
.x12_c00154{left:50.835733pt;}
.x7_c00154{left:66.235733pt;}
.x6_c00154{left:67.822400pt;}
.x4_c00154{left:75.822400pt;}
.xa_c00154{left:77.769067pt;}
.x14_c00154{left:79.369067pt;}
.xd_c00154{left:81.902400pt;}
.x3_c00154{left:103.369067pt;}
.x15_c00154{left:104.969067pt;}
.x10_c00154{left:106.835733pt;}
.x1a_c00154{left:154.835733pt;}
.x16_c00154{left:174.702400pt;}
.xe_c00154{left:207.369067pt;}
.x8_c00154{left:323.835733pt;}
.x13_c00154{left:344.302400pt;}
.x9_c00154{left:431.035733pt;}
.xb_c00154{left:433.902400pt;}
.x1b_c00154{left:476.169067pt;}
.x19_c00154{left:521.902400pt;}
.x17_c00154{left:532.169067pt;}
.x1c_c00154{left:544.302400pt;}
.x1d_c00154{left:547.169067pt;}
.x1_c00154{left:557.769067pt;}
.x18_c00154{left:585.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d579e56741d66dab624e1676.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00155;src:url('chunks/assets/font_ced8c00c924cca72ea990dcd.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00155;src:url('chunks/assets/font_2d6400d250e8ed182149d47c.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00155;src:url('chunks/assets/font_3272dcebe6c67061cc7eacd8.woff2')format("woff");}.ff4_c00155{font-family:ff4_c00155;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00155{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m13_c00155{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m21_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);}
.m19_c00155{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00155{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c00155{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00155{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m18_c00155{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c00155{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c00155{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00155{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c00155{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00155{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00155{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c00155{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m20_c00155{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00155{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00155{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00155{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me_c00155{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00155{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00155{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00155{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00155{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00155{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c00155{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c00155{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00155{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c00155{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00155{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00155{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m10_c00155{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00155{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1_c00155{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v1_c00155{vertical-align:-8.400000px;}
.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;}
}
.ws0_c00155{word-spacing:0.000000px;}
._0_c00155{margin-left:-24.862793px;}
._1_c00155{margin-left:-7.744981px;}
.fc0_c00155{color:transparent;}
.fs1_c00155{font-size:60.000000px;}
.fs3_c00155{font-size:66.000000px;}
.fs0_c00155{font-size:72.000000px;}
.fs2_c00155{font-size:78.000000px;}
.y0_c00155{bottom:0.000000px;}
.y5a_c00155{bottom:103.125000px;}
.y59_c00155{bottom:108.135000px;}
.y58_c00155{bottom:109.560000px;}
.y57_c00155{bottom:111.435000px;}
.y56_c00155{bottom:127.635000px;}
.y55_c00155{bottom:144.210000px;}
.y54_c00155{bottom:149.910000px;}
.y53_c00155{bottom:170.460000px;}
.y52_c00155{bottom:192.060000px;}
.y51_c00155{bottom:212.535000px;}
.y50_c00155{bottom:215.835000px;}
.y4f_c00155{bottom:216.510000px;}
.y4e_c00155{bottom:217.935000px;}
.y4d_c00155{bottom:229.875000px;}
.y4c_c00155{bottom:230.625000px;}
.y4b_c00155{bottom:232.785000px;}
.y4a_c00155{bottom:235.560000px;}
.y49_c00155{bottom:239.535000px;}
.y48_c00155{bottom:251.835000px;}
.y47_c00155{bottom:257.160000px;}
.y46_c00155{bottom:277.410000px;}
.y45_c00155{bottom:279.525000px;}
.y44_c00155{bottom:280.275000px;}
.y43_c00155{bottom:280.650000px;}
.y42_c00155{bottom:281.685000px;}
.y41_c00155{bottom:300.435000px;}
.y40_c00155{bottom:321.000000px;}
.y3f_c00155{bottom:341.835000px;}
.y3e_c00155{bottom:345.060000px;}
.y3d_c00155{bottom:345.435000px;}
.y3c_c00155{bottom:365.910000px;}
.y3b_c00155{bottom:385.335000px;}
.y3a_c00155{bottom:407.685000px;}
.y39_c00155{bottom:429.285000px;}
.y38_c00155{bottom:451.260000px;}
.y37_c00155{bottom:470.310000px;}
.y36_c00155{bottom:471.750000px;}
.y35_c00155{bottom:473.160000px;}
.y34_c00155{bottom:473.535000px;}
.y33_c00155{bottom:493.335000px;}
.y32_c00155{bottom:494.385000px;}
.y31_c00155{bottom:515.310000px;}
.y30_c00155{bottom:515.685000px;}
.y2f_c00155{bottom:534.750000px;}
.y2e_c00155{bottom:536.250000px;}
.y2d_c00155{bottom:536.910000px;}
.y2c_c00155{bottom:537.000000px;}
.y2b_c00155{bottom:557.835000px;}
.y2a_c00155{bottom:579.810000px;}
.y29_c00155{bottom:601.710000px;}
.y28_c00155{bottom:623.385000px;}
.y26_c00155{bottom:644.160000px;}
.y27_c00155{bottom:645.285000px;}
.y25_c00155{bottom:666.510000px;}
.y23_c00155{bottom:686.310000px;}
.y24_c00155{bottom:688.500000px;}
.y22_c00155{bottom:707.250000px;}
.y1f_c00155{bottom:727.785000px;}
.y20_c00155{bottom:728.085000px;}
.y21_c00155{bottom:731.325000px;}
.y1b_c00155{bottom:749.010000px;}
.y1c_c00155{bottom:749.325000px;}
.y1d_c00155{bottom:752.535000px;}
.y1e_c00155{bottom:752.910000px;}
.y1a_c00155{bottom:769.500000px;}
.y19_c00155{bottom:794.685000px;}
.y16_c00155{bottom:815.625000px;}
.y18_c00155{bottom:817.710000px;}
.y17_c00155{bottom:818.085000px;}
.y15_c00155{bottom:837.210000px;}
.y14_c00155{bottom:858.750000px;}
.y13_c00155{bottom:879.675000px;}
.y12_c00155{bottom:900.585000px;}
.y11_c00155{bottom:922.125000px;}
.ye_c00155{bottom:936.900000px;}
.yf_c00155{bottom:938.310000px;}
.y10_c00155{bottom:945.210000px;}
.yd_c00155{bottom:961.800000px;}
.ya_c00155{bottom:977.925000px;}
.yb_c00155{bottom:980.775000px;}
.yc_c00155{bottom:987.675000px;}
.y7_c00155{bottom:997.710000px;}
.y8_c00155{bottom:1000.275000px;}
.y9_c00155{bottom:1008.525000px;}
.y6_c00155{bottom:1027.650000px;}
.y4_c00155{bottom:1038.810000px;}
.y5_c00155{bottom:1049.250000px;}
.y1_c00155{bottom:1095.300000px;}
.y3_c00155{bottom:1104.960000px;}
.y2_c00155{bottom:1110.435000px;}
.h2_c00155{height:58.886719px;}
.h5_c00155{height:64.775391px;}
.h1_c00155{height:70.664062px;}
.h4_c00155{height:76.514648px;}
.h3_c00155{height:78.609375px;}
.h0_c00155{height:1174.500000px;}
.w0_c00155{width:731.977200px;}
.w1_c00155{width:732.000000px;}
.x0_c00155{left:0.000000px;}
.x31_c00155{left:57.940200px;}
.x1b_c00155{left:60.115200px;}
.x18_c00155{left:62.290200px;}
.x11_c00155{left:63.340200px;}
.xe_c00155{left:64.765200px;}
.xa_c00155{left:66.190200px;}
.x4_c00155{left:67.690200px;}
.x1_c00155{left:87.490200px;}
.x1d_c00155{left:90.340200px;}
.x5_c00155{left:91.390200px;}
.x19_c00155{left:92.515200px;}
.x12_c00155{left:93.940200px;}
.xb_c00155{left:95.740200px;}
.x16_c00155{left:102.565200px;}
.x2_c00155{left:113.740200px;}
.x13_c00155{left:116.590200px;}
.x28_c00155{left:119.140200px;}
.x1e_c00155{left:120.565200px;}
.xc_c00155{left:123.790200px;}
.x24_c00155{left:136.090200px;}
.x32_c00155{left:148.990200px;}
.x6_c00155{left:157.315200px;}
.x14_c00155{left:161.290200px;}
.x27_c00155{left:164.890200px;}
.x8_c00155{left:167.740200px;}
.x7_c00155{left:170.965200px;}
.x17_c00155{left:191.875200px;}
.x9_c00155{left:192.940200px;}
.x35_c00155{left:199.375200px;}
.x21_c00155{left:208.375200px;}
.x36_c00155{left:215.590200px;}
.xd_c00155{left:216.715200px;}
.x22_c00155{left:225.715200px;}
.x29_c00155{left:226.765200px;}
.x33_c00155{left:236.140200px;}
.x2a_c00155{left:245.890200px;}
.x1c_c00155{left:253.390200px;}
.x1a_c00155{left:266.740200px;}
.x23_c00155{left:270.715200px;}
.x3_c00155{left:286.915200px;}
.x37_c00155{left:297.340200px;}
.x2d_c00155{left:319.315200px;}
.x2b_c00155{left:350.290200px;}
.x2e_c00155{left:356.740200px;}
.x1f_c00155{left:448.540200px;}
.x25_c00155{left:494.290200px;}
.x26_c00155{left:552.565200px;}
.x2c_c00155{left:578.515200px;}
.x34_c00155{left:592.165200px;}
.x2f_c00155{left:601.540200px;}
.x15_c00155{left:602.590200px;}
.xf_c00155{left:613.090200px;}
.x30_c00155{left:619.165200px;}
.x10_c00155{left:630.340200px;}
.x20_c00155{left:641.515200px;}
@media print{
.v1_c00155{vertical-align:-7.466667pt;}
.v0_c00155{vertical-align:0.000000pt;}
.ls0_c00155{letter-spacing:0.000000pt;}
.ws0_c00155{word-spacing:0.000000pt;}
._0_c00155{margin-left:-22.100260pt;}
._1_c00155{margin-left:-6.884428pt;}
.fs1_c00155{font-size:53.333333pt;}
.fs3_c00155{font-size:58.666667pt;}
.fs0_c00155{font-size:64.000000pt;}
.fs2_c00155{font-size:69.333333pt;}
.y0_c00155{bottom:0.000000pt;}
.y5a_c00155{bottom:91.666667pt;}
.y59_c00155{bottom:96.120000pt;}
.y58_c00155{bottom:97.386667pt;}
.y57_c00155{bottom:99.053333pt;}
.y56_c00155{bottom:113.453333pt;}
.y55_c00155{bottom:128.186667pt;}
.y54_c00155{bottom:133.253333pt;}
.y53_c00155{bottom:151.520000pt;}
.y52_c00155{bottom:170.720000pt;}
.y51_c00155{bottom:188.920000pt;}
.y50_c00155{bottom:191.853333pt;}
.y4f_c00155{bottom:192.453333pt;}
.y4e_c00155{bottom:193.720000pt;}
.y4d_c00155{bottom:204.333333pt;}
.y4c_c00155{bottom:205.000000pt;}
.y4b_c00155{bottom:206.920000pt;}
.y4a_c00155{bottom:209.386667pt;}
.y49_c00155{bottom:212.920000pt;}
.y48_c00155{bottom:223.853333pt;}
.y47_c00155{bottom:228.586667pt;}
.y46_c00155{bottom:246.586667pt;}
.y45_c00155{bottom:248.466667pt;}
.y44_c00155{bottom:249.133333pt;}
.y43_c00155{bottom:249.466667pt;}
.y42_c00155{bottom:250.386667pt;}
.y41_c00155{bottom:267.053333pt;}
.y40_c00155{bottom:285.333333pt;}
.y3f_c00155{bottom:303.853333pt;}
.y3e_c00155{bottom:306.720000pt;}
.y3d_c00155{bottom:307.053333pt;}
.y3c_c00155{bottom:325.253333pt;}
.y3b_c00155{bottom:342.520000pt;}
.y3a_c00155{bottom:362.386667pt;}
.y39_c00155{bottom:381.586667pt;}
.y38_c00155{bottom:401.120000pt;}
.y37_c00155{bottom:418.053333pt;}
.y36_c00155{bottom:419.333333pt;}
.y35_c00155{bottom:420.586667pt;}
.y34_c00155{bottom:420.920000pt;}
.y33_c00155{bottom:438.520000pt;}
.y32_c00155{bottom:439.453333pt;}
.y31_c00155{bottom:458.053333pt;}
.y30_c00155{bottom:458.386667pt;}
.y2f_c00155{bottom:475.333333pt;}
.y2e_c00155{bottom:476.666667pt;}
.y2d_c00155{bottom:477.253333pt;}
.y2c_c00155{bottom:477.333333pt;}
.y2b_c00155{bottom:495.853333pt;}
.y2a_c00155{bottom:515.386667pt;}
.y29_c00155{bottom:534.853333pt;}
.y28_c00155{bottom:554.120000pt;}
.y26_c00155{bottom:572.586667pt;}
.y27_c00155{bottom:573.586667pt;}
.y25_c00155{bottom:592.453333pt;}
.y23_c00155{bottom:610.053333pt;}
.y24_c00155{bottom:612.000000pt;}
.y22_c00155{bottom:628.666667pt;}
.y1f_c00155{bottom:646.920000pt;}
.y20_c00155{bottom:647.186667pt;}
.y21_c00155{bottom:650.066667pt;}
.y1b_c00155{bottom:665.786667pt;}
.y1c_c00155{bottom:666.066667pt;}
.y1d_c00155{bottom:668.920000pt;}
.y1e_c00155{bottom:669.253333pt;}
.y1a_c00155{bottom:684.000000pt;}
.y19_c00155{bottom:706.386667pt;}
.y16_c00155{bottom:725.000000pt;}
.y18_c00155{bottom:726.853333pt;}
.y17_c00155{bottom:727.186667pt;}
.y15_c00155{bottom:744.186667pt;}
.y14_c00155{bottom:763.333333pt;}
.y13_c00155{bottom:781.933333pt;}
.y12_c00155{bottom:800.520000pt;}
.y11_c00155{bottom:819.666667pt;}
.ye_c00155{bottom:832.800000pt;}
.yf_c00155{bottom:834.053333pt;}
.y10_c00155{bottom:840.186667pt;}
.yd_c00155{bottom:854.933333pt;}
.ya_c00155{bottom:869.266667pt;}
.yb_c00155{bottom:871.800000pt;}
.yc_c00155{bottom:877.933333pt;}
.y7_c00155{bottom:886.853333pt;}
.y8_c00155{bottom:889.133333pt;}
.y9_c00155{bottom:896.466667pt;}
.y6_c00155{bottom:913.466667pt;}
.y4_c00155{bottom:923.386667pt;}
.y5_c00155{bottom:932.666667pt;}
.y1_c00155{bottom:973.600000pt;}
.y3_c00155{bottom:982.186667pt;}
.y2_c00155{bottom:987.053333pt;}
.h2_c00155{height:52.343750pt;}
.h5_c00155{height:57.578125pt;}
.h1_c00155{height:62.812500pt;}
.h4_c00155{height:68.013021pt;}
.h3_c00155{height:69.875000pt;}
.h0_c00155{height:1044.000000pt;}
.w0_c00155{width:650.646400pt;}
.w1_c00155{width:650.666667pt;}
.x0_c00155{left:0.000000pt;}
.x31_c00155{left:51.502400pt;}
.x1b_c00155{left:53.435733pt;}
.x18_c00155{left:55.369067pt;}
.x11_c00155{left:56.302400pt;}
.xe_c00155{left:57.569067pt;}
.xa_c00155{left:58.835733pt;}
.x4_c00155{left:60.169067pt;}
.x1_c00155{left:77.769067pt;}
.x1d_c00155{left:80.302400pt;}
.x5_c00155{left:81.235733pt;}
.x19_c00155{left:82.235733pt;}
.x12_c00155{left:83.502400pt;}
.xb_c00155{left:85.102400pt;}
.x16_c00155{left:91.169067pt;}
.x2_c00155{left:101.102400pt;}
.x13_c00155{left:103.635733pt;}
.x28_c00155{left:105.902400pt;}
.x1e_c00155{left:107.169067pt;}
.xc_c00155{left:110.035733pt;}
.x24_c00155{left:120.969067pt;}
.x32_c00155{left:132.435733pt;}
.x6_c00155{left:139.835733pt;}
.x14_c00155{left:143.369067pt;}
.x27_c00155{left:146.569067pt;}
.x8_c00155{left:149.102400pt;}
.x7_c00155{left:151.969067pt;}
.x17_c00155{left:170.555733pt;}
.x9_c00155{left:171.502400pt;}
.x35_c00155{left:177.222400pt;}
.x21_c00155{left:185.222400pt;}
.x36_c00155{left:191.635733pt;}
.xd_c00155{left:192.635733pt;}
.x22_c00155{left:200.635733pt;}
.x29_c00155{left:201.569067pt;}
.x33_c00155{left:209.902400pt;}
.x2a_c00155{left:218.569067pt;}
.x1c_c00155{left:225.235733pt;}
.x1a_c00155{left:237.102400pt;}
.x23_c00155{left:240.635733pt;}
.x3_c00155{left:255.035733pt;}
.x37_c00155{left:264.302400pt;}
.x2d_c00155{left:283.835733pt;}
.x2b_c00155{left:311.369067pt;}
.x2e_c00155{left:317.102400pt;}
.x1f_c00155{left:398.702400pt;}
.x25_c00155{left:439.369067pt;}
.x26_c00155{left:491.169067pt;}
.x2c_c00155{left:514.235733pt;}
.x34_c00155{left:526.369067pt;}
.x2f_c00155{left:534.702400pt;}
.x15_c00155{left:535.635733pt;}
.xf_c00155{left:544.969067pt;}
.x30_c00155{left:550.369067pt;}
.x10_c00155{left:560.302400pt;}
.x20_c00155{left:570.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ce036c0087b706e113d3074.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00156;src:url('chunks/assets/font_7e88e6fe6a39df2785614eaa.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00156;src:url('chunks/assets/font_c7a024e66315ed2003a5e864.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00156;src:url('chunks/assets/font_6efc1d22ab0ff866b86c119e.woff2')format("woff");}.ff4_c00156{font-family:ff4_c00156;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m23_c00156{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m16_c00156{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8_c00156{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6_c00156{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m2_c00156{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md_c00156{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c00156{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb_c00156{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00156{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00156{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00156{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00156{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00156{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m19_c00156{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00156{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00156{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c00156{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c00156{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m0_c00156{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m11_c00156{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00156{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c00156{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00156{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00156{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m18_c00156{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c00156{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00156{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m21_c00156{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00156{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m20_c00156{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00156{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m14_c00156{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m22_c00156{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c00156{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00156{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00156{color:transparent;}
.fs0_c00156{font-size:54.000000px;}
.fs4_c00156{font-size:66.000000px;}
.fs1_c00156{font-size:72.000000px;}
.fs3_c00156{font-size:78.000000px;}
.fs2_c00156{font-size:84.000000px;}
.y0_c00156{bottom:0.000000px;}
.y48_c00156{bottom:63.210000px;}
.y46_c00156{bottom:85.875000px;}
.y47_c00156{bottom:87.285000px;}
.y44_c00156{bottom:129.750000px;}
.y45_c00156{bottom:130.500000px;}
.y41_c00156{bottom:151.035000px;}
.y42_c00156{bottom:153.885000px;}
.y43_c00156{bottom:154.260000px;}
.y40_c00156{bottom:171.885000px;}
.y3f_c00156{bottom:192.810000px;}
.y3d_c00156{bottom:213.285000px;}
.y3e_c00156{bottom:217.260000px;}
.y3c_c00156{bottom:234.210000px;}
.y3b_c00156{bottom:255.435000px;}
.y3a_c00156{bottom:277.035000px;}
.y39_c00156{bottom:298.275000px;}
.y38_c00156{bottom:319.875000px;}
.y37_c00156{bottom:341.085000px;}
.y36_c00156{bottom:362.685000px;}
.y35_c00156{bottom:383.910000px;}
.y34_c00156{bottom:405.210000px;}
.y33_c00156{bottom:427.125000px;}
.y31_c00156{bottom:448.710000px;}
.y32_c00156{bottom:449.085000px;}
.y2f_c00156{bottom:470.310000px;}
.y30_c00156{bottom:470.685000px;}
.y2e_c00156{bottom:492.285000px;}
.y2c_c00156{bottom:513.885000px;}
.y2d_c00156{bottom:514.260000px;}
.y2b_c00156{bottom:535.875000px;}
.y2a_c00156{bottom:557.760000px;}
.y29_c00156{bottom:579.060000px;}
.y28_c00156{bottom:601.410000px;}
.y27_c00156{bottom:622.560000px;}
.y26_c00156{bottom:643.875000px;}
.y25_c00156{bottom:665.460000px;}
.y24_c00156{bottom:666.135000px;}
.y23_c00156{bottom:688.125000px;}
.y22_c00156{bottom:708.660000px;}
.y21_c00156{bottom:709.335000px;}
.y20_c00156{bottom:709.710000px;}
.y1f_c00156{bottom:710.460000px;}
.y1e_c00156{bottom:732.450000px;}
.y1d_c00156{bottom:752.910000px;}
.y1c_c00156{bottom:774.510000px;}
.y1b_c00156{bottom:796.800000px;}
.y1a_c00156{bottom:818.460000px;}
.y19_c00156{bottom:840.435000px;}
.y18_c00156{bottom:862.050000px;}
.y17_c00156{bottom:883.650000px;}
.y16_c00156{bottom:904.500000px;}
.y14_c00156{bottom:905.175000px;}
.y15_c00156{bottom:905.250000px;}
.y13_c00156{bottom:924.300000px;}
.y12_c00156{bottom:925.710000px;}
.y11_c00156{bottom:926.400000px;}
.y10_c00156{bottom:948.435000px;}
.yf_c00156{bottom:967.500000px;}
.ye_c00156{bottom:970.335000px;}
.yd_c00156{bottom:989.085000px;}
.yb_c00156{bottom:989.775000px;}
.yc_c00156{bottom:989.835000px;}
.ya_c00156{bottom:990.150000px;}
.y9_c00156{bottom:990.900000px;}
.y7_c00156{bottom:991.560000px;}
.y8_c00156{bottom:991.650000px;}
.y6_c00156{bottom:993.060000px;}
.y5_c00156{bottom:1013.175000px;}
.y4_c00156{bottom:1035.525000px;}
.y3_c00156{bottom:1090.275000px;}
.y2_c00156{bottom:1094.625000px;}
.y1_c00156{bottom:1095.000000px;}
.h1_c00156{height:54.421875px;}
.h5_c00156{height:64.775391px;}
.h7_c00156{height:66.515625px;}
.h2_c00156{height:70.664062px;}
.h6_c00156{height:76.514648px;}
.h4_c00156{height:78.609375px;}
.h3_c00156{height:82.400391px;}
.h0_c00156{height:1174.500000px;}
.w0_c00156{width:731.977200px;}
.w1_c00156{width:732.000000px;}
.x0_c00156{left:0.000000px;}
.x1d_c00156{left:44.290200px;}
.x5_c00156{left:46.090200px;}
.x4_c00156{left:47.515200px;}
.x21_c00156{left:48.940200px;}
.x22_c00156{left:50.365200px;}
.x27_c00156{left:66.565200px;}
.x26_c00156{left:75.550200px;}
.x13_c00156{left:77.740200px;}
.xe_c00156{left:80.290200px;}
.x23_c00156{left:82.765200px;}
.x18_c00156{left:83.890200px;}
.x14_c00156{left:117.340200px;}
.x6_c00156{left:156.190200px;}
.x28_c00156{left:202.990200px;}
.x11_c00156{left:219.565200px;}
.x12_c00156{left:236.140200px;}
.x7_c00156{left:239.740200px;}
.x1e_c00156{left:246.940200px;}
.x8_c00156{left:255.565200px;}
.x1_c00156{left:263.890200px;}
.x19_c00156{left:271.090200px;}
.x1f_c00156{left:275.740200px;}
.x20_c00156{left:287.290200px;}
.x1c_c00156{left:315.340200px;}
.x15_c00156{left:318.940200px;}
.x1a_c00156{left:357.490200px;}
.x1b_c00156{left:363.940200px;}
.x9_c00156{left:403.150200px;}
.xa_c00156{left:419.365200px;}
.x16_c00156{left:428.365200px;}
.x17_c00156{left:444.190200px;}
.x2_c00156{left:458.965200px;}
.xf_c00156{left:471.940200px;}
.xd_c00156{left:482.740200px;}
.x10_c00156{left:493.165200px;}
.xb_c00156{left:512.965200px;}
.xc_c00156{left:529.165200px;}
.x29_c00156{left:582.115200px;}
.x24_c00156{left:595.390200px;}
.x25_c00156{left:620.590200px;}
.x3_c00156{left:621.715200px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls0_c00156{letter-spacing:0.000000pt;}
.ws0_c00156{word-spacing:0.000000pt;}
.fs0_c00156{font-size:48.000000pt;}
.fs4_c00156{font-size:58.666667pt;}
.fs1_c00156{font-size:64.000000pt;}
.fs3_c00156{font-size:69.333333pt;}
.fs2_c00156{font-size:74.666667pt;}
.y0_c00156{bottom:0.000000pt;}
.y48_c00156{bottom:56.186667pt;}
.y46_c00156{bottom:76.333333pt;}
.y47_c00156{bottom:77.586667pt;}
.y44_c00156{bottom:115.333333pt;}
.y45_c00156{bottom:116.000000pt;}
.y41_c00156{bottom:134.253333pt;}
.y42_c00156{bottom:136.786667pt;}
.y43_c00156{bottom:137.120000pt;}
.y40_c00156{bottom:152.786667pt;}
.y3f_c00156{bottom:171.386667pt;}
.y3d_c00156{bottom:189.586667pt;}
.y3e_c00156{bottom:193.120000pt;}
.y3c_c00156{bottom:208.186667pt;}
.y3b_c00156{bottom:227.053333pt;}
.y3a_c00156{bottom:246.253333pt;}
.y39_c00156{bottom:265.133333pt;}
.y38_c00156{bottom:284.333333pt;}
.y37_c00156{bottom:303.186667pt;}
.y36_c00156{bottom:322.386667pt;}
.y35_c00156{bottom:341.253333pt;}
.y34_c00156{bottom:360.186667pt;}
.y33_c00156{bottom:379.666667pt;}
.y31_c00156{bottom:398.853333pt;}
.y32_c00156{bottom:399.186667pt;}
.y2f_c00156{bottom:418.053333pt;}
.y30_c00156{bottom:418.386667pt;}
.y2e_c00156{bottom:437.586667pt;}
.y2c_c00156{bottom:456.786667pt;}
.y2d_c00156{bottom:457.120000pt;}
.y2b_c00156{bottom:476.333333pt;}
.y2a_c00156{bottom:495.786667pt;}
.y29_c00156{bottom:514.720000pt;}
.y28_c00156{bottom:534.586667pt;}
.y27_c00156{bottom:553.386667pt;}
.y26_c00156{bottom:572.333333pt;}
.y25_c00156{bottom:591.520000pt;}
.y24_c00156{bottom:592.120000pt;}
.y23_c00156{bottom:611.666667pt;}
.y22_c00156{bottom:629.920000pt;}
.y21_c00156{bottom:630.520000pt;}
.y20_c00156{bottom:630.853333pt;}
.y1f_c00156{bottom:631.520000pt;}
.y1e_c00156{bottom:651.066667pt;}
.y1d_c00156{bottom:669.253333pt;}
.y1c_c00156{bottom:688.453333pt;}
.y1b_c00156{bottom:708.266667pt;}
.y1a_c00156{bottom:727.520000pt;}
.y19_c00156{bottom:747.053333pt;}
.y18_c00156{bottom:766.266667pt;}
.y17_c00156{bottom:785.466667pt;}
.y16_c00156{bottom:804.000000pt;}
.y14_c00156{bottom:804.600000pt;}
.y15_c00156{bottom:804.666667pt;}
.y13_c00156{bottom:821.600000pt;}
.y12_c00156{bottom:822.853333pt;}
.y11_c00156{bottom:823.466667pt;}
.y10_c00156{bottom:843.053333pt;}
.yf_c00156{bottom:860.000000pt;}
.ye_c00156{bottom:862.520000pt;}
.yd_c00156{bottom:879.186667pt;}
.yb_c00156{bottom:879.800000pt;}
.yc_c00156{bottom:879.853333pt;}
.ya_c00156{bottom:880.133333pt;}
.y9_c00156{bottom:880.800000pt;}
.y7_c00156{bottom:881.386667pt;}
.y8_c00156{bottom:881.466667pt;}
.y6_c00156{bottom:882.720000pt;}
.y5_c00156{bottom:900.600000pt;}
.y4_c00156{bottom:920.466667pt;}
.y3_c00156{bottom:969.133333pt;}
.y2_c00156{bottom:973.000000pt;}
.y1_c00156{bottom:973.333333pt;}
.h1_c00156{height:48.375000pt;}
.h5_c00156{height:57.578125pt;}
.h7_c00156{height:59.125000pt;}
.h2_c00156{height:62.812500pt;}
.h6_c00156{height:68.013021pt;}
.h4_c00156{height:69.875000pt;}
.h3_c00156{height:73.244792pt;}
.h0_c00156{height:1044.000000pt;}
.w0_c00156{width:650.646400pt;}
.w1_c00156{width:650.666667pt;}
.x0_c00156{left:0.000000pt;}
.x1d_c00156{left:39.369067pt;}
.x5_c00156{left:40.969067pt;}
.x4_c00156{left:42.235733pt;}
.x21_c00156{left:43.502400pt;}
.x22_c00156{left:44.769067pt;}
.x27_c00156{left:59.169067pt;}
.x26_c00156{left:67.155733pt;}
.x13_c00156{left:69.102400pt;}
.xe_c00156{left:71.369067pt;}
.x23_c00156{left:73.569067pt;}
.x18_c00156{left:74.569067pt;}
.x14_c00156{left:104.302400pt;}
.x6_c00156{left:138.835733pt;}
.x28_c00156{left:180.435733pt;}
.x11_c00156{left:195.169067pt;}
.x12_c00156{left:209.902400pt;}
.x7_c00156{left:213.102400pt;}
.x1e_c00156{left:219.502400pt;}
.x8_c00156{left:227.169067pt;}
.x1_c00156{left:234.569067pt;}
.x19_c00156{left:240.969067pt;}
.x1f_c00156{left:245.102400pt;}
.x20_c00156{left:255.369067pt;}
.x1c_c00156{left:280.302400pt;}
.x15_c00156{left:283.502400pt;}
.x1a_c00156{left:317.769067pt;}
.x1b_c00156{left:323.502400pt;}
.x9_c00156{left:358.355733pt;}
.xa_c00156{left:372.769067pt;}
.x16_c00156{left:380.769067pt;}
.x17_c00156{left:394.835733pt;}
.x2_c00156{left:407.969067pt;}
.xf_c00156{left:419.502400pt;}
.xd_c00156{left:429.102400pt;}
.x10_c00156{left:438.369067pt;}
.xb_c00156{left:455.969067pt;}
.xc_c00156{left:470.369067pt;}
.x29_c00156{left:517.435733pt;}
.x24_c00156{left:529.235733pt;}
.x25_c00156{left:551.635733pt;}
.x3_c00156{left:552.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_835c4aeea8b9801afba11c04.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00157;src:url('chunks/assets/font_6a2037a30efc2c5064580e5a.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00157;src:url('chunks/assets/font_69cc897137d83120332fbeb3.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00157;src:url('chunks/assets/font_22d9846a99594e6c98c6922d.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me_c00157{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m10_c00157{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m12_c00157{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1_c00157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m15_c00157{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m21_c00157{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m24_c00157{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf_c00157{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc_c00157{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c00157{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c00157{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00157{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00157{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00157{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c00157{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c00157{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16_c00157{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c00157{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00157{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c00157{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c00157{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2_c00157{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19_c00157{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00157{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c00157{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m17_c00157{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c00157{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00157{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00157{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00157{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c00157{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00157{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00157{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m22_c00157{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m23_c00157{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.md_c00157{transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);}
.m9_c00157{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.v1_c00157{vertical-align:8.640000px;}
.ls1_c00157{letter-spacing:0.000000px;}
.ls0_c00157{letter-spacing:1.011000px;}
.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;}
}
.ws0_c00157{word-spacing:0.000000px;}
.fc0_c00157{color:transparent;}
.fs0_c00157{font-size:54.000000px;}
.fs2_c00157{font-size:66.000000px;}
.fs1_c00157{font-size:72.000000px;}
.fs3_c00157{font-size:78.000000px;}
.fs4_c00157{font-size:84.000000px;}
.y0_c00157{bottom:0.000000px;}
.y56_c00157{bottom:98.760000px;}
.y55_c00157{bottom:104.535000px;}
.y54_c00157{bottom:105.285000px;}
.y53_c00157{bottom:108.210000px;}
.y52_c00157{bottom:115.035000px;}
.y51_c00157{bottom:126.585000px;}
.y50_c00157{bottom:143.460000px;}
.y4f_c00157{bottom:156.375000px;}
.y4e_c00157{bottom:156.435000px;}
.y4d_c00157{bottom:157.125000px;}
.y4c_c00157{bottom:157.875000px;}
.y4b_c00157{bottom:159.285000px;}
.y4a_c00157{bottom:160.035000px;}
.y49_c00157{bottom:164.310000px;}
.y48_c00157{bottom:221.160000px;}
.y47_c00157{bottom:222.285000px;}
.y46_c00157{bottom:226.260000px;}
.y45_c00157{bottom:228.750000px;}
.y44_c00157{bottom:244.635000px;}
.y43_c00157{bottom:247.875000px;}
.y42_c00157{bottom:248.535000px;}
.y41_c00157{bottom:249.660000px;}
.y40_c00157{bottom:268.035000px;}
.y3f_c00157{bottom:272.310000px;}
.y3e_c00157{bottom:285.285000px;}
.y3d_c00157{bottom:289.275000px;}
.y3c_c00157{bottom:293.625000px;}
.y3b_c00157{bottom:306.900000px;}
.y3a_c00157{bottom:310.185000px;}
.y39_c00157{bottom:328.500000px;}
.y38_c00157{bottom:331.410000px;}
.y37_c00157{bottom:352.650000px;}
.y36_c00157{bottom:376.410000px;}
.y35_c00157{bottom:396.585000px;}
.y34_c00157{bottom:417.810000px;}
.y33_c00157{bottom:440.085000px;}
.y32_c00157{bottom:461.685000px;}
.y31_c00157{bottom:482.910000px;}
.y30_c00157{bottom:483.285000px;}
.y2f_c00157{bottom:483.660000px;}
.y2e_c00157{bottom:484.035000px;}
.y2d_c00157{bottom:504.510000px;}
.y2b_c00157{bottom:505.185000px;}
.y2c_c00157{bottom:505.260000px;}
.y2a_c00157{bottom:505.635000px;}
.y29_c00157{bottom:526.500000px;}
.y28_c00157{bottom:548.085000px;}
.y25_c00157{bottom:652.500000px;}
.y26_c00157{bottom:653.250000px;}
.y27_c00157{bottom:655.410000px;}
.y20_c00157{bottom:668.685000px;}
.y21_c00157{bottom:669.435000px;}
.y22_c00157{bottom:669.810000px;}
.y23_c00157{bottom:670.125000px;}
.y24_c00157{bottom:672.660000px;}
.y1e_c00157{bottom:685.635000px;}
.y1f_c00157{bottom:686.310000px;}
.y1d_c00157{bottom:698.250000px;}
.y1a_c00157{bottom:702.510000px;}
.y1b_c00157{bottom:703.635000px;}
.y1c_c00157{bottom:705.435000px;}
.y17_c00157{bottom:719.460000px;}
.y18_c00157{bottom:720.135000px;}
.y19_c00157{bottom:722.325000px;}
.y15_c00157{bottom:732.075000px;}
.y16_c00157{bottom:733.500000px;}
.y10_c00157{bottom:737.085000px;}
.y11_c00157{bottom:739.260000px;}
.y12_c00157{bottom:740.325000px;}
.y14_c00157{bottom:740.700000px;}
.y13_c00157{bottom:741.075000px;}
.yd_c00157{bottom:793.935000px;}
.yf_c00157{bottom:798.300000px;}
.ye_c00157{bottom:806.775000px;}
.yc_c00157{bottom:838.935000px;}
.yb_c00157{bottom:866.685000px;}
.ya_c00157{bottom:887.925000px;}
.y9_c00157{bottom:909.210000px;}
.y8_c00157{bottom:930.060000px;}
.y7_c00157{bottom:951.300000px;}
.y6_c00157{bottom:972.900000px;}
.y5_c00157{bottom:994.500000px;}
.y4_c00157{bottom:1015.425000px;}
.y3_c00157{bottom:1035.525000px;}
.y2_c00157{bottom:1082.685000px;}
.y1_c00157{bottom:1093.500000px;}
.h1_c00157{height:52.998047px;}
.h3_c00157{height:64.775391px;}
.h6_c00157{height:70.628906px;}
.h2_c00157{height:70.664062px;}
.h4_c00157{height:72.562500px;}
.h5_c00157{height:73.415391px;}
.h7_c00157{height:76.514648px;}
.h8_c00157{height:82.400391px;}
.h0_c00157{height:1174.500000px;}
.w0_c00157{width:731.977200px;}
.w1_c00157{width:732.000000px;}
.x0_c00157{left:0.000000px;}
.x2a_c00157{left:66.940200px;}
.x20_c00157{left:69.115200px;}
.x8_c00157{left:70.165200px;}
.x5_c00157{left:73.090200px;}
.x4_c00157{left:74.515200px;}
.x3_c00157{left:75.550200px;}
.xf_c00157{left:86.365200px;}
.x2_c00157{left:95.365200px;}
.x25_c00157{left:98.965200px;}
.x1a_c00157{left:100.090200px;}
.x23_c00157{left:113.365200px;}
.x12_c00157{left:116.590200px;}
.x14_c00157{left:136.390200px;}
.x10_c00157{left:144.715200px;}
.x28_c00157{left:165.190200px;}
.x15_c00157{left:179.590200px;}
.x9_c00157{left:211.315200px;}
.x16_c00157{left:220.690200px;}
.x18_c00157{left:227.890200px;}
.x26_c00157{left:232.915200px;}
.x13_c00157{left:248.365200px;}
.x31_c00157{left:273.565200px;}
.x1c_c00157{left:280.765200px;}
.x11_c00157{left:286.915200px;}
.x1b_c00157{left:290.140200px;}
.x27_c00157{left:291.940200px;}
.x1_c00157{left:294.115200px;}
.x19_c00157{left:304.540200px;}
.xa_c00157{left:323.965200px;}
.x1d_c00157{left:329.365200px;}
.xc_c00157{left:330.790200px;}
.x6_c00157{left:336.565200px;}
.x1e_c00157{left:344.890200px;}
.xb_c00157{left:357.790200px;}
.x17_c00157{left:358.915200px;}
.xd_c00157{left:363.940200px;}
.xe_c00157{left:375.490200px;}
.x2b_c00157{left:402.490200px;}
.x7_c00157{left:414.715200px;}
.x1f_c00157{left:424.390200px;}
.x2c_c00157{left:431.275200px;}
.x2d_c00157{left:464.365200px;}
.x29_c00157{left:485.290200px;}
.x32_c00157{left:517.315200px;}
.x33_c00157{left:550.765200px;}
.x2e_c00157{left:557.290200px;}
.x2f_c00157{left:576.715200px;}
.x24_c00157{left:607.690200px;}
.x30_c00157{left:642.940200px;}
.x22_c00157{left:658.090200px;}
.x21_c00157{left:670.990200px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.v1_c00157{vertical-align:7.680000pt;}
.ls1_c00157{letter-spacing:0.000000pt;}
.ls0_c00157{letter-spacing:0.898667pt;}
.ws0_c00157{word-spacing:0.000000pt;}
.fs0_c00157{font-size:48.000000pt;}
.fs2_c00157{font-size:58.666667pt;}
.fs1_c00157{font-size:64.000000pt;}
.fs3_c00157{font-size:69.333333pt;}
.fs4_c00157{font-size:74.666667pt;}
.y0_c00157{bottom:0.000000pt;}
.y56_c00157{bottom:87.786667pt;}
.y55_c00157{bottom:92.920000pt;}
.y54_c00157{bottom:93.586667pt;}
.y53_c00157{bottom:96.186667pt;}
.y52_c00157{bottom:102.253333pt;}
.y51_c00157{bottom:112.520000pt;}
.y50_c00157{bottom:127.520000pt;}
.y4f_c00157{bottom:139.000000pt;}
.y4e_c00157{bottom:139.053333pt;}
.y4d_c00157{bottom:139.666667pt;}
.y4c_c00157{bottom:140.333333pt;}
.y4b_c00157{bottom:141.586667pt;}
.y4a_c00157{bottom:142.253333pt;}
.y49_c00157{bottom:146.053333pt;}
.y48_c00157{bottom:196.586667pt;}
.y47_c00157{bottom:197.586667pt;}
.y46_c00157{bottom:201.120000pt;}
.y45_c00157{bottom:203.333333pt;}
.y44_c00157{bottom:217.453333pt;}
.y43_c00157{bottom:220.333333pt;}
.y42_c00157{bottom:220.920000pt;}
.y41_c00157{bottom:221.920000pt;}
.y40_c00157{bottom:238.253333pt;}
.y3f_c00157{bottom:242.053333pt;}
.y3e_c00157{bottom:253.586667pt;}
.y3d_c00157{bottom:257.133333pt;}
.y3c_c00157{bottom:261.000000pt;}
.y3b_c00157{bottom:272.800000pt;}
.y3a_c00157{bottom:275.720000pt;}
.y39_c00157{bottom:292.000000pt;}
.y38_c00157{bottom:294.586667pt;}
.y37_c00157{bottom:313.466667pt;}
.y36_c00157{bottom:334.586667pt;}
.y35_c00157{bottom:352.520000pt;}
.y34_c00157{bottom:371.386667pt;}
.y33_c00157{bottom:391.186667pt;}
.y32_c00157{bottom:410.386667pt;}
.y31_c00157{bottom:429.253333pt;}
.y30_c00157{bottom:429.586667pt;}
.y2f_c00157{bottom:429.920000pt;}
.y2e_c00157{bottom:430.253333pt;}
.y2d_c00157{bottom:448.453333pt;}
.y2b_c00157{bottom:449.053333pt;}
.y2c_c00157{bottom:449.120000pt;}
.y2a_c00157{bottom:449.453333pt;}
.y29_c00157{bottom:468.000000pt;}
.y28_c00157{bottom:487.186667pt;}
.y25_c00157{bottom:580.000000pt;}
.y26_c00157{bottom:580.666667pt;}
.y27_c00157{bottom:582.586667pt;}
.y20_c00157{bottom:594.386667pt;}
.y21_c00157{bottom:595.053333pt;}
.y22_c00157{bottom:595.386667pt;}
.y23_c00157{bottom:595.666667pt;}
.y24_c00157{bottom:597.920000pt;}
.y1e_c00157{bottom:609.453333pt;}
.y1f_c00157{bottom:610.053333pt;}
.y1d_c00157{bottom:620.666667pt;}
.y1a_c00157{bottom:624.453333pt;}
.y1b_c00157{bottom:625.453333pt;}
.y1c_c00157{bottom:627.053333pt;}
.y17_c00157{bottom:639.520000pt;}
.y18_c00157{bottom:640.120000pt;}
.y19_c00157{bottom:642.066667pt;}
.y15_c00157{bottom:650.733333pt;}
.y16_c00157{bottom:652.000000pt;}
.y10_c00157{bottom:655.186667pt;}
.y11_c00157{bottom:657.120000pt;}
.y12_c00157{bottom:658.066667pt;}
.y14_c00157{bottom:658.400000pt;}
.y13_c00157{bottom:658.733333pt;}
.yd_c00157{bottom:705.720000pt;}
.yf_c00157{bottom:709.600000pt;}
.ye_c00157{bottom:717.133333pt;}
.yc_c00157{bottom:745.720000pt;}
.yb_c00157{bottom:770.386667pt;}
.ya_c00157{bottom:789.266667pt;}
.y9_c00157{bottom:808.186667pt;}
.y8_c00157{bottom:826.720000pt;}
.y7_c00157{bottom:845.600000pt;}
.y6_c00157{bottom:864.800000pt;}
.y5_c00157{bottom:884.000000pt;}
.y4_c00157{bottom:902.600000pt;}
.y3_c00157{bottom:920.466667pt;}
.y2_c00157{bottom:962.386667pt;}
.y1_c00157{bottom:972.000000pt;}
.h1_c00157{height:47.109375pt;}
.h3_c00157{height:57.578125pt;}
.h6_c00157{height:62.781250pt;}
.h2_c00157{height:62.812500pt;}
.h4_c00157{height:64.500000pt;}
.h5_c00157{height:65.258125pt;}
.h7_c00157{height:68.013021pt;}
.h8_c00157{height:73.244792pt;}
.h0_c00157{height:1044.000000pt;}
.w0_c00157{width:650.646400pt;}
.w1_c00157{width:650.666667pt;}
.x0_c00157{left:0.000000pt;}
.x2a_c00157{left:59.502400pt;}
.x20_c00157{left:61.435733pt;}
.x8_c00157{left:62.369067pt;}
.x5_c00157{left:64.969067pt;}
.x4_c00157{left:66.235733pt;}
.x3_c00157{left:67.155733pt;}
.xf_c00157{left:76.769067pt;}
.x2_c00157{left:84.769067pt;}
.x25_c00157{left:87.969067pt;}
.x1a_c00157{left:88.969067pt;}
.x23_c00157{left:100.769067pt;}
.x12_c00157{left:103.635733pt;}
.x14_c00157{left:121.235733pt;}
.x10_c00157{left:128.635733pt;}
.x28_c00157{left:146.835733pt;}
.x15_c00157{left:159.635733pt;}
.x9_c00157{left:187.835733pt;}
.x16_c00157{left:196.169067pt;}
.x18_c00157{left:202.569067pt;}
.x26_c00157{left:207.035733pt;}
.x13_c00157{left:220.769067pt;}
.x31_c00157{left:243.169067pt;}
.x1c_c00157{left:249.569067pt;}
.x11_c00157{left:255.035733pt;}
.x1b_c00157{left:257.902400pt;}
.x27_c00157{left:259.502400pt;}
.x1_c00157{left:261.435733pt;}
.x19_c00157{left:270.702400pt;}
.xa_c00157{left:287.969067pt;}
.x1d_c00157{left:292.769067pt;}
.xc_c00157{left:294.035733pt;}
.x6_c00157{left:299.169067pt;}
.x1e_c00157{left:306.569067pt;}
.xb_c00157{left:318.035733pt;}
.x17_c00157{left:319.035733pt;}
.xd_c00157{left:323.502400pt;}
.xe_c00157{left:333.769067pt;}
.x2b_c00157{left:357.769067pt;}
.x7_c00157{left:368.635733pt;}
.x1f_c00157{left:377.235733pt;}
.x2c_c00157{left:383.355733pt;}
.x2d_c00157{left:412.769067pt;}
.x29_c00157{left:431.369067pt;}
.x32_c00157{left:459.835733pt;}
.x33_c00157{left:489.569067pt;}
.x2e_c00157{left:495.369067pt;}
.x2f_c00157{left:512.635733pt;}
.x24_c00157{left:540.169067pt;}
.x30_c00157{left:571.502400pt;}
.x22_c00157{left:584.969067pt;}
.x21_c00157{left:596.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_269e3eea625b86d3c9de78ec.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00158;src:url('chunks/assets/font_cfb4327c1654ab71e95693c1.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00158;src:url('chunks/assets/font_1157b1430d5a7427ad90e768.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00158;src:url('chunks/assets/font_76c374437d8906af0e494ffc.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c00158{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m16_c00158{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2_c00158{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10_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);}
.m14_c00158{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m18_c00158{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00158{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m0_c00158{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m19_c00158{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c00158{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13_c00158{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00158{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7_c00158{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me_c00158{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00158{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00158{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00158{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00158{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00158{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00158{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c00158{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c00158{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00158{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00158{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c00158{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00158{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.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:0.000000px;}
.fc0_c00158{color:transparent;}
.fs0_c00158{font-size:60.000000px;}
.fs4_c00158{font-size:66.000000px;}
.fs1_c00158{font-size:72.000000px;}
.fs3_c00158{font-size:78.000000px;}
.fs2_c00158{font-size:84.000000px;}
.fs5_c00158{font-size:90.000000px;}
.y0_c00158{bottom:0.000000px;}
.y3e_c00158{bottom:71.085000px;}
.y3f_c00158{bottom:71.460000px;}
.y40_c00158{bottom:72.510000px;}
.y41_c00158{bottom:74.685000px;}
.y3c_c00158{bottom:93.810000px;}
.y3d_c00158{bottom:96.285000px;}
.y3a_c00158{bottom:113.910000px;}
.y3b_c00158{bottom:115.335000px;}
.y39_c00158{bottom:135.210000px;}
.y38_c00158{bottom:156.810000px;}
.y35_c00158{bottom:177.000000px;}
.y36_c00158{bottom:178.710000px;}
.y37_c00158{bottom:180.135000px;}
.y33_c00158{bottom:198.135000px;}
.y34_c00158{bottom:201.060000px;}
.y32_c00158{bottom:219.750000px;}
.y30_c00158{bottom:239.910000px;}
.y31_c00158{bottom:241.035000px;}
.y2f_c00158{bottom:261.900000px;}
.y2e_c00158{bottom:283.500000px;}
.y2d_c00158{bottom:304.710000px;}
.y2c_c00158{bottom:326.310000px;}
.y2b_c00158{bottom:347.535000px;}
.y2a_c00158{bottom:368.835000px;}
.y29_c00158{bottom:390.435000px;}
.y28_c00158{bottom:412.035000px;}
.y27_c00158{bottom:433.560000px;}
.y25_c00158{bottom:454.125000px;}
.y26_c00158{bottom:455.160000px;}
.y24_c00158{bottom:476.835000px;}
.y23_c00158{bottom:498.435000px;}
.y22_c00158{bottom:520.035000px;}
.y20_c00158{bottom:520.335000px;}
.y21_c00158{bottom:520.710000px;}
.y1f_c00158{bottom:542.310000px;}
.y1e_c00158{bottom:563.625000px;}
.y1d_c00158{bottom:585.210000px;}
.y1c_c00158{bottom:607.125000px;}
.y1b_c00158{bottom:629.085000px;}
.y1a_c00158{bottom:629.460000px;}
.y19_c00158{bottom:649.260000px;}
.y18_c00158{bottom:650.310000px;}
.y17_c00158{bottom:650.685000px;}
.y16_c00158{bottom:651.060000px;}
.y15_c00158{bottom:672.285000px;}
.y14_c00158{bottom:694.185000px;}
.y13_c00158{bottom:715.500000px;}
.y12_c00158{bottom:737.760000px;}
.y11_c00158{bottom:759.450000px;}
.y10_c00158{bottom:780.960000px;}
.yf_c00158{bottom:803.310000px;}
.ye_c00158{bottom:825.300000px;}
.yd_c00158{bottom:847.560000px;}
.yc_c00158{bottom:868.125000px;}
.yb_c00158{bottom:889.335000px;}
.ya_c00158{bottom:890.085000px;}
.y9_c00158{bottom:910.935000px;}
.y8_c00158{bottom:932.625000px;}
.y7_c00158{bottom:954.525000px;}
.y6_c00158{bottom:975.435000px;}
.y5_c00158{bottom:997.050000px;}
.y4_c00158{bottom:1019.310000px;}
.y3_c00158{bottom:1073.400000px;}
.y2_c00158{bottom:1077.675000px;}
.y1_c00158{bottom:1079.085000px;}
.h1_c00158{height:58.886719px;}
.h5_c00158{height:64.775391px;}
.h2_c00158{height:70.664062px;}
.h4_c00158{height:78.609375px;}
.h3_c00158{height:82.400391px;}
.h6_c00158{height:88.330078px;}
.h0_c00158{height:1174.500000px;}
.w0_c00158{width:731.977200px;}
.w1_c00158{width:732.000000px;}
.x0_c00158{left:0.000000px;}
.x4_c00158{left:45.715200px;}
.x5_c00158{left:47.515200px;}
.x8_c00158{left:48.565200px;}
.xc_c00158{left:49.990200px;}
.xf_c00158{left:51.490200px;}
.x14_c00158{left:52.540200px;}
.x16_c00158{left:53.965200px;}
.x18_c00158{left:55.390200px;}
.x1b_c00158{left:56.515200px;}
.x1c_c00158{left:57.565200px;}
.x21_c00158{left:59.365200px;}
.x6_c00158{left:80.290200px;}
.xe_c00158{left:82.390200px;}
.x10_c00158{left:83.890200px;}
.x15_c00158{left:87.115200px;}
.x19_c00158{left:88.165200px;}
.x1f_c00158{left:90.715200px;}
.x20_c00158{left:122.365200px;}
.x11_c00158{left:169.165200px;}
.x13_c00158{left:209.890200px;}
.x9_c00158{left:219.940200px;}
.xd_c00158{left:232.165200px;}
.x7_c00158{left:277.915200px;}
.x1a_c00158{left:282.565200px;}
.x1_c00158{left:287.290200px;}
.x12_c00158{left:301.990200px;}
.x17_c00158{left:328.690200px;}
.x23_c00158{left:333.715200px;}
.xa_c00158{left:380.890200px;}
.xb_c00158{left:400.315200px;}
.x24_c00158{left:420.115200px;}
.x25_c00158{left:428.740200px;}
.x2_c00158{left:456.115200px;}
.x1e_c00158{left:555.790200px;}
.x1d_c00158{left:557.965200px;}
.x3_c00158{left:619.165200px;}
.x26_c00158{left:627.790200px;}
.x22_c00158{left:638.590200px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls0_c00158{letter-spacing:0.000000pt;}
.ws0_c00158{word-spacing:0.000000pt;}
.fs0_c00158{font-size:53.333333pt;}
.fs4_c00158{font-size:58.666667pt;}
.fs1_c00158{font-size:64.000000pt;}
.fs3_c00158{font-size:69.333333pt;}
.fs2_c00158{font-size:74.666667pt;}
.fs5_c00158{font-size:80.000000pt;}
.y0_c00158{bottom:0.000000pt;}
.y3e_c00158{bottom:63.186667pt;}
.y3f_c00158{bottom:63.520000pt;}
.y40_c00158{bottom:64.453333pt;}
.y41_c00158{bottom:66.386667pt;}
.y3c_c00158{bottom:83.386667pt;}
.y3d_c00158{bottom:85.586667pt;}
.y3a_c00158{bottom:101.253333pt;}
.y3b_c00158{bottom:102.520000pt;}
.y39_c00158{bottom:120.186667pt;}
.y38_c00158{bottom:139.386667pt;}
.y35_c00158{bottom:157.333333pt;}
.y36_c00158{bottom:158.853333pt;}
.y37_c00158{bottom:160.120000pt;}
.y33_c00158{bottom:176.120000pt;}
.y34_c00158{bottom:178.720000pt;}
.y32_c00158{bottom:195.333333pt;}
.y30_c00158{bottom:213.253333pt;}
.y31_c00158{bottom:214.253333pt;}
.y2f_c00158{bottom:232.800000pt;}
.y2e_c00158{bottom:252.000000pt;}
.y2d_c00158{bottom:270.853333pt;}
.y2c_c00158{bottom:290.053333pt;}
.y2b_c00158{bottom:308.920000pt;}
.y2a_c00158{bottom:327.853333pt;}
.y29_c00158{bottom:347.053333pt;}
.y28_c00158{bottom:366.253333pt;}
.y27_c00158{bottom:385.386667pt;}
.y25_c00158{bottom:403.666667pt;}
.y26_c00158{bottom:404.586667pt;}
.y24_c00158{bottom:423.853333pt;}
.y23_c00158{bottom:443.053333pt;}
.y22_c00158{bottom:462.253333pt;}
.y20_c00158{bottom:462.520000pt;}
.y21_c00158{bottom:462.853333pt;}
.y1f_c00158{bottom:482.053333pt;}
.y1e_c00158{bottom:501.000000pt;}
.y1d_c00158{bottom:520.186667pt;}
.y1c_c00158{bottom:539.666667pt;}
.y1b_c00158{bottom:559.186667pt;}
.y1a_c00158{bottom:559.520000pt;}
.y19_c00158{bottom:577.120000pt;}
.y18_c00158{bottom:578.053333pt;}
.y17_c00158{bottom:578.386667pt;}
.y16_c00158{bottom:578.720000pt;}
.y15_c00158{bottom:597.586667pt;}
.y14_c00158{bottom:617.053333pt;}
.y13_c00158{bottom:636.000000pt;}
.y12_c00158{bottom:655.786667pt;}
.y11_c00158{bottom:675.066667pt;}
.y10_c00158{bottom:694.186667pt;}
.yf_c00158{bottom:714.053333pt;}
.ye_c00158{bottom:733.600000pt;}
.yd_c00158{bottom:753.386667pt;}
.yc_c00158{bottom:771.666667pt;}
.yb_c00158{bottom:790.520000pt;}
.ya_c00158{bottom:791.186667pt;}
.y9_c00158{bottom:809.720000pt;}
.y8_c00158{bottom:829.000000pt;}
.y7_c00158{bottom:848.466667pt;}
.y6_c00158{bottom:867.053333pt;}
.y5_c00158{bottom:886.266667pt;}
.y4_c00158{bottom:906.053333pt;}
.y3_c00158{bottom:954.133333pt;}
.y2_c00158{bottom:957.933333pt;}
.y1_c00158{bottom:959.186667pt;}
.h1_c00158{height:52.343750pt;}
.h5_c00158{height:57.578125pt;}
.h2_c00158{height:62.812500pt;}
.h4_c00158{height:69.875000pt;}
.h3_c00158{height:73.244792pt;}
.h6_c00158{height:78.515625pt;}
.h0_c00158{height:1044.000000pt;}
.w0_c00158{width:650.646400pt;}
.w1_c00158{width:650.666667pt;}
.x0_c00158{left:0.000000pt;}
.x4_c00158{left:40.635733pt;}
.x5_c00158{left:42.235733pt;}
.x8_c00158{left:43.169067pt;}
.xc_c00158{left:44.435733pt;}
.xf_c00158{left:45.769067pt;}
.x14_c00158{left:46.702400pt;}
.x16_c00158{left:47.969067pt;}
.x18_c00158{left:49.235733pt;}
.x1b_c00158{left:50.235733pt;}
.x1c_c00158{left:51.169067pt;}
.x21_c00158{left:52.769067pt;}
.x6_c00158{left:71.369067pt;}
.xe_c00158{left:73.235733pt;}
.x10_c00158{left:74.569067pt;}
.x15_c00158{left:77.435733pt;}
.x19_c00158{left:78.369067pt;}
.x1f_c00158{left:80.635733pt;}
.x20_c00158{left:108.769067pt;}
.x11_c00158{left:150.369067pt;}
.x13_c00158{left:186.569067pt;}
.x9_c00158{left:195.502400pt;}
.xd_c00158{left:206.369067pt;}
.x7_c00158{left:247.035733pt;}
.x1a_c00158{left:251.169067pt;}
.x1_c00158{left:255.369067pt;}
.x12_c00158{left:268.435733pt;}
.x17_c00158{left:292.169067pt;}
.x23_c00158{left:296.635733pt;}
.xa_c00158{left:338.569067pt;}
.xb_c00158{left:355.835733pt;}
.x24_c00158{left:373.435733pt;}
.x25_c00158{left:381.102400pt;}
.x2_c00158{left:405.435733pt;}
.x1e_c00158{left:494.035733pt;}
.x1d_c00158{left:495.969067pt;}
.x3_c00158{left:550.369067pt;}
.x26_c00158{left:558.035733pt;}
.x22_c00158{left:567.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8274fec1726b8b864a5cc4fe.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00159;src:url('chunks/assets/font_2f77ce67e9b91f57398dfb6e.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00159;src:url('chunks/assets/font_0f34b1dcb23a28d143cf4145.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00159;src:url('chunks/assets/font_7561e042053d4c18a03e958a.woff2')format("woff");}.ff4_c00159{font-family:ff4_c00159;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00159{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m17_c00159{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00159{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00159{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m18_c00159{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00159{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11_c00159{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00159{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c00159{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c00159{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c00159{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00159{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00159{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00159{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00159{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00159{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00159{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00159{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00159{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c00159{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c00159{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m16_c00159{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m19_c00159{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00159{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c00159{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c00159{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m12_c00159{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c00159{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.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;}
}
.ws0_c00159{word-spacing:0.000000px;}
.fc0_c00159{color:transparent;}
.fs1_c00159{font-size:60.000000px;}
.fs2_c00159{font-size:66.000000px;}
.fs0_c00159{font-size:72.000000px;}
.y0_c00159{bottom:0.000000px;}
.y46_c00159{bottom:85.785000px;}
.y45_c00159{bottom:91.560000px;}
.y44_c00159{bottom:102.810000px;}
.y43_c00159{bottom:111.060000px;}
.y42_c00159{bottom:128.310000px;}
.y41_c00159{bottom:137.685000px;}
.y40_c00159{bottom:154.260000px;}
.y3f_c00159{bottom:160.410000px;}
.y3e_c00159{bottom:172.260000px;}
.y3d_c00159{bottom:189.585000px;}
.y3c_c00159{bottom:206.835000px;}
.y3b_c00159{bottom:212.535000px;}
.y3a_c00159{bottom:221.625000px;}
.y39_c00159{bottom:224.835000px;}
.y38_c00159{bottom:240.000000px;}
.y37_c00159{bottom:245.010000px;}
.y36_c00159{bottom:256.185000px;}
.y35_c00159{bottom:256.875000px;}
.y34_c00159{bottom:257.910000px;}
.y33_c00159{bottom:260.835000px;}
.y32_c00159{bottom:263.025000px;}
.y31_c00159{bottom:304.035000px;}
.y30_c00159{bottom:308.310000px;}
.y2f_c00159{bottom:323.085000px;}
.y2e_c00159{bottom:326.685000px;}
.y2d_c00159{bottom:346.875000px;}
.y2c_c00159{bottom:367.035000px;}
.y2b_c00159{bottom:369.585000px;}
.y2a_c00159{bottom:390.060000px;}
.y29_c00159{bottom:411.285000px;}
.y28_c00159{bottom:414.135000px;}
.y27_c00159{bottom:432.135000px;}
.y26_c00159{bottom:433.260000px;}
.y25_c00159{bottom:434.310000px;}
.y24_c00159{bottom:455.910000px;}
.y23_c00159{bottom:476.460000px;}
.y22_c00159{bottom:477.210000px;}
.y21_c00159{bottom:477.510000px;}
.y20_c00159{bottom:478.260000px;}
.y1f_c00159{bottom:498.810000px;}
.y1e_c00159{bottom:520.035000px;}
.y1d_c00159{bottom:541.260000px;}
.y1c_c00159{bottom:562.875000px;}
.y1b_c00159{bottom:584.460000px;}
.y1a_c00159{bottom:606.060000px;}
.y19_c00159{bottom:627.660000px;}
.y18_c00159{bottom:649.260000px;}
.y16_c00159{bottom:669.060000px;}
.y17_c00159{bottom:671.250000px;}
.y15_c00159{bottom:691.785000px;}
.y13_c00159{bottom:711.885000px;}
.y14_c00159{bottom:714.750000px;}
.y12_c00159{bottom:733.500000px;}
.y11_c00159{bottom:756.885000px;}
.y10_c00159{bottom:777.060000px;}
.yf_c00159{bottom:799.425000px;}
.ye_c00159{bottom:820.650000px;}
.yd_c00159{bottom:841.500000px;}
.yc_c00159{bottom:862.425000px;}
.yb_c00159{bottom:883.650000px;}
.ya_c00159{bottom:905.175000px;}
.y9_c00159{bottom:926.460000px;}
.y8_c00159{bottom:947.400000px;}
.y7_c00159{bottom:969.675000px;}
.y6_c00159{bottom:990.525000px;}
.y5_c00159{bottom:1012.125000px;}
.y4_c00159{bottom:1032.585000px;}
.y1_c00159{bottom:1080.210000px;}
.y3_c00159{bottom:1088.835000px;}
.y2_c00159{bottom:1093.875000px;}
.h2_c00159{height:58.886719px;}
.h6_c00159{height:64.775391px;}
.h5_c00159{height:66.515625px;}
.h4_c00159{height:70.628906px;}
.h3_c00159{height:70.664062px;}
.h1_c00159{height:72.562500px;}
.h0_c00159{height:1174.500000px;}
.w0_c00159{width:731.977200px;}
.w1_c00159{width:732.000000px;}
.x0_c00159{left:0.000000px;}
.x27_c00159{left:58.690200px;}
.x23_c00159{left:60.490200px;}
.x21_c00159{left:61.540200px;}
.x19_c00159{left:64.090200px;}
.x15_c00159{left:65.515200px;}
.x10_c00159{left:66.940200px;}
.xf_c00159{left:67.990200px;}
.xc_c00159{left:69.790200px;}
.xa_c00159{left:71.590200px;}
.x8_c00159{left:73.390200px;}
.x7_c00159{left:75.550200px;}
.x6_c00159{left:76.990200px;}
.x5_c00159{left:78.115200px;}
.x4_c00159{left:79.165200px;}
.x11_c00159{left:97.165200px;}
.xd_c00159{left:100.090200px;}
.x1_c00159{left:101.140200px;}
.x9_c00159{left:102.190200px;}
.x26_c00159{left:110.890200px;}
.x1d_c00159{left:113.740200px;}
.x2_c00159{left:127.090200px;}
.x12_c00159{left:133.915200px;}
.x1c_c00159{left:150.490200px;}
.x18_c00159{left:159.790200px;}
.xe_c00159{left:177.490200px;}
.x25_c00159{left:225.715200px;}
.x13_c00159{left:235.390200px;}
.x22_c00159{left:262.090200px;}
.x14_c00159{left:266.365200px;}
.x3_c00159{left:299.515200px;}
.x16_c00159{left:310.990200px;}
.xb_c00159{left:320.740200px;}
.x28_c00159{left:386.965200px;}
.x1e_c00159{left:397.390200px;}
.x1a_c00159{left:438.775200px;}
.x1f_c00159{left:505.090200px;}
.x1b_c00159{left:519.790200px;}
.x20_c00159{left:534.565200px;}
.x24_c00159{left:589.315200px;}
.x17_c00159{left:643.315200px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls0_c00159{letter-spacing:0.000000pt;}
.ws0_c00159{word-spacing:0.000000pt;}
.fs1_c00159{font-size:53.333333pt;}
.fs2_c00159{font-size:58.666667pt;}
.fs0_c00159{font-size:64.000000pt;}
.y0_c00159{bottom:0.000000pt;}
.y46_c00159{bottom:76.253333pt;}
.y45_c00159{bottom:81.386667pt;}
.y44_c00159{bottom:91.386667pt;}
.y43_c00159{bottom:98.720000pt;}
.y42_c00159{bottom:114.053333pt;}
.y41_c00159{bottom:122.386667pt;}
.y40_c00159{bottom:137.120000pt;}
.y3f_c00159{bottom:142.586667pt;}
.y3e_c00159{bottom:153.120000pt;}
.y3d_c00159{bottom:168.520000pt;}
.y3c_c00159{bottom:183.853333pt;}
.y3b_c00159{bottom:188.920000pt;}
.y3a_c00159{bottom:197.000000pt;}
.y39_c00159{bottom:199.853333pt;}
.y38_c00159{bottom:213.333333pt;}
.y37_c00159{bottom:217.786667pt;}
.y36_c00159{bottom:227.720000pt;}
.y35_c00159{bottom:228.333333pt;}
.y34_c00159{bottom:229.253333pt;}
.y33_c00159{bottom:231.853333pt;}
.y32_c00159{bottom:233.800000pt;}
.y31_c00159{bottom:270.253333pt;}
.y30_c00159{bottom:274.053333pt;}
.y2f_c00159{bottom:287.186667pt;}
.y2e_c00159{bottom:290.386667pt;}
.y2d_c00159{bottom:308.333333pt;}
.y2c_c00159{bottom:326.253333pt;}
.y2b_c00159{bottom:328.520000pt;}
.y2a_c00159{bottom:346.720000pt;}
.y29_c00159{bottom:365.586667pt;}
.y28_c00159{bottom:368.120000pt;}
.y27_c00159{bottom:384.120000pt;}
.y26_c00159{bottom:385.120000pt;}
.y25_c00159{bottom:386.053333pt;}
.y24_c00159{bottom:405.253333pt;}
.y23_c00159{bottom:423.520000pt;}
.y22_c00159{bottom:424.186667pt;}
.y21_c00159{bottom:424.453333pt;}
.y20_c00159{bottom:425.120000pt;}
.y1f_c00159{bottom:443.386667pt;}
.y1e_c00159{bottom:462.253333pt;}
.y1d_c00159{bottom:481.120000pt;}
.y1c_c00159{bottom:500.333333pt;}
.y1b_c00159{bottom:519.520000pt;}
.y1a_c00159{bottom:538.720000pt;}
.y19_c00159{bottom:557.920000pt;}
.y18_c00159{bottom:577.120000pt;}
.y16_c00159{bottom:594.720000pt;}
.y17_c00159{bottom:596.666667pt;}
.y15_c00159{bottom:614.920000pt;}
.y13_c00159{bottom:632.786667pt;}
.y14_c00159{bottom:635.333333pt;}
.y12_c00159{bottom:652.000000pt;}
.y11_c00159{bottom:672.786667pt;}
.y10_c00159{bottom:690.720000pt;}
.yf_c00159{bottom:710.600000pt;}
.ye_c00159{bottom:729.466667pt;}
.yd_c00159{bottom:748.000000pt;}
.yc_c00159{bottom:766.600000pt;}
.yb_c00159{bottom:785.466667pt;}
.ya_c00159{bottom:804.600000pt;}
.y9_c00159{bottom:823.520000pt;}
.y8_c00159{bottom:842.133333pt;}
.y7_c00159{bottom:861.933333pt;}
.y6_c00159{bottom:880.466667pt;}
.y5_c00159{bottom:899.666667pt;}
.y4_c00159{bottom:917.853333pt;}
.y1_c00159{bottom:960.186667pt;}
.y3_c00159{bottom:967.853333pt;}
.y2_c00159{bottom:972.333333pt;}
.h2_c00159{height:52.343750pt;}
.h6_c00159{height:57.578125pt;}
.h5_c00159{height:59.125000pt;}
.h4_c00159{height:62.781250pt;}
.h3_c00159{height:62.812500pt;}
.h1_c00159{height:64.500000pt;}
.h0_c00159{height:1044.000000pt;}
.w0_c00159{width:650.646400pt;}
.w1_c00159{width:650.666667pt;}
.x0_c00159{left:0.000000pt;}
.x27_c00159{left:52.169067pt;}
.x23_c00159{left:53.769067pt;}
.x21_c00159{left:54.702400pt;}
.x19_c00159{left:56.969067pt;}
.x15_c00159{left:58.235733pt;}
.x10_c00159{left:59.502400pt;}
.xf_c00159{left:60.435733pt;}
.xc_c00159{left:62.035733pt;}
.xa_c00159{left:63.635733pt;}
.x8_c00159{left:65.235733pt;}
.x7_c00159{left:67.155733pt;}
.x6_c00159{left:68.435733pt;}
.x5_c00159{left:69.435733pt;}
.x4_c00159{left:70.369067pt;}
.x11_c00159{left:86.369067pt;}
.xd_c00159{left:88.969067pt;}
.x1_c00159{left:89.902400pt;}
.x9_c00159{left:90.835733pt;}
.x26_c00159{left:98.569067pt;}
.x1d_c00159{left:101.102400pt;}
.x2_c00159{left:112.969067pt;}
.x12_c00159{left:119.035733pt;}
.x1c_c00159{left:133.769067pt;}
.x18_c00159{left:142.035733pt;}
.xe_c00159{left:157.769067pt;}
.x25_c00159{left:200.635733pt;}
.x13_c00159{left:209.235733pt;}
.x22_c00159{left:232.969067pt;}
.x14_c00159{left:236.769067pt;}
.x3_c00159{left:266.235733pt;}
.x16_c00159{left:276.435733pt;}
.xb_c00159{left:285.102400pt;}
.x28_c00159{left:343.969067pt;}
.x1e_c00159{left:353.235733pt;}
.x1a_c00159{left:390.022400pt;}
.x1f_c00159{left:448.969067pt;}
.x1b_c00159{left:462.035733pt;}
.x20_c00159{left:475.169067pt;}
.x24_c00159{left:523.835733pt;}
.x17_c00159{left:571.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_459d5cd3b2b9d5d942029ed1.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00160;src:url('chunks/assets/font_28daa744f0df01f09cdfc74d.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00160;src:url('chunks/assets/font_c981e1d3f9118c4327948e0d.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c00160{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m0_c00160{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m15_c00160{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md_c00160{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9_c00160{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00160{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00160{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00160{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00160{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c00160{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00160{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00160{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00160{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00160{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00160{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m18_c00160{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00160{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00160{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c00160{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11_c00160{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c00160{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7_c00160{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c00160{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6_c00160{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m17_c00160{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,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:0.000000px;}
.fc0_c00160{color:transparent;}
.fs4_c00160{font-size:54.000000px;}
.fs0_c00160{font-size:60.000000px;}
.fs3_c00160{font-size:66.000000px;}
.fs2_c00160{font-size:72.000000px;}
.fs1_c00160{font-size:78.000000px;}
.y0_c00160{bottom:0.000000px;}
.y2f_c00160{bottom:93.750000px;}
.y30_c00160{bottom:94.785000px;}
.y2d_c00160{bottom:113.160000px;}
.y2c_c00160{bottom:113.250000px;}
.y2e_c00160{bottom:115.035000px;}
.y2b_c00160{bottom:160.710000px;}
.y28_c00160{bottom:188.085000px;}
.y29_c00160{bottom:190.260000px;}
.y2a_c00160{bottom:191.310000px;}
.y27_c00160{bottom:272.310000px;}
.y26_c00160{bottom:295.335000px;}
.y25_c00160{bottom:315.900000px;}
.y22_c00160{bottom:337.125000px;}
.y23_c00160{bottom:337.785000px;}
.y24_c00160{bottom:338.910000px;}
.y21_c00160{bottom:358.410000px;}
.y20_c00160{bottom:380.685000px;}
.y1f_c00160{bottom:400.125000px;}
.y1e_c00160{bottom:422.835000px;}
.y1d_c00160{bottom:443.010000px;}
.y1c_c00160{bottom:465.960000px;}
.y1b_c00160{bottom:513.510000px;}
.y1a_c00160{bottom:604.260000px;}
.y19_c00160{bottom:625.875000px;}
.y18_c00160{bottom:647.460000px;}
.y17_c00160{bottom:669.060000px;}
.y16_c00160{bottom:691.035000px;}
.y15_c00160{bottom:711.510000px;}
.y14_c00160{bottom:712.935000px;}
.y13_c00160{bottom:734.250000px;}
.y12_c00160{bottom:756.510000px;}
.y11_c00160{bottom:777.435000px;}
.y10_c00160{bottom:799.335000px;}
.yf_c00160{bottom:820.650000px;}
.ye_c00160{bottom:842.925000px;}
.yd_c00160{bottom:864.150000px;}
.yc_c00160{bottom:885.750000px;}
.yb_c00160{bottom:904.500000px;}
.ya_c00160{bottom:905.625000px;}
.y9_c00160{bottom:906.675000px;}
.y8_c00160{bottom:907.425000px;}
.y7_c00160{bottom:907.710000px;}
.y5_c00160{bottom:928.275000px;}
.y6_c00160{bottom:928.650000px;}
.y4_c00160{bottom:1014.960000px;}
.y3_c00160{bottom:1035.900000px;}
.y2_c00160{bottom:1037.310000px;}
.y1_c00160{bottom:1096.800000px;}
.h5_c00160{height:52.998047px;}
.h1_c00160{height:60.468750px;}
.h4_c00160{height:64.775391px;}
.h3_c00160{height:70.664062px;}
.h2_c00160{height:76.514648px;}
.h0_c00160{height:1174.500000px;}
.w0_c00160{width:731.977200px;}
.w1_c00160{width:732.000000px;}
.x0_c00160{left:0.000000px;}
.x12_c00160{left:41.365200px;}
.x16_c00160{left:42.490200px;}
.xf_c00160{left:44.290200px;}
.x4_c00160{left:45.340200px;}
.xb_c00160{left:46.390200px;}
.x13_c00160{left:63.715200px;}
.x11_c00160{left:65.140200px;}
.x1b_c00160{left:75.550200px;}
.xc_c00160{left:77.365200px;}
.x5_c00160{left:78.790200px;}
.x2_c00160{left:80.590200px;}
.x10_c00160{left:83.890200px;}
.x17_c00160{left:102.565200px;}
.x1c_c00160{left:107.965200px;}
.x6_c00160{left:120.565200px;}
.x14_c00160{left:202.690200px;}
.x1_c00160{left:263.515200px;}
.x1a_c00160{left:278.965200px;}
.x3_c00160{left:285.490200px;}
.x15_c00160{left:388.390200px;}
.x1d_c00160{left:417.190200px;}
.x7_c00160{left:419.365200px;}
.x18_c00160{left:435.940200px;}
.x8_c00160{left:442.765200px;}
.x9_c00160{left:473.740200px;}
.x19_c00160{left:479.140200px;}
.xd_c00160{left:523.090200px;}
.xe_c00160{left:580.315200px;}
.xa_c00160{left:647.290200px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls0_c00160{letter-spacing:0.000000pt;}
.ws0_c00160{word-spacing:0.000000pt;}
.fs4_c00160{font-size:48.000000pt;}
.fs0_c00160{font-size:53.333333pt;}
.fs3_c00160{font-size:58.666667pt;}
.fs2_c00160{font-size:64.000000pt;}
.fs1_c00160{font-size:69.333333pt;}
.y0_c00160{bottom:0.000000pt;}
.y2f_c00160{bottom:83.333333pt;}
.y30_c00160{bottom:84.253333pt;}
.y2d_c00160{bottom:100.586667pt;}
.y2c_c00160{bottom:100.666667pt;}
.y2e_c00160{bottom:102.253333pt;}
.y2b_c00160{bottom:142.853333pt;}
.y28_c00160{bottom:167.186667pt;}
.y29_c00160{bottom:169.120000pt;}
.y2a_c00160{bottom:170.053333pt;}
.y27_c00160{bottom:242.053333pt;}
.y26_c00160{bottom:262.520000pt;}
.y25_c00160{bottom:280.800000pt;}
.y22_c00160{bottom:299.666667pt;}
.y23_c00160{bottom:300.253333pt;}
.y24_c00160{bottom:301.253333pt;}
.y21_c00160{bottom:318.586667pt;}
.y20_c00160{bottom:338.386667pt;}
.y1f_c00160{bottom:355.666667pt;}
.y1e_c00160{bottom:375.853333pt;}
.y1d_c00160{bottom:393.786667pt;}
.y1c_c00160{bottom:414.186667pt;}
.y1b_c00160{bottom:456.453333pt;}
.y1a_c00160{bottom:537.120000pt;}
.y19_c00160{bottom:556.333333pt;}
.y18_c00160{bottom:575.520000pt;}
.y17_c00160{bottom:594.720000pt;}
.y16_c00160{bottom:614.253333pt;}
.y15_c00160{bottom:632.453333pt;}
.y14_c00160{bottom:633.720000pt;}
.y13_c00160{bottom:652.666667pt;}
.y12_c00160{bottom:672.453333pt;}
.y11_c00160{bottom:691.053333pt;}
.y10_c00160{bottom:710.520000pt;}
.yf_c00160{bottom:729.466667pt;}
.ye_c00160{bottom:749.266667pt;}
.yd_c00160{bottom:768.133333pt;}
.yc_c00160{bottom:787.333333pt;}
.yb_c00160{bottom:804.000000pt;}
.ya_c00160{bottom:805.000000pt;}
.y9_c00160{bottom:805.933333pt;}
.y8_c00160{bottom:806.600000pt;}
.y7_c00160{bottom:806.853333pt;}
.y5_c00160{bottom:825.133333pt;}
.y6_c00160{bottom:825.466667pt;}
.y4_c00160{bottom:902.186667pt;}
.y3_c00160{bottom:920.800000pt;}
.y2_c00160{bottom:922.053333pt;}
.y1_c00160{bottom:974.933333pt;}
.h5_c00160{height:47.109375pt;}
.h1_c00160{height:53.750000pt;}
.h4_c00160{height:57.578125pt;}
.h3_c00160{height:62.812500pt;}
.h2_c00160{height:68.013021pt;}
.h0_c00160{height:1044.000000pt;}
.w0_c00160{width:650.646400pt;}
.w1_c00160{width:650.666667pt;}
.x0_c00160{left:0.000000pt;}
.x12_c00160{left:36.769067pt;}
.x16_c00160{left:37.769067pt;}
.xf_c00160{left:39.369067pt;}
.x4_c00160{left:40.302400pt;}
.xb_c00160{left:41.235733pt;}
.x13_c00160{left:56.635733pt;}
.x11_c00160{left:57.902400pt;}
.x1b_c00160{left:67.155733pt;}
.xc_c00160{left:68.769067pt;}
.x5_c00160{left:70.035733pt;}
.x2_c00160{left:71.635733pt;}
.x10_c00160{left:74.569067pt;}
.x17_c00160{left:91.169067pt;}
.x1c_c00160{left:95.969067pt;}
.x6_c00160{left:107.169067pt;}
.x14_c00160{left:180.169067pt;}
.x1_c00160{left:234.235733pt;}
.x1a_c00160{left:247.969067pt;}
.x3_c00160{left:253.769067pt;}
.x15_c00160{left:345.235733pt;}
.x1d_c00160{left:370.835733pt;}
.x7_c00160{left:372.769067pt;}
.x18_c00160{left:387.502400pt;}
.x8_c00160{left:393.569067pt;}
.x9_c00160{left:421.102400pt;}
.x19_c00160{left:425.902400pt;}
.xd_c00160{left:464.969067pt;}
.xe_c00160{left:515.835733pt;}
.xa_c00160{left:575.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e2f2878dc8411cb25b220e91.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00161;src:url('chunks/assets/font_4186bfaa3cc7fb8499d6aebf.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00161;src:url('chunks/assets/font_52d9bc203c78ea1df09139c3.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00161;src:url('chunks/assets/font_027570debf0d4c10f39dfcce.woff2')format("woff");}.ff4_c00161{font-family:ff4_c00161;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00161{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m17_c00161{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00161{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c00161{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c00161{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c00161{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8_c00161{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00161{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00161{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5_c00161{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00161{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4_c00161{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00161{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00161{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00161{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00161{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c00161{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c00161{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3_c00161{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00161{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m19_c00161{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00161{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c00161{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m14_c00161{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00161{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mb_c00161{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m16_c00161{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m1_c00161{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00161{color:transparent;}
.fs1_c00161{font-size:54.000000px;}
.fs4_c00161{font-size:60.000000px;}
.fs2_c00161{font-size:72.000000px;}
.fs0_c00161{font-size:78.000000px;}
.fs3_c00161{font-size:84.000000px;}
.y0_c00161{bottom:0.000000px;}
.y34_c00161{bottom:94.500000px;}
.y33_c00161{bottom:97.335000px;}
.y32_c00161{bottom:99.210000px;}
.y31_c00161{bottom:102.375000px;}
.y30_c00161{bottom:120.060000px;}
.y2e_c00161{bottom:138.375000px;}
.y2f_c00161{bottom:138.435000px;}
.y2d_c00161{bottom:142.035000px;}
.y2c_c00161{bottom:162.885000px;}
.y2b_c00161{bottom:184.500000px;}
.y2a_c00161{bottom:205.710000px;}
.y29_c00161{bottom:225.510000px;}
.y28_c00161{bottom:227.685000px;}
.y27_c00161{bottom:230.250000px;}
.y26_c00161{bottom:245.685000px;}
.y25_c00161{bottom:246.435000px;}
.y24_c00161{bottom:247.125000px;}
.y23_c00161{bottom:247.785000px;}
.y22_c00161{bottom:248.160000px;}
.y21_c00161{bottom:250.710000px;}
.y20_c00161{bottom:270.900000px;}
.y1f_c00161{bottom:292.500000px;}
.y1e_c00161{bottom:313.710000px;}
.y1d_c00161{bottom:335.310000px;}
.y1c_c00161{bottom:442.935000px;}
.y1b_c00161{bottom:464.535000px;}
.y1a_c00161{bottom:486.135000px;}
.y19_c00161{bottom:507.060000px;}
.y18_c00161{bottom:529.335000px;}
.y17_c00161{bottom:551.010000px;}
.y16_c00161{bottom:572.160000px;}
.y15_c00161{bottom:594.135000px;}
.y14_c00161{bottom:616.125000px;}
.y13_c00161{bottom:635.625000px;}
.y12_c00161{bottom:659.685000px;}
.y11_c00161{bottom:679.500000px;}
.ye_c00161{bottom:697.875000px;}
.yf_c00161{bottom:699.285000px;}
.y10_c00161{bottom:702.135000px;}
.yd_c00161{bottom:754.335000px;}
.yc_c00161{bottom:789.675000px;}
.yb_c00161{bottom:888.585000px;}
.ya_c00161{bottom:918.525000px;}
.y9_c00161{bottom:930.435000px;}
.y8_c00161{bottom:960.960000px;}
.y7_c00161{bottom:975.435000px;}
.y6_c00161{bottom:1003.875000px;}
.y5_c00161{bottom:1024.335000px;}
.y4_c00161{bottom:1045.650000px;}
.y1_c00161{bottom:1090.275000px;}
.y3_c00161{bottom:1101.435000px;}
.y2_c00161{bottom:1106.460000px;}
.h2_c00161{height:52.998047px;}
.h5_c00161{height:58.886719px;}
.h7_c00161{height:70.628906px;}
.h3_c00161{height:70.664062px;}
.h1_c00161{height:78.609375px;}
.h6_c00161{height:81.351562px;}
.h4_c00161{height:82.441406px;}
.h0_c00161{height:1174.500000px;}
.w0_c00161{width:731.977200px;}
.w1_c00161{width:732.000000px;}
.x0_c00161{left:0.000000px;}
.x5_c00161{left:65.890200px;}
.xd_c00161{left:67.315200px;}
.xe_c00161{left:68.365200px;}
.x10_c00161{left:69.490200px;}
.x11_c00161{left:71.290200px;}
.x14_c00161{left:74.515200px;}
.x15_c00161{left:75.550200px;}
.x1e_c00161{left:76.675200px;}
.x21_c00161{left:77.740200px;}
.x1_c00161{left:82.765200px;}
.x6_c00161{left:85.675200px;}
.x4_c00161{left:86.740200px;}
.xc_c00161{left:87.790200px;}
.x9_c00161{left:89.290200px;}
.xf_c00161{left:91.090200px;}
.x12_c00161{left:93.175200px;}
.x13_c00161{left:104.365200px;}
.x2_c00161{left:109.090200px;}
.x7_c00161{left:123.790200px;}
.xa_c00161{left:130.315200px;}
.xb_c00161{left:159.115200px;}
.x3_c00161{left:281.140200px;}
.x8_c00161{left:305.965200px;}
.x1c_c00161{left:319.690200px;}
.x22_c00161{left:336.190200px;}
.x1d_c00161{left:384.775200px;}
.x16_c00161{left:470.515200px;}
.x23_c00161{left:471.565200px;}
.x17_c00161{left:499.690200px;}
.x18_c00161{left:521.290200px;}
.x19_c00161{left:530.590200px;}
.x1a_c00161{left:539.590200px;}
.x1f_c00161{left:619.915200px;}
.x1b_c00161{left:638.590200px;}
.x20_c00161{left:640.090200px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls0_c00161{letter-spacing:0.000000pt;}
.ws0_c00161{word-spacing:0.000000pt;}
.fs1_c00161{font-size:48.000000pt;}
.fs4_c00161{font-size:53.333333pt;}
.fs2_c00161{font-size:64.000000pt;}
.fs0_c00161{font-size:69.333333pt;}
.fs3_c00161{font-size:74.666667pt;}
.y0_c00161{bottom:0.000000pt;}
.y34_c00161{bottom:84.000000pt;}
.y33_c00161{bottom:86.520000pt;}
.y32_c00161{bottom:88.186667pt;}
.y31_c00161{bottom:91.000000pt;}
.y30_c00161{bottom:106.720000pt;}
.y2e_c00161{bottom:123.000000pt;}
.y2f_c00161{bottom:123.053333pt;}
.y2d_c00161{bottom:126.253333pt;}
.y2c_c00161{bottom:144.786667pt;}
.y2b_c00161{bottom:164.000000pt;}
.y2a_c00161{bottom:182.853333pt;}
.y29_c00161{bottom:200.453333pt;}
.y28_c00161{bottom:202.386667pt;}
.y27_c00161{bottom:204.666667pt;}
.y26_c00161{bottom:218.386667pt;}
.y25_c00161{bottom:219.053333pt;}
.y24_c00161{bottom:219.666667pt;}
.y23_c00161{bottom:220.253333pt;}
.y22_c00161{bottom:220.586667pt;}
.y21_c00161{bottom:222.853333pt;}
.y20_c00161{bottom:240.800000pt;}
.y1f_c00161{bottom:260.000000pt;}
.y1e_c00161{bottom:278.853333pt;}
.y1d_c00161{bottom:298.053333pt;}
.y1c_c00161{bottom:393.720000pt;}
.y1b_c00161{bottom:412.920000pt;}
.y1a_c00161{bottom:432.120000pt;}
.y19_c00161{bottom:450.720000pt;}
.y18_c00161{bottom:470.520000pt;}
.y17_c00161{bottom:489.786667pt;}
.y16_c00161{bottom:508.586667pt;}
.y15_c00161{bottom:528.120000pt;}
.y14_c00161{bottom:547.666667pt;}
.y13_c00161{bottom:565.000000pt;}
.y12_c00161{bottom:586.386667pt;}
.y11_c00161{bottom:604.000000pt;}
.ye_c00161{bottom:620.333333pt;}
.yf_c00161{bottom:621.586667pt;}
.y10_c00161{bottom:624.120000pt;}
.yd_c00161{bottom:670.520000pt;}
.yc_c00161{bottom:701.933333pt;}
.yb_c00161{bottom:789.853333pt;}
.ya_c00161{bottom:816.466667pt;}
.y9_c00161{bottom:827.053333pt;}
.y8_c00161{bottom:854.186667pt;}
.y7_c00161{bottom:867.053333pt;}
.y6_c00161{bottom:892.333333pt;}
.y5_c00161{bottom:910.520000pt;}
.y4_c00161{bottom:929.466667pt;}
.y1_c00161{bottom:969.133333pt;}
.y3_c00161{bottom:979.053333pt;}
.y2_c00161{bottom:983.520000pt;}
.h2_c00161{height:47.109375pt;}
.h5_c00161{height:52.343750pt;}
.h7_c00161{height:62.781250pt;}
.h3_c00161{height:62.812500pt;}
.h1_c00161{height:69.875000pt;}
.h6_c00161{height:72.312500pt;}
.h4_c00161{height:73.281250pt;}
.h0_c00161{height:1044.000000pt;}
.w0_c00161{width:650.646400pt;}
.w1_c00161{width:650.666667pt;}
.x0_c00161{left:0.000000pt;}
.x5_c00161{left:58.569067pt;}
.xd_c00161{left:59.835733pt;}
.xe_c00161{left:60.769067pt;}
.x10_c00161{left:61.769067pt;}
.x11_c00161{left:63.369067pt;}
.x14_c00161{left:66.235733pt;}
.x15_c00161{left:67.155733pt;}
.x1e_c00161{left:68.155733pt;}
.x21_c00161{left:69.102400pt;}
.x1_c00161{left:73.569067pt;}
.x6_c00161{left:76.155733pt;}
.x4_c00161{left:77.102400pt;}
.xc_c00161{left:78.035733pt;}
.x9_c00161{left:79.369067pt;}
.xf_c00161{left:80.969067pt;}
.x12_c00161{left:82.822400pt;}
.x13_c00161{left:92.769067pt;}
.x2_c00161{left:96.969067pt;}
.x7_c00161{left:110.035733pt;}
.xa_c00161{left:115.835733pt;}
.xb_c00161{left:141.435733pt;}
.x3_c00161{left:249.902400pt;}
.x8_c00161{left:271.969067pt;}
.x1c_c00161{left:284.169067pt;}
.x22_c00161{left:298.835733pt;}
.x1d_c00161{left:342.022400pt;}
.x16_c00161{left:418.235733pt;}
.x23_c00161{left:419.169067pt;}
.x17_c00161{left:444.169067pt;}
.x18_c00161{left:463.369067pt;}
.x19_c00161{left:471.635733pt;}
.x1a_c00161{left:479.635733pt;}
.x1f_c00161{left:551.035733pt;}
.x1b_c00161{left:567.635733pt;}
.x20_c00161{left:568.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c31112c677e9668271120cdf.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00162;src:url('chunks/assets/font_888451d3ff4a40cf87139f59.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00162;src:url('chunks/assets/font_5cf4c8eec7a969691f39c430.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00162;src:url('chunks/assets/font_0cfe2fedbd1568099e9d56db.woff2')format("woff");}.ff4_c00162{font-family:ff4_c00162;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00162{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me_c00162{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m14_c00162{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf_c00162{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2_c00162{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6_c00162{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m16_c00162{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.md_c00162{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m21_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);}
.m12_c00162{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m24_c00162{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00162{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c00162{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00162{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c00162{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c00162{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m11_c00162{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c00162{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0_c00162{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00162{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00162{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00162{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c00162{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00162{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m19_c00162{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m18_c00162{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00162{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00162{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m23_c00162{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m25_c00162{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m26_c00162{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m27_c00162{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m22_c00162{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m20_c00162{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m15_c00162{transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);}
.m13_c00162{transform:matrix(1.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.090000,0.000000,0.000000,0.250000,0,0);}
.m8_c00162{transform:matrix(1.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.107500,0.000000,0.000000,0.250000,0,0);}
.m10_c00162{transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00162{transform:matrix(1.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.412500,0.000000,0.000000,0.250000,0,0);}
.m1_c00162{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00162{color:transparent;}
.fs0_c00162{font-size:60.000000px;}
.fs3_c00162{font-size:66.000000px;}
.fs4_c00162{font-size:72.000000px;}
.fs1_c00162{font-size:78.000000px;}
.fs2_c00162{font-size:84.000000px;}
.y0_c00162{bottom:0.000000px;}
.y41_c00162{bottom:81.135000px;}
.y42_c00162{bottom:84.750000px;}
.y3f_c00162{bottom:106.035000px;}
.y40_c00162{bottom:108.885000px;}
.y3e_c00162{bottom:125.835000px;}
.y3c_c00162{bottom:147.060000px;}
.y3d_c00162{bottom:151.335000px;}
.y3b_c00162{bottom:170.085000px;}
.y3a_c00162{bottom:188.460000px;}
.y39_c00162{bottom:209.310000px;}
.y35_c00162{bottom:230.250000px;}
.y36_c00162{bottom:230.910000px;}
.y37_c00162{bottom:232.035000px;}
.y38_c00162{bottom:233.085000px;}
.y34_c00162{bottom:252.885000px;}
.y33_c00162{bottom:274.500000px;}
.y32_c00162{bottom:294.660000px;}
.y31_c00162{bottom:315.525000px;}
.y2f_c00162{bottom:336.750000px;}
.y2e_c00162{bottom:337.125000px;}
.y30_c00162{bottom:338.160000px;}
.y2d_c00162{bottom:357.960000px;}
.y2c_c00162{bottom:358.710000px;}
.y2b_c00162{bottom:379.650000px;}
.y2a_c00162{bottom:401.160000px;}
.y28_c00162{bottom:422.085000px;}
.y29_c00162{bottom:423.885000px;}
.y27_c00162{bottom:444.810000px;}
.y25_c00162{bottom:466.335000px;}
.y26_c00162{bottom:467.085000px;}
.y24_c00162{bottom:488.310000px;}
.y23_c00162{bottom:509.910000px;}
.y22_c00162{bottom:531.135000px;}
.y21_c00162{bottom:552.750000px;}
.y20_c00162{bottom:574.710000px;}
.y1f_c00162{bottom:595.935000px;}
.y1e_c00162{bottom:596.685000px;}
.y1d_c00162{bottom:618.000000px;}
.y1c_c00162{bottom:639.510000px;}
.y1b_c00162{bottom:661.500000px;}
.y1a_c00162{bottom:683.085000px;}
.y19_c00162{bottom:705.060000px;}
.y18_c00162{bottom:726.285000px;}
.y17_c00162{bottom:727.335000px;}
.y16_c00162{bottom:727.410000px;}
.y13_c00162{bottom:745.710000px;}
.y14_c00162{bottom:746.085000px;}
.y15_c00162{bottom:748.200000px;}
.y12_c00162{bottom:769.875000px;}
.y11_c00162{bottom:792.150000px;}
.y10_c00162{bottom:814.125000px;}
.yf_c00162{bottom:834.960000px;}
.ye_c00162{bottom:836.085000px;}
.yd_c00162{bottom:857.310000px;}
.yc_c00162{bottom:878.550000px;}
.yb_c00162{bottom:900.210000px;}
.ya_c00162{bottom:921.060000px;}
.y9_c00162{bottom:921.750000px;}
.y8_c00162{bottom:943.050000px;}
.y7_c00162{bottom:964.935000px;}
.y6_c00162{bottom:985.875000px;}
.y5_c00162{bottom:1007.460000px;}
.y4_c00162{bottom:1029.375000px;}
.y3_c00162{bottom:1085.550000px;}
.y2_c00162{bottom:1089.900000px;}
.y1_c00162{bottom:1090.275000px;}
.h1_c00162{height:60.468750px;}
.h4_c00162{height:64.775391px;}
.h7_c00162{height:70.664062px;}
.h6_c00162{height:76.514648px;}
.h2_c00162{height:78.609375px;}
.h5_c00162{height:82.400391px;}
.h3_c00162{height:82.441406px;}
.h0_c00162{height:1174.500000px;}
.w0_c00162{width:731.977200px;}
.w1_c00162{width:732.000000px;}
.x0_c00162{left:0.000000px;}
.x20_c00162{left:68.365200px;}
.x1b_c00162{left:70.165200px;}
.x16_c00162{left:71.590200px;}
.x10_c00162{left:73.390200px;}
.x5_c00162{left:75.925200px;}
.x24_c00162{left:90.340200px;}
.x1d_c00162{left:91.390200px;}
.x17_c00162{left:92.515200px;}
.x12_c00162{left:93.550200px;}
.x11_c00162{left:94.990200px;}
.xc_c00162{left:96.115200px;}
.xa_c00162{left:97.165200px;}
.x6_c00162{left:99.340200px;}
.x1e_c00162{left:101.515200px;}
.x19_c00162{left:102.940200px;}
.xb_c00162{left:106.165200px;}
.x4_c00162{left:108.340200px;}
.x13_c00162{left:109.765200px;}
.xd_c00162{left:110.890200px;}
.x7_c00162{left:112.990200px;}
.x14_c00162{left:116.590200px;}
.xe_c00162{left:117.715200px;}
.x8_c00162{left:119.515200px;}
.x25_c00162{left:122.740200px;}
.x22_c00162{left:134.590200px;}
.x15_c00162{left:137.890200px;}
.xf_c00162{left:139.315200px;}
.x9_c00162{left:141.115200px;}
.x1a_c00162{left:208.090200px;}
.x23_c00162{left:242.290200px;}
.x21_c00162{left:273.940200px;}
.x1_c00162{left:317.515200px;}
.x26_c00162{left:334.090200px;}
.x18_c00162{left:436.990200px;}
.x29_c00162{left:438.775200px;}
.x28_c00162{left:439.915200px;}
.x27_c00162{left:480.565200px;}
.x2_c00162{left:486.340200px;}
.x2a_c00162{left:573.490200px;}
.x1f_c00162{left:574.915200px;}
.x2b_c00162{left:593.965200px;}
.x2c_c00162{left:624.565200px;}
.x1c_c00162{left:644.365200px;}
.x3_c00162{left:649.765200px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls0_c00162{letter-spacing:0.000000pt;}
.ws0_c00162{word-spacing:0.000000pt;}
.fs0_c00162{font-size:53.333333pt;}
.fs3_c00162{font-size:58.666667pt;}
.fs4_c00162{font-size:64.000000pt;}
.fs1_c00162{font-size:69.333333pt;}
.fs2_c00162{font-size:74.666667pt;}
.y0_c00162{bottom:0.000000pt;}
.y41_c00162{bottom:72.120000pt;}
.y42_c00162{bottom:75.333333pt;}
.y3f_c00162{bottom:94.253333pt;}
.y40_c00162{bottom:96.786667pt;}
.y3e_c00162{bottom:111.853333pt;}
.y3c_c00162{bottom:130.720000pt;}
.y3d_c00162{bottom:134.520000pt;}
.y3b_c00162{bottom:151.186667pt;}
.y3a_c00162{bottom:167.520000pt;}
.y39_c00162{bottom:186.053333pt;}
.y35_c00162{bottom:204.666667pt;}
.y36_c00162{bottom:205.253333pt;}
.y37_c00162{bottom:206.253333pt;}
.y38_c00162{bottom:207.186667pt;}
.y34_c00162{bottom:224.786667pt;}
.y33_c00162{bottom:244.000000pt;}
.y32_c00162{bottom:261.920000pt;}
.y31_c00162{bottom:280.466667pt;}
.y2f_c00162{bottom:299.333333pt;}
.y2e_c00162{bottom:299.666667pt;}
.y30_c00162{bottom:300.586667pt;}
.y2d_c00162{bottom:318.186667pt;}
.y2c_c00162{bottom:318.853333pt;}
.y2b_c00162{bottom:337.466667pt;}
.y2a_c00162{bottom:356.586667pt;}
.y28_c00162{bottom:375.186667pt;}
.y29_c00162{bottom:376.786667pt;}
.y27_c00162{bottom:395.386667pt;}
.y25_c00162{bottom:414.520000pt;}
.y26_c00162{bottom:415.186667pt;}
.y24_c00162{bottom:434.053333pt;}
.y23_c00162{bottom:453.253333pt;}
.y22_c00162{bottom:472.120000pt;}
.y21_c00162{bottom:491.333333pt;}
.y20_c00162{bottom:510.853333pt;}
.y1f_c00162{bottom:529.720000pt;}
.y1e_c00162{bottom:530.386667pt;}
.y1d_c00162{bottom:549.333333pt;}
.y1c_c00162{bottom:568.453333pt;}
.y1b_c00162{bottom:588.000000pt;}
.y1a_c00162{bottom:607.186667pt;}
.y19_c00162{bottom:626.720000pt;}
.y18_c00162{bottom:645.586667pt;}
.y17_c00162{bottom:646.520000pt;}
.y16_c00162{bottom:646.586667pt;}
.y13_c00162{bottom:662.853333pt;}
.y14_c00162{bottom:663.186667pt;}
.y15_c00162{bottom:665.066667pt;}
.y12_c00162{bottom:684.333333pt;}
.y11_c00162{bottom:704.133333pt;}
.y10_c00162{bottom:723.666667pt;}
.yf_c00162{bottom:742.186667pt;}
.ye_c00162{bottom:743.186667pt;}
.yd_c00162{bottom:762.053333pt;}
.yc_c00162{bottom:780.933333pt;}
.yb_c00162{bottom:800.186667pt;}
.ya_c00162{bottom:818.720000pt;}
.y9_c00162{bottom:819.333333pt;}
.y8_c00162{bottom:838.266667pt;}
.y7_c00162{bottom:857.720000pt;}
.y6_c00162{bottom:876.333333pt;}
.y5_c00162{bottom:895.520000pt;}
.y4_c00162{bottom:915.000000pt;}
.y3_c00162{bottom:964.933333pt;}
.y2_c00162{bottom:968.800000pt;}
.y1_c00162{bottom:969.133333pt;}
.h1_c00162{height:53.750000pt;}
.h4_c00162{height:57.578125pt;}
.h7_c00162{height:62.812500pt;}
.h6_c00162{height:68.013021pt;}
.h2_c00162{height:69.875000pt;}
.h5_c00162{height:73.244792pt;}
.h3_c00162{height:73.281250pt;}
.h0_c00162{height:1044.000000pt;}
.w0_c00162{width:650.646400pt;}
.w1_c00162{width:650.666667pt;}
.x0_c00162{left:0.000000pt;}
.x20_c00162{left:60.769067pt;}
.x1b_c00162{left:62.369067pt;}
.x16_c00162{left:63.635733pt;}
.x10_c00162{left:65.235733pt;}
.x5_c00162{left:67.489067pt;}
.x24_c00162{left:80.302400pt;}
.x1d_c00162{left:81.235733pt;}
.x17_c00162{left:82.235733pt;}
.x12_c00162{left:83.155733pt;}
.x11_c00162{left:84.435733pt;}
.xc_c00162{left:85.435733pt;}
.xa_c00162{left:86.369067pt;}
.x6_c00162{left:88.302400pt;}
.x1e_c00162{left:90.235733pt;}
.x19_c00162{left:91.502400pt;}
.xb_c00162{left:94.369067pt;}
.x4_c00162{left:96.302400pt;}
.x13_c00162{left:97.569067pt;}
.xd_c00162{left:98.569067pt;}
.x7_c00162{left:100.435733pt;}
.x14_c00162{left:103.635733pt;}
.xe_c00162{left:104.635733pt;}
.x8_c00162{left:106.235733pt;}
.x25_c00162{left:109.102400pt;}
.x22_c00162{left:119.635733pt;}
.x15_c00162{left:122.569067pt;}
.xf_c00162{left:123.835733pt;}
.x9_c00162{left:125.435733pt;}
.x1a_c00162{left:184.969067pt;}
.x23_c00162{left:215.369067pt;}
.x21_c00162{left:243.502400pt;}
.x1_c00162{left:282.235733pt;}
.x26_c00162{left:296.969067pt;}
.x18_c00162{left:388.435733pt;}
.x29_c00162{left:390.022400pt;}
.x28_c00162{left:391.035733pt;}
.x27_c00162{left:427.169067pt;}
.x2_c00162{left:432.302400pt;}
.x2a_c00162{left:509.769067pt;}
.x1f_c00162{left:511.035733pt;}
.x2b_c00162{left:527.969067pt;}
.x2c_c00162{left:555.169067pt;}
.x1c_c00162{left:572.769067pt;}
.x3_c00162{left:577.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_296de08762c1212e0f8a6978.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00163;src:url('chunks/assets/font_cf1813e5587b90ecc66e692f.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00163;src:url('chunks/assets/font_df3c2c7b331290feb4f10047.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00163{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m15_c00163{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c00163{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb_c00163{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c00163{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00163{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00163{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00163{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00163{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00163{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00163{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00163{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00163{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00163{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00163{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c00163{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c00163{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00163{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c00163{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c00163{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10_c00163{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c00163{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1_c00163{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00163{vertical-align:0.000000px;}
.ls0_c00163{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00163{color:transparent;}
.fs1_c00163{font-size:54.000000px;}
.fs3_c00163{font-size:66.000000px;}
.fs2_c00163{font-size:72.000000px;}
.fs0_c00163{font-size:78.000000px;}
.y0_c00163{bottom:0.000000px;}
.y3b_c00163{bottom:97.710000px;}
.y3a_c00163{bottom:119.010000px;}
.y39_c00163{bottom:137.310000px;}
.y38_c00163{bottom:142.710000px;}
.y37_c00163{bottom:164.385000px;}
.y36_c00163{bottom:187.710000px;}
.y35_c00163{bottom:205.035000px;}
.y34_c00163{bottom:226.260000px;}
.y33_c00163{bottom:248.250000px;}
.y32_c00163{bottom:269.835000px;}
.y31_c00163{bottom:291.435000px;}
.y30_c00163{bottom:313.035000px;}
.y2f_c00163{bottom:334.275000px;}
.y2e_c00163{bottom:352.650000px;}
.y2d_c00163{bottom:353.025000px;}
.y2c_c00163{bottom:355.875000px;}
.y2b_c00163{bottom:376.785000px;}
.y2a_c00163{bottom:399.000000px;}
.y29_c00163{bottom:420.285000px;}
.y28_c00163{bottom:442.260000px;}
.y27_c00163{bottom:463.785000px;}
.y26_c00163{bottom:485.085000px;}
.y25_c00163{bottom:506.685000px;}
.y24_c00163{bottom:527.910000px;}
.y23_c00163{bottom:549.510000px;}
.y22_c00163{bottom:571.125000px;}
.y21_c00163{bottom:592.410000px;}
.y20_c00163{bottom:614.310000px;}
.y1f_c00163{bottom:635.625000px;}
.y1b_c00163{bottom:656.460000px;}
.y1c_c00163{bottom:656.835000px;}
.y1d_c00163{bottom:657.210000px;}
.y1e_c00163{bottom:657.885000px;}
.y17_c00163{bottom:677.010000px;}
.y18_c00163{bottom:677.685000px;}
.y19_c00163{bottom:678.060000px;}
.y1a_c00163{bottom:679.500000px;}
.y15_c00163{bottom:699.585000px;}
.y16_c00163{bottom:701.460000px;}
.y14_c00163{bottom:721.260000px;}
.y13_c00163{bottom:742.875000px;}
.y12_c00163{bottom:764.460000px;}
.y11_c00163{bottom:783.885000px;}
.y10_c00163{bottom:806.250000px;}
.yf_c00163{bottom:828.210000px;}
.ye_c00163{bottom:849.435000px;}
.yd_c00163{bottom:866.025000px;}
.yc_c00163{bottom:891.525000px;}
.yb_c00163{bottom:913.185000px;}
.ya_c00163{bottom:934.335000px;}
.y9_c00163{bottom:956.025000px;}
.y8_c00163{bottom:968.925000px;}
.y7_c00163{bottom:977.625000px;}
.y6_c00163{bottom:997.800000px;}
.y5_c00163{bottom:1019.685000px;}
.y4_c00163{bottom:1037.310000px;}
.y1_c00163{bottom:1088.460000px;}
.y3_c00163{bottom:1097.400000px;}
.y2_c00163{bottom:1102.710000px;}
.h2_c00163{height:52.998047px;}
.h4_c00163{height:64.775391px;}
.h5_c00163{height:70.628906px;}
.h3_c00163{height:70.664062px;}
.h1_c00163{height:78.609375px;}
.h0_c00163{height:1174.500000px;}
.w0_c00163{width:731.977200px;}
.w1_c00163{width:732.000000px;}
.x0_c00163{left:0.000000px;}
.x1c_c00163{left:52.165200px;}
.x19_c00163{left:53.590200px;}
.x18_c00163{left:54.715200px;}
.x15_c00163{left:55.765200px;}
.xf_c00163{left:57.190200px;}
.xe_c00163{left:58.315200px;}
.xb_c00163{left:60.790200px;}
.x9_c00163{left:62.290200px;}
.x8_c00163{left:63.340200px;}
.x6_c00163{left:65.515200px;}
.x1d_c00163{left:73.765200px;}
.xc_c00163{left:80.590200px;}
.x1e_c00163{left:83.140200px;}
.x1_c00163{left:85.990200px;}
.x4_c00163{left:88.165200px;}
.xd_c00163{left:89.290200px;}
.xa_c00163{left:92.890200px;}
.x5_c00163{left:96.490200px;}
.x7_c00163{left:100.765200px;}
.x2_c00163{left:111.565200px;}
.x12_c00163{left:120.565200px;}
.x13_c00163{left:197.290200px;}
.x3_c00163{left:292.690200px;}
.x16_c00163{left:312.115200px;}
.x14_c00163{left:365.365200px;}
.x17_c00163{left:372.565200px;}
.x1f_c00163{left:426.190200px;}
.x10_c00163{left:483.790200px;}
.x1a_c00163{left:564.490200px;}
.x11_c00163{left:570.940200px;}
.x1b_c00163{left:587.515200px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls0_c00163{letter-spacing:0.000000pt;}
.ws0_c00163{word-spacing:0.000000pt;}
.fs1_c00163{font-size:48.000000pt;}
.fs3_c00163{font-size:58.666667pt;}
.fs2_c00163{font-size:64.000000pt;}
.fs0_c00163{font-size:69.333333pt;}
.y0_c00163{bottom:0.000000pt;}
.y3b_c00163{bottom:86.853333pt;}
.y3a_c00163{bottom:105.786667pt;}
.y39_c00163{bottom:122.053333pt;}
.y38_c00163{bottom:126.853333pt;}
.y37_c00163{bottom:146.120000pt;}
.y36_c00163{bottom:166.853333pt;}
.y35_c00163{bottom:182.253333pt;}
.y34_c00163{bottom:201.120000pt;}
.y33_c00163{bottom:220.666667pt;}
.y32_c00163{bottom:239.853333pt;}
.y31_c00163{bottom:259.053333pt;}
.y30_c00163{bottom:278.253333pt;}
.y2f_c00163{bottom:297.133333pt;}
.y2e_c00163{bottom:313.466667pt;}
.y2d_c00163{bottom:313.800000pt;}
.y2c_c00163{bottom:316.333333pt;}
.y2b_c00163{bottom:334.920000pt;}
.y2a_c00163{bottom:354.666667pt;}
.y29_c00163{bottom:373.586667pt;}
.y28_c00163{bottom:393.120000pt;}
.y27_c00163{bottom:412.253333pt;}
.y26_c00163{bottom:431.186667pt;}
.y25_c00163{bottom:450.386667pt;}
.y24_c00163{bottom:469.253333pt;}
.y23_c00163{bottom:488.453333pt;}
.y22_c00163{bottom:507.666667pt;}
.y21_c00163{bottom:526.586667pt;}
.y20_c00163{bottom:546.053333pt;}
.y1f_c00163{bottom:565.000000pt;}
.y1b_c00163{bottom:583.520000pt;}
.y1c_c00163{bottom:583.853333pt;}
.y1d_c00163{bottom:584.186667pt;}
.y1e_c00163{bottom:584.786667pt;}
.y17_c00163{bottom:601.786667pt;}
.y18_c00163{bottom:602.386667pt;}
.y19_c00163{bottom:602.720000pt;}
.y1a_c00163{bottom:604.000000pt;}
.y15_c00163{bottom:621.853333pt;}
.y16_c00163{bottom:623.520000pt;}
.y14_c00163{bottom:641.120000pt;}
.y13_c00163{bottom:660.333333pt;}
.y12_c00163{bottom:679.520000pt;}
.y11_c00163{bottom:696.786667pt;}
.y10_c00163{bottom:716.666667pt;}
.yf_c00163{bottom:736.186667pt;}
.ye_c00163{bottom:755.053333pt;}
.yd_c00163{bottom:769.800000pt;}
.yc_c00163{bottom:792.466667pt;}
.yb_c00163{bottom:811.720000pt;}
.ya_c00163{bottom:830.520000pt;}
.y9_c00163{bottom:849.800000pt;}
.y8_c00163{bottom:861.266667pt;}
.y7_c00163{bottom:869.000000pt;}
.y6_c00163{bottom:886.933333pt;}
.y5_c00163{bottom:906.386667pt;}
.y4_c00163{bottom:922.053333pt;}
.y1_c00163{bottom:967.520000pt;}
.y3_c00163{bottom:975.466667pt;}
.y2_c00163{bottom:980.186667pt;}
.h2_c00163{height:47.109375pt;}
.h4_c00163{height:57.578125pt;}
.h5_c00163{height:62.781250pt;}
.h3_c00163{height:62.812500pt;}
.h1_c00163{height:69.875000pt;}
.h0_c00163{height:1044.000000pt;}
.w0_c00163{width:650.646400pt;}
.w1_c00163{width:650.666667pt;}
.x0_c00163{left:0.000000pt;}
.x1c_c00163{left:46.369067pt;}
.x19_c00163{left:47.635733pt;}
.x18_c00163{left:48.635733pt;}
.x15_c00163{left:49.569067pt;}
.xf_c00163{left:50.835733pt;}
.xe_c00163{left:51.835733pt;}
.xb_c00163{left:54.035733pt;}
.x9_c00163{left:55.369067pt;}
.x8_c00163{left:56.302400pt;}
.x6_c00163{left:58.235733pt;}
.x1d_c00163{left:65.569067pt;}
.xc_c00163{left:71.635733pt;}
.x1e_c00163{left:73.902400pt;}
.x1_c00163{left:76.435733pt;}
.x4_c00163{left:78.369067pt;}
.xd_c00163{left:79.369067pt;}
.xa_c00163{left:82.569067pt;}
.x5_c00163{left:85.769067pt;}
.x7_c00163{left:89.569067pt;}
.x2_c00163{left:99.169067pt;}
.x12_c00163{left:107.169067pt;}
.x13_c00163{left:175.369067pt;}
.x3_c00163{left:260.169067pt;}
.x16_c00163{left:277.435733pt;}
.x14_c00163{left:324.769067pt;}
.x17_c00163{left:331.169067pt;}
.x1f_c00163{left:378.835733pt;}
.x10_c00163{left:430.035733pt;}
.x1a_c00163{left:501.769067pt;}
.x11_c00163{left:507.502400pt;}
.x1b_c00163{left:522.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6feed79eca7474acd6914402.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00164;src:url('chunks/assets/font_353e22ff2e830fa6f2cca5a1.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00164;src:url('chunks/assets/font_0aee4a693d40c9c9a2c3e8fe.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00164;src:url('chunks/assets/font_80f8fcbda131186ec569a0ca.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00164{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1_c00164{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m12_c00164{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc_c00164{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00164{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c00164{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c00164{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c00164{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m17_c00164{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf_c00164{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00164{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c00164{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00164{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00164{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00164{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m16_c00164{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00164{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00164{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c00164{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00164{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c00164{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m15_c00164{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00164{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m18_c00164{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m13_c00164{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m14_c00164{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m4_c00164{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls0_c00164{letter-spacing:0.000000px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00164{word-spacing:0.000000px;}
.fc0_c00164{color:transparent;}
.fs0_c00164{font-size:30.000000px;}
.fs1_c00164{font-size:36.000000px;}
.fs4_c00164{font-size:54.000000px;}
.fs2_c00164{font-size:60.000000px;}
.fs5_c00164{font-size:66.000000px;}
.fs3_c00164{font-size:72.000000px;}
.y0_c00164{bottom:0.000000px;}
.y3c_c00164{bottom:84.810000px;}
.y3d_c00164{bottom:85.125000px;}
.y3e_c00164{bottom:85.500000px;}
.y38_c00164{bottom:102.060000px;}
.y39_c00164{bottom:103.125000px;}
.y3a_c00164{bottom:103.875000px;}
.y3b_c00164{bottom:106.710000px;}
.y36_c00164{bottom:171.210000px;}
.y37_c00164{bottom:176.250000px;}
.y35_c00164{bottom:192.060000px;}
.y34_c00164{bottom:212.910000px;}
.y33_c00164{bottom:233.835000px;}
.y32_c00164{bottom:255.060000px;}
.y31_c00164{bottom:276.285000px;}
.y2f_c00164{bottom:297.210000px;}
.y30_c00164{bottom:299.025000px;}
.y2e_c00164{bottom:318.810000px;}
.y2d_c00164{bottom:340.410000px;}
.y2c_c00164{bottom:361.650000px;}
.y2b_c00164{bottom:382.785000px;}
.y2a_c00164{bottom:404.085000px;}
.y29_c00164{bottom:425.385000px;}
.y28_c00164{bottom:446.910000px;}
.y27_c00164{bottom:468.585000px;}
.y26_c00164{bottom:490.500000px;}
.y25_c00164{bottom:512.085000px;}
.y24_c00164{bottom:533.685000px;}
.y23_c00164{bottom:555.285000px;}
.y22_c00164{bottom:576.885000px;}
.y20_c00164{bottom:598.125000px;}
.y21_c00164{bottom:598.500000px;}
.y1f_c00164{bottom:598.875000px;}
.y1e_c00164{bottom:620.085000px;}
.y1d_c00164{bottom:641.310000px;}
.y1c_c00164{bottom:662.910000px;}
.y1b_c00164{bottom:663.285000px;}
.y1a_c00164{bottom:663.660000px;}
.y19_c00164{bottom:685.260000px;}
.y18_c00164{bottom:706.125000px;}
.y17_c00164{bottom:729.135000px;}
.y16_c00164{bottom:749.700000px;}
.y15_c00164{bottom:771.675000px;}
.y14_c00164{bottom:793.560000px;}
.y13_c00164{bottom:815.175000px;}
.y12_c00164{bottom:837.525000px;}
.y11_c00164{bottom:858.435000px;}
.y10_c00164{bottom:880.335000px;}
.yf_c00164{bottom:898.710000px;}
.ye_c00164{bottom:901.275000px;}
.yd_c00164{bottom:901.560000px;}
.yc_c00164{bottom:901.650000px;}
.yb_c00164{bottom:922.875000px;}
.ya_c00164{bottom:944.085000px;}
.y9_c00164{bottom:965.685000px;}
.y8_c00164{bottom:986.925000px;}
.y7_c00164{bottom:1008.900000px;}
.y6_c00164{bottom:1031.550000px;}
.y5_c00164{bottom:1084.875000px;}
.y3_c00164{bottom:1089.525000px;}
.y4_c00164{bottom:1098.900000px;}
.y2_c00164{bottom:1164.750000px;}
.y1_c00164{bottom:1165.125000px;}
.h1_c00164{height:31.289062px;}
.h2_c00164{height:35.332031px;}
.h7_c00164{height:52.998047px;}
.h6_c00164{height:58.886719px;}
.h3_c00164{height:60.468750px;}
.h8_c00164{height:64.743164px;}
.h9_c00164{height:70.628906px;}
.h5_c00164{height:70.664062px;}
.h4_c00164{height:72.562500px;}
.h0_c00164{height:1174.500000px;}
.w0_c00164{width:731.977200px;}
.w1_c00164{width:732.000000px;}
.x0_c00164{left:0.000000px;}
.x1b_c00164{left:68.740200px;}
.x19_c00164{left:70.540200px;}
.x17_c00164{left:72.340200px;}
.x10_c00164{left:73.765200px;}
.xe_c00164{left:75.175200px;}
.xd_c00164{left:76.300200px;}
.x9_c00164{left:77.365200px;}
.x1e_c00164{left:87.490200px;}
.x11_c00164{left:96.490200px;}
.x7_c00164{left:100.090200px;}
.x1a_c00164{left:101.890200px;}
.x12_c00164{left:105.115200px;}
.xf_c00164{left:107.290200px;}
.x8_c00164{left:109.390200px;}
.x22_c00164{left:118.090200px;}
.x1_c00164{left:119.890200px;}
.x1f_c00164{left:125.965200px;}
.x2_c00164{left:129.190200px;}
.x3_c00164{left:138.940200px;}
.xa_c00164{left:149.740200px;}
.x23_c00164{left:154.765200px;}
.xb_c00164{left:174.190200px;}
.x13_c00164{left:196.915200px;}
.x18_c00164{left:247.690200px;}
.x14_c00164{left:283.315200px;}
.x4_c00164{left:291.565200px;}
.x20_c00164{left:306.340200px;}
.x15_c00164{left:372.565200px;}
.x16_c00164{left:380.890200px;}
.x1c_c00164{left:382.690200px;}
.x5_c00164{left:488.140200px;}
.x21_c00164{left:546.115200px;}
.x6_c00164{left:649.390200px;}
.x1d_c00164{left:667.765200px;}
.xc_c00164{left:678.940200px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls0_c00164{letter-spacing:0.000000pt;}
.ws0_c00164{word-spacing:0.000000pt;}
.fs0_c00164{font-size:26.666667pt;}
.fs1_c00164{font-size:32.000000pt;}
.fs4_c00164{font-size:48.000000pt;}
.fs2_c00164{font-size:53.333333pt;}
.fs5_c00164{font-size:58.666667pt;}
.fs3_c00164{font-size:64.000000pt;}
.y0_c00164{bottom:0.000000pt;}
.y3c_c00164{bottom:75.386667pt;}
.y3d_c00164{bottom:75.666667pt;}
.y3e_c00164{bottom:76.000000pt;}
.y38_c00164{bottom:90.720000pt;}
.y39_c00164{bottom:91.666667pt;}
.y3a_c00164{bottom:92.333333pt;}
.y3b_c00164{bottom:94.853333pt;}
.y36_c00164{bottom:152.186667pt;}
.y37_c00164{bottom:156.666667pt;}
.y35_c00164{bottom:170.720000pt;}
.y34_c00164{bottom:189.253333pt;}
.y33_c00164{bottom:207.853333pt;}
.y32_c00164{bottom:226.720000pt;}
.y31_c00164{bottom:245.586667pt;}
.y2f_c00164{bottom:264.186667pt;}
.y30_c00164{bottom:265.800000pt;}
.y2e_c00164{bottom:283.386667pt;}
.y2d_c00164{bottom:302.586667pt;}
.y2c_c00164{bottom:321.466667pt;}
.y2b_c00164{bottom:340.253333pt;}
.y2a_c00164{bottom:359.186667pt;}
.y29_c00164{bottom:378.120000pt;}
.y28_c00164{bottom:397.253333pt;}
.y27_c00164{bottom:416.520000pt;}
.y26_c00164{bottom:436.000000pt;}
.y25_c00164{bottom:455.186667pt;}
.y24_c00164{bottom:474.386667pt;}
.y23_c00164{bottom:493.586667pt;}
.y22_c00164{bottom:512.786667pt;}
.y20_c00164{bottom:531.666667pt;}
.y21_c00164{bottom:532.000000pt;}
.y1f_c00164{bottom:532.333333pt;}
.y1e_c00164{bottom:551.186667pt;}
.y1d_c00164{bottom:570.053333pt;}
.y1c_c00164{bottom:589.253333pt;}
.y1b_c00164{bottom:589.586667pt;}
.y1a_c00164{bottom:589.920000pt;}
.y19_c00164{bottom:609.120000pt;}
.y18_c00164{bottom:627.666667pt;}
.y17_c00164{bottom:648.120000pt;}
.y16_c00164{bottom:666.400000pt;}
.y15_c00164{bottom:685.933333pt;}
.y14_c00164{bottom:705.386667pt;}
.y13_c00164{bottom:724.600000pt;}
.y12_c00164{bottom:744.466667pt;}
.y11_c00164{bottom:763.053333pt;}
.y10_c00164{bottom:782.520000pt;}
.yf_c00164{bottom:798.853333pt;}
.ye_c00164{bottom:801.133333pt;}
.yd_c00164{bottom:801.386667pt;}
.yc_c00164{bottom:801.466667pt;}
.yb_c00164{bottom:820.333333pt;}
.ya_c00164{bottom:839.186667pt;}
.y9_c00164{bottom:858.386667pt;}
.y8_c00164{bottom:877.266667pt;}
.y7_c00164{bottom:896.800000pt;}
.y6_c00164{bottom:916.933333pt;}
.y5_c00164{bottom:964.333333pt;}
.y3_c00164{bottom:968.466667pt;}
.y4_c00164{bottom:976.800000pt;}
.y2_c00164{bottom:1035.333333pt;}
.y1_c00164{bottom:1035.666667pt;}
.h1_c00164{height:27.812500pt;}
.h2_c00164{height:31.406250pt;}
.h7_c00164{height:47.109375pt;}
.h6_c00164{height:52.343750pt;}
.h3_c00164{height:53.750000pt;}
.h8_c00164{height:57.549479pt;}
.h9_c00164{height:62.781250pt;}
.h5_c00164{height:62.812500pt;}
.h4_c00164{height:64.500000pt;}
.h0_c00164{height:1044.000000pt;}
.w0_c00164{width:650.646400pt;}
.w1_c00164{width:650.666667pt;}
.x0_c00164{left:0.000000pt;}
.x1b_c00164{left:61.102400pt;}
.x19_c00164{left:62.702400pt;}
.x17_c00164{left:64.302400pt;}
.x10_c00164{left:65.569067pt;}
.xe_c00164{left:66.822400pt;}
.xd_c00164{left:67.822400pt;}
.x9_c00164{left:68.769067pt;}
.x1e_c00164{left:77.769067pt;}
.x11_c00164{left:85.769067pt;}
.x7_c00164{left:88.969067pt;}
.x1a_c00164{left:90.569067pt;}
.x12_c00164{left:93.435733pt;}
.xf_c00164{left:95.369067pt;}
.x8_c00164{left:97.235733pt;}
.x22_c00164{left:104.969067pt;}
.x1_c00164{left:106.569067pt;}
.x1f_c00164{left:111.969067pt;}
.x2_c00164{left:114.835733pt;}
.x3_c00164{left:123.502400pt;}
.xa_c00164{left:133.102400pt;}
.x23_c00164{left:137.569067pt;}
.xb_c00164{left:154.835733pt;}
.x13_c00164{left:175.035733pt;}
.x18_c00164{left:220.169067pt;}
.x14_c00164{left:251.835733pt;}
.x4_c00164{left:259.169067pt;}
.x20_c00164{left:272.302400pt;}
.x15_c00164{left:331.169067pt;}
.x16_c00164{left:338.569067pt;}
.x1c_c00164{left:340.169067pt;}
.x5_c00164{left:433.902400pt;}
.x21_c00164{left:485.435733pt;}
.x6_c00164{left:577.235733pt;}
.x1d_c00164{left:593.569067pt;}
.xc_c00164{left:603.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8234a70be1482c6e409440b4.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00165;src:url('chunks/assets/font_f18926d165ece3c9f1814edb.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00165;src:url('chunks/assets/font_61413993cb05487dd8f03d68.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00165;src:url('chunks/assets/font_0b08cfd976942d0b0834b476.woff2')format("woff");}.ff4_c00165{font-family:ff4_c00165;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00165{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me_c00165{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10_c00165{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c00165{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00165{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m11_c00165{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00165{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c00165{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4_c00165{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c00165{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00165{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00165{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00165{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00165{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00165{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00165{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00165{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c00165{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00165{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00165{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c00165{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.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;}
}
.ws0_c00165{word-spacing:0.000000px;}
.fc0_c00165{color:transparent;}
.fs2_c00165{font-size:60.000000px;}
.fs0_c00165{font-size:72.000000px;}
.fs1_c00165{font-size:78.000000px;}
.y0_c00165{bottom:0.000000px;}
.y2e_c00165{bottom:201.060000px;}
.y2d_c00165{bottom:219.435000px;}
.y2c_c00165{bottom:241.035000px;}
.y2b_c00165{bottom:263.025000px;}
.y2a_c00165{bottom:284.250000px;}
.y29_c00165{bottom:306.210000px;}
.y28_c00165{bottom:327.750000px;}
.y27_c00165{bottom:349.335000px;}
.y26_c00165{bottom:370.650000px;}
.y25_c00165{bottom:392.250000px;}
.y24_c00165{bottom:414.135000px;}
.y23_c00165{bottom:438.660000px;}
.y22_c00165{bottom:457.710000px;}
.y21_c00165{bottom:479.685000px;}
.y20_c00165{bottom:500.910000px;}
.y1f_c00165{bottom:502.410000px;}
.y1e_c00165{bottom:521.760000px;}
.y1d_c00165{bottom:522.885000px;}
.y1c_c00165{bottom:543.810000px;}
.y1b_c00165{bottom:565.335000px;}
.y1a_c00165{bottom:586.935000px;}
.y19_c00165{bottom:608.535000px;}
.y17_c00165{bottom:629.835000px;}
.y18_c00165{bottom:630.135000px;}
.y16_c00165{bottom:651.435000px;}
.y15_c00165{bottom:673.410000px;}
.y14_c00165{bottom:694.635000px;}
.y13_c00165{bottom:716.250000px;}
.y12_c00165{bottom:738.135000px;}
.y11_c00165{bottom:759.450000px;}
.y10_c00165{bottom:781.050000px;}
.yd_c00165{bottom:801.210000px;}
.ye_c00165{bottom:802.935000px;}
.yf_c00165{bottom:804.060000px;}
.yc_c00165{bottom:823.875000px;}
.yb_c00165{bottom:844.710000px;}
.ya_c00165{bottom:866.310000px;}
.y9_c00165{bottom:886.500000px;}
.y8_c00165{bottom:908.835000px;}
.y7_c00165{bottom:930.810000px;}
.y6_c00165{bottom:952.335000px;}
.y5_c00165{bottom:973.650000px;}
.y4_c00165{bottom:994.500000px;}
.y3_c00165{bottom:1015.710000px;}
.y2_c00165{bottom:1037.310000px;}
.y1_c00165{bottom:1086.300000px;}
.y2f_c00165{bottom:1094.250000px;}
.h4_c00165{height:58.886719px;}
.h2_c00165{height:70.664062px;}
.h1_c00165{height:72.562500px;}
.h3_c00165{height:76.514648px;}
.h0_c00165{height:1174.500000px;}
.w0_c00165{width:731.977200px;}
.w1_c00165{width:732.000000px;}
.x0_c00165{left:0.000000px;}
.xf_c00165{left:51.490200px;}
.xc_c00165{left:52.915200px;}
.xb_c00165{left:54.340200px;}
.xa_c00165{left:55.390200px;}
.x7_c00165{left:56.515200px;}
.x6_c00165{left:57.565200px;}
.x4_c00165{left:58.690200px;}
.x3_c00165{left:59.740200px;}
.x2_c00165{left:60.790200px;}
.x12_c00165{left:71.965200px;}
.x1_c00165{left:81.340200px;}
.xd_c00165{left:82.765200px;}
.x5_c00165{left:88.165200px;}
.x11_c00165{left:125.965200px;}
.x10_c00165{left:181.375200px;}
.xe_c00165{left:183.565200px;}
.x13_c00165{left:283.690200px;}
.x8_c00165{left:459.340200px;}
.x9_c00165{left:479.515200px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls0_c00165{letter-spacing:0.000000pt;}
.ws0_c00165{word-spacing:0.000000pt;}
.fs2_c00165{font-size:53.333333pt;}
.fs0_c00165{font-size:64.000000pt;}
.fs1_c00165{font-size:69.333333pt;}
.y0_c00165{bottom:0.000000pt;}
.y2e_c00165{bottom:178.720000pt;}
.y2d_c00165{bottom:195.053333pt;}
.y2c_c00165{bottom:214.253333pt;}
.y2b_c00165{bottom:233.800000pt;}
.y2a_c00165{bottom:252.666667pt;}
.y29_c00165{bottom:272.186667pt;}
.y28_c00165{bottom:291.333333pt;}
.y27_c00165{bottom:310.520000pt;}
.y26_c00165{bottom:329.466667pt;}
.y25_c00165{bottom:348.666667pt;}
.y24_c00165{bottom:368.120000pt;}
.y23_c00165{bottom:389.920000pt;}
.y22_c00165{bottom:406.853333pt;}
.y21_c00165{bottom:426.386667pt;}
.y20_c00165{bottom:445.253333pt;}
.y1f_c00165{bottom:446.586667pt;}
.y1e_c00165{bottom:463.786667pt;}
.y1d_c00165{bottom:464.786667pt;}
.y1c_c00165{bottom:483.386667pt;}
.y1b_c00165{bottom:502.520000pt;}
.y1a_c00165{bottom:521.720000pt;}
.y19_c00165{bottom:540.920000pt;}
.y17_c00165{bottom:559.853333pt;}
.y18_c00165{bottom:560.120000pt;}
.y16_c00165{bottom:579.053333pt;}
.y15_c00165{bottom:598.586667pt;}
.y14_c00165{bottom:617.453333pt;}
.y13_c00165{bottom:636.666667pt;}
.y12_c00165{bottom:656.120000pt;}
.y11_c00165{bottom:675.066667pt;}
.y10_c00165{bottom:694.266667pt;}
.yd_c00165{bottom:712.186667pt;}
.ye_c00165{bottom:713.720000pt;}
.yf_c00165{bottom:714.720000pt;}
.yc_c00165{bottom:732.333333pt;}
.yb_c00165{bottom:750.853333pt;}
.ya_c00165{bottom:770.053333pt;}
.y9_c00165{bottom:788.000000pt;}
.y8_c00165{bottom:807.853333pt;}
.y7_c00165{bottom:827.386667pt;}
.y6_c00165{bottom:846.520000pt;}
.y5_c00165{bottom:865.466667pt;}
.y4_c00165{bottom:884.000000pt;}
.y3_c00165{bottom:902.853333pt;}
.y2_c00165{bottom:922.053333pt;}
.y1_c00165{bottom:965.600000pt;}
.y2f_c00165{bottom:972.666667pt;}
.h4_c00165{height:52.343750pt;}
.h2_c00165{height:62.812500pt;}
.h1_c00165{height:64.500000pt;}
.h3_c00165{height:68.013021pt;}
.h0_c00165{height:1044.000000pt;}
.w0_c00165{width:650.646400pt;}
.w1_c00165{width:650.666667pt;}
.x0_c00165{left:0.000000pt;}
.xf_c00165{left:45.769067pt;}
.xc_c00165{left:47.035733pt;}
.xb_c00165{left:48.302400pt;}
.xa_c00165{left:49.235733pt;}
.x7_c00165{left:50.235733pt;}
.x6_c00165{left:51.169067pt;}
.x4_c00165{left:52.169067pt;}
.x3_c00165{left:53.102400pt;}
.x2_c00165{left:54.035733pt;}
.x12_c00165{left:63.969067pt;}
.x1_c00165{left:72.302400pt;}
.xd_c00165{left:73.569067pt;}
.x5_c00165{left:78.369067pt;}
.x11_c00165{left:111.969067pt;}
.x10_c00165{left:161.222400pt;}
.xe_c00165{left:163.169067pt;}
.x13_c00165{left:252.169067pt;}
.x8_c00165{left:408.302400pt;}
.x9_c00165{left:426.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b441681ee96f99b5938bbc02.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00166;src:url('chunks/assets/font_465bed473a3ab1f3eca20005.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00166;src:url('chunks/assets/font_637228a955c3388d26330534.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00166;src:url('chunks/assets/font_43ba8775acafdfa4740a8c5e.woff2')format("woff");}.ff4_c00166{font-family:ff4_c00166;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00166;src:url('chunks/assets/font_a2847b93026abe41b73ecdb6.woff2')format("woff");}.ff5_c00166{font-family:ff5_c00166;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00166{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m5_c00166{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m3_c00166{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m19_c00166{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb_c00166{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9_c00166{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7_c00166{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc_c00166{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me_c00166{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00166{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1_c00166{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m18_c00166{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00166{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c00166{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00166{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c00166{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c00166{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m16_c00166{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m17_c00166{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c00166{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00166{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00166{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c00166{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00166{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c00166{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m14_c00166{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c00166{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md_c00166{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m2_c00166{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00166{color:transparent;}
.fs0_c00166{font-size:60.000000px;}
.fs7_c00166{font-size:66.000000px;}
.fs8_c00166{font-size:72.000000px;}
.fs1_c00166{font-size:78.000000px;}
.fs4_c00166{font-size:84.000000px;}
.fs6_c00166{font-size:96.000000px;}
.fs5_c00166{font-size:114.000000px;}
.fs3_c00166{font-size:126.000000px;}
.fs2_c00166{font-size:180.000000px;}
.y0_c00166{bottom:0.000000px;}
.y1f_c00166{bottom:80.085000px;}
.y20_c00166{bottom:80.460000px;}
.y1d_c00166{bottom:97.410000px;}
.y1e_c00166{bottom:97.710000px;}
.y1c_c00166{bottom:114.660000px;}
.y1b_c00166{bottom:131.535000px;}
.y1a_c00166{bottom:148.125000px;}
.y19_c00166{bottom:164.310000px;}
.y16_c00166{bottom:180.210000px;}
.y17_c00166{bottom:180.885000px;}
.y18_c00166{bottom:182.310000px;}
.y15_c00166{bottom:197.385000px;}
.y14_c00166{bottom:214.035000px;}
.y11_c00166{bottom:230.910000px;}
.y12_c00166{bottom:231.960000px;}
.y13_c00166{bottom:232.335000px;}
.y10_c00166{bottom:247.875000px;}
.yf_c00166{bottom:326.310000px;}
.ye_c00166{bottom:469.260000px;}
.yd_c00166{bottom:471.000000px;}
.yc_c00166{bottom:607.185000px;}
.yb_c00166{bottom:630.885000px;}
.ya_c00166{bottom:633.435000px;}
.y9_c00166{bottom:770.925000px;}
.y8_c00166{bottom:771.675000px;}
.y7_c00166{bottom:771.960000px;}
.y6_c00166{bottom:898.335000px;}
.y5_c00166{bottom:902.685000px;}
.y4_c00166{bottom:1083.375000px;}
.y3_c00166{bottom:1086.960000px;}
.y2_c00166{bottom:1087.710000px;}
.y1_c00166{bottom:1088.775000px;}
.h1_c00166{height:58.857422px;}
.h2_c00166{height:58.886719px;}
.ha_c00166{height:64.743164px;}
.h9_c00166{height:64.775391px;}
.hb_c00166{height:70.628906px;}
.h3_c00166{height:78.609375px;}
.h6_c00166{height:82.400391px;}
.h8_c00166{height:94.218750px;}
.h7_c00166{height:111.884766px;}
.h5_c00166{height:123.662109px;}
.h4_c00166{height:187.734375px;}
.h0_c00166{height:1174.500000px;}
.w0_c00166{width:731.977200px;}
.w1_c00166{width:732.000000px;}
.x0_c00166{left:0.000000px;}
.xd_c00166{left:81.715200px;}
.x7_c00166{left:82.765200px;}
.x15_c00166{left:93.940200px;}
.x16_c00166{left:97.165200px;}
.x11_c00166{left:100.390200px;}
.xc_c00166{left:107.965200px;}
.x17_c00166{left:113.365200px;}
.x5_c00166{left:118.090200px;}
.xe_c00166{left:154.765200px;}
.x8_c00166{left:160.540200px;}
.x18_c00166{left:161.590200px;}
.x19_c00166{left:176.365200px;}
.x9_c00166{left:208.375200px;}
.x1_c00166{left:295.165200px;}
.x2_c00166{left:323.590200px;}
.xa_c00166{left:338.740200px;}
.xf_c00166{left:361.390200px;}
.x13_c00166{left:475.165200px;}
.x14_c00166{left:479.515200px;}
.x3_c00166{left:493.915200px;}
.x10_c00166{left:524.515200px;}
.xb_c00166{left:643.690200px;}
.x6_c00166{left:646.165200px;}
.x4_c00166{left:656.965200px;}
.x12_c00166{left:666.340200px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls0_c00166{letter-spacing:0.000000pt;}
.ws0_c00166{word-spacing:0.000000pt;}
.fs0_c00166{font-size:53.333333pt;}
.fs7_c00166{font-size:58.666667pt;}
.fs8_c00166{font-size:64.000000pt;}
.fs1_c00166{font-size:69.333333pt;}
.fs4_c00166{font-size:74.666667pt;}
.fs6_c00166{font-size:85.333333pt;}
.fs5_c00166{font-size:101.333333pt;}
.fs3_c00166{font-size:112.000000pt;}
.fs2_c00166{font-size:160.000000pt;}
.y0_c00166{bottom:0.000000pt;}
.y1f_c00166{bottom:71.186667pt;}
.y20_c00166{bottom:71.520000pt;}
.y1d_c00166{bottom:86.586667pt;}
.y1e_c00166{bottom:86.853333pt;}
.y1c_c00166{bottom:101.920000pt;}
.y1b_c00166{bottom:116.920000pt;}
.y1a_c00166{bottom:131.666667pt;}
.y19_c00166{bottom:146.053333pt;}
.y16_c00166{bottom:160.186667pt;}
.y17_c00166{bottom:160.786667pt;}
.y18_c00166{bottom:162.053333pt;}
.y15_c00166{bottom:175.453333pt;}
.y14_c00166{bottom:190.253333pt;}
.y11_c00166{bottom:205.253333pt;}
.y12_c00166{bottom:206.186667pt;}
.y13_c00166{bottom:206.520000pt;}
.y10_c00166{bottom:220.333333pt;}
.yf_c00166{bottom:290.053333pt;}
.ye_c00166{bottom:417.120000pt;}
.yd_c00166{bottom:418.666667pt;}
.yc_c00166{bottom:539.720000pt;}
.yb_c00166{bottom:560.786667pt;}
.ya_c00166{bottom:563.053333pt;}
.y9_c00166{bottom:685.266667pt;}
.y8_c00166{bottom:685.933333pt;}
.y7_c00166{bottom:686.186667pt;}
.y6_c00166{bottom:798.520000pt;}
.y5_c00166{bottom:802.386667pt;}
.y4_c00166{bottom:963.000000pt;}
.y3_c00166{bottom:966.186667pt;}
.y2_c00166{bottom:966.853333pt;}
.y1_c00166{bottom:967.800000pt;}
.h1_c00166{height:52.317708pt;}
.h2_c00166{height:52.343750pt;}
.ha_c00166{height:57.549479pt;}
.h9_c00166{height:57.578125pt;}
.hb_c00166{height:62.781250pt;}
.h3_c00166{height:69.875000pt;}
.h6_c00166{height:73.244792pt;}
.h8_c00166{height:83.750000pt;}
.h7_c00166{height:99.453125pt;}
.h5_c00166{height:109.921875pt;}
.h4_c00166{height:166.875000pt;}
.h0_c00166{height:1044.000000pt;}
.w0_c00166{width:650.646400pt;}
.w1_c00166{width:650.666667pt;}
.x0_c00166{left:0.000000pt;}
.xd_c00166{left:72.635733pt;}
.x7_c00166{left:73.569067pt;}
.x15_c00166{left:83.502400pt;}
.x16_c00166{left:86.369067pt;}
.x11_c00166{left:89.235733pt;}
.xc_c00166{left:95.969067pt;}
.x17_c00166{left:100.769067pt;}
.x5_c00166{left:104.969067pt;}
.xe_c00166{left:137.569067pt;}
.x8_c00166{left:142.702400pt;}
.x18_c00166{left:143.635733pt;}
.x19_c00166{left:156.769067pt;}
.x9_c00166{left:185.222400pt;}
.x1_c00166{left:262.369067pt;}
.x2_c00166{left:287.635733pt;}
.xa_c00166{left:301.102400pt;}
.xf_c00166{left:321.235733pt;}
.x13_c00166{left:422.369067pt;}
.x14_c00166{left:426.235733pt;}
.x3_c00166{left:439.035733pt;}
.x10_c00166{left:466.235733pt;}
.xb_c00166{left:572.169067pt;}
.x6_c00166{left:574.369067pt;}
.x4_c00166{left:583.969067pt;}
.x12_c00166{left:592.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd40b77c348abd6190bee054.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00167;src:url('chunks/assets/font_031ce14dc5043f2bf280918d.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.432129;font-style:normal;font-weight:normal;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_35d6f23f8bb9a5b81c662338.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00167;src:url('chunks/assets/font_4855cb74595bac5497cd2e06.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00167;src:url('chunks/assets/font_229aa33e7386e97dc7c86d26.woff2')format("woff");}.ff5_c00167{font-family:ff5_c00167;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00167{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m1_c00167{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m14_c00167{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10_c00167{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m12_c00167{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c00167{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mc_c00167{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c00167{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c00167{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c00167{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf_c00167{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m0_c00167{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00167{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00167{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00167{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00167{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c00167{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00167{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c00167{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m6_c00167{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.md_c00167{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,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;}
.fc0_c00167{color:transparent;}
.fs0_c00167{font-size:54.000000px;}
.fs3_c00167{font-size:66.000000px;}
.fs2_c00167{font-size:72.000000px;}
.fs4_c00167{font-size:78.000000px;}
.fs1_c00167{font-size:156.000000px;}
.y0_c00167{bottom:0.000000px;}
.y2e_c00167{bottom:103.125000px;}
.y2d_c00167{bottom:103.875000px;}
.y2c_c00167{bottom:105.660000px;}
.y2b_c00167{bottom:109.560000px;}
.y2a_c00167{bottom:128.685000px;}
.y29_c00167{bottom:148.500000px;}
.y28_c00167{bottom:170.460000px;}
.y27_c00167{bottom:192.060000px;}
.y26_c00167{bottom:211.875000px;}
.y25_c00167{bottom:212.535000px;}
.y24_c00167{bottom:215.835000px;}
.y23_c00167{bottom:233.460000px;}
.y22_c00167{bottom:234.510000px;}
.y21_c00167{bottom:237.435000px;}
.y20_c00167{bottom:256.500000px;}
.y1f_c00167{bottom:278.085000px;}
.y1e_c00167{bottom:300.060000px;}
.y1d_c00167{bottom:320.910000px;}
.y1c_c00167{bottom:342.525000px;}
.y1b_c00167{bottom:364.125000px;}
.y1a_c00167{bottom:385.785000px;}
.y19_c00167{bottom:407.685000px;}
.y18_c00167{bottom:429.285000px;}
.y16_c00167{bottom:450.510000px;}
.y17_c00167{bottom:450.885000px;}
.y15_c00167{bottom:472.185000px;}
.y14_c00167{bottom:493.410000px;}
.y11_c00167{bottom:514.260000px;}
.y12_c00167{bottom:514.635000px;}
.y13_c00167{bottom:515.385000px;}
.y10_c00167{bottom:536.535000px;}
.yf_c00167{bottom:557.835000px;}
.ye_c00167{bottom:579.435000px;}
.yd_c00167{bottom:600.660000px;}
.yc_c00167{bottom:622.635000px;}
.yb_c00167{bottom:644.250000px;}
.ya_c00167{bottom:666.135000px;}
.y7_c00167{bottom:684.510000px;}
.y8_c00167{bottom:685.635000px;}
.y9_c00167{bottom:688.875000px;}
.y6_c00167{bottom:709.335000px;}
.y5_c00167{bottom:772.050000px;}
.y2_c00167{bottom:900.525000px;}
.y3_c00167{bottom:902.685000px;}
.y4_c00167{bottom:910.650000px;}
.y2f_c00167{bottom:1092.750000px;}
.y1_c00167{bottom:1103.925000px;}
.h1_c00167{height:52.998047px;}
.h6_c00167{height:66.515625px;}
.h5_c00167{height:70.628906px;}
.h4_c00167{height:70.664062px;}
.h3_c00167{height:75.093750px;}
.h7_c00167{height:76.514648px;}
.h2_c00167{height:162.703125px;}
.h0_c00167{height:1174.500000px;}
.w0_c00167{width:731.977200px;}
.w1_c00167{width:732.000000px;}
.x0_c00167{left:0.000000px;}
.x8_c00167{left:38.515200px;}
.x6_c00167{left:39.565200px;}
.x2_c00167{left:63.340200px;}
.x14_c00167{left:65.890200px;}
.x10_c00167{left:69.790200px;}
.x5_c00167{left:71.590200px;}
.x7_c00167{left:181.750200px;}
.x11_c00167{left:204.490200px;}
.x3_c00167{left:207.340200px;}
.x4_c00167{left:211.990200px;}
.x9_c00167{left:234.340200px;}
.x1_c00167{left:263.515200px;}
.xb_c00167{left:300.190200px;}
.xa_c00167{left:311.740200px;}
.xc_c00167{left:327.940200px;}
.x12_c00167{left:414.340200px;}
.x13_c00167{left:439.150200px;}
.xd_c00167{left:464.365200px;}
.xe_c00167{left:567.340200px;}
.xf_c00167{left:637.165200px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls0_c00167{letter-spacing:0.000000pt;}
.ws0_c00167{word-spacing:0.000000pt;}
.fs0_c00167{font-size:48.000000pt;}
.fs3_c00167{font-size:58.666667pt;}
.fs2_c00167{font-size:64.000000pt;}
.fs4_c00167{font-size:69.333333pt;}
.fs1_c00167{font-size:138.666667pt;}
.y0_c00167{bottom:0.000000pt;}
.y2e_c00167{bottom:91.666667pt;}
.y2d_c00167{bottom:92.333333pt;}
.y2c_c00167{bottom:93.920000pt;}
.y2b_c00167{bottom:97.386667pt;}
.y2a_c00167{bottom:114.386667pt;}
.y29_c00167{bottom:132.000000pt;}
.y28_c00167{bottom:151.520000pt;}
.y27_c00167{bottom:170.720000pt;}
.y26_c00167{bottom:188.333333pt;}
.y25_c00167{bottom:188.920000pt;}
.y24_c00167{bottom:191.853333pt;}
.y23_c00167{bottom:207.520000pt;}
.y22_c00167{bottom:208.453333pt;}
.y21_c00167{bottom:211.053333pt;}
.y20_c00167{bottom:228.000000pt;}
.y1f_c00167{bottom:247.186667pt;}
.y1e_c00167{bottom:266.720000pt;}
.y1d_c00167{bottom:285.253333pt;}
.y1c_c00167{bottom:304.466667pt;}
.y1b_c00167{bottom:323.666667pt;}
.y1a_c00167{bottom:342.920000pt;}
.y19_c00167{bottom:362.386667pt;}
.y18_c00167{bottom:381.586667pt;}
.y16_c00167{bottom:400.453333pt;}
.y17_c00167{bottom:400.786667pt;}
.y15_c00167{bottom:419.720000pt;}
.y14_c00167{bottom:438.586667pt;}
.y11_c00167{bottom:457.120000pt;}
.y12_c00167{bottom:457.453333pt;}
.y13_c00167{bottom:458.120000pt;}
.y10_c00167{bottom:476.920000pt;}
.yf_c00167{bottom:495.853333pt;}
.ye_c00167{bottom:515.053333pt;}
.yd_c00167{bottom:533.920000pt;}
.yc_c00167{bottom:553.453333pt;}
.yb_c00167{bottom:572.666667pt;}
.ya_c00167{bottom:592.120000pt;}
.y7_c00167{bottom:608.453333pt;}
.y8_c00167{bottom:609.453333pt;}
.y9_c00167{bottom:612.333333pt;}
.y6_c00167{bottom:630.520000pt;}
.y5_c00167{bottom:686.266667pt;}
.y2_c00167{bottom:800.466667pt;}
.y3_c00167{bottom:802.386667pt;}
.y4_c00167{bottom:809.466667pt;}
.y2f_c00167{bottom:971.333333pt;}
.y1_c00167{bottom:981.266667pt;}
.h1_c00167{height:47.109375pt;}
.h6_c00167{height:59.125000pt;}
.h5_c00167{height:62.781250pt;}
.h4_c00167{height:62.812500pt;}
.h3_c00167{height:66.750000pt;}
.h7_c00167{height:68.013021pt;}
.h2_c00167{height:144.625000pt;}
.h0_c00167{height:1044.000000pt;}
.w0_c00167{width:650.646400pt;}
.w1_c00167{width:650.666667pt;}
.x0_c00167{left:0.000000pt;}
.x8_c00167{left:34.235733pt;}
.x6_c00167{left:35.169067pt;}
.x2_c00167{left:56.302400pt;}
.x14_c00167{left:58.569067pt;}
.x10_c00167{left:62.035733pt;}
.x5_c00167{left:63.635733pt;}
.x7_c00167{left:161.555733pt;}
.x11_c00167{left:181.769067pt;}
.x3_c00167{left:184.302400pt;}
.x4_c00167{left:188.435733pt;}
.x9_c00167{left:208.302400pt;}
.x1_c00167{left:234.235733pt;}
.xb_c00167{left:266.835733pt;}
.xa_c00167{left:277.102400pt;}
.xc_c00167{left:291.502400pt;}
.x12_c00167{left:368.302400pt;}
.x13_c00167{left:390.355733pt;}
.xd_c00167{left:412.769067pt;}
.xe_c00167{left:504.302400pt;}
.xf_c00167{left:566.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e002a3874c04500ec281e56.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00168;src:url('chunks/assets/font_c01b3ad8febf472e83340bbf.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00168;src:url('chunks/assets/font_201bd91eb3018d3b6ad5f49d.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00168;src:url('chunks/assets/font_3551a21c06539985e2b87e4e.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00168{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m12_c00168{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8_c00168{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2_c00168{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m0_c00168{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c00168{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c00168{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00168{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c00168{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00168{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00168{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c00168{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00168{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c00168{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00168{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c00168{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00168{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00168{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1_c00168{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.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;}
}
.ws0_c00168{word-spacing:0.000000px;}
.fc0_c00168{color:transparent;}
.fs0_c00168{font-size:60.000000px;}
.fs1_c00168{font-size:72.000000px;}
.fs2_c00168{font-size:84.000000px;}
.y0_c00168{bottom:0.000000px;}
.y2b_c00168{bottom:87.660000px;}
.y2a_c00168{bottom:111.810000px;}
.y29_c00168{bottom:130.875000px;}
.y28_c00168{bottom:152.760000px;}
.y27_c00168{bottom:173.685000px;}
.y26_c00168{bottom:192.750000px;}
.y25_c00168{bottom:214.710000px;}
.y24_c00168{bottom:235.635000px;}
.y23_c00168{bottom:256.875000px;}
.y22_c00168{bottom:454.875000px;}
.y21_c00168{bottom:479.310000px;}
.y20_c00168{bottom:532.260000px;}
.y1f_c00168{bottom:554.535000px;}
.y1e_c00168{bottom:576.210000px;}
.y1d_c00168{bottom:597.810000px;}
.y1c_c00168{bottom:619.335000px;}
.y1b_c00168{bottom:640.935000px;}
.y1a_c00168{bottom:662.625000px;}
.y18_c00168{bottom:681.285000px;}
.y19_c00168{bottom:684.135000px;}
.y17_c00168{bottom:705.810000px;}
.y16_c00168{bottom:727.710000px;}
.y15_c00168{bottom:749.325000px;}
.y14_c00168{bottom:771.300000px;}
.y13_c00168{bottom:792.900000px;}
.y12_c00168{bottom:814.500000px;}
.y11_c00168{bottom:836.085000px;}
.y10_c00168{bottom:857.685000px;}
.yf_c00168{bottom:879.300000px;}
.ye_c00168{bottom:900.525000px;}
.yd_c00168{bottom:921.810000px;}
.yc_c00168{bottom:943.050000px;}
.yb_c00168{bottom:964.560000px;}
.ya_c00168{bottom:984.810000px;}
.y9_c00168{bottom:985.125000px;}
.y8_c00168{bottom:986.250000px;}
.y7_c00168{bottom:1007.775000px;}
.y6_c00168{bottom:1028.310000px;}
.y5_c00168{bottom:1029.375000px;}
.y4_c00168{bottom:1030.125000px;}
.y3_c00168{bottom:1085.175000px;}
.y2_c00168{bottom:1089.150000px;}
.y1_c00168{bottom:1089.525000px;}
.h4_c00168{height:58.886719px;}
.h1_c00168{height:60.468750px;}
.h2_c00168{height:70.664062px;}
.h3_c00168{height:82.400391px;}
.h0_c00168{height:1174.500000px;}
.w0_c00168{width:731.977200px;}
.w1_c00168{width:732.000000px;}
.x0_c00168{left:0.000000px;}
.x17_c00168{left:73.765200px;}
.x14_c00168{left:74.890200px;}
.x10_c00168{left:76.300200px;}
.xe_c00168{left:78.115200px;}
.xc_c00168{left:79.165200px;}
.xb_c00168{left:81.715200px;}
.x4_c00168{left:83.890200px;}
.x11_c00168{left:97.165200px;}
.xf_c00168{left:99.340200px;}
.xd_c00168{left:100.765200px;}
.x18_c00168{left:105.490200px;}
.xa_c00168{left:106.540200px;}
.x12_c00168{left:108.715200px;}
.x13_c00168{left:113.365200px;}
.x9_c00168{left:115.540200px;}
.x1_c00168{left:299.890200px;}
.x5_c00168{left:370.390200px;}
.x16_c00168{left:407.890200px;}
.x15_c00168{left:446.740200px;}
.x7_c00168{left:448.540200px;}
.x6_c00168{left:462.940200px;}
.x2_c00168{left:492.790200px;}
.x8_c00168{left:554.365200px;}
.x3_c00168{left:652.990200px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls0_c00168{letter-spacing:0.000000pt;}
.ws0_c00168{word-spacing:0.000000pt;}
.fs0_c00168{font-size:53.333333pt;}
.fs1_c00168{font-size:64.000000pt;}
.fs2_c00168{font-size:74.666667pt;}
.y0_c00168{bottom:0.000000pt;}
.y2b_c00168{bottom:77.920000pt;}
.y2a_c00168{bottom:99.386667pt;}
.y29_c00168{bottom:116.333333pt;}
.y28_c00168{bottom:135.786667pt;}
.y27_c00168{bottom:154.386667pt;}
.y26_c00168{bottom:171.333333pt;}
.y25_c00168{bottom:190.853333pt;}
.y24_c00168{bottom:209.453333pt;}
.y23_c00168{bottom:228.333333pt;}
.y22_c00168{bottom:404.333333pt;}
.y21_c00168{bottom:426.053333pt;}
.y20_c00168{bottom:473.120000pt;}
.y1f_c00168{bottom:492.920000pt;}
.y1e_c00168{bottom:512.186667pt;}
.y1d_c00168{bottom:531.386667pt;}
.y1c_c00168{bottom:550.520000pt;}
.y1b_c00168{bottom:569.720000pt;}
.y1a_c00168{bottom:589.000000pt;}
.y18_c00168{bottom:605.586667pt;}
.y19_c00168{bottom:608.120000pt;}
.y17_c00168{bottom:627.386667pt;}
.y16_c00168{bottom:646.853333pt;}
.y15_c00168{bottom:666.066667pt;}
.y14_c00168{bottom:685.600000pt;}
.y13_c00168{bottom:704.800000pt;}
.y12_c00168{bottom:724.000000pt;}
.y11_c00168{bottom:743.186667pt;}
.y10_c00168{bottom:762.386667pt;}
.yf_c00168{bottom:781.600000pt;}
.ye_c00168{bottom:800.466667pt;}
.yd_c00168{bottom:819.386667pt;}
.yc_c00168{bottom:838.266667pt;}
.yb_c00168{bottom:857.386667pt;}
.ya_c00168{bottom:875.386667pt;}
.y9_c00168{bottom:875.666667pt;}
.y8_c00168{bottom:876.666667pt;}
.y7_c00168{bottom:895.800000pt;}
.y6_c00168{bottom:914.053333pt;}
.y5_c00168{bottom:915.000000pt;}
.y4_c00168{bottom:915.666667pt;}
.y3_c00168{bottom:964.600000pt;}
.y2_c00168{bottom:968.133333pt;}
.y1_c00168{bottom:968.466667pt;}
.h4_c00168{height:52.343750pt;}
.h1_c00168{height:53.750000pt;}
.h2_c00168{height:62.812500pt;}
.h3_c00168{height:73.244792pt;}
.h0_c00168{height:1044.000000pt;}
.w0_c00168{width:650.646400pt;}
.w1_c00168{width:650.666667pt;}
.x0_c00168{left:0.000000pt;}
.x17_c00168{left:65.569067pt;}
.x14_c00168{left:66.569067pt;}
.x10_c00168{left:67.822400pt;}
.xe_c00168{left:69.435733pt;}
.xc_c00168{left:70.369067pt;}
.xb_c00168{left:72.635733pt;}
.x4_c00168{left:74.569067pt;}
.x11_c00168{left:86.369067pt;}
.xf_c00168{left:88.302400pt;}
.xd_c00168{left:89.569067pt;}
.x18_c00168{left:93.769067pt;}
.xa_c00168{left:94.702400pt;}
.x12_c00168{left:96.635733pt;}
.x13_c00168{left:100.769067pt;}
.x9_c00168{left:102.702400pt;}
.x1_c00168{left:266.569067pt;}
.x5_c00168{left:329.235733pt;}
.x16_c00168{left:362.569067pt;}
.x15_c00168{left:397.102400pt;}
.x7_c00168{left:398.702400pt;}
.x6_c00168{left:411.502400pt;}
.x2_c00168{left:438.035733pt;}
.x8_c00168{left:492.769067pt;}
.x3_c00168{left:580.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15ab62c69abc044880c2bef3.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00169;src:url('chunks/assets/font_b91d51f8d049352db2e7c31a.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00169{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m0_c00169{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m15_c00169{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m17_c00169{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00169{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc_c00169{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00169{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00169{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf_c00169{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00169{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00169{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00169{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00169{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00169{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00169{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00169{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c00169{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00169{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m14_c00169{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00169{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m16_c00169{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m11_c00169{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c00169{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1_c00169{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls0_c00169{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00169{color:transparent;}
.fs1_c00169{font-size:60.000000px;}
.fs0_c00169{font-size:72.000000px;}
.y0_c00169{bottom:0.000000px;}
.y35_c00169{bottom:90.885000px;}
.y34_c00169{bottom:98.460000px;}
.y33_c00169{bottom:112.875000px;}
.y32_c00169{bottom:142.710000px;}
.y31_c00169{bottom:156.060000px;}
.y30_c00169{bottom:180.885000px;}
.y2f_c00169{bottom:199.935000px;}
.y2e_c00169{bottom:221.250000px;}
.y2d_c00169{bottom:239.910000px;}
.y2c_c00169{bottom:240.660000px;}
.y2b_c00169{bottom:243.885000px;}
.y2a_c00169{bottom:262.650000px;}
.y29_c00169{bottom:264.435000px;}
.y28_c00169{bottom:267.285000px;}
.y27_c00169{bottom:287.085000px;}
.y26_c00169{bottom:307.935000px;}
.y25_c00169{bottom:329.535000px;}
.y24_c00169{bottom:350.085000px;}
.y23_c00169{bottom:350.460000px;}
.y22_c00169{bottom:352.275000px;}
.y21_c00169{bottom:373.125000px;}
.y20_c00169{bottom:394.710000px;}
.y1f_c00169{bottom:416.310000px;}
.y1e_c00169{bottom:438.660000px;}
.y1d_c00169{bottom:459.885000px;}
.y1c_c00169{bottom:481.875000px;}
.y1b_c00169{bottom:503.460000px;}
.y1a_c00169{bottom:525.060000px;}
.y19_c00169{bottom:546.585000px;}
.y18_c00169{bottom:567.885000px;}
.y17_c00169{bottom:589.500000px;}
.y16_c00169{bottom:611.085000px;}
.y15_c00169{bottom:633.060000px;}
.y14_c00169{bottom:654.660000px;}
.y13_c00169{bottom:676.260000px;}
.y12_c00169{bottom:697.875000px;}
.y11_c00169{bottom:719.460000px;}
.y10_c00169{bottom:737.835000px;}
.yf_c00169{bottom:761.910000px;}
.ye_c00169{bottom:783.510000px;}
.yd_c00169{bottom:805.500000px;}
.yc_c00169{bottom:826.710000px;}
.yb_c00169{bottom:845.085000px;}
.ya_c00169{bottom:868.500000px;}
.y9_c00169{bottom:890.460000px;}
.y6_c00169{bottom:907.710000px;}
.y7_c00169{bottom:910.650000px;}
.y8_c00169{bottom:914.250000px;}
.y5_c00169{bottom:933.675000px;}
.y4_c00169{bottom:983.685000px;}
.y1_c00169{bottom:1085.925000px;}
.y2_c00169{bottom:1086.300000px;}
.y3_c00169{bottom:1096.050000px;}
.h2_c00169{height:58.886719px;}
.h1_c00169{height:70.664062px;}
.h3_c00169{height:72.562500px;}
.h0_c00169{height:1174.500000px;}
.w0_c00169{width:731.977200px;}
.w1_c00169{width:732.000000px;}
.x0_c00169{left:0.000000px;}
.xe_c00169{left:46.765200px;}
.xd_c00169{left:48.190200px;}
.xb_c00169{left:49.315200px;}
.xa_c00169{left:50.365200px;}
.x9_c00169{left:51.490200px;}
.x6_c00169{left:52.915200px;}
.xc_c00169{left:69.115200px;}
.x1_c00169{left:74.515200px;}
.xf_c00169{left:78.490200px;}
.x10_c00169{left:80.965200px;}
.x5_c00169{left:82.765200px;}
.x2_c00169{left:100.390200px;}
.x17_c00169{left:123.490200px;}
.x4_c00169{left:232.540200px;}
.x7_c00169{left:269.290200px;}
.x3_c00169{left:271.765200px;}
.x8_c00169{left:323.290200px;}
.x11_c00169{left:403.525200px;}
.x13_c00169{left:411.775200px;}
.x12_c00169{left:418.990200px;}
.x14_c00169{left:429.490200px;}
.x15_c00169{left:605.140200px;}
.x16_c00169{left:643.690200px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls0_c00169{letter-spacing:0.000000pt;}
.ws0_c00169{word-spacing:0.000000pt;}
.fs1_c00169{font-size:53.333333pt;}
.fs0_c00169{font-size:64.000000pt;}
.y0_c00169{bottom:0.000000pt;}
.y35_c00169{bottom:80.786667pt;}
.y34_c00169{bottom:87.520000pt;}
.y33_c00169{bottom:100.333333pt;}
.y32_c00169{bottom:126.853333pt;}
.y31_c00169{bottom:138.720000pt;}
.y30_c00169{bottom:160.786667pt;}
.y2f_c00169{bottom:177.720000pt;}
.y2e_c00169{bottom:196.666667pt;}
.y2d_c00169{bottom:213.253333pt;}
.y2c_c00169{bottom:213.920000pt;}
.y2b_c00169{bottom:216.786667pt;}
.y2a_c00169{bottom:233.466667pt;}
.y29_c00169{bottom:235.053333pt;}
.y28_c00169{bottom:237.586667pt;}
.y27_c00169{bottom:255.186667pt;}
.y26_c00169{bottom:273.720000pt;}
.y25_c00169{bottom:292.920000pt;}
.y24_c00169{bottom:311.186667pt;}
.y23_c00169{bottom:311.520000pt;}
.y22_c00169{bottom:313.133333pt;}
.y21_c00169{bottom:331.666667pt;}
.y20_c00169{bottom:350.853333pt;}
.y1f_c00169{bottom:370.053333pt;}
.y1e_c00169{bottom:389.920000pt;}
.y1d_c00169{bottom:408.786667pt;}
.y1c_c00169{bottom:428.333333pt;}
.y1b_c00169{bottom:447.520000pt;}
.y1a_c00169{bottom:466.720000pt;}
.y19_c00169{bottom:485.853333pt;}
.y18_c00169{bottom:504.786667pt;}
.y17_c00169{bottom:524.000000pt;}
.y16_c00169{bottom:543.186667pt;}
.y15_c00169{bottom:562.720000pt;}
.y14_c00169{bottom:581.920000pt;}
.y13_c00169{bottom:601.120000pt;}
.y12_c00169{bottom:620.333333pt;}
.y11_c00169{bottom:639.520000pt;}
.y10_c00169{bottom:655.853333pt;}
.yf_c00169{bottom:677.253333pt;}
.ye_c00169{bottom:696.453333pt;}
.yd_c00169{bottom:716.000000pt;}
.yc_c00169{bottom:734.853333pt;}
.yb_c00169{bottom:751.186667pt;}
.ya_c00169{bottom:772.000000pt;}
.y9_c00169{bottom:791.520000pt;}
.y6_c00169{bottom:806.853333pt;}
.y7_c00169{bottom:809.466667pt;}
.y8_c00169{bottom:812.666667pt;}
.y5_c00169{bottom:829.933333pt;}
.y4_c00169{bottom:874.386667pt;}
.y1_c00169{bottom:965.266667pt;}
.y2_c00169{bottom:965.600000pt;}
.y3_c00169{bottom:974.266667pt;}
.h2_c00169{height:52.343750pt;}
.h1_c00169{height:62.812500pt;}
.h3_c00169{height:64.500000pt;}
.h0_c00169{height:1044.000000pt;}
.w0_c00169{width:650.646400pt;}
.w1_c00169{width:650.666667pt;}
.x0_c00169{left:0.000000pt;}
.xe_c00169{left:41.569067pt;}
.xd_c00169{left:42.835733pt;}
.xb_c00169{left:43.835733pt;}
.xa_c00169{left:44.769067pt;}
.x9_c00169{left:45.769067pt;}
.x6_c00169{left:47.035733pt;}
.xc_c00169{left:61.435733pt;}
.x1_c00169{left:66.235733pt;}
.xf_c00169{left:69.769067pt;}
.x10_c00169{left:71.969067pt;}
.x5_c00169{left:73.569067pt;}
.x2_c00169{left:89.235733pt;}
.x17_c00169{left:109.769067pt;}
.x4_c00169{left:206.702400pt;}
.x7_c00169{left:239.369067pt;}
.x3_c00169{left:241.569067pt;}
.x8_c00169{left:287.369067pt;}
.x11_c00169{left:358.689067pt;}
.x13_c00169{left:366.022400pt;}
.x12_c00169{left:372.435733pt;}
.x14_c00169{left:381.769067pt;}
.x15_c00169{left:537.902400pt;}
.x16_c00169{left:572.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a4ccf62d7a982168d848549b.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00170;src:url('chunks/assets/font_4452dcd54c41ce76a345a398.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00170{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mc_c00170{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4_c00170{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00170{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.md_c00170{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m19_c00170{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c00170{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00170{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m16_c00170{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00170{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c00170{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00170{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00170{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c00170{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00170{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c00170{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00170{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00170{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00170{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00170{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00170{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00170{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c00170{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c00170{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m17_c00170{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma_c00170{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m18_c00170{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3_c00170{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00170{vertical-align:0.000000px;}
.ls0_c00170{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00170{word-spacing:0.000000px;}
.fc0_c00170{color:transparent;}
.fs0_c00170{font-size:60.000000px;}
.fs1_c00170{font-size:66.000000px;}
.fs2_c00170{font-size:72.000000px;}
.y0_c00170{bottom:0.000000px;}
.y32_c00170{bottom:82.260000px;}
.y2f_c00170{bottom:102.810000px;}
.y30_c00170{bottom:104.625000px;}
.y31_c00170{bottom:107.835000px;}
.y2e_c00170{bottom:124.710000px;}
.y2a_c00170{bottom:144.885000px;}
.y2b_c00170{bottom:145.260000px;}
.y2c_c00170{bottom:149.250000px;}
.y2d_c00170{bottom:149.625000px;}
.y29_c00170{bottom:191.010000px;}
.y28_c00170{bottom:261.150000px;}
.y27_c00170{bottom:378.525000px;}
.y26_c00170{bottom:399.750000px;}
.y25_c00170{bottom:422.085000px;}
.y24_c00170{bottom:443.310000px;}
.y23_c00170{bottom:465.660000px;}
.y22_c00170{bottom:486.885000px;}
.y21_c00170{bottom:508.875000px;}
.y20_c00170{bottom:531.135000px;}
.y1f_c00170{bottom:552.435000px;}
.y1e_c00170{bottom:573.960000px;}
.y1d_c00170{bottom:595.635000px;}
.y1c_c00170{bottom:617.535000px;}
.y1b_c00170{bottom:638.835000px;}
.y1a_c00170{bottom:660.435000px;}
.y19_c00170{bottom:682.335000px;}
.y18_c00170{bottom:704.010000px;}
.y17_c00170{bottom:725.910000px;}
.y16_c00170{bottom:747.510000px;}
.y15_c00170{bottom:769.500000px;}
.y14_c00170{bottom:791.775000px;}
.y13_c00170{bottom:812.685000px;}
.y12_c00170{bottom:834.960000px;}
.yf_c00170{bottom:856.650000px;}
.y11_c00170{bottom:857.310000px;}
.y10_c00170{bottom:857.400000px;}
.ye_c00170{bottom:875.310000px;}
.yd_c00170{bottom:876.060000px;}
.yc_c00170{bottom:878.250000px;}
.yb_c00170{bottom:899.460000px;}
.ya_c00170{bottom:921.060000px;}
.y9_c00170{bottom:941.925000px;}
.y8_c00170{bottom:964.935000px;}
.y7_c00170{bottom:984.750000px;}
.y6_c00170{bottom:1007.460000px;}
.y5_c00170{bottom:1028.310000px;}
.y4_c00170{bottom:1085.925000px;}
.y3_c00170{bottom:1088.835000px;}
.y1_c00170{bottom:1089.525000px;}
.y2_c00170{bottom:1089.585000px;}
.h4_c00170{height:58.886719px;}
.h1_c00170{height:60.468750px;}
.h2_c00170{height:64.775391px;}
.h3_c00170{height:70.664062px;}
.h0_c00170{height:1174.500000px;}
.w0_c00170{width:731.977200px;}
.w1_c00170{width:732.000000px;}
.x0_c00170{left:0.000000px;}
.xe_c00170{left:71.290200px;}
.x6_c00170{left:73.090200px;}
.x8_c00170{left:74.140200px;}
.x16_c00170{left:78.490200px;}
.xf_c00170{left:103.315200px;}
.x7_c00170{left:105.115200px;}
.x9_c00170{left:106.915200px;}
.x12_c00170{left:110.140200px;}
.xc_c00170{left:119.890200px;}
.xd_c00170{left:130.315200px;}
.x13_c00170{left:147.565200px;}
.x11_c00170{left:216.340200px;}
.x17_c00170{left:224.590200px;}
.x10_c00170{left:268.540200px;}
.x1_c00170{left:314.290200px;}
.x2_c00170{left:321.115200px;}
.x3_c00170{left:324.340200px;}
.x4_c00170{left:481.690200px;}
.x14_c00170{left:603.340200px;}
.xa_c00170{left:612.340200px;}
.x15_c00170{left:631.090200px;}
.x5_c00170{left:645.115200px;}
.xb_c00170{left:647.590200px;}
.x18_c00170{left:658.390200px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls0_c00170{letter-spacing:0.000000pt;}
.ws0_c00170{word-spacing:0.000000pt;}
.fs0_c00170{font-size:53.333333pt;}
.fs1_c00170{font-size:58.666667pt;}
.fs2_c00170{font-size:64.000000pt;}
.y0_c00170{bottom:0.000000pt;}
.y32_c00170{bottom:73.120000pt;}
.y2f_c00170{bottom:91.386667pt;}
.y30_c00170{bottom:93.000000pt;}
.y31_c00170{bottom:95.853333pt;}
.y2e_c00170{bottom:110.853333pt;}
.y2a_c00170{bottom:128.786667pt;}
.y2b_c00170{bottom:129.120000pt;}
.y2c_c00170{bottom:132.666667pt;}
.y2d_c00170{bottom:133.000000pt;}
.y29_c00170{bottom:169.786667pt;}
.y28_c00170{bottom:232.133333pt;}
.y27_c00170{bottom:336.466667pt;}
.y26_c00170{bottom:355.333333pt;}
.y25_c00170{bottom:375.186667pt;}
.y24_c00170{bottom:394.053333pt;}
.y23_c00170{bottom:413.920000pt;}
.y22_c00170{bottom:432.786667pt;}
.y21_c00170{bottom:452.333333pt;}
.y20_c00170{bottom:472.120000pt;}
.y1f_c00170{bottom:491.053333pt;}
.y1e_c00170{bottom:510.186667pt;}
.y1d_c00170{bottom:529.453333pt;}
.y1c_c00170{bottom:548.920000pt;}
.y1b_c00170{bottom:567.853333pt;}
.y1a_c00170{bottom:587.053333pt;}
.y19_c00170{bottom:606.520000pt;}
.y18_c00170{bottom:625.786667pt;}
.y17_c00170{bottom:645.253333pt;}
.y16_c00170{bottom:664.453333pt;}
.y15_c00170{bottom:684.000000pt;}
.y14_c00170{bottom:703.800000pt;}
.y13_c00170{bottom:722.386667pt;}
.y12_c00170{bottom:742.186667pt;}
.yf_c00170{bottom:761.466667pt;}
.y11_c00170{bottom:762.053333pt;}
.y10_c00170{bottom:762.133333pt;}
.ye_c00170{bottom:778.053333pt;}
.yd_c00170{bottom:778.720000pt;}
.yc_c00170{bottom:780.666667pt;}
.yb_c00170{bottom:799.520000pt;}
.ya_c00170{bottom:818.720000pt;}
.y9_c00170{bottom:837.266667pt;}
.y8_c00170{bottom:857.720000pt;}
.y7_c00170{bottom:875.333333pt;}
.y6_c00170{bottom:895.520000pt;}
.y5_c00170{bottom:914.053333pt;}
.y4_c00170{bottom:965.266667pt;}
.y3_c00170{bottom:967.853333pt;}
.y1_c00170{bottom:968.466667pt;}
.y2_c00170{bottom:968.520000pt;}
.h4_c00170{height:52.343750pt;}
.h1_c00170{height:53.750000pt;}
.h2_c00170{height:57.578125pt;}
.h3_c00170{height:62.812500pt;}
.h0_c00170{height:1044.000000pt;}
.w0_c00170{width:650.646400pt;}
.w1_c00170{width:650.666667pt;}
.x0_c00170{left:0.000000pt;}
.xe_c00170{left:63.369067pt;}
.x6_c00170{left:64.969067pt;}
.x8_c00170{left:65.902400pt;}
.x16_c00170{left:69.769067pt;}
.xf_c00170{left:91.835733pt;}
.x7_c00170{left:93.435733pt;}
.x9_c00170{left:95.035733pt;}
.x12_c00170{left:97.902400pt;}
.xc_c00170{left:106.569067pt;}
.xd_c00170{left:115.835733pt;}
.x13_c00170{left:131.169067pt;}
.x11_c00170{left:192.302400pt;}
.x17_c00170{left:199.635733pt;}
.x10_c00170{left:238.702400pt;}
.x1_c00170{left:279.369067pt;}
.x2_c00170{left:285.435733pt;}
.x3_c00170{left:288.302400pt;}
.x4_c00170{left:428.169067pt;}
.x14_c00170{left:536.302400pt;}
.xa_c00170{left:544.302400pt;}
.x15_c00170{left:560.969067pt;}
.x5_c00170{left:573.435733pt;}
.xb_c00170{left:575.635733pt;}
.x18_c00170{left:585.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d796c351b817381ee6e53e09.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00171;src:url('chunks/assets/font_807d0138b76d9da09a267a4b.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00171;src:url('chunks/assets/font_53c514705e0ba59fad07a7a8.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00171{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00171{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m15_c00171{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m14_c00171{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m0_c00171{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00171{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m16_c00171{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m19_c00171{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00171{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1a_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);}
.m12_c00171{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m17_c00171{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c00171{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mf_c00171{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c00171{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mb_c00171{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4_c00171{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00171{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c00171{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c00171{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00171{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00171{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m20_c00171{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00171{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c00171{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00171{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00171{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00171{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c00171{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00171{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m21_c00171{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m22_c00171{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c00171{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m10_c00171{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m1_c00171{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00171{color:transparent;}
.fs2_c00171{font-size:54.000000px;}
.fs1_c00171{font-size:60.000000px;}
.fs4_c00171{font-size:66.000000px;}
.fs0_c00171{font-size:78.000000px;}
.fs3_c00171{font-size:138.000000px;}
.y0_c00171{bottom:0.000000px;}
.y3b_c00171{bottom:103.875000px;}
.y3a_c00171{bottom:109.635000px;}
.y39_c00171{bottom:123.000000px;}
.y38_c00171{bottom:131.535000px;}
.y37_c00171{bottom:144.885000px;}
.y36_c00171{bottom:166.500000px;}
.y35_c00171{bottom:188.085000px;}
.y34_c00171{bottom:210.000000px;}
.y33_c00171{bottom:231.000000px;}
.y32_c00171{bottom:255.060000px;}
.y31_c00171{bottom:270.210000px;}
.y30_c00171{bottom:275.910000px;}
.y2f_c00171{bottom:295.335000px;}
.y2e_c00171{bottom:319.125000px;}
.y2d_c00171{bottom:338.625000px;}
.y2c_c00171{bottom:360.210000px;}
.y2b_c00171{bottom:382.185000px;}
.y2a_c00171{bottom:404.085000px;}
.y29_c00171{bottom:425.010000px;}
.y28_c00171{bottom:447.285000px;}
.y27_c00171{bottom:468.885000px;}
.y26_c00171{bottom:490.185000px;}
.y25_c00171{bottom:511.785000px;}
.y21_c00171{bottom:531.885000px;}
.y24_c00171{bottom:532.185000px;}
.y22_c00171{bottom:532.260000px;}
.y1f_c00171{bottom:532.635000px;}
.y1e_c00171{bottom:533.010000px;}
.y1a_c00171{bottom:533.310000px;}
.y1b_c00171{bottom:533.385000px;}
.y19_c00171{bottom:533.685000px;}
.y23_c00171{bottom:553.875000px;}
.y20_c00171{bottom:554.250000px;}
.y18_c00171{bottom:554.625000px;}
.y1d_c00171{bottom:554.910000px;}
.y1c_c00171{bottom:555.000000px;}
.y17_c00171{bottom:576.210000px;}
.y16_c00171{bottom:597.750000px;}
.y15_c00171{bottom:619.410000px;}
.y14_c00171{bottom:639.510000px;}
.y13_c00171{bottom:675.210000px;}
.y12_c00171{bottom:748.260000px;}
.y11_c00171{bottom:768.810000px;}
.y10_c00171{bottom:792.150000px;}
.yf_c00171{bottom:813.060000px;}
.ye_c00171{bottom:834.000000px;}
.yd_c00171{bottom:855.585000px;}
.yc_c00171{bottom:876.435000px;}
.yb_c00171{bottom:898.050000px;}
.ya_c00171{bottom:919.275000px;}
.y9_c00171{bottom:940.125000px;}
.y8_c00171{bottom:962.085000px;}
.y7_c00171{bottom:983.310000px;}
.y6_c00171{bottom:1004.925000px;}
.y5_c00171{bottom:1021.125000px;}
.y4_c00171{bottom:1046.685000px;}
.y1_c00171{bottom:1094.550000px;}
.y3_c00171{bottom:1103.550000px;}
.y2_c00171{bottom:1109.025000px;}
.h3_c00171{height:52.998047px;}
.h2_c00171{height:58.886719px;}
.h6_c00171{height:64.775391px;}
.h1_c00171{height:76.552734px;}
.h5_c00171{height:78.609375px;}
.h4_c00171{height:143.929688px;}
.h0_c00171{height:1174.500000px;}
.w0_c00171{width:731.977200px;}
.w1_c00171{width:732.000000px;}
.x0_c00171{left:0.000000px;}
.x2a_c00171{left:45.340200px;}
.x29_c00171{left:46.390200px;}
.x26_c00171{left:48.190200px;}
.xf_c00171{left:50.365200px;}
.xe_c00171{left:51.490200px;}
.x9_c00171{left:56.140200px;}
.x8_c00171{left:57.190200px;}
.x7_c00171{left:58.315200px;}
.x6_c00171{left:60.115200px;}
.x5_c00171{left:62.590200px;}
.x28_c00171{left:76.675200px;}
.x25_c00171{left:78.115200px;}
.xd_c00171{left:82.390200px;}
.x1_c00171{left:83.515200px;}
.xa_c00171{left:85.300200px;}
.x10_c00171{left:91.390200px;}
.x4_c00171{left:92.515200px;}
.x11_c00171{left:99.715200px;}
.x2b_c00171{left:105.490200px;}
.x2_c00171{left:109.390200px;}
.x2c_c00171{left:141.790200px;}
.x12_c00171{left:179.590200px;}
.x13_c00171{left:199.090200px;}
.x14_c00171{left:200.500200px;}
.x15_c00171{left:219.940200px;}
.x16_c00171{left:227.515200px;}
.x17_c00171{left:248.740200px;}
.x18_c00171{left:265.315200px;}
.x19_c00171{left:276.115200px;}
.x3_c00171{left:280.090200px;}
.xb_c00171{left:282.190200px;}
.x1a_c00171{left:287.290200px;}
.x1b_c00171{left:350.290200px;}
.x1c_c00171{left:364.690200px;}
.x1d_c00171{left:449.590200px;}
.x1e_c00171{left:470.515200px;}
.x1f_c00171{left:479.890200px;}
.x27_c00171{left:515.140200px;}
.x20_c00171{left:608.365200px;}
.x21_c00171{left:629.590200px;}
.x22_c00171{left:638.290200px;}
.x24_c00171{left:651.940200px;}
.x23_c00171{left:657.715200px;}
.xc_c00171{left:752.365200px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ws0_c00171{word-spacing:0.000000pt;}
.fs2_c00171{font-size:48.000000pt;}
.fs1_c00171{font-size:53.333333pt;}
.fs4_c00171{font-size:58.666667pt;}
.fs0_c00171{font-size:69.333333pt;}
.fs3_c00171{font-size:122.666667pt;}
.y0_c00171{bottom:0.000000pt;}
.y3b_c00171{bottom:92.333333pt;}
.y3a_c00171{bottom:97.453333pt;}
.y39_c00171{bottom:109.333333pt;}
.y38_c00171{bottom:116.920000pt;}
.y37_c00171{bottom:128.786667pt;}
.y36_c00171{bottom:148.000000pt;}
.y35_c00171{bottom:167.186667pt;}
.y34_c00171{bottom:186.666667pt;}
.y33_c00171{bottom:205.333333pt;}
.y32_c00171{bottom:226.720000pt;}
.y31_c00171{bottom:240.186667pt;}
.y30_c00171{bottom:245.253333pt;}
.y2f_c00171{bottom:262.520000pt;}
.y2e_c00171{bottom:283.666667pt;}
.y2d_c00171{bottom:301.000000pt;}
.y2c_c00171{bottom:320.186667pt;}
.y2b_c00171{bottom:339.720000pt;}
.y2a_c00171{bottom:359.186667pt;}
.y29_c00171{bottom:377.786667pt;}
.y28_c00171{bottom:397.586667pt;}
.y27_c00171{bottom:416.786667pt;}
.y26_c00171{bottom:435.720000pt;}
.y25_c00171{bottom:454.920000pt;}
.y21_c00171{bottom:472.786667pt;}
.y24_c00171{bottom:473.053333pt;}
.y22_c00171{bottom:473.120000pt;}
.y1f_c00171{bottom:473.453333pt;}
.y1e_c00171{bottom:473.786667pt;}
.y1a_c00171{bottom:474.053333pt;}
.y1b_c00171{bottom:474.120000pt;}
.y19_c00171{bottom:474.386667pt;}
.y23_c00171{bottom:492.333333pt;}
.y20_c00171{bottom:492.666667pt;}
.y18_c00171{bottom:493.000000pt;}
.y1d_c00171{bottom:493.253333pt;}
.y1c_c00171{bottom:493.333333pt;}
.y17_c00171{bottom:512.186667pt;}
.y16_c00171{bottom:531.333333pt;}
.y15_c00171{bottom:550.586667pt;}
.y14_c00171{bottom:568.453333pt;}
.y13_c00171{bottom:600.186667pt;}
.y12_c00171{bottom:665.120000pt;}
.y11_c00171{bottom:683.386667pt;}
.y10_c00171{bottom:704.133333pt;}
.yf_c00171{bottom:722.720000pt;}
.ye_c00171{bottom:741.333333pt;}
.yd_c00171{bottom:760.520000pt;}
.yc_c00171{bottom:779.053333pt;}
.yb_c00171{bottom:798.266667pt;}
.ya_c00171{bottom:817.133333pt;}
.y9_c00171{bottom:835.666667pt;}
.y8_c00171{bottom:855.186667pt;}
.y7_c00171{bottom:874.053333pt;}
.y6_c00171{bottom:893.266667pt;}
.y5_c00171{bottom:907.666667pt;}
.y4_c00171{bottom:930.386667pt;}
.y1_c00171{bottom:972.933333pt;}
.y3_c00171{bottom:980.933333pt;}
.y2_c00171{bottom:985.800000pt;}
.h3_c00171{height:47.109375pt;}
.h2_c00171{height:52.343750pt;}
.h6_c00171{height:57.578125pt;}
.h1_c00171{height:68.046875pt;}
.h5_c00171{height:69.875000pt;}
.h4_c00171{height:127.937500pt;}
.h0_c00171{height:1044.000000pt;}
.w0_c00171{width:650.646400pt;}
.w1_c00171{width:650.666667pt;}
.x0_c00171{left:0.000000pt;}
.x2a_c00171{left:40.302400pt;}
.x29_c00171{left:41.235733pt;}
.x26_c00171{left:42.835733pt;}
.xf_c00171{left:44.769067pt;}
.xe_c00171{left:45.769067pt;}
.x9_c00171{left:49.902400pt;}
.x8_c00171{left:50.835733pt;}
.x7_c00171{left:51.835733pt;}
.x6_c00171{left:53.435733pt;}
.x5_c00171{left:55.635733pt;}
.x28_c00171{left:68.155733pt;}
.x25_c00171{left:69.435733pt;}
.xd_c00171{left:73.235733pt;}
.x1_c00171{left:74.235733pt;}
.xa_c00171{left:75.822400pt;}
.x10_c00171{left:81.235733pt;}
.x4_c00171{left:82.235733pt;}
.x11_c00171{left:88.635733pt;}
.x2b_c00171{left:93.769067pt;}
.x2_c00171{left:97.235733pt;}
.x2c_c00171{left:126.035733pt;}
.x12_c00171{left:159.635733pt;}
.x13_c00171{left:176.969067pt;}
.x14_c00171{left:178.222400pt;}
.x15_c00171{left:195.502400pt;}
.x16_c00171{left:202.235733pt;}
.x17_c00171{left:221.102400pt;}
.x18_c00171{left:235.835733pt;}
.x19_c00171{left:245.435733pt;}
.x3_c00171{left:248.969067pt;}
.xb_c00171{left:250.835733pt;}
.x1a_c00171{left:255.369067pt;}
.x1b_c00171{left:311.369067pt;}
.x1c_c00171{left:324.169067pt;}
.x1d_c00171{left:399.635733pt;}
.x1e_c00171{left:418.235733pt;}
.x1f_c00171{left:426.569067pt;}
.x27_c00171{left:457.902400pt;}
.x20_c00171{left:540.769067pt;}
.x21_c00171{left:559.635733pt;}
.x22_c00171{left:567.369067pt;}
.x24_c00171{left:579.502400pt;}
.x23_c00171{left:584.635733pt;}
.xc_c00171{left:668.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8cbd451ef6ea9103b65d08d.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00172;src:url('chunks/assets/font_156ab7c42ff25a54c7e44081.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c00172{transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);}
.m2_c00172{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m5_c00172{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c00172{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c00172{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c00172{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m8_c00172{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4_c00172{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md_c00172{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc_c00172{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c00172{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me_c00172{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c00172{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00172{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c00172{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00172{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m11_c00172{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1_c00172{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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.000000px;}
.fc0_c00172{color:transparent;}
.fs0_c00172{font-size:60.000000px;}
.fs2_c00172{font-size:66.000000px;}
.fs1_c00172{font-size:84.000000px;}
.y0_c00172{bottom:0.000000px;}
.y37_c00172{bottom:61.710000px;}
.y36_c00172{bottom:85.875000px;}
.y35_c00172{bottom:107.085000px;}
.y34_c00172{bottom:128.310000px;}
.y33_c00172{bottom:148.875000px;}
.y32_c00172{bottom:167.535000px;}
.y31_c00172{bottom:189.210000px;}
.y2e_c00172{bottom:209.385000px;}
.y2d_c00172{bottom:209.685000px;}
.y2f_c00172{bottom:212.535000px;}
.y30_c00172{bottom:213.960000px;}
.y2c_c00172{bottom:230.910000px;}
.y2b_c00172{bottom:251.460000px;}
.y2a_c00172{bottom:273.375000px;}
.y28_c00172{bottom:294.210000px;}
.y27_c00172{bottom:294.285000px;}
.y29_c00172{bottom:294.660000px;}
.y26_c00172{bottom:315.585000px;}
.y25_c00172{bottom:336.810000px;}
.y24_c00172{bottom:358.710000px;}
.y23_c00172{bottom:379.650000px;}
.y22_c00172{bottom:401.250000px;}
.y21_c00172{bottom:422.460000px;}
.y20_c00172{bottom:444.060000px;}
.y1f_c00172{bottom:465.285000px;}
.y1e_c00172{bottom:487.260000px;}
.y1d_c00172{bottom:509.160000px;}
.y1c_c00172{bottom:530.460000px;}
.y1b_c00172{bottom:552.000000px;}
.y1a_c00172{bottom:573.660000px;}
.y19_c00172{bottom:595.260000px;}
.y18_c00172{bottom:616.785000px;}
.y17_c00172{bottom:638.085000px;}
.y16_c00172{bottom:660.060000px;}
.y15_c00172{bottom:682.035000px;}
.y14_c00172{bottom:703.560000px;}
.y13_c00172{bottom:725.250000px;}
.y12_c00172{bottom:746.760000px;}
.y11_c00172{bottom:769.500000px;}
.y10_c00172{bottom:790.335000px;}
.yf_c00172{bottom:812.310000px;}
.ye_c00172{bottom:833.925000px;}
.yd_c00172{bottom:855.525000px;}
.yc_c00172{bottom:876.810000px;}
.yb_c00172{bottom:898.335000px;}
.ya_c00172{bottom:920.025000px;}
.y9_c00172{bottom:940.875000px;}
.y8_c00172{bottom:961.425000px;}
.y7_c00172{bottom:963.525000px;}
.y6_c00172{bottom:983.685000px;}
.y5_c00172{bottom:1005.300000px;}
.y4_c00172{bottom:1026.900000px;}
.y3_c00172{bottom:1080.900000px;}
.y1_c00172{bottom:1086.675000px;}
.y2_c00172{bottom:1096.560000px;}
.h5_c00172{height:58.886719px;}
.h1_c00172{height:60.468750px;}
.h4_c00172{height:64.775391px;}
.h2_c00172{height:82.441406px;}
.h3_c00172{height:84.656250px;}
.h0_c00172{height:1174.500000px;}
.w0_c00172{width:731.977200px;}
.w1_c00172{width:732.000000px;}
.x0_c00172{left:0.000000px;}
.x5_c00172{left:67.990200px;}
.x7_c00172{left:69.490200px;}
.x9_c00172{left:70.915200px;}
.xb_c00172{left:72.340200px;}
.xc_c00172{left:73.390200px;}
.x10_c00172{left:75.175200px;}
.x14_c00172{left:76.300200px;}
.x15_c00172{left:77.740200px;}
.x17_c00172{left:79.165200px;}
.x4_c00172{left:99.715200px;}
.x8_c00172{left:101.140200px;}
.xa_c00172{left:103.690200px;}
.xd_c00172{left:105.490200px;}
.x16_c00172{left:109.390200px;}
.x6_c00172{left:110.515200px;}
.x11_c00172{left:130.690200px;}
.x1_c00172{left:283.690200px;}
.xe_c00172{left:332.290200px;}
.xf_c00172{left:335.140200px;}
.x2_c00172{left:486.715200px;}
.x12_c00172{left:543.565200px;}
.x13_c00172{left:575.290200px;}
.x18_c00172{left:610.915200px;}
.x3_c00172{left:640.390200px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls0_c00172{letter-spacing:0.000000pt;}
.ws0_c00172{word-spacing:0.000000pt;}
.fs0_c00172{font-size:53.333333pt;}
.fs2_c00172{font-size:58.666667pt;}
.fs1_c00172{font-size:74.666667pt;}
.y0_c00172{bottom:0.000000pt;}
.y37_c00172{bottom:54.853333pt;}
.y36_c00172{bottom:76.333333pt;}
.y35_c00172{bottom:95.186667pt;}
.y34_c00172{bottom:114.053333pt;}
.y33_c00172{bottom:132.333333pt;}
.y32_c00172{bottom:148.920000pt;}
.y31_c00172{bottom:168.186667pt;}
.y2e_c00172{bottom:186.120000pt;}
.y2d_c00172{bottom:186.386667pt;}
.y2f_c00172{bottom:188.920000pt;}
.y30_c00172{bottom:190.186667pt;}
.y2c_c00172{bottom:205.253333pt;}
.y2b_c00172{bottom:223.520000pt;}
.y2a_c00172{bottom:243.000000pt;}
.y28_c00172{bottom:261.520000pt;}
.y27_c00172{bottom:261.586667pt;}
.y29_c00172{bottom:261.920000pt;}
.y26_c00172{bottom:280.520000pt;}
.y25_c00172{bottom:299.386667pt;}
.y24_c00172{bottom:318.853333pt;}
.y23_c00172{bottom:337.466667pt;}
.y22_c00172{bottom:356.666667pt;}
.y21_c00172{bottom:375.520000pt;}
.y20_c00172{bottom:394.720000pt;}
.y1f_c00172{bottom:413.586667pt;}
.y1e_c00172{bottom:433.120000pt;}
.y1d_c00172{bottom:452.586667pt;}
.y1c_c00172{bottom:471.520000pt;}
.y1b_c00172{bottom:490.666667pt;}
.y1a_c00172{bottom:509.920000pt;}
.y19_c00172{bottom:529.120000pt;}
.y18_c00172{bottom:548.253333pt;}
.y17_c00172{bottom:567.186667pt;}
.y16_c00172{bottom:586.720000pt;}
.y15_c00172{bottom:606.253333pt;}
.y14_c00172{bottom:625.386667pt;}
.y13_c00172{bottom:644.666667pt;}
.y12_c00172{bottom:663.786667pt;}
.y11_c00172{bottom:684.000000pt;}
.y10_c00172{bottom:702.520000pt;}
.yf_c00172{bottom:722.053333pt;}
.ye_c00172{bottom:741.266667pt;}
.yd_c00172{bottom:760.466667pt;}
.yc_c00172{bottom:779.386667pt;}
.yb_c00172{bottom:798.520000pt;}
.ya_c00172{bottom:817.800000pt;}
.y9_c00172{bottom:836.333333pt;}
.y8_c00172{bottom:854.600000pt;}
.y7_c00172{bottom:856.466667pt;}
.y6_c00172{bottom:874.386667pt;}
.y5_c00172{bottom:893.600000pt;}
.y4_c00172{bottom:912.800000pt;}
.y3_c00172{bottom:960.800000pt;}
.y1_c00172{bottom:965.933333pt;}
.y2_c00172{bottom:974.720000pt;}
.h5_c00172{height:52.343750pt;}
.h1_c00172{height:53.750000pt;}
.h4_c00172{height:57.578125pt;}
.h2_c00172{height:73.281250pt;}
.h3_c00172{height:75.250000pt;}
.h0_c00172{height:1044.000000pt;}
.w0_c00172{width:650.646400pt;}
.w1_c00172{width:650.666667pt;}
.x0_c00172{left:0.000000pt;}
.x5_c00172{left:60.435733pt;}
.x7_c00172{left:61.769067pt;}
.x9_c00172{left:63.035733pt;}
.xb_c00172{left:64.302400pt;}
.xc_c00172{left:65.235733pt;}
.x10_c00172{left:66.822400pt;}
.x14_c00172{left:67.822400pt;}
.x15_c00172{left:69.102400pt;}
.x17_c00172{left:70.369067pt;}
.x4_c00172{left:88.635733pt;}
.x8_c00172{left:89.902400pt;}
.xa_c00172{left:92.169067pt;}
.xd_c00172{left:93.769067pt;}
.x16_c00172{left:97.235733pt;}
.x6_c00172{left:98.235733pt;}
.x11_c00172{left:116.169067pt;}
.x1_c00172{left:252.169067pt;}
.xe_c00172{left:295.369067pt;}
.xf_c00172{left:297.902400pt;}
.x2_c00172{left:432.635733pt;}
.x12_c00172{left:483.169067pt;}
.x13_c00172{left:511.369067pt;}
.x18_c00172{left:543.035733pt;}
.x3_c00172{left:569.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_29d1072d8cf750946ac3aa52.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00173;src:url('chunks/assets/font_a1bd995f79a96f6ab757ba26.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00173;src:url('chunks/assets/font_7676d22d4290567d2e09d747.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00173;src:url('chunks/assets/font_2c380a3de516e2dd409a22d2.woff2')format("woff");}.ff4_c00173{font-family:ff4_c00173;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14_c00173{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00173{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m15_c00173{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m16_c00173{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf_c00173{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00173{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c00173{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00173{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00173{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1_c00173{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6_c00173{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00173{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00173{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c00173{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c00173{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m19_c00173{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00173{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c00173{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c00173{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c00173{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00173{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00173{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c00173{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c00173{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c00173{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00173{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00173{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c00173{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00173{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m17_c00173{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,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:0.000000px;}
.fc0_c00173{color:transparent;}
.fs4_c00173{font-size:18.000000px;}
.fs0_c00173{font-size:54.000000px;}
.fs5_c00173{font-size:66.000000px;}
.fs2_c00173{font-size:72.000000px;}
.fs1_c00173{font-size:78.000000px;}
.fs3_c00173{font-size:84.000000px;}
.y0_c00173{bottom:0.000000px;}
.y40_c00173{bottom:82.260000px;}
.y3f_c00173{bottom:100.185000px;}
.y3e_c00173{bottom:100.260000px;}
.y3d_c00173{bottom:102.750000px;}
.y3c_c00173{bottom:105.660000px;}
.y3b_c00173{bottom:109.635000px;}
.y3a_c00173{bottom:128.685000px;}
.y39_c00173{bottom:148.125000px;}
.y38_c00173{bottom:169.035000px;}
.y37_c00173{bottom:188.460000px;}
.y36_c00173{bottom:192.435000px;}
.y35_c00173{bottom:193.500000px;}
.y34_c00173{bottom:195.660000px;}
.y33_c00173{bottom:210.435000px;}
.y32_c00173{bottom:215.085000px;}
.y31_c00173{bottom:234.510000px;}
.y30_c00173{bottom:255.810000px;}
.y2f_c00173{bottom:275.250000px;}
.y2e_c00173{bottom:278.835000px;}
.y2d_c00173{bottom:282.435000px;}
.y2c_c00173{bottom:295.410000px;}
.y2b_c00173{bottom:296.085000px;}
.y2a_c00173{bottom:297.900000px;}
.y29_c00173{bottom:300.000000px;}
.y28_c00173{bottom:303.660000px;}
.y27_c00173{bottom:354.750000px;}
.y26_c00173{bottom:397.560000px;}
.y24_c00173{bottom:429.660000px;}
.y23_c00173{bottom:450.510000px;}
.y22_c00173{bottom:472.125000px;}
.y21_c00173{bottom:493.710000px;}
.y20_c00173{bottom:513.885000px;}
.y1f_c00173{bottom:515.310000px;}
.y1e_c00173{bottom:516.060000px;}
.y1d_c00173{bottom:537.285000px;}
.y1c_c00173{bottom:558.135000px;}
.y1b_c00173{bottom:580.125000px;}
.y1a_c00173{bottom:601.710000px;}
.y19_c00173{bottom:623.310000px;}
.y18_c00173{bottom:644.910000px;}
.y17_c00173{bottom:666.510000px;}
.y16_c00173{bottom:688.500000px;}
.y15_c00173{bottom:709.710000px;}
.y14_c00173{bottom:731.325000px;}
.y13_c00173{bottom:752.910000px;}
.y10_c00173{bottom:772.710000px;}
.y11_c00173{bottom:774.510000px;}
.y12_c00173{bottom:775.635000px;}
.yf_c00173{bottom:795.810000px;}
.ye_c00173{bottom:817.050000px;}
.yd_c00173{bottom:839.025000px;}
.yc_c00173{bottom:855.900000px;}
.yb_c00173{bottom:881.085000px;}
.ya_c00173{bottom:902.025000px;}
.y9_c00173{bottom:923.625000px;}
.y8_c00173{bottom:945.525000px;}
.y7_c00173{bottom:967.500000px;}
.y6_c00173{bottom:988.050000px;}
.y5_c00173{bottom:1008.900000px;}
.y2_c00173{bottom:1026.900000px;}
.y3_c00173{bottom:1032.675000px;}
.y4_c00173{bottom:1033.050000px;}
.y25_c00173{bottom:1077.960000px;}
.y1_c00173{bottom:1086.300000px;}
.h5_c00173{height:18.773438px;}
.h1_c00173{height:52.998047px;}
.h6_c00173{height:64.775391px;}
.h8_c00173{height:66.515625px;}
.h3_c00173{height:70.664062px;}
.h2_c00173{height:76.552734px;}
.h7_c00173{height:78.609375px;}
.h4_c00173{height:82.400391px;}
.h0_c00173{height:1174.500000px;}
.w0_c00173{width:731.977200px;}
.w1_c00173{width:732.000000px;}
.x0_c00173{left:0.000000px;}
.xb_c00173{left:64.090200px;}
.xa_c00173{left:65.515200px;}
.x6_c00173{left:66.940200px;}
.x2_c00173{left:67.990200px;}
.x10_c00173{left:88.165200px;}
.xc_c00173{left:94.990200px;}
.xd_c00173{left:96.115200px;}
.x5_c00173{left:97.165200px;}
.x7_c00173{left:98.590200px;}
.x16_c00173{left:162.715200px;}
.x13_c00173{left:174.190200px;}
.x19_c00173{left:251.290200px;}
.x1a_c00173{left:257.740200px;}
.x1_c00173{left:289.090200px;}
.x12_c00173{left:291.565200px;}
.xe_c00173{left:301.990200px;}
.x1c_c00173{left:322.540200px;}
.x8_c00173{left:342.340200px;}
.x1d_c00173{left:349.915200px;}
.x9_c00173{left:359.590200px;}
.x1b_c00173{left:398.515200px;}
.xf_c00173{left:408.565200px;}
.x17_c00173{left:463.315200px;}
.x3_c00173{left:468.715200px;}
.x18_c00173{left:470.515200px;}
.x4_c00173{left:510.115200px;}
.x14_c00173{left:539.965200px;}
.x1e_c00173{left:571.315200px;}
.x15_c00173{left:645.115200px;}
.x11_c00173{left:745.165200px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls0_c00173{letter-spacing:0.000000pt;}
.ws0_c00173{word-spacing:0.000000pt;}
.fs4_c00173{font-size:16.000000pt;}
.fs0_c00173{font-size:48.000000pt;}
.fs5_c00173{font-size:58.666667pt;}
.fs2_c00173{font-size:64.000000pt;}
.fs1_c00173{font-size:69.333333pt;}
.fs3_c00173{font-size:74.666667pt;}
.y0_c00173{bottom:0.000000pt;}
.y40_c00173{bottom:73.120000pt;}
.y3f_c00173{bottom:89.053333pt;}
.y3e_c00173{bottom:89.120000pt;}
.y3d_c00173{bottom:91.333333pt;}
.y3c_c00173{bottom:93.920000pt;}
.y3b_c00173{bottom:97.453333pt;}
.y3a_c00173{bottom:114.386667pt;}
.y39_c00173{bottom:131.666667pt;}
.y38_c00173{bottom:150.253333pt;}
.y37_c00173{bottom:167.520000pt;}
.y36_c00173{bottom:171.053333pt;}
.y35_c00173{bottom:172.000000pt;}
.y34_c00173{bottom:173.920000pt;}
.y33_c00173{bottom:187.053333pt;}
.y32_c00173{bottom:191.186667pt;}
.y31_c00173{bottom:208.453333pt;}
.y30_c00173{bottom:227.386667pt;}
.y2f_c00173{bottom:244.666667pt;}
.y2e_c00173{bottom:247.853333pt;}
.y2d_c00173{bottom:251.053333pt;}
.y2c_c00173{bottom:262.586667pt;}
.y2b_c00173{bottom:263.186667pt;}
.y2a_c00173{bottom:264.800000pt;}
.y29_c00173{bottom:266.666667pt;}
.y28_c00173{bottom:269.920000pt;}
.y27_c00173{bottom:315.333333pt;}
.y26_c00173{bottom:353.386667pt;}
.y24_c00173{bottom:381.920000pt;}
.y23_c00173{bottom:400.453333pt;}
.y22_c00173{bottom:419.666667pt;}
.y21_c00173{bottom:438.853333pt;}
.y20_c00173{bottom:456.786667pt;}
.y1f_c00173{bottom:458.053333pt;}
.y1e_c00173{bottom:458.720000pt;}
.y1d_c00173{bottom:477.586667pt;}
.y1c_c00173{bottom:496.120000pt;}
.y1b_c00173{bottom:515.666667pt;}
.y1a_c00173{bottom:534.853333pt;}
.y19_c00173{bottom:554.053333pt;}
.y18_c00173{bottom:573.253333pt;}
.y17_c00173{bottom:592.453333pt;}
.y16_c00173{bottom:612.000000pt;}
.y15_c00173{bottom:630.853333pt;}
.y14_c00173{bottom:650.066667pt;}
.y13_c00173{bottom:669.253333pt;}
.y10_c00173{bottom:686.853333pt;}
.y11_c00173{bottom:688.453333pt;}
.y12_c00173{bottom:689.453333pt;}
.yf_c00173{bottom:707.386667pt;}
.ye_c00173{bottom:726.266667pt;}
.yd_c00173{bottom:745.800000pt;}
.yc_c00173{bottom:760.800000pt;}
.yb_c00173{bottom:783.186667pt;}
.ya_c00173{bottom:801.800000pt;}
.y9_c00173{bottom:821.000000pt;}
.y8_c00173{bottom:840.466667pt;}
.y7_c00173{bottom:860.000000pt;}
.y6_c00173{bottom:878.266667pt;}
.y5_c00173{bottom:896.800000pt;}
.y2_c00173{bottom:912.800000pt;}
.y3_c00173{bottom:917.933333pt;}
.y4_c00173{bottom:918.266667pt;}
.y25_c00173{bottom:958.186667pt;}
.y1_c00173{bottom:965.600000pt;}
.h5_c00173{height:16.687500pt;}
.h1_c00173{height:47.109375pt;}
.h6_c00173{height:57.578125pt;}
.h8_c00173{height:59.125000pt;}
.h3_c00173{height:62.812500pt;}
.h2_c00173{height:68.046875pt;}
.h7_c00173{height:69.875000pt;}
.h4_c00173{height:73.244792pt;}
.h0_c00173{height:1044.000000pt;}
.w0_c00173{width:650.646400pt;}
.w1_c00173{width:650.666667pt;}
.x0_c00173{left:0.000000pt;}
.xb_c00173{left:56.969067pt;}
.xa_c00173{left:58.235733pt;}
.x6_c00173{left:59.502400pt;}
.x2_c00173{left:60.435733pt;}
.x10_c00173{left:78.369067pt;}
.xc_c00173{left:84.435733pt;}
.xd_c00173{left:85.435733pt;}
.x5_c00173{left:86.369067pt;}
.x7_c00173{left:87.635733pt;}
.x16_c00173{left:144.635733pt;}
.x13_c00173{left:154.835733pt;}
.x19_c00173{left:223.369067pt;}
.x1a_c00173{left:229.102400pt;}
.x1_c00173{left:256.969067pt;}
.x12_c00173{left:259.169067pt;}
.xe_c00173{left:268.435733pt;}
.x1c_c00173{left:286.702400pt;}
.x8_c00173{left:304.302400pt;}
.x1d_c00173{left:311.035733pt;}
.x9_c00173{left:319.635733pt;}
.x1b_c00173{left:354.235733pt;}
.xf_c00173{left:363.169067pt;}
.x17_c00173{left:411.835733pt;}
.x3_c00173{left:416.635733pt;}
.x18_c00173{left:418.235733pt;}
.x4_c00173{left:453.435733pt;}
.x14_c00173{left:479.969067pt;}
.x1e_c00173{left:507.835733pt;}
.x15_c00173{left:573.435733pt;}
.x11_c00173{left:662.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6203dde60623a19ce79cd638.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00174;src:url('chunks/assets/font_d94dd02e22e1005cc4c89c0d.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00174{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3_c00174{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1_c00174{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m11_c00174{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2_c00174{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m15_c00174{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc_c00174{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c00174{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m12_c00174{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00174{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00174{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00174{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m10_c00174{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c00174{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00174{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c00174{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00174{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c00174{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m13_c00174{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00174{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m14_c00174{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4_c00174{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00174{color:transparent;}
.fs3_c00174{font-size:30.000000px;}
.fs0_c00174{font-size:54.000000px;}
.fs1_c00174{font-size:60.000000px;}
.fs2_c00174{font-size:66.000000px;}
.fs5_c00174{font-size:78.000000px;}
.fs4_c00174{font-size:84.000000px;}
.y0_c00174{bottom:0.000000px;}
.y37_c00174{bottom:74.310000px;}
.y34_c00174{bottom:92.685000px;}
.y35_c00174{bottom:93.435000px;}
.y36_c00174{bottom:96.660000px;}
.y33_c00174{bottom:117.510000px;}
.y32_c00174{bottom:138.375000px;}
.y31_c00174{bottom:158.535000px;}
.y30_c00174{bottom:179.460000px;}
.y2f_c00174{bottom:198.510000px;}
.y2e_c00174{bottom:220.875000px;}
.y2d_c00174{bottom:241.335000px;}
.y2c_c00174{bottom:263.025000px;}
.y2b_c00174{bottom:284.250000px;}
.y2a_c00174{bottom:305.835000px;}
.y29_c00174{bottom:326.685000px;}
.y28_c00174{bottom:348.285000px;}
.y27_c00174{bottom:369.525000px;}
.y26_c00174{bottom:390.435000px;}
.y25_c00174{bottom:412.035000px;}
.y23_c00174{bottom:432.510000px;}
.y24_c00174{bottom:433.260000px;}
.y22_c00174{bottom:454.875000px;}
.y21_c00174{bottom:476.460000px;}
.y20_c00174{bottom:498.375000px;}
.y1f_c00174{bottom:519.285000px;}
.y1e_c00174{bottom:541.260000px;}
.y1d_c00174{bottom:562.875000px;}
.y1c_c00174{bottom:584.460000px;}
.y1b_c00174{bottom:606.060000px;}
.y1a_c00174{bottom:627.660000px;}
.y19_c00174{bottom:649.560000px;}
.y18_c00174{bottom:670.875000px;}
.y17_c00174{bottom:692.835000px;}
.y16_c00174{bottom:714.450000px;}
.y15_c00174{bottom:736.035000px;}
.y14_c00174{bottom:757.635000px;}
.y12_c00174{bottom:758.700000px;}
.y13_c00174{bottom:759.075000px;}
.y11_c00174{bottom:779.925000px;}
.y10_c00174{bottom:801.150000px;}
.yf_c00174{bottom:823.875000px;}
.ye_c00174{bottom:844.710000px;}
.yd_c00174{bottom:866.400000px;}
.yc_c00174{bottom:887.925000px;}
.yb_c00174{bottom:909.525000px;}
.ya_c00174{bottom:930.060000px;}
.y9_c00174{bottom:951.300000px;}
.y8_c00174{bottom:972.525000px;}
.y7_c00174{bottom:993.810000px;}
.y6_c00174{bottom:1015.710000px;}
.y5_c00174{bottom:1047.810000px;}
.y4_c00174{bottom:1070.460000px;}
.y3_c00174{bottom:1074.060000px;}
.y2_c00174{bottom:1074.435000px;}
.y1_c00174{bottom:1075.125000px;}
.h4_c00174{height:29.443359px;}
.h1_c00174{height:52.998047px;}
.h2_c00174{height:58.886719px;}
.h3_c00174{height:64.775391px;}
.h7_c00174{height:76.552734px;}
.h8_c00174{height:78.609375px;}
.h5_c00174{height:82.441406px;}
.h6_c00174{height:84.656250px;}
.h0_c00174{height:1174.500000px;}
.w0_c00174{width:731.977200px;}
.w1_c00174{width:732.000000px;}
.x0_c00174{left:0.000000px;}
.x9_c00174{left:64.390200px;}
.x8_c00174{left:65.515200px;}
.xb_c00174{left:66.565200px;}
.x10_c00174{left:68.365200px;}
.x12_c00174{left:69.790200px;}
.x15_c00174{left:70.915200px;}
.x16_c00174{left:73.090200px;}
.x17_c00174{left:74.515200px;}
.x18_c00174{left:75.550200px;}
.x1a_c00174{left:76.990200px;}
.x1c_c00174{left:78.790200px;}
.x1d_c00174{left:80.290200px;}
.xc_c00174{left:88.165200px;}
.x13_c00174{left:91.090200px;}
.xa_c00174{left:98.965200px;}
.xf_c00174{left:100.090200px;}
.x11_c00174{left:101.140200px;}
.x19_c00174{left:107.590200px;}
.x1b_c00174{left:110.140200px;}
.x14_c00174{left:118.765200px;}
.x1e_c00174{left:134.290200px;}
.xd_c00174{left:181.090200px;}
.x1f_c00174{left:186.790200px;}
.xe_c00174{left:205.540200px;}
.x1_c00174{left:305.965200px;}
.x2_c00174{left:435.565200px;}
.x3_c00174{left:453.565200px;}
.x4_c00174{left:464.740200px;}
.x5_c00174{left:475.165200px;}
.x7_c00174{left:586.090200px;}
.x6_c00174{left:637.165200px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls0_c00174{letter-spacing:0.000000pt;}
.ws0_c00174{word-spacing:0.000000pt;}
.fs3_c00174{font-size:26.666667pt;}
.fs0_c00174{font-size:48.000000pt;}
.fs1_c00174{font-size:53.333333pt;}
.fs2_c00174{font-size:58.666667pt;}
.fs5_c00174{font-size:69.333333pt;}
.fs4_c00174{font-size:74.666667pt;}
.y0_c00174{bottom:0.000000pt;}
.y37_c00174{bottom:66.053333pt;}
.y34_c00174{bottom:82.386667pt;}
.y35_c00174{bottom:83.053333pt;}
.y36_c00174{bottom:85.920000pt;}
.y33_c00174{bottom:104.453333pt;}
.y32_c00174{bottom:123.000000pt;}
.y31_c00174{bottom:140.920000pt;}
.y30_c00174{bottom:159.520000pt;}
.y2f_c00174{bottom:176.453333pt;}
.y2e_c00174{bottom:196.333333pt;}
.y2d_c00174{bottom:214.520000pt;}
.y2c_c00174{bottom:233.800000pt;}
.y2b_c00174{bottom:252.666667pt;}
.y2a_c00174{bottom:271.853333pt;}
.y29_c00174{bottom:290.386667pt;}
.y28_c00174{bottom:309.586667pt;}
.y27_c00174{bottom:328.466667pt;}
.y26_c00174{bottom:347.053333pt;}
.y25_c00174{bottom:366.253333pt;}
.y23_c00174{bottom:384.453333pt;}
.y24_c00174{bottom:385.120000pt;}
.y22_c00174{bottom:404.333333pt;}
.y21_c00174{bottom:423.520000pt;}
.y20_c00174{bottom:443.000000pt;}
.y1f_c00174{bottom:461.586667pt;}
.y1e_c00174{bottom:481.120000pt;}
.y1d_c00174{bottom:500.333333pt;}
.y1c_c00174{bottom:519.520000pt;}
.y1b_c00174{bottom:538.720000pt;}
.y1a_c00174{bottom:557.920000pt;}
.y19_c00174{bottom:577.386667pt;}
.y18_c00174{bottom:596.333333pt;}
.y17_c00174{bottom:615.853333pt;}
.y16_c00174{bottom:635.066667pt;}
.y15_c00174{bottom:654.253333pt;}
.y14_c00174{bottom:673.453333pt;}
.y12_c00174{bottom:674.400000pt;}
.y13_c00174{bottom:674.733333pt;}
.y11_c00174{bottom:693.266667pt;}
.y10_c00174{bottom:712.133333pt;}
.yf_c00174{bottom:732.333333pt;}
.ye_c00174{bottom:750.853333pt;}
.yd_c00174{bottom:770.133333pt;}
.yc_c00174{bottom:789.266667pt;}
.yb_c00174{bottom:808.466667pt;}
.ya_c00174{bottom:826.720000pt;}
.y9_c00174{bottom:845.600000pt;}
.y8_c00174{bottom:864.466667pt;}
.y7_c00174{bottom:883.386667pt;}
.y6_c00174{bottom:902.853333pt;}
.y5_c00174{bottom:931.386667pt;}
.y4_c00174{bottom:951.520000pt;}
.y3_c00174{bottom:954.720000pt;}
.y2_c00174{bottom:955.053333pt;}
.y1_c00174{bottom:955.666667pt;}
.h4_c00174{height:26.171875pt;}
.h1_c00174{height:47.109375pt;}
.h2_c00174{height:52.343750pt;}
.h3_c00174{height:57.578125pt;}
.h7_c00174{height:68.046875pt;}
.h8_c00174{height:69.875000pt;}
.h5_c00174{height:73.281250pt;}
.h6_c00174{height:75.250000pt;}
.h0_c00174{height:1044.000000pt;}
.w0_c00174{width:650.646400pt;}
.w1_c00174{width:650.666667pt;}
.x0_c00174{left:0.000000pt;}
.x9_c00174{left:57.235733pt;}
.x8_c00174{left:58.235733pt;}
.xb_c00174{left:59.169067pt;}
.x10_c00174{left:60.769067pt;}
.x12_c00174{left:62.035733pt;}
.x15_c00174{left:63.035733pt;}
.x16_c00174{left:64.969067pt;}
.x17_c00174{left:66.235733pt;}
.x18_c00174{left:67.155733pt;}
.x1a_c00174{left:68.435733pt;}
.x1c_c00174{left:70.035733pt;}
.x1d_c00174{left:71.369067pt;}
.xc_c00174{left:78.369067pt;}
.x13_c00174{left:80.969067pt;}
.xa_c00174{left:87.969067pt;}
.xf_c00174{left:88.969067pt;}
.x11_c00174{left:89.902400pt;}
.x19_c00174{left:95.635733pt;}
.x1b_c00174{left:97.902400pt;}
.x14_c00174{left:105.569067pt;}
.x1e_c00174{left:119.369067pt;}
.xd_c00174{left:160.969067pt;}
.x1f_c00174{left:166.035733pt;}
.xe_c00174{left:182.702400pt;}
.x1_c00174{left:271.969067pt;}
.x2_c00174{left:387.169067pt;}
.x3_c00174{left:403.169067pt;}
.x4_c00174{left:413.102400pt;}
.x5_c00174{left:422.369067pt;}
.x7_c00174{left:520.969067pt;}
.x6_c00174{left:566.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e07d4857e08d4448ef88360.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00175{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7_c00175{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m14_c00175{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10_c00175{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c00175{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c00175{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4_c00175{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00175{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00175{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00175{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00175{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00175{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m13_c00175{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3_c00175{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00175{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00175{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00175{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c00175{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c00175{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c00175{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00175{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.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;}
}
.ws0_c00175{word-spacing:0.000000px;}
.fc0_c00175{color:transparent;}
.fs1_c00175{font-size:54.000000px;}
.fs0_c00175{font-size:72.000000px;}
.y0_c00175{bottom:0.000000px;}
.y2c_c00175{bottom:83.310000px;}
.y2b_c00175{bottom:112.500000px;}
.y2a_c00175{bottom:126.135000px;}
.y29_c00175{bottom:147.750000px;}
.y28_c00175{bottom:169.710000px;}
.y27_c00175{bottom:191.310000px;}
.y26_c00175{bottom:212.535000px;}
.y25_c00175{bottom:234.210000px;}
.y24_c00175{bottom:256.125000px;}
.y23_c00175{bottom:279.525000px;}
.y22_c00175{bottom:299.310000px;}
.y21_c00175{bottom:320.625000px;}
.y20_c00175{bottom:342.150000px;}
.y1f_c00175{bottom:363.435000px;}
.y1e_c00175{bottom:386.085000px;}
.y1d_c00175{bottom:407.010000px;}
.y1c_c00175{bottom:430.035000px;}
.y1b_c00175{bottom:449.835000px;}
.y1a_c00175{bottom:471.750000px;}
.y19_c00175{bottom:493.410000px;}
.y18_c00175{bottom:515.010000px;}
.y17_c00175{bottom:536.250000px;}
.y16_c00175{bottom:557.460000px;}
.y15_c00175{bottom:579.375000px;}
.y14_c00175{bottom:601.035000px;}
.y13_c00175{bottom:621.510000px;}
.y12_c00175{bottom:644.160000px;}
.y11_c00175{bottom:665.835000px;}
.y10_c00175{bottom:687.060000px;}
.yf_c00175{bottom:708.285000px;}
.ye_c00175{bottom:729.885000px;}
.yd_c00175{bottom:751.125000px;}
.yc_c00175{bottom:772.710000px;}
.yb_c00175{bottom:794.400000px;}
.ya_c00175{bottom:815.625000px;}
.y9_c00175{bottom:837.525000px;}
.y8_c00175{bottom:896.925000px;}
.y7_c00175{bottom:959.250000px;}
.y6_c00175{bottom:987.300000px;}
.y5_c00175{bottom:1006.710000px;}
.y4_c00175{bottom:1028.310000px;}
.y1_c00175{bottom:1076.925000px;}
.y3_c00175{bottom:1085.550000px;}
.y2_c00175{bottom:1091.685000px;}
.h2_c00175{height:52.998047px;}
.h1_c00175{height:70.664062px;}
.h0_c00175{height:1174.500000px;}
.w0_c00175{width:731.977200px;}
.w1_c00175{width:732.000000px;}
.x0_c00175{left:0.000000px;}
.xf_c00175{left:60.490200px;}
.xc_c00175{left:61.915200px;}
.xb_c00175{left:62.965200px;}
.xa_c00175{left:64.390200px;}
.x9_c00175{left:65.515200px;}
.x6_c00175{left:66.565200px;}
.x4_c00175{left:67.990200px;}
.xd_c00175{left:91.390200px;}
.x1_c00175{left:92.515200px;}
.xe_c00175{left:93.550200px;}
.x5_c00175{left:97.165200px;}
.x8_c00175{left:98.590200px;}
.x2_c00175{left:119.140200px;}
.x3_c00175{left:293.365200px;}
.x7_c00175{left:300.565200px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls0_c00175{letter-spacing:0.000000pt;}
.ws0_c00175{word-spacing:0.000000pt;}
.fs1_c00175{font-size:48.000000pt;}
.fs0_c00175{font-size:64.000000pt;}
.y0_c00175{bottom:0.000000pt;}
.y2c_c00175{bottom:74.053333pt;}
.y2b_c00175{bottom:100.000000pt;}
.y2a_c00175{bottom:112.120000pt;}
.y29_c00175{bottom:131.333333pt;}
.y28_c00175{bottom:150.853333pt;}
.y27_c00175{bottom:170.053333pt;}
.y26_c00175{bottom:188.920000pt;}
.y25_c00175{bottom:208.186667pt;}
.y24_c00175{bottom:227.666667pt;}
.y23_c00175{bottom:248.466667pt;}
.y22_c00175{bottom:266.053333pt;}
.y21_c00175{bottom:285.000000pt;}
.y20_c00175{bottom:304.133333pt;}
.y1f_c00175{bottom:323.053333pt;}
.y1e_c00175{bottom:343.186667pt;}
.y1d_c00175{bottom:361.786667pt;}
.y1c_c00175{bottom:382.253333pt;}
.y1b_c00175{bottom:399.853333pt;}
.y1a_c00175{bottom:419.333333pt;}
.y19_c00175{bottom:438.586667pt;}
.y18_c00175{bottom:457.786667pt;}
.y17_c00175{bottom:476.666667pt;}
.y16_c00175{bottom:495.520000pt;}
.y15_c00175{bottom:515.000000pt;}
.y14_c00175{bottom:534.253333pt;}
.y13_c00175{bottom:552.453333pt;}
.y12_c00175{bottom:572.586667pt;}
.y11_c00175{bottom:591.853333pt;}
.y10_c00175{bottom:610.720000pt;}
.yf_c00175{bottom:629.586667pt;}
.ye_c00175{bottom:648.786667pt;}
.yd_c00175{bottom:667.666667pt;}
.yc_c00175{bottom:686.853333pt;}
.yb_c00175{bottom:706.133333pt;}
.ya_c00175{bottom:725.000000pt;}
.y9_c00175{bottom:744.466667pt;}
.y8_c00175{bottom:797.266667pt;}
.y7_c00175{bottom:852.666667pt;}
.y6_c00175{bottom:877.600000pt;}
.y5_c00175{bottom:894.853333pt;}
.y4_c00175{bottom:914.053333pt;}
.y1_c00175{bottom:957.266667pt;}
.y3_c00175{bottom:964.933333pt;}
.y2_c00175{bottom:970.386667pt;}
.h2_c00175{height:47.109375pt;}
.h1_c00175{height:62.812500pt;}
.h0_c00175{height:1044.000000pt;}
.w0_c00175{width:650.646400pt;}
.w1_c00175{width:650.666667pt;}
.x0_c00175{left:0.000000pt;}
.xf_c00175{left:53.769067pt;}
.xc_c00175{left:55.035733pt;}
.xb_c00175{left:55.969067pt;}
.xa_c00175{left:57.235733pt;}
.x9_c00175{left:58.235733pt;}
.x6_c00175{left:59.169067pt;}
.x4_c00175{left:60.435733pt;}
.xd_c00175{left:81.235733pt;}
.x1_c00175{left:82.235733pt;}
.xe_c00175{left:83.155733pt;}
.x5_c00175{left:86.369067pt;}
.x8_c00175{left:87.635733pt;}
.x2_c00175{left:105.902400pt;}
.x3_c00175{left:260.769067pt;}
.x7_c00175{left:267.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ccc80528340d55afee89778.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00176;src:url('chunks/assets/font_7368b4ee818f2a7fced8e81e.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00176;src:url('chunks/assets/font_9593f93fa0556ec3d74d4473.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00176;src:url('chunks/assets/font_378e56736e438acdde35df9e.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00176{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m21_c00176{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00176{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m20_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);}
.m2_c00176{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5_c00176{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc_c00176{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c00176{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00176{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c00176{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4_c00176{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c00176{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c00176{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c00176{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6_c00176{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00176{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c00176{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00176{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c00176{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m13_c00176{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00176{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00176{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00176{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c00176{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c00176{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m19_c00176{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c00176{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m17_c00176{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00176{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00176{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m18_c00176{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00176{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m11_c00176{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3_c00176{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00176{color:transparent;}
.fs0_c00176{font-size:60.000000px;}
.fs1_c00176{font-size:66.000000px;}
.fs3_c00176{font-size:72.000000px;}
.fs2_c00176{font-size:84.000000px;}
.y0_c00176{bottom:0.000000px;}
.y37_c00176{bottom:94.125000px;}
.y38_c00176{bottom:95.535000px;}
.y39_c00176{bottom:96.285000px;}
.y3a_c00176{bottom:96.960000px;}
.y3b_c00176{bottom:97.035000px;}
.y3c_c00176{bottom:98.085000px;}
.y36_c00176{bottom:118.260000px;}
.y32_c00176{bottom:136.935000px;}
.y31_c00176{bottom:137.310000px;}
.y33_c00176{bottom:138.060000px;}
.y34_c00176{bottom:139.875000px;}
.y35_c00176{bottom:140.910000px;}
.y2e_c00176{bottom:157.785000px;}
.y2f_c00176{bottom:159.285000px;}
.y30_c00176{bottom:161.835000px;}
.y2b_c00176{bottom:178.710000px;}
.y2c_c00176{bottom:183.060000px;}
.y2d_c00176{bottom:183.435000px;}
.y2a_c00176{bottom:200.010000px;}
.y29_c00176{bottom:220.500000px;}
.y28_c00176{bottom:242.085000px;}
.y27_c00176{bottom:262.650000px;}
.y26_c00176{bottom:283.875000px;}
.y23_c00176{bottom:305.085000px;}
.y24_c00176{bottom:306.900000px;}
.y25_c00176{bottom:307.275000px;}
.y22_c00176{bottom:326.685000px;}
.y21_c00176{bottom:347.910000px;}
.y20_c00176{bottom:368.835000px;}
.y1f_c00176{bottom:390.435000px;}
.y1e_c00176{bottom:411.660000px;}
.y1d_c00176{bottom:519.285000px;}
.y1c_c00176{bottom:541.260000px;}
.y1a_c00176{bottom:562.500000px;}
.y1b_c00176{bottom:562.785000px;}
.y19_c00176{bottom:584.085000px;}
.y17_c00176{bottom:605.310000px;}
.y18_c00176{bottom:605.685000px;}
.y16_c00176{bottom:627.285000px;}
.y15_c00176{bottom:648.885000px;}
.y14_c00176{bottom:670.500000px;}
.y13_c00176{bottom:692.760000px;}
.y12_c00176{bottom:800.085000px;}
.y11_c00176{bottom:801.525000px;}
.y10_c00176{bottom:823.875000px;}
.yf_c00176{bottom:844.710000px;}
.ye_c00176{bottom:867.000000px;}
.yd_c00176{bottom:887.550000px;}
.yc_c00176{bottom:909.900000px;}
.yb_c00176{bottom:930.375000px;}
.ya_c00176{bottom:952.710000px;}
.y9_c00176{bottom:972.900000px;}
.y8_c00176{bottom:994.125000px;}
.y7_c00176{bottom:1017.525000px;}
.y6_c00176{bottom:1038.375000px;}
.y5_c00176{bottom:1092.750000px;}
.y3_c00176{bottom:1097.460000px;}
.y2_c00176{bottom:1097.775000px;}
.y1_c00176{bottom:1098.150000px;}
.y4_c00176{bottom:1107.210000px;}
.h2_c00176{height:58.886719px;}
.h1_c00176{height:60.468750px;}
.h3_c00176{height:64.775391px;}
.h6_c00176{height:70.664062px;}
.h7_c00176{height:82.400391px;}
.h4_c00176{height:82.441406px;}
.h5_c00176{height:84.656250px;}
.h0_c00176{height:1174.500000px;}
.w0_c00176{width:731.977200px;}
.w1_c00176{width:732.000000px;}
.x0_c00176{left:0.000000px;}
.x14_c00176{left:71.290200px;}
.xf_c00176{left:73.090200px;}
.x8_c00176{left:75.925200px;}
.x6_c00176{left:76.990200px;}
.x12_c00176{left:94.690200px;}
.xe_c00176{left:97.165200px;}
.x11_c00176{left:101.890200px;}
.xd_c00176{left:105.790200px;}
.x9_c00176{left:107.590200px;}
.x7_c00176{left:109.090200px;}
.x1f_c00176{left:132.490200px;}
.x13_c00176{left:138.565200px;}
.xa_c00176{left:181.750200px;}
.x1b_c00176{left:210.190200px;}
.x10_c00176{left:226.390200px;}
.x1c_c00176{left:248.740200px;}
.xb_c00176{left:258.115200px;}
.x19_c00176{left:267.490200px;}
.x1_c00176{left:322.540200px;}
.xc_c00176{left:409.315200px;}
.x2_c00176{left:423.715200px;}
.x3_c00176{left:429.775200px;}
.x1d_c00176{left:458.590200px;}
.x20_c00176{left:459.715200px;}
.x4_c00176{left:491.740200px;}
.x1a_c00176{left:526.315200px;}
.x21_c00176{left:532.765200px;}
.x22_c00176{left:541.090200px;}
.x1e_c00176{left:568.090200px;}
.x23_c00176{left:606.940200px;}
.x17_c00176{left:625.315200px;}
.x15_c00176{left:631.765200px;}
.x5_c00176{left:653.740200px;}
.x18_c00176{left:655.915200px;}
.x16_c00176{left:661.690200px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls0_c00176{letter-spacing:0.000000pt;}
.ws0_c00176{word-spacing:0.000000pt;}
.fs0_c00176{font-size:53.333333pt;}
.fs1_c00176{font-size:58.666667pt;}
.fs3_c00176{font-size:64.000000pt;}
.fs2_c00176{font-size:74.666667pt;}
.y0_c00176{bottom:0.000000pt;}
.y37_c00176{bottom:83.666667pt;}
.y38_c00176{bottom:84.920000pt;}
.y39_c00176{bottom:85.586667pt;}
.y3a_c00176{bottom:86.186667pt;}
.y3b_c00176{bottom:86.253333pt;}
.y3c_c00176{bottom:87.186667pt;}
.y36_c00176{bottom:105.120000pt;}
.y32_c00176{bottom:121.720000pt;}
.y31_c00176{bottom:122.053333pt;}
.y33_c00176{bottom:122.720000pt;}
.y34_c00176{bottom:124.333333pt;}
.y35_c00176{bottom:125.253333pt;}
.y2e_c00176{bottom:140.253333pt;}
.y2f_c00176{bottom:141.586667pt;}
.y30_c00176{bottom:143.853333pt;}
.y2b_c00176{bottom:158.853333pt;}
.y2c_c00176{bottom:162.720000pt;}
.y2d_c00176{bottom:163.053333pt;}
.y2a_c00176{bottom:177.786667pt;}
.y29_c00176{bottom:196.000000pt;}
.y28_c00176{bottom:215.186667pt;}
.y27_c00176{bottom:233.466667pt;}
.y26_c00176{bottom:252.333333pt;}
.y23_c00176{bottom:271.186667pt;}
.y24_c00176{bottom:272.800000pt;}
.y25_c00176{bottom:273.133333pt;}
.y22_c00176{bottom:290.386667pt;}
.y21_c00176{bottom:309.253333pt;}
.y20_c00176{bottom:327.853333pt;}
.y1f_c00176{bottom:347.053333pt;}
.y1e_c00176{bottom:365.920000pt;}
.y1d_c00176{bottom:461.586667pt;}
.y1c_c00176{bottom:481.120000pt;}
.y1a_c00176{bottom:500.000000pt;}
.y1b_c00176{bottom:500.253333pt;}
.y19_c00176{bottom:519.186667pt;}
.y17_c00176{bottom:538.053333pt;}
.y18_c00176{bottom:538.386667pt;}
.y16_c00176{bottom:557.586667pt;}
.y15_c00176{bottom:576.786667pt;}
.y14_c00176{bottom:596.000000pt;}
.y13_c00176{bottom:615.786667pt;}
.y12_c00176{bottom:711.186667pt;}
.y11_c00176{bottom:712.466667pt;}
.y10_c00176{bottom:732.333333pt;}
.yf_c00176{bottom:750.853333pt;}
.ye_c00176{bottom:770.666667pt;}
.yd_c00176{bottom:788.933333pt;}
.yc_c00176{bottom:808.800000pt;}
.yb_c00176{bottom:827.000000pt;}
.ya_c00176{bottom:846.853333pt;}
.y9_c00176{bottom:864.800000pt;}
.y8_c00176{bottom:883.666667pt;}
.y7_c00176{bottom:904.466667pt;}
.y6_c00176{bottom:923.000000pt;}
.y5_c00176{bottom:971.333333pt;}
.y3_c00176{bottom:975.520000pt;}
.y2_c00176{bottom:975.800000pt;}
.y1_c00176{bottom:976.133333pt;}
.y4_c00176{bottom:984.186667pt;}
.h2_c00176{height:52.343750pt;}
.h1_c00176{height:53.750000pt;}
.h3_c00176{height:57.578125pt;}
.h6_c00176{height:62.812500pt;}
.h7_c00176{height:73.244792pt;}
.h4_c00176{height:73.281250pt;}
.h5_c00176{height:75.250000pt;}
.h0_c00176{height:1044.000000pt;}
.w0_c00176{width:650.646400pt;}
.w1_c00176{width:650.666667pt;}
.x0_c00176{left:0.000000pt;}
.x14_c00176{left:63.369067pt;}
.xf_c00176{left:64.969067pt;}
.x8_c00176{left:67.489067pt;}
.x6_c00176{left:68.435733pt;}
.x12_c00176{left:84.169067pt;}
.xe_c00176{left:86.369067pt;}
.x11_c00176{left:90.569067pt;}
.xd_c00176{left:94.035733pt;}
.x9_c00176{left:95.635733pt;}
.x7_c00176{left:96.969067pt;}
.x1f_c00176{left:117.769067pt;}
.x13_c00176{left:123.169067pt;}
.xa_c00176{left:161.555733pt;}
.x1b_c00176{left:186.835733pt;}
.x10_c00176{left:201.235733pt;}
.x1c_c00176{left:221.102400pt;}
.xb_c00176{left:229.435733pt;}
.x19_c00176{left:237.769067pt;}
.x1_c00176{left:286.702400pt;}
.xc_c00176{left:363.835733pt;}
.x2_c00176{left:376.635733pt;}
.x3_c00176{left:382.022400pt;}
.x1d_c00176{left:407.635733pt;}
.x20_c00176{left:408.635733pt;}
.x4_c00176{left:437.102400pt;}
.x1a_c00176{left:467.835733pt;}
.x21_c00176{left:473.569067pt;}
.x22_c00176{left:480.969067pt;}
.x1e_c00176{left:504.969067pt;}
.x23_c00176{left:539.502400pt;}
.x17_c00176{left:555.835733pt;}
.x15_c00176{left:561.569067pt;}
.x5_c00176{left:581.102400pt;}
.x18_c00176{left:583.035733pt;}
.x16_c00176{left:588.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a1395b45d8d2943ce1e7f8ef.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00177;src:url('chunks/assets/font_e8edcf5a92c6aab4b5f6a1ff.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00177;src:url('chunks/assets/font_b48a8302592d9d13c99c2122.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00177;src:url('chunks/assets/font_cd626c861a4caa39a96b317d.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00177{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00177{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m0_c00177{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m21_c00177{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m20_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);}
.m1a_c00177{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00177{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c00177{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m23_c00177{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c00177{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c00177{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1_c00177{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m17_c00177{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00177{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00177{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m24_c00177{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00177{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00177{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m14_c00177{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00177{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00177{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m18_c00177{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00177{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00177{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00177{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00177{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00177{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00177{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m25_c00177{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2_c00177{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00177{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c00177{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m16_c00177{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m13_c00177{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m22_c00177{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m10_c00177{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00177{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m15_c00177{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.mc_c00177{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.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;}
}
.ws0_c00177{word-spacing:0.000000px;}
.fc0_c00177{color:transparent;}
.fs2_c00177{font-size:66.000000px;}
.fs1_c00177{font-size:72.000000px;}
.fs0_c00177{font-size:78.000000px;}
.fs3_c00177{font-size:84.000000px;}
.y0_c00177{bottom:0.000000px;}
.y5b_c00177{bottom:96.660000px;}
.y5c_c00177{bottom:97.335000px;}
.y5a_c00177{bottom:99.885000px;}
.y59_c00177{bottom:106.035000px;}
.y58_c00177{bottom:111.060000px;}
.y57_c00177{bottom:118.935000px;}
.y56_c00177{bottom:124.035000px;}
.y55_c00177{bottom:140.910000px;}
.y54_c00177{bottom:145.260000px;}
.y53_c00177{bottom:165.750000px;}
.y52_c00177{bottom:187.335000px;}
.y51_c00177{bottom:194.910000px;}
.y50_c00177{bottom:209.310000px;}
.y4f_c00177{bottom:227.310000px;}
.y4e_c00177{bottom:231.285000px;}
.y4d_c00177{bottom:252.885000px;}
.y4c_c00177{bottom:274.500000px;}
.y4b_c00177{bottom:295.710000px;}
.y4a_c00177{bottom:317.685000px;}
.y49_c00177{bottom:336.375000px;}
.y48_c00177{bottom:338.910000px;}
.y47_c00177{bottom:358.335000px;}
.y46_c00177{bottom:359.835000px;}
.y45_c00177{bottom:364.125000px;}
.y44_c00177{bottom:385.335000px;}
.y43_c00177{bottom:401.910000px;}
.y42_c00177{bottom:403.710000px;}
.y41_c00177{bottom:405.900000px;}
.y40_c00177{bottom:425.685000px;}
.y3f_c00177{bottom:447.285000px;}
.y3e_c00177{bottom:469.260000px;}
.y3d_c00177{bottom:490.500000px;}
.y3c_c00177{bottom:512.085000px;}
.y3b_c00177{bottom:533.310000px;}
.y3a_c00177{bottom:554.910000px;}
.y39_c00177{bottom:576.510000px;}
.y38_c00177{bottom:598.125000px;}
.y37_c00177{bottom:598.500000px;}
.y36_c00177{bottom:620.085000px;}
.y34_c00177{bottom:640.935000px;}
.y33_c00177{bottom:641.310000px;}
.y35_c00177{bottom:641.685000px;}
.y30_c00177{bottom:662.910000px;}
.y31_c00177{bottom:663.285000px;}
.y32_c00177{bottom:663.960000px;}
.y2f_c00177{bottom:684.510000px;}
.y2e_c00177{bottom:705.810000px;}
.y2d_c00177{bottom:727.710000px;}
.y2a_c00177{bottom:747.135000px;}
.y2b_c00177{bottom:747.510000px;}
.y2c_c00177{bottom:748.260000px;}
.y27_c00177{bottom:770.250000px;}
.y28_c00177{bottom:772.425000px;}
.y29_c00177{bottom:773.085000px;}
.y26_c00177{bottom:792.150000px;}
.y25_c00177{bottom:813.750000px;}
.y24_c00177{bottom:835.050000px;}
.y23_c00177{bottom:856.275000px;}
.y22_c00177{bottom:872.460000px;}
.y1f_c00177{bottom:897.675000px;}
.y20_c00177{bottom:902.025000px;}
.y21_c00177{bottom:903.000000px;}
.y19_c00177{bottom:914.175000px;}
.y1a_c00177{bottom:914.925000px;}
.y1b_c00177{bottom:916.710000px;}
.y1c_c00177{bottom:921.060000px;}
.y1e_c00177{bottom:924.300000px;}
.y1d_c00177{bottom:924.675000px;}
.y15_c00177{bottom:935.835000px;}
.y16_c00177{bottom:940.875000px;}
.y17_c00177{bottom:946.560000px;}
.y18_c00177{bottom:946.935000px;}
.y13_c00177{bottom:963.900000px;}
.y14_c00177{bottom:968.550000px;}
.y10_c00177{bottom:983.685000px;}
.y12_c00177{bottom:988.710000px;}
.y11_c00177{bottom:989.460000px;}
.yb_c00177{bottom:998.460000px;}
.yd_c00177{bottom:1000.935000px;}
.yc_c00177{bottom:1001.025000px;}
.ye_c00177{bottom:1006.710000px;}
.yf_c00177{bottom:1010.025000px;}
.y7_c00177{bottom:1020.750000px;}
.y8_c00177{bottom:1024.710000px;}
.y9_c00177{bottom:1030.875000px;}
.ya_c00177{bottom:1031.250000px;}
.y2_c00177{bottom:1039.875000px;}
.y3_c00177{bottom:1042.710000px;}
.y4_c00177{bottom:1047.810000px;}
.y6_c00177{bottom:1052.085000px;}
.y5_c00177{bottom:1052.835000px;}
.y1_c00177{bottom:1097.085000px;}
.y5d_c00177{bottom:1104.960000px;}
.h3_c00177{height:64.775391px;}
.h4_c00177{height:70.664062px;}
.h2_c00177{height:72.562500px;}
.h1_c00177{height:78.609375px;}
.h5_c00177{height:82.400391px;}
.h0_c00177{height:1174.500000px;}
.w0_c00177{width:731.977200px;}
.w1_c00177{width:732.000000px;}
.x0_c00177{left:0.000000px;}
.x1e_c00177{left:60.115200px;}
.x2_c00177{left:61.165200px;}
.x2d_c00177{left:62.290200px;}
.x26_c00177{left:63.340200px;}
.x27_c00177{left:64.765200px;}
.x1_c00177{left:79.915200px;}
.x1b_c00177{left:91.390200px;}
.x2a_c00177{left:92.515200px;}
.x30_c00177{left:93.940200px;}
.x15_c00177{left:108.715200px;}
.x11_c00177{left:119.515200px;}
.x31_c00177{left:121.990200px;}
.x1f_c00177{left:134.590200px;}
.x25_c00177{left:141.790200px;}
.x16_c00177{left:145.090200px;}
.xa_c00177{left:156.940200px;}
.xb_c00177{left:159.490200px;}
.x20_c00177{left:161.290200px;}
.xc_c00177{left:167.740200px;}
.x23_c00177{left:172.375200px;}
.x3_c00177{left:185.740200px;}
.x4_c00177{left:201.190200px;}
.x2b_c00177{left:228.940200px;}
.x17_c00177{left:237.940200px;}
.x7_c00177{left:241.915200px;}
.x24_c00177{left:267.790200px;}
.x37_c00177{left:280.390200px;}
.x34_c00177{left:296.590200px;}
.x8_c00177{left:328.990200px;}
.x28_c00177{left:350.965200px;}
.x29_c00177{left:415.765200px;}
.x21_c00177{left:436.315200px;}
.x22_c00177{left:445.315200px;}
.x5_c00177{left:515.140200px;}
.x1c_c00177{left:527.365200px;}
.x18_c00177{left:532.390200px;}
.x12_c00177{left:535.315200px;}
.xe_c00177{left:548.290200px;}
.x35_c00177{left:561.940200px;}
.x1a_c00177{left:563.365200px;}
.xd_c00177{left:573.490200px;}
.x33_c00177{left:598.990200px;}
.x13_c00177{left:608.365200px;}
.x32_c00177{left:612.715200px;}
.x2c_c00177{left:624.190200px;}
.x2f_c00177{left:627.790200px;}
.x10_c00177{left:634.990200px;}
.x9_c00177{left:639.340200px;}
.x14_c00177{left:640.390200px;}
.x36_c00177{left:645.115200px;}
.x6_c00177{left:646.915200px;}
.xf_c00177{left:652.690200px;}
.x19_c00177{left:655.915200px;}
.x2e_c00177{left:656.965200px;}
.x1d_c00177{left:661.990200px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls0_c00177{letter-spacing:0.000000pt;}
.ws0_c00177{word-spacing:0.000000pt;}
.fs2_c00177{font-size:58.666667pt;}
.fs1_c00177{font-size:64.000000pt;}
.fs0_c00177{font-size:69.333333pt;}
.fs3_c00177{font-size:74.666667pt;}
.y0_c00177{bottom:0.000000pt;}
.y5b_c00177{bottom:85.920000pt;}
.y5c_c00177{bottom:86.520000pt;}
.y5a_c00177{bottom:88.786667pt;}
.y59_c00177{bottom:94.253333pt;}
.y58_c00177{bottom:98.720000pt;}
.y57_c00177{bottom:105.720000pt;}
.y56_c00177{bottom:110.253333pt;}
.y55_c00177{bottom:125.253333pt;}
.y54_c00177{bottom:129.120000pt;}
.y53_c00177{bottom:147.333333pt;}
.y52_c00177{bottom:166.520000pt;}
.y51_c00177{bottom:173.253333pt;}
.y50_c00177{bottom:186.053333pt;}
.y4f_c00177{bottom:202.053333pt;}
.y4e_c00177{bottom:205.586667pt;}
.y4d_c00177{bottom:224.786667pt;}
.y4c_c00177{bottom:244.000000pt;}
.y4b_c00177{bottom:262.853333pt;}
.y4a_c00177{bottom:282.386667pt;}
.y49_c00177{bottom:299.000000pt;}
.y48_c00177{bottom:301.253333pt;}
.y47_c00177{bottom:318.520000pt;}
.y46_c00177{bottom:319.853333pt;}
.y45_c00177{bottom:323.666667pt;}
.y44_c00177{bottom:342.520000pt;}
.y43_c00177{bottom:357.253333pt;}
.y42_c00177{bottom:358.853333pt;}
.y41_c00177{bottom:360.800000pt;}
.y40_c00177{bottom:378.386667pt;}
.y3f_c00177{bottom:397.586667pt;}
.y3e_c00177{bottom:417.120000pt;}
.y3d_c00177{bottom:436.000000pt;}
.y3c_c00177{bottom:455.186667pt;}
.y3b_c00177{bottom:474.053333pt;}
.y3a_c00177{bottom:493.253333pt;}
.y39_c00177{bottom:512.453333pt;}
.y38_c00177{bottom:531.666667pt;}
.y37_c00177{bottom:532.000000pt;}
.y36_c00177{bottom:551.186667pt;}
.y34_c00177{bottom:569.720000pt;}
.y33_c00177{bottom:570.053333pt;}
.y35_c00177{bottom:570.386667pt;}
.y30_c00177{bottom:589.253333pt;}
.y31_c00177{bottom:589.586667pt;}
.y32_c00177{bottom:590.186667pt;}
.y2f_c00177{bottom:608.453333pt;}
.y2e_c00177{bottom:627.386667pt;}
.y2d_c00177{bottom:646.853333pt;}
.y2a_c00177{bottom:664.120000pt;}
.y2b_c00177{bottom:664.453333pt;}
.y2c_c00177{bottom:665.120000pt;}
.y27_c00177{bottom:684.666667pt;}
.y28_c00177{bottom:686.600000pt;}
.y29_c00177{bottom:687.186667pt;}
.y26_c00177{bottom:704.133333pt;}
.y25_c00177{bottom:723.333333pt;}
.y24_c00177{bottom:742.266667pt;}
.y23_c00177{bottom:761.133333pt;}
.y22_c00177{bottom:775.520000pt;}
.y1f_c00177{bottom:797.933333pt;}
.y20_c00177{bottom:801.800000pt;}
.y21_c00177{bottom:802.666667pt;}
.y19_c00177{bottom:812.600000pt;}
.y1a_c00177{bottom:813.266667pt;}
.y1b_c00177{bottom:814.853333pt;}
.y1c_c00177{bottom:818.720000pt;}
.y1e_c00177{bottom:821.600000pt;}
.y1d_c00177{bottom:821.933333pt;}
.y15_c00177{bottom:831.853333pt;}
.y16_c00177{bottom:836.333333pt;}
.y17_c00177{bottom:841.386667pt;}
.y18_c00177{bottom:841.720000pt;}
.y13_c00177{bottom:856.800000pt;}
.y14_c00177{bottom:860.933333pt;}
.y10_c00177{bottom:874.386667pt;}
.y12_c00177{bottom:878.853333pt;}
.y11_c00177{bottom:879.520000pt;}
.yb_c00177{bottom:887.520000pt;}
.yd_c00177{bottom:889.720000pt;}
.yc_c00177{bottom:889.800000pt;}
.ye_c00177{bottom:894.853333pt;}
.yf_c00177{bottom:897.800000pt;}
.y7_c00177{bottom:907.333333pt;}
.y8_c00177{bottom:910.853333pt;}
.y9_c00177{bottom:916.333333pt;}
.ya_c00177{bottom:916.666667pt;}
.y2_c00177{bottom:924.333333pt;}
.y3_c00177{bottom:926.853333pt;}
.y4_c00177{bottom:931.386667pt;}
.y6_c00177{bottom:935.186667pt;}
.y5_c00177{bottom:935.853333pt;}
.y1_c00177{bottom:975.186667pt;}
.y5d_c00177{bottom:982.186667pt;}
.h3_c00177{height:57.578125pt;}
.h4_c00177{height:62.812500pt;}
.h2_c00177{height:64.500000pt;}
.h1_c00177{height:69.875000pt;}
.h5_c00177{height:73.244792pt;}
.h0_c00177{height:1044.000000pt;}
.w0_c00177{width:650.646400pt;}
.w1_c00177{width:650.666667pt;}
.x0_c00177{left:0.000000pt;}
.x1e_c00177{left:53.435733pt;}
.x2_c00177{left:54.369067pt;}
.x2d_c00177{left:55.369067pt;}
.x26_c00177{left:56.302400pt;}
.x27_c00177{left:57.569067pt;}
.x1_c00177{left:71.035733pt;}
.x1b_c00177{left:81.235733pt;}
.x2a_c00177{left:82.235733pt;}
.x30_c00177{left:83.502400pt;}
.x15_c00177{left:96.635733pt;}
.x11_c00177{left:106.235733pt;}
.x31_c00177{left:108.435733pt;}
.x1f_c00177{left:119.635733pt;}
.x25_c00177{left:126.035733pt;}
.x16_c00177{left:128.969067pt;}
.xa_c00177{left:139.502400pt;}
.xb_c00177{left:141.769067pt;}
.x20_c00177{left:143.369067pt;}
.xc_c00177{left:149.102400pt;}
.x23_c00177{left:153.222400pt;}
.x3_c00177{left:165.102400pt;}
.x4_c00177{left:178.835733pt;}
.x2b_c00177{left:203.502400pt;}
.x17_c00177{left:211.502400pt;}
.x7_c00177{left:215.035733pt;}
.x24_c00177{left:238.035733pt;}
.x37_c00177{left:249.235733pt;}
.x34_c00177{left:263.635733pt;}
.x8_c00177{left:292.435733pt;}
.x28_c00177{left:311.969067pt;}
.x29_c00177{left:369.569067pt;}
.x21_c00177{left:387.835733pt;}
.x22_c00177{left:395.835733pt;}
.x5_c00177{left:457.902400pt;}
.x1c_c00177{left:468.769067pt;}
.x18_c00177{left:473.235733pt;}
.x12_c00177{left:475.835733pt;}
.xe_c00177{left:487.369067pt;}
.x35_c00177{left:499.502400pt;}
.x1a_c00177{left:500.769067pt;}
.xd_c00177{left:509.769067pt;}
.x33_c00177{left:532.435733pt;}
.x13_c00177{left:540.769067pt;}
.x32_c00177{left:544.635733pt;}
.x2c_c00177{left:554.835733pt;}
.x2f_c00177{left:558.035733pt;}
.x10_c00177{left:564.435733pt;}
.x9_c00177{left:568.302400pt;}
.x14_c00177{left:569.235733pt;}
.x36_c00177{left:573.435733pt;}
.x6_c00177{left:575.035733pt;}
.xf_c00177{left:580.169067pt;}
.x19_c00177{left:583.035733pt;}
.x2e_c00177{left:583.969067pt;}
.x1d_c00177{left:588.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b14f82dabc2b34349b324ce3.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00178;src:url('chunks/assets/font_da4f2fa70960d12ad3a6e177.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00178;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00178{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0_c00178{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c00178{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c00178{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00178{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c00178{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00178{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c00178{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00178{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma_c00178{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00178{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00178{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00178{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00178{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00178{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00178{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c00178{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00178{color:transparent;}
.fs2_c00178{font-size:54.000000px;}
.fs0_c00178{font-size:60.000000px;}
.fs1_c00178{font-size:72.000000px;}
.fs3_c00178{font-size:78.000000px;}
.y0_c00178{bottom:0.000000px;}
.y2d_c00178{bottom:98.460000px;}
.y2c_c00178{bottom:119.685000px;}
.y2b_c00178{bottom:139.875000px;}
.y2a_c00178{bottom:161.460000px;}
.y29_c00178{bottom:182.010000px;}
.y28_c00178{bottom:202.500000px;}
.y27_c00178{bottom:223.410000px;}
.y26_c00178{bottom:244.260000px;}
.y25_c00178{bottom:265.500000px;}
.y24_c00178{bottom:286.710000px;}
.y23_c00178{bottom:308.310000px;}
.y22_c00178{bottom:329.535000px;}
.y21_c00178{bottom:351.150000px;}
.y20_c00178{bottom:371.310000px;}
.y1d_c00178{bottom:393.000000px;}
.y1e_c00178{bottom:393.660000px;}
.y1f_c00178{bottom:394.335000px;}
.y1c_c00178{bottom:414.885000px;}
.y1b_c00178{bottom:436.125000px;}
.y1a_c00178{bottom:457.710000px;}
.y19_c00178{bottom:479.310000px;}
.y18_c00178{bottom:500.535000px;}
.y17_c00178{bottom:522.135000px;}
.y16_c00178{bottom:544.125000px;}
.y15_c00178{bottom:565.335000px;}
.y14_c00178{bottom:679.875000px;}
.y13_c00178{bottom:704.310000px;}
.y12_c00178{bottom:740.325000px;}
.y11_c00178{bottom:763.335000px;}
.y10_c00178{bottom:784.185000px;}
.yf_c00178{bottom:805.500000px;}
.ye_c00178{bottom:827.775000px;}
.yd_c00178{bottom:849.435000px;}
.yc_c00178{bottom:871.050000px;}
.yb_c00178{bottom:891.900000px;}
.ya_c00178{bottom:913.875000px;}
.y9_c00178{bottom:935.085000px;}
.y8_c00178{bottom:955.935000px;}
.y7_c00178{bottom:977.925000px;}
.y6_c00178{bottom:999.150000px;}
.y5_c00178{bottom:1020.750000px;}
.y4_c00178{bottom:1042.800000px;}
.y3_c00178{bottom:1097.775000px;}
.y2_c00178{bottom:1102.500000px;}
.y1_c00178{bottom:1102.875000px;}
.h3_c00178{height:52.998047px;}
.h4_c00178{height:54.421875px;}
.h1_c00178{height:60.468750px;}
.h2_c00178{height:70.664062px;}
.h5_c00178{height:76.514648px;}
.h0_c00178{height:1174.500000px;}
.w0_c00178{width:731.977200px;}
.w1_c00178{width:732.000000px;}
.x0_c00178{left:0.000000px;}
.x10_c00178{left:77.740200px;}
.xb_c00178{left:79.540200px;}
.x4_c00178{left:81.340200px;}
.x6_c00178{left:82.390200px;}
.xc_c00178{left:98.590200px;}
.xa_c00178{left:101.140200px;}
.x9_c00178{left:102.190200px;}
.x8_c00178{left:103.315200px;}
.x7_c00178{left:105.115200px;}
.xf_c00178{left:110.515200px;}
.x13_c00178{left:111.565200px;}
.x5_c00178{left:112.690200px;}
.x1_c00178{left:324.340200px;}
.xe_c00178{left:437.365200px;}
.xd_c00178{left:450.340200px;}
.x2_c00178{left:492.115200px;}
.x11_c00178{left:548.590200px;}
.x12_c00178{left:567.715200px;}
.x3_c00178{left:653.365200px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls0_c00178{letter-spacing:0.000000pt;}
.ws0_c00178{word-spacing:0.000000pt;}
.fs2_c00178{font-size:48.000000pt;}
.fs0_c00178{font-size:53.333333pt;}
.fs1_c00178{font-size:64.000000pt;}
.fs3_c00178{font-size:69.333333pt;}
.y0_c00178{bottom:0.000000pt;}
.y2d_c00178{bottom:87.520000pt;}
.y2c_c00178{bottom:106.386667pt;}
.y2b_c00178{bottom:124.333333pt;}
.y2a_c00178{bottom:143.520000pt;}
.y29_c00178{bottom:161.786667pt;}
.y28_c00178{bottom:180.000000pt;}
.y27_c00178{bottom:198.586667pt;}
.y26_c00178{bottom:217.120000pt;}
.y25_c00178{bottom:236.000000pt;}
.y24_c00178{bottom:254.853333pt;}
.y23_c00178{bottom:274.053333pt;}
.y22_c00178{bottom:292.920000pt;}
.y21_c00178{bottom:312.133333pt;}
.y20_c00178{bottom:330.053333pt;}
.y1d_c00178{bottom:349.333333pt;}
.y1e_c00178{bottom:349.920000pt;}
.y1f_c00178{bottom:350.520000pt;}
.y1c_c00178{bottom:368.786667pt;}
.y1b_c00178{bottom:387.666667pt;}
.y1a_c00178{bottom:406.853333pt;}
.y19_c00178{bottom:426.053333pt;}
.y18_c00178{bottom:444.920000pt;}
.y17_c00178{bottom:464.120000pt;}
.y16_c00178{bottom:483.666667pt;}
.y15_c00178{bottom:502.520000pt;}
.y14_c00178{bottom:604.333333pt;}
.y13_c00178{bottom:626.053333pt;}
.y12_c00178{bottom:658.066667pt;}
.y11_c00178{bottom:678.520000pt;}
.y10_c00178{bottom:697.053333pt;}
.yf_c00178{bottom:716.000000pt;}
.ye_c00178{bottom:735.800000pt;}
.yd_c00178{bottom:755.053333pt;}
.yc_c00178{bottom:774.266667pt;}
.yb_c00178{bottom:792.800000pt;}
.ya_c00178{bottom:812.333333pt;}
.y9_c00178{bottom:831.186667pt;}
.y8_c00178{bottom:849.720000pt;}
.y7_c00178{bottom:869.266667pt;}
.y6_c00178{bottom:888.133333pt;}
.y5_c00178{bottom:907.333333pt;}
.y4_c00178{bottom:926.933333pt;}
.y3_c00178{bottom:975.800000pt;}
.y2_c00178{bottom:980.000000pt;}
.y1_c00178{bottom:980.333333pt;}
.h3_c00178{height:47.109375pt;}
.h4_c00178{height:48.375000pt;}
.h1_c00178{height:53.750000pt;}
.h2_c00178{height:62.812500pt;}
.h5_c00178{height:68.013021pt;}
.h0_c00178{height:1044.000000pt;}
.w0_c00178{width:650.646400pt;}
.w1_c00178{width:650.666667pt;}
.x0_c00178{left:0.000000pt;}
.x10_c00178{left:69.102400pt;}
.xb_c00178{left:70.702400pt;}
.x4_c00178{left:72.302400pt;}
.x6_c00178{left:73.235733pt;}
.xc_c00178{left:87.635733pt;}
.xa_c00178{left:89.902400pt;}
.x9_c00178{left:90.835733pt;}
.x8_c00178{left:91.835733pt;}
.x7_c00178{left:93.435733pt;}
.xf_c00178{left:98.235733pt;}
.x13_c00178{left:99.169067pt;}
.x5_c00178{left:100.169067pt;}
.x1_c00178{left:288.302400pt;}
.xe_c00178{left:388.769067pt;}
.xd_c00178{left:400.302400pt;}
.x2_c00178{left:437.435733pt;}
.x11_c00178{left:487.635733pt;}
.x12_c00178{left:504.635733pt;}
.x3_c00178{left:580.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1c727ad2cfff256b414e9cc.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00179;src:url('chunks/assets/font_39fe9d58cdf862521cdc6dec.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00179;src:url('chunks/assets/font_2be87599d0c9037a35a0c330.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00179{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m15_c00179{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m14_c00179{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00179{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m9_c00179{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m13_c00179{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c00179{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00179{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c00179{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00179{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00179{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00179{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00179{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00179{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00179{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00179{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00179{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00179{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00179{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c00179{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c00179{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1_c00179{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.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;}
}
.ws0_c00179{word-spacing:0.000000px;}
.fc0_c00179{color:transparent;}
.fs1_c00179{font-size:60.000000px;}
.fs3_c00179{font-size:66.000000px;}
.fs2_c00179{font-size:72.000000px;}
.fs0_c00179{font-size:78.000000px;}
.y0_c00179{bottom:0.000000px;}
.y36_c00179{bottom:107.085000px;}
.y35_c00179{bottom:118.260000px;}
.y34_c00179{bottom:128.310000px;}
.y33_c00179{bottom:130.785000px;}
.y32_c00179{bottom:148.500000px;}
.y31_c00179{bottom:164.685000px;}
.y30_c00179{bottom:186.285000px;}
.y2f_c00179{bottom:207.885000px;}
.y2e_c00179{bottom:229.500000px;}
.y2d_c00179{bottom:257.625000px;}
.y2c_c00179{bottom:273.060000px;}
.y2b_c00179{bottom:294.660000px;}
.y2a_c00179{bottom:316.560000px;}
.y29_c00179{bottom:340.710000px;}
.y28_c00179{bottom:359.835000px;}
.y27_c00179{bottom:381.060000px;}
.y26_c00179{bottom:403.035000px;}
.y25_c00179{bottom:424.935000px;}
.y24_c00179{bottom:446.535000px;}
.y23_c00179{bottom:468.135000px;}
.y22_c00179{bottom:490.125000px;}
.y21_c00179{bottom:511.035000px;}
.y20_c00179{bottom:532.935000px;}
.y1f_c00179{bottom:554.250000px;}
.y1e_c00179{bottom:574.335000px;}
.y1d_c00179{bottom:575.460000px;}
.y1c_c00179{bottom:576.135000px;}
.y1b_c00179{bottom:597.435000px;}
.y1a_c00179{bottom:618.960000px;}
.y19_c00179{bottom:640.260000px;}
.y18_c00179{bottom:661.875000px;}
.y17_c00179{bottom:683.460000px;}
.y16_c00179{bottom:703.635000px;}
.y15_c00179{bottom:725.910000px;}
.y14_c00179{bottom:747.885000px;}
.y13_c00179{bottom:769.125000px;}
.y12_c00179{bottom:790.710000px;}
.y11_c00179{bottom:812.310000px;}
.y10_c00179{bottom:833.550000px;}
.yd_c00179{bottom:849.060000px;}
.ye_c00179{bottom:849.435000px;}
.yf_c00179{bottom:855.150000px;}
.yc_c00179{bottom:876.000000px;}
.yb_c00179{bottom:897.300000px;}
.ya_c00179{bottom:918.900000px;}
.y9_c00179{bottom:938.025000px;}
.y8_c00179{bottom:962.085000px;}
.y7_c00179{bottom:983.025000px;}
.y6_c00179{bottom:1003.875000px;}
.y5_c00179{bottom:1025.085000px;}
.y4_c00179{bottom:1046.310000px;}
.y1_c00179{bottom:1093.875000px;}
.y3_c00179{bottom:1102.875000px;}
.y2_c00179{bottom:1109.025000px;}
.h2_c00179{height:58.886719px;}
.h4_c00179{height:64.775391px;}
.h5_c00179{height:70.628906px;}
.h3_c00179{height:70.664062px;}
.h6_c00179{height:76.514648px;}
.h1_c00179{height:78.609375px;}
.h0_c00179{height:1174.500000px;}
.w0_c00179{width:731.977200px;}
.w1_c00179{width:732.000000px;}
.x0_c00179{left:0.000000px;}
.xa_c00179{left:54.340200px;}
.x5_c00179{left:55.390200px;}
.x4_c00179{left:56.515200px;}
.xe_c00179{left:57.565200px;}
.x6_c00179{left:74.890200px;}
.x1_c00179{left:75.925200px;}
.x7_c00179{left:81.340200px;}
.x9_c00179{left:85.300200px;}
.xd_c00179{left:87.490200px;}
.xf_c00179{left:89.290200px;}
.x2_c00179{left:102.565200px;}
.x8_c00179{left:111.190200px;}
.x10_c00179{left:114.490200px;}
.x11_c00179{left:245.140200px;}
.x3_c00179{left:275.740200px;}
.xb_c00179{left:390.565200px;}
.xc_c00179{left:415.765200px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls0_c00179{letter-spacing:0.000000pt;}
.ws0_c00179{word-spacing:0.000000pt;}
.fs1_c00179{font-size:53.333333pt;}
.fs3_c00179{font-size:58.666667pt;}
.fs2_c00179{font-size:64.000000pt;}
.fs0_c00179{font-size:69.333333pt;}
.y0_c00179{bottom:0.000000pt;}
.y36_c00179{bottom:95.186667pt;}
.y35_c00179{bottom:105.120000pt;}
.y34_c00179{bottom:114.053333pt;}
.y33_c00179{bottom:116.253333pt;}
.y32_c00179{bottom:132.000000pt;}
.y31_c00179{bottom:146.386667pt;}
.y30_c00179{bottom:165.586667pt;}
.y2f_c00179{bottom:184.786667pt;}
.y2e_c00179{bottom:204.000000pt;}
.y2d_c00179{bottom:229.000000pt;}
.y2c_c00179{bottom:242.720000pt;}
.y2b_c00179{bottom:261.920000pt;}
.y2a_c00179{bottom:281.386667pt;}
.y29_c00179{bottom:302.853333pt;}
.y28_c00179{bottom:319.853333pt;}
.y27_c00179{bottom:338.720000pt;}
.y26_c00179{bottom:358.253333pt;}
.y25_c00179{bottom:377.720000pt;}
.y24_c00179{bottom:396.920000pt;}
.y23_c00179{bottom:416.120000pt;}
.y22_c00179{bottom:435.666667pt;}
.y21_c00179{bottom:454.253333pt;}
.y20_c00179{bottom:473.720000pt;}
.y1f_c00179{bottom:492.666667pt;}
.y1e_c00179{bottom:510.520000pt;}
.y1d_c00179{bottom:511.520000pt;}
.y1c_c00179{bottom:512.120000pt;}
.y1b_c00179{bottom:531.053333pt;}
.y1a_c00179{bottom:550.186667pt;}
.y19_c00179{bottom:569.120000pt;}
.y18_c00179{bottom:588.333333pt;}
.y17_c00179{bottom:607.520000pt;}
.y16_c00179{bottom:625.453333pt;}
.y15_c00179{bottom:645.253333pt;}
.y14_c00179{bottom:664.786667pt;}
.y13_c00179{bottom:683.666667pt;}
.y12_c00179{bottom:702.853333pt;}
.y11_c00179{bottom:722.053333pt;}
.y10_c00179{bottom:740.933333pt;}
.yd_c00179{bottom:754.720000pt;}
.ye_c00179{bottom:755.053333pt;}
.yf_c00179{bottom:760.133333pt;}
.yc_c00179{bottom:778.666667pt;}
.yb_c00179{bottom:797.600000pt;}
.ya_c00179{bottom:816.800000pt;}
.y9_c00179{bottom:833.800000pt;}
.y8_c00179{bottom:855.186667pt;}
.y7_c00179{bottom:873.800000pt;}
.y6_c00179{bottom:892.333333pt;}
.y5_c00179{bottom:911.186667pt;}
.y4_c00179{bottom:930.053333pt;}
.y1_c00179{bottom:972.333333pt;}
.y3_c00179{bottom:980.333333pt;}
.y2_c00179{bottom:985.800000pt;}
.h2_c00179{height:52.343750pt;}
.h4_c00179{height:57.578125pt;}
.h5_c00179{height:62.781250pt;}
.h3_c00179{height:62.812500pt;}
.h6_c00179{height:68.013021pt;}
.h1_c00179{height:69.875000pt;}
.h0_c00179{height:1044.000000pt;}
.w0_c00179{width:650.646400pt;}
.w1_c00179{width:650.666667pt;}
.x0_c00179{left:0.000000pt;}
.xa_c00179{left:48.302400pt;}
.x5_c00179{left:49.235733pt;}
.x4_c00179{left:50.235733pt;}
.xe_c00179{left:51.169067pt;}
.x6_c00179{left:66.569067pt;}
.x1_c00179{left:67.489067pt;}
.x7_c00179{left:72.302400pt;}
.x9_c00179{left:75.822400pt;}
.xd_c00179{left:77.769067pt;}
.xf_c00179{left:79.369067pt;}
.x2_c00179{left:91.169067pt;}
.x8_c00179{left:98.835733pt;}
.x10_c00179{left:101.769067pt;}
.x11_c00179{left:217.902400pt;}
.x3_c00179{left:245.102400pt;}
.xb_c00179{left:347.169067pt;}
.xc_c00179{left:369.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b10c4684da634fdd659244a9.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00180;src:url('chunks/assets/font_3a67d25bdb02333850c388b7.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00180;src:url('chunks/assets/font_00fe0000737bf9ae9b9ecfcf.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00180{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8_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);}
.m2_c00180{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6_c00180{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc_c00180{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me_c00180{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c00180{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c00180{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c00180{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c00180{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c00180{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma_c00180{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c00180{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00180{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00180{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00180{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00180{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c00180{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m7_c00180{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,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:0.000000px;}
.fc0_c00180{color:transparent;}
.fs0_c00180{font-size:60.000000px;}
.fs3_c00180{font-size:66.000000px;}
.fs2_c00180{font-size:72.000000px;}
.fs1_c00180{font-size:84.000000px;}
.y0_c00180{bottom:0.000000px;}
.y30_c00180{bottom:87.960000px;}
.y2f_c00180{bottom:110.010000px;}
.y2e_c00180{bottom:130.500000px;}
.y2d_c00180{bottom:151.335000px;}
.y2c_c00180{bottom:171.885000px;}
.y2b_c00180{bottom:192.750000px;}
.y2a_c00180{bottom:213.285000px;}
.y28_c00180{bottom:234.135000px;}
.y29_c00180{bottom:234.510000px;}
.y26_c00180{bottom:255.750000px;}
.y27_c00180{bottom:258.285000px;}
.y25_c00180{bottom:277.035000px;}
.y24_c00180{bottom:297.900000px;}
.y23_c00180{bottom:319.125000px;}
.y22_c00180{bottom:340.335000px;}
.y21_c00180{bottom:361.650000px;}
.y20_c00180{bottom:382.500000px;}
.y1f_c00180{bottom:404.085000px;}
.y1e_c00180{bottom:425.010000px;}
.y1d_c00180{bottom:446.910000px;}
.y1c_c00180{bottom:468.135000px;}
.y1b_c00180{bottom:490.125000px;}
.y1a_c00180{bottom:511.335000px;}
.y19_c00180{bottom:532.935000px;}
.y18_c00180{bottom:554.910000px;}
.y17_c00180{bottom:576.135000px;}
.y16_c00180{bottom:597.435000px;}
.y15_c00180{bottom:618.960000px;}
.y14_c00180{bottom:640.260000px;}
.y13_c00180{bottom:769.800000px;}
.y12_c00180{bottom:770.625000px;}
.y11_c00180{bottom:792.900000px;}
.y10_c00180{bottom:814.125000px;}
.yf_c00180{bottom:836.085000px;}
.ye_c00180{bottom:857.310000px;}
.yd_c00180{bottom:858.435000px;}
.yc_c00180{bottom:878.925000px;}
.yb_c00180{bottom:900.150000px;}
.ya_c00180{bottom:900.525000px;}
.y9_c00180{bottom:921.750000px;}
.y8_c00180{bottom:942.960000px;}
.y7_c00180{bottom:944.085000px;}
.y6_c00180{bottom:964.275000px;}
.y5_c00180{bottom:987.000000px;}
.y4_c00180{bottom:1007.460000px;}
.y3_c00180{bottom:1028.310000px;}
.y2_c00180{bottom:1029.810000px;}
.y1_c00180{bottom:1088.835000px;}
.h1_c00180{height:58.886719px;}
.h6_c00180{height:64.775391px;}
.h5_c00180{height:70.664062px;}
.h2_c00180{height:82.400391px;}
.h3_c00180{height:82.441406px;}
.h4_c00180{height:84.656250px;}
.h0_c00180{height:1174.500000px;}
.w0_c00180{width:731.977200px;}
.w1_c00180{width:732.000000px;}
.x0_c00180{left:0.000000px;}
.xd_c00180{left:73.090200px;}
.x8_c00180{left:74.140200px;}
.x4_c00180{left:75.175200px;}
.x10_c00180{left:76.675200px;}
.xc_c00180{left:94.990200px;}
.x2_c00180{left:96.490200px;}
.x6_c00180{left:98.590200px;}
.xa_c00180{left:106.165200px;}
.x5_c00180{left:107.290200px;}
.xf_c00180{left:123.790200px;}
.x9_c00180{left:140.365200px;}
.x7_c00180{left:141.790200px;}
.x1_c00180{left:288.340200px;}
.xb_c00180{left:320.740200px;}
.x3_c00180{left:334.390200px;}
.xe_c00180{left:640.090200px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls0_c00180{letter-spacing:0.000000pt;}
.ws0_c00180{word-spacing:0.000000pt;}
.fs0_c00180{font-size:53.333333pt;}
.fs3_c00180{font-size:58.666667pt;}
.fs2_c00180{font-size:64.000000pt;}
.fs1_c00180{font-size:74.666667pt;}
.y0_c00180{bottom:0.000000pt;}
.y30_c00180{bottom:78.186667pt;}
.y2f_c00180{bottom:97.786667pt;}
.y2e_c00180{bottom:116.000000pt;}
.y2d_c00180{bottom:134.520000pt;}
.y2c_c00180{bottom:152.786667pt;}
.y2b_c00180{bottom:171.333333pt;}
.y2a_c00180{bottom:189.586667pt;}
.y28_c00180{bottom:208.120000pt;}
.y29_c00180{bottom:208.453333pt;}
.y26_c00180{bottom:227.333333pt;}
.y27_c00180{bottom:229.586667pt;}
.y25_c00180{bottom:246.253333pt;}
.y24_c00180{bottom:264.800000pt;}
.y23_c00180{bottom:283.666667pt;}
.y22_c00180{bottom:302.520000pt;}
.y21_c00180{bottom:321.466667pt;}
.y20_c00180{bottom:340.000000pt;}
.y1f_c00180{bottom:359.186667pt;}
.y1e_c00180{bottom:377.786667pt;}
.y1d_c00180{bottom:397.253333pt;}
.y1c_c00180{bottom:416.120000pt;}
.y1b_c00180{bottom:435.666667pt;}
.y1a_c00180{bottom:454.520000pt;}
.y19_c00180{bottom:473.720000pt;}
.y18_c00180{bottom:493.253333pt;}
.y17_c00180{bottom:512.120000pt;}
.y16_c00180{bottom:531.053333pt;}
.y15_c00180{bottom:550.186667pt;}
.y14_c00180{bottom:569.120000pt;}
.y13_c00180{bottom:684.266667pt;}
.y12_c00180{bottom:685.000000pt;}
.y11_c00180{bottom:704.800000pt;}
.y10_c00180{bottom:723.666667pt;}
.yf_c00180{bottom:743.186667pt;}
.ye_c00180{bottom:762.053333pt;}
.yd_c00180{bottom:763.053333pt;}
.yc_c00180{bottom:781.266667pt;}
.yb_c00180{bottom:800.133333pt;}
.ya_c00180{bottom:800.466667pt;}
.y9_c00180{bottom:819.333333pt;}
.y8_c00180{bottom:838.186667pt;}
.y7_c00180{bottom:839.186667pt;}
.y6_c00180{bottom:857.133333pt;}
.y5_c00180{bottom:877.333333pt;}
.y4_c00180{bottom:895.520000pt;}
.y3_c00180{bottom:914.053333pt;}
.y2_c00180{bottom:915.386667pt;}
.y1_c00180{bottom:967.853333pt;}
.h1_c00180{height:52.343750pt;}
.h6_c00180{height:57.578125pt;}
.h5_c00180{height:62.812500pt;}
.h2_c00180{height:73.244792pt;}
.h3_c00180{height:73.281250pt;}
.h4_c00180{height:75.250000pt;}
.h0_c00180{height:1044.000000pt;}
.w0_c00180{width:650.646400pt;}
.w1_c00180{width:650.666667pt;}
.x0_c00180{left:0.000000pt;}
.xd_c00180{left:64.969067pt;}
.x8_c00180{left:65.902400pt;}
.x4_c00180{left:66.822400pt;}
.x10_c00180{left:68.155733pt;}
.xc_c00180{left:84.435733pt;}
.x2_c00180{left:85.769067pt;}
.x6_c00180{left:87.635733pt;}
.xa_c00180{left:94.369067pt;}
.x5_c00180{left:95.369067pt;}
.xf_c00180{left:110.035733pt;}
.x9_c00180{left:124.769067pt;}
.x7_c00180{left:126.035733pt;}
.x1_c00180{left:256.302400pt;}
.xb_c00180{left:285.102400pt;}
.x3_c00180{left:297.235733pt;}
.xe_c00180{left:568.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2db2bd754f36c24a4e1aab3f.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00181{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9_c00181{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10_c00181{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00181{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c00181{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c00181{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c00181{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00181{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00181{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00181{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00181{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00181{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00181{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00181{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00181{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00181{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00181{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mb_c00181{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1_c00181{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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.000000px;}
.fc0_c00181{color:transparent;}
.fs1_c00181{font-size:54.000000px;}
.fs2_c00181{font-size:66.000000px;}
.fs0_c00181{font-size:72.000000px;}
.y0_c00181{bottom:0.000000px;}
.y24_c00181{bottom:369.525000px;}
.y23_c00181{bottom:421.035000px;}
.y22_c00181{bottom:441.510000px;}
.y21_c00181{bottom:463.500000px;}
.y20_c00181{bottom:484.710000px;}
.y1f_c00181{bottom:510.660000px;}
.y1e_c00181{bottom:527.910000px;}
.y1d_c00181{bottom:551.310000px;}
.y1c_c00181{bottom:553.500000px;}
.y1b_c00181{bottom:574.410000px;}
.y1a_c00181{bottom:592.710000px;}
.y19_c00181{bottom:596.685000px;}
.y18_c00181{bottom:615.750000px;}
.y17_c00181{bottom:636.660000px;}
.y16_c00181{bottom:658.260000px;}
.y15_c00181{bottom:680.910000px;}
.y14_c00181{bottom:701.460000px;}
.y13_c00181{bottom:723.450000px;}
.y12_c00181{bottom:744.660000px;}
.y11_c00181{bottom:766.260000px;}
.y10_c00181{bottom:787.185000px;}
.yf_c00181{bottom:808.710000px;}
.ye_c00181{bottom:829.935000px;}
.yd_c00181{bottom:849.435000px;}
.yc_c00181{bottom:872.460000px;}
.yb_c00181{bottom:894.060000px;}
.ya_c00181{bottom:915.300000px;}
.y9_c00181{bottom:937.275000px;}
.y8_c00181{bottom:958.875000px;}
.y7_c00181{bottom:980.085000px;}
.y6_c00181{bottom:1002.060000px;}
.y5_c00181{bottom:1021.125000px;}
.y4_c00181{bottom:1040.550000px;}
.y1_c00181{bottom:1096.800000px;}
.y3_c00181{bottom:1102.875000px;}
.y2_c00181{bottom:1111.875000px;}
.h2_c00181{height:52.998047px;}
.h3_c00181{height:64.775391px;}
.h1_c00181{height:70.664062px;}
.h0_c00181{height:1174.500000px;}
.w0_c00181{width:731.977200px;}
.w1_c00181{width:732.000000px;}
.x0_c00181{left:0.000000px;}
.x12_c00181{left:57.190200px;}
.xe_c00181{left:58.315200px;}
.xc_c00181{left:60.115200px;}
.xa_c00181{left:61.165200px;}
.x9_c00181{left:62.965200px;}
.x7_c00181{left:64.390200px;}
.x5_c00181{left:65.515200px;}
.x13_c00181{left:78.115200px;}
.x15_c00181{left:79.165200px;}
.x10_c00181{left:80.290200px;}
.x6_c00181{left:84.175200px;}
.x4_c00181{left:86.365200px;}
.x1_c00181{left:87.790200px;}
.xf_c00181{left:88.915200px;}
.xd_c00181{left:89.965200px;}
.xb_c00181{left:91.390200px;}
.x8_c00181{left:94.315200px;}
.x2_c00181{left:113.740200px;}
.x14_c00181{left:119.890200px;}
.x11_c00181{left:120.940200px;}
.x3_c00181{left:287.290200px;}
.x16_c00181{left:451.090200px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls0_c00181{letter-spacing:0.000000pt;}
.ws0_c00181{word-spacing:0.000000pt;}
.fs1_c00181{font-size:48.000000pt;}
.fs2_c00181{font-size:58.666667pt;}
.fs0_c00181{font-size:64.000000pt;}
.y0_c00181{bottom:0.000000pt;}
.y24_c00181{bottom:328.466667pt;}
.y23_c00181{bottom:374.253333pt;}
.y22_c00181{bottom:392.453333pt;}
.y21_c00181{bottom:412.000000pt;}
.y20_c00181{bottom:430.853333pt;}
.y1f_c00181{bottom:453.920000pt;}
.y1e_c00181{bottom:469.253333pt;}
.y1d_c00181{bottom:490.053333pt;}
.y1c_c00181{bottom:492.000000pt;}
.y1b_c00181{bottom:510.586667pt;}
.y1a_c00181{bottom:526.853333pt;}
.y19_c00181{bottom:530.386667pt;}
.y18_c00181{bottom:547.333333pt;}
.y17_c00181{bottom:565.920000pt;}
.y16_c00181{bottom:585.120000pt;}
.y15_c00181{bottom:605.253333pt;}
.y14_c00181{bottom:623.520000pt;}
.y13_c00181{bottom:643.066667pt;}
.y12_c00181{bottom:661.920000pt;}
.y11_c00181{bottom:681.120000pt;}
.y10_c00181{bottom:699.720000pt;}
.yf_c00181{bottom:718.853333pt;}
.ye_c00181{bottom:737.720000pt;}
.yd_c00181{bottom:755.053333pt;}
.yc_c00181{bottom:775.520000pt;}
.yb_c00181{bottom:794.720000pt;}
.ya_c00181{bottom:813.600000pt;}
.y9_c00181{bottom:833.133333pt;}
.y8_c00181{bottom:852.333333pt;}
.y7_c00181{bottom:871.186667pt;}
.y6_c00181{bottom:890.720000pt;}
.y5_c00181{bottom:907.666667pt;}
.y4_c00181{bottom:924.933333pt;}
.y1_c00181{bottom:974.933333pt;}
.y3_c00181{bottom:980.333333pt;}
.y2_c00181{bottom:988.333333pt;}
.h2_c00181{height:47.109375pt;}
.h3_c00181{height:57.578125pt;}
.h1_c00181{height:62.812500pt;}
.h0_c00181{height:1044.000000pt;}
.w0_c00181{width:650.646400pt;}
.w1_c00181{width:650.666667pt;}
.x0_c00181{left:0.000000pt;}
.x12_c00181{left:50.835733pt;}
.xe_c00181{left:51.835733pt;}
.xc_c00181{left:53.435733pt;}
.xa_c00181{left:54.369067pt;}
.x9_c00181{left:55.969067pt;}
.x7_c00181{left:57.235733pt;}
.x5_c00181{left:58.235733pt;}
.x13_c00181{left:69.435733pt;}
.x15_c00181{left:70.369067pt;}
.x10_c00181{left:71.369067pt;}
.x6_c00181{left:74.822400pt;}
.x4_c00181{left:76.769067pt;}
.x1_c00181{left:78.035733pt;}
.xf_c00181{left:79.035733pt;}
.xd_c00181{left:79.969067pt;}
.xb_c00181{left:81.235733pt;}
.x8_c00181{left:83.835733pt;}
.x2_c00181{left:101.102400pt;}
.x14_c00181{left:106.569067pt;}
.x11_c00181{left:107.502400pt;}
.x3_c00181{left:255.369067pt;}
.x16_c00181{left:400.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ebe0214a03c5e63fc1b8c864.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00182;src:url('chunks/assets/font_b5b4258bf5a939971c12c101.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00182;src:url('chunks/assets/font_ff676bf657b0ec5236346c8a.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00182;src:url('chunks/assets/font_97b5702e75d66d559d565cbb.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00182;src:url('chunks/assets/font_8a103021eb5232ff4b872c1e.woff2')format("woff");}.ff5_c00182{font-family:ff5_c00182;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00182{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m3_c00182{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2_c00182{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m13_c00182{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00182{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c00182{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10_c00182{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc_c00182{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf_c00182{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c00182{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00182{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00182{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00182{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00182{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00182{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c00182{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00182{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00182{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00182{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00182{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00182{transform:matrix(1.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.377500,0.000000,0.000000,0.250000,0,0);}
.m1_c00182{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.ls0_c00182{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00182{word-spacing:-18.000000px;}
.ws1_c00182{word-spacing:0.000000px;}
.fc0_c00182{color:transparent;}
.fs2_c00182{font-size:12.000000px;}
.fs4_c00182{font-size:24.000000px;}
.fs6_c00182{font-size:60.000000px;}
.fs0_c00182{font-size:66.000000px;}
.fs5_c00182{font-size:72.000000px;}
.fs1_c00182{font-size:78.000000px;}
.fs3_c00182{font-size:192.000000px;}
.y0_c00182{bottom:0.000000px;}
.y2f_c00182{bottom:87.285000px;}
.y2c_c00182{bottom:104.910000px;}
.y2d_c00182{bottom:105.285000px;}
.y2e_c00182{bottom:106.335000px;}
.y29_c00182{bottom:120.810000px;}
.y2a_c00182{bottom:122.250000px;}
.y2b_c00182{bottom:124.035000px;}
.y28_c00182{bottom:196.710000px;}
.y27_c00182{bottom:216.210000px;}
.y26_c00182{bottom:237.810000px;}
.y25_c00182{bottom:259.035000px;}
.y24_c00182{bottom:280.275000px;}
.y23_c00182{bottom:301.500000px;}
.y21_c00182{bottom:322.710000px;}
.y22_c00182{bottom:323.775000px;}
.y20_c00182{bottom:344.025000px;}
.y1f_c00182{bottom:364.875000px;}
.y1e_c00182{bottom:386.085000px;}
.y1d_c00182{bottom:407.685000px;}
.y1c_c00182{bottom:456.660000px;}
.y1b_c00182{bottom:465.285000px;}
.y11_c00182{bottom:470.685000px;}
.y1a_c00182{bottom:473.910000px;}
.y18_c00182{bottom:508.125000px;}
.y14_c00182{bottom:514.560000px;}
.y15_c00182{bottom:515.010000px;}
.y17_c00182{bottom:517.125000px;}
.y16_c00182{bottom:517.500000px;}
.y19_c00182{bottom:525.750000px;}
.y13_c00182{bottom:559.935000px;}
.y12_c00182{bottom:560.685000px;}
.y10_c00182{bottom:605.685000px;}
.yf_c00182{bottom:626.535000px;}
.ye_c00182{bottom:626.625000px;}
.yd_c00182{bottom:627.285000px;}
.yc_c00182{bottom:648.885000px;}
.yb_c00182{bottom:670.125000px;}
.ya_c00182{bottom:725.910000px;}
.y9_c00182{bottom:741.450000px;}
.y8_c00182{bottom:759.075000px;}
.y7_c00182{bottom:776.310000px;}
.y6_c00182{bottom:816.675000px;}
.y5_c00182{bottom:875.310000px;}
.y4_c00182{bottom:960.300000px;}
.y3_c00182{bottom:1085.550000px;}
.y1_c00182{bottom:1089.900000px;}
.y2_c00182{bottom:1100.175000px;}
.h3_c00182{height:11.777344px;}
.h5_c00182{height:25.031250px;}
.h9_c00182{height:58.886719px;}
.ha_c00182{height:64.743164px;}
.h6_c00182{height:64.775391px;}
.h1_c00182{height:66.515625px;}
.h8_c00182{height:70.628906px;}
.h7_c00182{height:70.664062px;}
.h2_c00182{height:78.609375px;}
.h4_c00182{height:188.437500px;}
.h0_c00182{height:1174.500000px;}
.w0_c00182{width:731.977200px;}
.w1_c00182{width:732.000000px;}
.x4_c00182{left:-21.259800px;}
.x0_c00182{left:0.000000px;}
.x9_c00182{left:72.715200px;}
.x5_c00182{left:74.140200px;}
.x18_c00182{left:75.175200px;}
.x1a_c00182{left:76.300200px;}
.x1f_c00182{left:78.115200px;}
.x6_c00182{left:85.990200px;}
.x7_c00182{left:90.340200px;}
.x1c_c00182{left:95.365200px;}
.x8_c00182{left:105.115200px;}
.x17_c00182{left:106.540200px;}
.x1b_c00182{left:107.965200px;}
.x10_c00182{left:124.165200px;}
.x11_c00182{left:175.990200px;}
.xc_c00182{left:178.165200px;}
.x1d_c00182{left:188.590200px;}
.x15_c00182{left:190.375200px;}
.xd_c00182{left:192.190200px;}
.x16_c00182{left:244.090200px;}
.xe_c00182{left:271.090200px;}
.x1_c00182{left:284.740200px;}
.xa_c00182{left:292.315200px;}
.xf_c00182{left:318.190200px;}
.x12_c00182{left:325.765200px;}
.x14_c00182{left:332.590200px;}
.x13_c00182{left:350.590200px;}
.x20_c00182{left:470.890200px;}
.x2_c00182{left:480.190200px;}
.xb_c00182{left:561.190200px;}
.x21_c00182{left:632.515200px;}
.x3_c00182{left:642.940200px;}
.x1e_c00182{left:672.790200px;}
.x19_c00182{left:678.940200px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls0_c00182{letter-spacing:0.000000pt;}
.ws0_c00182{word-spacing:-16.000000pt;}
.ws1_c00182{word-spacing:0.000000pt;}
.fs2_c00182{font-size:10.666667pt;}
.fs4_c00182{font-size:21.333333pt;}
.fs6_c00182{font-size:53.333333pt;}
.fs0_c00182{font-size:58.666667pt;}
.fs5_c00182{font-size:64.000000pt;}
.fs1_c00182{font-size:69.333333pt;}
.fs3_c00182{font-size:170.666667pt;}
.y0_c00182{bottom:0.000000pt;}
.y2f_c00182{bottom:77.586667pt;}
.y2c_c00182{bottom:93.253333pt;}
.y2d_c00182{bottom:93.586667pt;}
.y2e_c00182{bottom:94.520000pt;}
.y29_c00182{bottom:107.386667pt;}
.y2a_c00182{bottom:108.666667pt;}
.y2b_c00182{bottom:110.253333pt;}
.y28_c00182{bottom:174.853333pt;}
.y27_c00182{bottom:192.186667pt;}
.y26_c00182{bottom:211.386667pt;}
.y25_c00182{bottom:230.253333pt;}
.y24_c00182{bottom:249.133333pt;}
.y23_c00182{bottom:268.000000pt;}
.y21_c00182{bottom:286.853333pt;}
.y22_c00182{bottom:287.800000pt;}
.y20_c00182{bottom:305.800000pt;}
.y1f_c00182{bottom:324.333333pt;}
.y1e_c00182{bottom:343.186667pt;}
.y1d_c00182{bottom:362.386667pt;}
.y1c_c00182{bottom:405.920000pt;}
.y1b_c00182{bottom:413.586667pt;}
.y11_c00182{bottom:418.386667pt;}
.y1a_c00182{bottom:421.253333pt;}
.y18_c00182{bottom:451.666667pt;}
.y14_c00182{bottom:457.386667pt;}
.y15_c00182{bottom:457.786667pt;}
.y17_c00182{bottom:459.666667pt;}
.y16_c00182{bottom:460.000000pt;}
.y19_c00182{bottom:467.333333pt;}
.y13_c00182{bottom:497.720000pt;}
.y12_c00182{bottom:498.386667pt;}
.y10_c00182{bottom:538.386667pt;}
.yf_c00182{bottom:556.920000pt;}
.ye_c00182{bottom:557.000000pt;}
.yd_c00182{bottom:557.586667pt;}
.yc_c00182{bottom:576.786667pt;}
.yb_c00182{bottom:595.666667pt;}
.ya_c00182{bottom:645.253333pt;}
.y9_c00182{bottom:659.066667pt;}
.y8_c00182{bottom:674.733333pt;}
.y7_c00182{bottom:690.053333pt;}
.y6_c00182{bottom:725.933333pt;}
.y5_c00182{bottom:778.053333pt;}
.y4_c00182{bottom:853.600000pt;}
.y3_c00182{bottom:964.933333pt;}
.y1_c00182{bottom:968.800000pt;}
.y2_c00182{bottom:977.933333pt;}
.h3_c00182{height:10.468750pt;}
.h5_c00182{height:22.250000pt;}
.h9_c00182{height:52.343750pt;}
.ha_c00182{height:57.549479pt;}
.h6_c00182{height:57.578125pt;}
.h1_c00182{height:59.125000pt;}
.h8_c00182{height:62.781250pt;}
.h7_c00182{height:62.812500pt;}
.h2_c00182{height:69.875000pt;}
.h4_c00182{height:167.500000pt;}
.h0_c00182{height:1044.000000pt;}
.w0_c00182{width:650.646400pt;}
.w1_c00182{width:650.666667pt;}
.x4_c00182{left:-18.897600pt;}
.x0_c00182{left:0.000000pt;}
.x9_c00182{left:64.635733pt;}
.x5_c00182{left:65.902400pt;}
.x18_c00182{left:66.822400pt;}
.x1a_c00182{left:67.822400pt;}
.x1f_c00182{left:69.435733pt;}
.x6_c00182{left:76.435733pt;}
.x7_c00182{left:80.302400pt;}
.x1c_c00182{left:84.769067pt;}
.x8_c00182{left:93.435733pt;}
.x17_c00182{left:94.702400pt;}
.x1b_c00182{left:95.969067pt;}
.x10_c00182{left:110.369067pt;}
.x11_c00182{left:156.435733pt;}
.xc_c00182{left:158.369067pt;}
.x1d_c00182{left:167.635733pt;}
.x15_c00182{left:169.222400pt;}
.xd_c00182{left:170.835733pt;}
.x16_c00182{left:216.969067pt;}
.xe_c00182{left:240.969067pt;}
.x1_c00182{left:253.102400pt;}
.xa_c00182{left:259.835733pt;}
.xf_c00182{left:282.835733pt;}
.x12_c00182{left:289.569067pt;}
.x14_c00182{left:295.635733pt;}
.x13_c00182{left:311.635733pt;}
.x20_c00182{left:418.569067pt;}
.x2_c00182{left:426.835733pt;}
.xb_c00182{left:498.835733pt;}
.x21_c00182{left:562.235733pt;}
.x3_c00182{left:571.502400pt;}
.x1e_c00182{left:598.035733pt;}
.x19_c00182{left:603.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d89fc23047a2c673c400d401.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00183;src:url('chunks/assets/font_51038234018f8269389f1948.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00183;src:url('chunks/assets/font_46e7106005d1f3cf7c8e03af.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00183{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m15_c00183{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m12_c00183{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb_c00183{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00183{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mf_c00183{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c00183{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00183{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c00183{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m0_c00183{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c00183{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c00183{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me_c00183{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00183{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00183{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00183{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00183{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c00183{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00183{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00183{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00183{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c00183{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00183{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00183{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c00183{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m14_c00183{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m13_c00183{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00183{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00183{transform:matrix(3.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.710000,0.000000,0.000000,0.250000,0,0);}
.m16_c00183{transform:matrix(4.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.500000,0.000000,0.000000,0.250000,0,0);}
.m1_c00183{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:-16.500000px;}
.ws1_c00183{word-spacing:0.000000px;}
.fc0_c00183{color:transparent;}
.fs3_c00183{font-size:36.000000px;}
.fs0_c00183{font-size:60.000000px;}
.fs2_c00183{font-size:66.000000px;}
.fs1_c00183{font-size:72.000000px;}
.y0_c00183{bottom:0.000000px;}
.y44_c00183{bottom:98.085000px;}
.y42_c00183{bottom:107.760000px;}
.y41_c00183{bottom:108.510000px;}
.y43_c00183{bottom:108.885000px;}
.y40_c00183{bottom:110.310000px;}
.y3f_c00183{bottom:116.460000px;}
.y3e_c00183{bottom:128.310000px;}
.y3d_c00183{bottom:145.260000px;}
.y3c_c00183{bottom:162.510000px;}
.y3b_c00183{bottom:221.910000px;}
.y3a_c00183{bottom:241.410000px;}
.y39_c00183{bottom:262.935000px;}
.y38_c00183{bottom:284.535000px;}
.y37_c00183{bottom:305.835000px;}
.y36_c00183{bottom:327.435000px;}
.y35_c00183{bottom:348.660000px;}
.y34_c00183{bottom:351.525000px;}
.y33_c00183{bottom:353.025000px;}
.y32_c00183{bottom:371.025000px;}
.y31_c00183{bottom:393.000000px;}
.y30_c00183{bottom:458.835000px;}
.y2f_c00183{bottom:479.685000px;}
.y2e_c00183{bottom:501.285000px;}
.y2d_c00183{bottom:522.885000px;}
.y2a_c00183{bottom:543.750000px;}
.y2b_c00183{bottom:544.125000px;}
.y2c_c00183{bottom:544.500000px;}
.y29_c00183{bottom:566.085000px;}
.y27_c00183{bottom:649.260000px;}
.y28_c00183{bottom:650.310000px;}
.y24_c00183{bottom:665.460000px;}
.y25_c00183{bottom:665.760000px;}
.y26_c00183{bottom:668.310000px;}
.y21_c00183{bottom:683.460000px;}
.y22_c00183{bottom:684.585000px;}
.y23_c00183{bottom:685.635000px;}
.y20_c00183{bottom:706.875000px;}
.y1f_c00183{bottom:719.085000px;}
.y1e_c00183{bottom:736.785000px;}
.y1c_c00183{bottom:751.875000px;}
.y1d_c00183{bottom:752.910000px;}
.y1a_c00183{bottom:771.300000px;}
.y1b_c00183{bottom:772.710000px;}
.y19_c00183{bottom:789.300000px;}
.y18_c00183{bottom:826.335000px;}
.y15_c00183{bottom:834.300000px;}
.y16_c00183{bottom:836.460000px;}
.y17_c00183{bottom:843.675000px;}
.y13_c00183{bottom:849.435000px;}
.y14_c00183{bottom:861.300000px;}
.y11_c00183{bottom:867.060000px;}
.yf_c00183{bottom:867.435000px;}
.y10_c00183{bottom:870.300000px;}
.y12_c00183{bottom:890.085000px;}
.ye_c00183{bottom:925.335000px;}
.yd_c00183{bottom:942.300000px;}
.ya_c00183{bottom:947.685000px;}
.yc_c00183{bottom:959.250000px;}
.yb_c00183{bottom:976.500000px;}
.y9_c00183{bottom:1018.650000px;}
.y4_c00183{bottom:1033.050000px;}
.y5_c00183{bottom:1039.500000px;}
.y6_c00183{bottom:1041.300000px;}
.y7_c00183{bottom:1043.835000px;}
.y8_c00183{bottom:1046.685000px;}
.y1_c00183{bottom:1088.085000px;}
.y3_c00183{bottom:1098.900000px;}
.y2_c00183{bottom:1103.925000px;}
.h7_c00183{height:36.281250px;}
.h2_c00183{height:58.886719px;}
.h1_c00183{height:60.468750px;}
.h6_c00183{height:64.743164px;}
.h5_c00183{height:64.775391px;}
.h4_c00183{height:70.628906px;}
.h3_c00183{height:70.664062px;}
.h0_c00183{height:1174.500000px;}
.w0_c00183{width:731.977200px;}
.w1_c00183{width:732.000000px;}
.x0_c00183{left:0.000000px;}
.x4_c00183{left:53.290200px;}
.x21_c00183{left:54.340200px;}
.x20_c00183{left:55.765200px;}
.x15_c00183{left:57.190200px;}
.x29_c00183{left:58.690200px;}
.x1_c00183{left:71.965200px;}
.x24_c00183{left:73.390200px;}
.x1a_c00183{left:83.140200px;}
.x1f_c00183{left:85.675200px;}
.x16_c00183{left:87.790200px;}
.xb_c00183{left:88.915200px;}
.x2_c00183{left:98.590200px;}
.x22_c00183{left:105.790200px;}
.x1b_c00183{left:130.690200px;}
.x17_c00183{left:175.990200px;}
.x1c_c00183{left:203.740200px;}
.xc_c00183{left:212.365200px;}
.x10_c00183{left:216.340200px;}
.x19_c00183{left:220.690200px;}
.x5_c00183{left:229.990200px;}
.xd_c00183{left:231.115200px;}
.x13_c00183{left:232.165200px;}
.x18_c00183{left:247.690200px;}
.x14_c00183{left:255.565200px;}
.x3_c00183{left:272.140200px;}
.x25_c00183{left:315.715200px;}
.x1d_c00183{left:321.115200px;}
.xa_c00183{left:337.690200px;}
.x9_c00183{left:338.740200px;}
.xe_c00183{left:340.915200px;}
.x6_c00183{left:364.690200px;}
.x7_c00183{left:383.365200px;}
.x26_c00183{left:417.565200px;}
.x1e_c00183{left:428.740200px;}
.x12_c00183{left:444.940200px;}
.x8_c00183{left:485.590200px;}
.x27_c00183{left:557.290200px;}
.x23_c00183{left:562.690200px;}
.xf_c00183{left:577.090200px;}
.x11_c00183{left:594.715200px;}
.x28_c00183{left:636.490200px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls0_c00183{letter-spacing:0.000000pt;}
.ws0_c00183{word-spacing:-14.666667pt;}
.ws1_c00183{word-spacing:0.000000pt;}
.fs3_c00183{font-size:32.000000pt;}
.fs0_c00183{font-size:53.333333pt;}
.fs2_c00183{font-size:58.666667pt;}
.fs1_c00183{font-size:64.000000pt;}
.y0_c00183{bottom:0.000000pt;}
.y44_c00183{bottom:87.186667pt;}
.y42_c00183{bottom:95.786667pt;}
.y41_c00183{bottom:96.453333pt;}
.y43_c00183{bottom:96.786667pt;}
.y40_c00183{bottom:98.053333pt;}
.y3f_c00183{bottom:103.520000pt;}
.y3e_c00183{bottom:114.053333pt;}
.y3d_c00183{bottom:129.120000pt;}
.y3c_c00183{bottom:144.453333pt;}
.y3b_c00183{bottom:197.253333pt;}
.y3a_c00183{bottom:214.586667pt;}
.y39_c00183{bottom:233.720000pt;}
.y38_c00183{bottom:252.920000pt;}
.y37_c00183{bottom:271.853333pt;}
.y36_c00183{bottom:291.053333pt;}
.y35_c00183{bottom:309.920000pt;}
.y34_c00183{bottom:312.466667pt;}
.y33_c00183{bottom:313.800000pt;}
.y32_c00183{bottom:329.800000pt;}
.y31_c00183{bottom:349.333333pt;}
.y30_c00183{bottom:407.853333pt;}
.y2f_c00183{bottom:426.386667pt;}
.y2e_c00183{bottom:445.586667pt;}
.y2d_c00183{bottom:464.786667pt;}
.y2a_c00183{bottom:483.333333pt;}
.y2b_c00183{bottom:483.666667pt;}
.y2c_c00183{bottom:484.000000pt;}
.y29_c00183{bottom:503.186667pt;}
.y27_c00183{bottom:577.120000pt;}
.y28_c00183{bottom:578.053333pt;}
.y24_c00183{bottom:591.520000pt;}
.y25_c00183{bottom:591.786667pt;}
.y26_c00183{bottom:594.053333pt;}
.y21_c00183{bottom:607.520000pt;}
.y22_c00183{bottom:608.520000pt;}
.y23_c00183{bottom:609.453333pt;}
.y20_c00183{bottom:628.333333pt;}
.y1f_c00183{bottom:639.186667pt;}
.y1e_c00183{bottom:654.920000pt;}
.y1c_c00183{bottom:668.333333pt;}
.y1d_c00183{bottom:669.253333pt;}
.y1a_c00183{bottom:685.600000pt;}
.y1b_c00183{bottom:686.853333pt;}
.y19_c00183{bottom:701.600000pt;}
.y18_c00183{bottom:734.520000pt;}
.y15_c00183{bottom:741.600000pt;}
.y16_c00183{bottom:743.520000pt;}
.y17_c00183{bottom:749.933333pt;}
.y13_c00183{bottom:755.053333pt;}
.y14_c00183{bottom:765.600000pt;}
.y11_c00183{bottom:770.720000pt;}
.yf_c00183{bottom:771.053333pt;}
.y10_c00183{bottom:773.600000pt;}
.y12_c00183{bottom:791.186667pt;}
.ye_c00183{bottom:822.520000pt;}
.yd_c00183{bottom:837.600000pt;}
.ya_c00183{bottom:842.386667pt;}
.yc_c00183{bottom:852.666667pt;}
.yb_c00183{bottom:868.000000pt;}
.y9_c00183{bottom:905.466667pt;}
.y4_c00183{bottom:918.266667pt;}
.y5_c00183{bottom:924.000000pt;}
.y6_c00183{bottom:925.600000pt;}
.y7_c00183{bottom:927.853333pt;}
.y8_c00183{bottom:930.386667pt;}
.y1_c00183{bottom:967.186667pt;}
.y3_c00183{bottom:976.800000pt;}
.y2_c00183{bottom:981.266667pt;}
.h7_c00183{height:32.250000pt;}
.h2_c00183{height:52.343750pt;}
.h1_c00183{height:53.750000pt;}
.h6_c00183{height:57.549479pt;}
.h5_c00183{height:57.578125pt;}
.h4_c00183{height:62.781250pt;}
.h3_c00183{height:62.812500pt;}
.h0_c00183{height:1044.000000pt;}
.w0_c00183{width:650.646400pt;}
.w1_c00183{width:650.666667pt;}
.x0_c00183{left:0.000000pt;}
.x4_c00183{left:47.369067pt;}
.x21_c00183{left:48.302400pt;}
.x20_c00183{left:49.569067pt;}
.x15_c00183{left:50.835733pt;}
.x29_c00183{left:52.169067pt;}
.x1_c00183{left:63.969067pt;}
.x24_c00183{left:65.235733pt;}
.x1a_c00183{left:73.902400pt;}
.x1f_c00183{left:76.155733pt;}
.x16_c00183{left:78.035733pt;}
.xb_c00183{left:79.035733pt;}
.x2_c00183{left:87.635733pt;}
.x22_c00183{left:94.035733pt;}
.x1b_c00183{left:116.169067pt;}
.x17_c00183{left:156.435733pt;}
.x1c_c00183{left:181.102400pt;}
.xc_c00183{left:188.769067pt;}
.x10_c00183{left:192.302400pt;}
.x19_c00183{left:196.169067pt;}
.x5_c00183{left:204.435733pt;}
.xd_c00183{left:205.435733pt;}
.x13_c00183{left:206.369067pt;}
.x18_c00183{left:220.169067pt;}
.x14_c00183{left:227.169067pt;}
.x3_c00183{left:241.902400pt;}
.x25_c00183{left:280.635733pt;}
.x1d_c00183{left:285.435733pt;}
.xa_c00183{left:300.169067pt;}
.x9_c00183{left:301.102400pt;}
.xe_c00183{left:303.035733pt;}
.x6_c00183{left:324.169067pt;}
.x7_c00183{left:340.769067pt;}
.x26_c00183{left:371.169067pt;}
.x1e_c00183{left:381.102400pt;}
.x12_c00183{left:395.502400pt;}
.x8_c00183{left:431.635733pt;}
.x27_c00183{left:495.369067pt;}
.x23_c00183{left:500.169067pt;}
.xf_c00183{left:512.969067pt;}
.x11_c00183{left:528.635733pt;}
.x28_c00183{left:565.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d6d8982fdf2b91aa57785ff.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00184;src:url('chunks/assets/font_9178514f6b17bd5972709029.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00184;src:url('chunks/assets/font_a7cb47b3ec4790fae893f49b.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00184{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m14_c00184{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m6_c00184{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md_c00184{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m18_c00184{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m12_c00184{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00184{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19_c00184{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m16_c00184{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m17_c00184{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c00184{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00184{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c00184{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c00184{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8_c00184{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00184{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00184{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00184{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00184{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00184{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00184{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00184{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00184{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00184{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c00184{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00184{word-spacing:0.000000px;}
.fc0_c00184{color:transparent;}
.fs0_c00184{font-size:60.000000px;}
.fs3_c00184{font-size:66.000000px;}
.fs1_c00184{font-size:72.000000px;}
.fs2_c00184{font-size:78.000000px;}
.y0_c00184{bottom:0.000000px;}
.y3f_c00184{bottom:84.060000px;}
.y40_c00184{bottom:86.250000px;}
.y41_c00184{bottom:87.585000px;}
.y42_c00184{bottom:88.335000px;}
.y43_c00184{bottom:90.510000px;}
.y3d_c00184{bottom:102.810000px;}
.y3e_c00184{bottom:104.910000px;}
.y39_c00184{bottom:118.560000px;}
.y3a_c00184{bottom:118.935000px;}
.y3b_c00184{bottom:120.810000px;}
.y3c_c00184{bottom:123.285000px;}
.y38_c00184{bottom:137.685000px;}
.y36_c00184{bottom:152.835000px;}
.y37_c00184{bottom:154.260000px;}
.y35_c00184{bottom:169.035000px;}
.y33_c00184{bottom:185.910000px;}
.y34_c00184{bottom:187.335000px;}
.y32_c00184{bottom:202.500000px;}
.y30_c00184{bottom:219.810000px;}
.y31_c00184{bottom:222.660000px;}
.y2f_c00184{bottom:295.335000px;}
.y2e_c00184{bottom:316.935000px;}
.y2d_c00184{bottom:338.535000px;}
.y2c_c00184{bottom:359.775000px;}
.y29_c00184{bottom:380.310000px;}
.y2a_c00184{bottom:381.375000px;}
.y2b_c00184{bottom:381.810000px;}
.y28_c00184{bottom:402.000000px;}
.y27_c00184{bottom:423.135000px;}
.y26_c00184{bottom:445.125000px;}
.y25_c00184{bottom:466.410000px;}
.y24_c00184{bottom:487.935000px;}
.y23_c00184{bottom:509.535000px;}
.y22_c00184{bottom:530.085000px;}
.y21_c00184{bottom:552.375000px;}
.y20_c00184{bottom:573.660000px;}
.y1f_c00184{bottom:594.510000px;}
.y1e_c00184{bottom:595.560000px;}
.y1d_c00184{bottom:616.875000px;}
.y1c_c00184{bottom:638.460000px;}
.y1b_c00184{bottom:660.060000px;}
.y1a_c00184{bottom:681.660000px;}
.y19_c00184{bottom:703.260000px;}
.y18_c00184{bottom:724.875000px;}
.y17_c00184{bottom:746.760000px;}
.y16_c00184{bottom:746.835000px;}
.y15_c00184{bottom:768.060000px;}
.y14_c00184{bottom:789.960000px;}
.y13_c00184{bottom:811.560000px;}
.y12_c00184{bottom:832.125000px;}
.y10_c00184{bottom:833.550000px;}
.y11_c00184{bottom:833.925000px;}
.yf_c00184{bottom:854.835000px;}
.ye_c00184{bottom:876.060000px;}
.yd_c00184{bottom:897.300000px;}
.yc_c00184{bottom:917.460000px;}
.ya_c00184{bottom:918.900000px;}
.yb_c00184{bottom:919.275000px;}
.y9_c00184{bottom:936.525000px;}
.y8_c00184{bottom:940.125000px;}
.y7_c00184{bottom:961.335000px;}
.y6_c00184{bottom:982.935000px;}
.y5_c00184{bottom:1004.925000px;}
.y4_c00184{bottom:1026.150000px;}
.y3_c00184{bottom:1081.650000px;}
.y2_c00184{bottom:1084.800000px;}
.y1_c00184{bottom:1086.300000px;}
.h1_c00184{height:60.468750px;}
.h7_c00184{height:64.743164px;}
.h5_c00184{height:64.775391px;}
.h6_c00184{height:70.628906px;}
.h3_c00184{height:70.664062px;}
.h2_c00184{height:72.562500px;}
.h4_c00184{height:76.552734px;}
.h0_c00184{height:1174.500000px;}
.w0_c00184{width:731.977200px;}
.w1_c00184{width:732.000000px;}
.x0_c00184{left:0.000000px;}
.xe_c00184{left:73.765200px;}
.x9_c00184{left:75.175200px;}
.x5_c00184{left:76.675200px;}
.x17_c00184{left:77.740200px;}
.x13_c00184{left:92.890200px;}
.x15_c00184{left:93.940200px;}
.xd_c00184{left:106.165200px;}
.x4_c00184{left:108.715200px;}
.x19_c00184{left:117.340200px;}
.x16_c00184{left:127.090200px;}
.x18_c00184{left:130.990200px;}
.x1a_c00184{left:132.490200px;}
.x1d_c00184{left:143.290200px;}
.xc_c00184{left:252.715200px;}
.x1c_c00184{left:256.315200px;}
.x1_c00184{left:289.390200px;}
.xa_c00184{left:306.340200px;}
.xb_c00184{left:322.915200px;}
.x7_c00184{left:350.590200px;}
.x8_c00184{left:382.690200px;}
.x11_c00184{left:398.890200px;}
.x12_c00184{left:407.515200px;}
.x1e_c00184{left:469.390200px;}
.x2_c00184{left:486.340200px;}
.x1b_c00184{left:532.765200px;}
.xf_c00184{left:563.740200px;}
.x14_c00184{left:602.290200px;}
.x10_c00184{left:605.890200px;}
.x3_c00184{left:647.590200px;}
.x1f_c00184{left:654.115200px;}
.x6_c00184{left:684.715200px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls0_c00184{letter-spacing:0.000000pt;}
.ws0_c00184{word-spacing:0.000000pt;}
.fs0_c00184{font-size:53.333333pt;}
.fs3_c00184{font-size:58.666667pt;}
.fs1_c00184{font-size:64.000000pt;}
.fs2_c00184{font-size:69.333333pt;}
.y0_c00184{bottom:0.000000pt;}
.y3f_c00184{bottom:74.720000pt;}
.y40_c00184{bottom:76.666667pt;}
.y41_c00184{bottom:77.853333pt;}
.y42_c00184{bottom:78.520000pt;}
.y43_c00184{bottom:80.453333pt;}
.y3d_c00184{bottom:91.386667pt;}
.y3e_c00184{bottom:93.253333pt;}
.y39_c00184{bottom:105.386667pt;}
.y3a_c00184{bottom:105.720000pt;}
.y3b_c00184{bottom:107.386667pt;}
.y3c_c00184{bottom:109.586667pt;}
.y38_c00184{bottom:122.386667pt;}
.y36_c00184{bottom:135.853333pt;}
.y37_c00184{bottom:137.120000pt;}
.y35_c00184{bottom:150.253333pt;}
.y33_c00184{bottom:165.253333pt;}
.y34_c00184{bottom:166.520000pt;}
.y32_c00184{bottom:180.000000pt;}
.y30_c00184{bottom:195.386667pt;}
.y31_c00184{bottom:197.920000pt;}
.y2f_c00184{bottom:262.520000pt;}
.y2e_c00184{bottom:281.720000pt;}
.y2d_c00184{bottom:300.920000pt;}
.y2c_c00184{bottom:319.800000pt;}
.y29_c00184{bottom:338.053333pt;}
.y2a_c00184{bottom:339.000000pt;}
.y2b_c00184{bottom:339.386667pt;}
.y28_c00184{bottom:357.333333pt;}
.y27_c00184{bottom:376.120000pt;}
.y26_c00184{bottom:395.666667pt;}
.y25_c00184{bottom:414.586667pt;}
.y24_c00184{bottom:433.720000pt;}
.y23_c00184{bottom:452.920000pt;}
.y22_c00184{bottom:471.186667pt;}
.y21_c00184{bottom:491.000000pt;}
.y20_c00184{bottom:509.920000pt;}
.y1f_c00184{bottom:528.453333pt;}
.y1e_c00184{bottom:529.386667pt;}
.y1d_c00184{bottom:548.333333pt;}
.y1c_c00184{bottom:567.520000pt;}
.y1b_c00184{bottom:586.720000pt;}
.y1a_c00184{bottom:605.920000pt;}
.y19_c00184{bottom:625.120000pt;}
.y18_c00184{bottom:644.333333pt;}
.y17_c00184{bottom:663.786667pt;}
.y16_c00184{bottom:663.853333pt;}
.y15_c00184{bottom:682.720000pt;}
.y14_c00184{bottom:702.186667pt;}
.y13_c00184{bottom:721.386667pt;}
.y12_c00184{bottom:739.666667pt;}
.y10_c00184{bottom:740.933333pt;}
.y11_c00184{bottom:741.266667pt;}
.yf_c00184{bottom:759.853333pt;}
.ye_c00184{bottom:778.720000pt;}
.yd_c00184{bottom:797.600000pt;}
.yc_c00184{bottom:815.520000pt;}
.ya_c00184{bottom:816.800000pt;}
.yb_c00184{bottom:817.133333pt;}
.y9_c00184{bottom:832.466667pt;}
.y8_c00184{bottom:835.666667pt;}
.y7_c00184{bottom:854.520000pt;}
.y6_c00184{bottom:873.720000pt;}
.y5_c00184{bottom:893.266667pt;}
.y4_c00184{bottom:912.133333pt;}
.y3_c00184{bottom:961.466667pt;}
.y2_c00184{bottom:964.266667pt;}
.y1_c00184{bottom:965.600000pt;}
.h1_c00184{height:53.750000pt;}
.h7_c00184{height:57.549479pt;}
.h5_c00184{height:57.578125pt;}
.h6_c00184{height:62.781250pt;}
.h3_c00184{height:62.812500pt;}
.h2_c00184{height:64.500000pt;}
.h4_c00184{height:68.046875pt;}
.h0_c00184{height:1044.000000pt;}
.w0_c00184{width:650.646400pt;}
.w1_c00184{width:650.666667pt;}
.x0_c00184{left:0.000000pt;}
.xe_c00184{left:65.569067pt;}
.x9_c00184{left:66.822400pt;}
.x5_c00184{left:68.155733pt;}
.x17_c00184{left:69.102400pt;}
.x13_c00184{left:82.569067pt;}
.x15_c00184{left:83.502400pt;}
.xd_c00184{left:94.369067pt;}
.x4_c00184{left:96.635733pt;}
.x19_c00184{left:104.302400pt;}
.x16_c00184{left:112.969067pt;}
.x18_c00184{left:116.435733pt;}
.x1a_c00184{left:117.769067pt;}
.x1d_c00184{left:127.369067pt;}
.xc_c00184{left:224.635733pt;}
.x1c_c00184{left:227.835733pt;}
.x1_c00184{left:257.235733pt;}
.xa_c00184{left:272.302400pt;}
.xb_c00184{left:287.035733pt;}
.x7_c00184{left:311.635733pt;}
.x8_c00184{left:340.169067pt;}
.x11_c00184{left:354.569067pt;}
.x12_c00184{left:362.235733pt;}
.x1e_c00184{left:417.235733pt;}
.x2_c00184{left:432.302400pt;}
.x1b_c00184{left:473.569067pt;}
.xf_c00184{left:501.102400pt;}
.x14_c00184{left:535.369067pt;}
.x10_c00184{left:538.569067pt;}
.x3_c00184{left:575.635733pt;}
.x1f_c00184{left:581.435733pt;}
.x6_c00184{left:608.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_47b71250669420478d2611a6.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00185;src:url('chunks/assets/font_24b2e7eb2e99a3c66c90ab9f.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00185;src:url('chunks/assets/font_a0ed9b541ffc75c1347493a3.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00185{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m6_c00185{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m14_c00185{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0_c00185{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m17_c00185{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m16_c00185{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m15_c00185{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5_c00185{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c00185{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10_c00185{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c00185{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00185{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c00185{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00185{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c00185{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00185{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00185{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00185{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00185{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c00185{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00185{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00185{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c00185{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1_c00185{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00185{color:transparent;}
.fs1_c00185{font-size:54.000000px;}
.fs2_c00185{font-size:60.000000px;}
.fs0_c00185{font-size:72.000000px;}
.fs3_c00185{font-size:78.000000px;}
.y0_c00185{bottom:0.000000px;}
.y3c_c00185{bottom:84.435000px;}
.y3b_c00185{bottom:91.260000px;}
.y3a_c00185{bottom:98.085000px;}
.y39_c00185{bottom:102.810000px;}
.y38_c00185{bottom:117.510000px;}
.y37_c00185{bottom:120.000000px;}
.y36_c00185{bottom:123.960000px;}
.y35_c00185{bottom:194.910000px;}
.y34_c00185{bottom:197.760000px;}
.y33_c00185{bottom:199.635000px;}
.y32_c00185{bottom:200.310000px;}
.y31_c00185{bottom:201.000000px;}
.y30_c00185{bottom:221.910000px;}
.y2f_c00185{bottom:240.285000px;}
.y2e_c00185{bottom:262.275000px;}
.y2d_c00185{bottom:283.875000px;}
.y2c_c00185{bottom:305.835000px;}
.y2b_c00185{bottom:327.060000px;}
.y2a_c00185{bottom:348.660000px;}
.y29_c00185{bottom:371.025000px;}
.y28_c00185{bottom:392.250000px;}
.y27_c00185{bottom:413.835000px;}
.y26_c00185{bottom:436.875000px;}
.y25_c00185{bottom:457.710000px;}
.y24_c00185{bottom:479.385000px;}
.y23_c00185{bottom:500.625000px;}
.y22_c00185{bottom:522.210000px;}
.y21_c00185{bottom:543.750000px;}
.y20_c00185{bottom:564.660000px;}
.y1f_c00185{bottom:565.335000px;}
.y1e_c00185{bottom:587.010000px;}
.y1d_c00185{bottom:608.535000px;}
.y1c_c00185{bottom:630.510000px;}
.y1a_c00185{bottom:651.435000px;}
.y1b_c00185{bottom:652.500000px;}
.y19_c00185{bottom:673.710000px;}
.y18_c00185{bottom:695.310000px;}
.y17_c00185{bottom:716.625000px;}
.y16_c00185{bottom:737.760000px;}
.y15_c00185{bottom:759.750000px;}
.y14_c00185{bottom:778.500000px;}
.y13_c00185{bottom:802.935000px;}
.y12_c00185{bottom:824.550000px;}
.y11_c00185{bottom:846.150000px;}
.y10_c00185{bottom:862.710000px;}
.yf_c00185{bottom:888.675000px;}
.ye_c00185{bottom:909.900000px;}
.yd_c00185{bottom:929.025000px;}
.ya_c00185{bottom:945.900000px;}
.yb_c00185{bottom:946.650000px;}
.yc_c00185{bottom:953.460000px;}
.y9_c00185{bottom:975.435000px;}
.y6_c00185{bottom:987.675000px;}
.y7_c00185{bottom:987.960000px;}
.y8_c00185{bottom:993.810000px;}
.y5_c00185{bottom:1016.085000px;}
.y4_c00185{bottom:1038.810000px;}
.y1_c00185{bottom:1086.675000px;}
.y3_c00185{bottom:1095.300000px;}
.y2_c00185{bottom:1101.300000px;}
.h2_c00185{height:52.998047px;}
.h3_c00185{height:58.886719px;}
.h6_c00185{height:60.468750px;}
.h1_c00185{height:70.664062px;}
.h7_c00185{height:72.562500px;}
.h5_c00185{height:76.514648px;}
.h4_c00185{height:78.609375px;}
.h0_c00185{height:1174.500000px;}
.w0_c00185{width:731.977200px;}
.w1_c00185{width:732.000000px;}
.x0_c00185{left:0.000000px;}
.xd_c00185{left:53.590200px;}
.xb_c00185{left:54.715200px;}
.xa_c00185{left:55.765200px;}
.x5_c00185{left:56.890200px;}
.x1_c00185{left:76.675200px;}
.x9_c00185{left:77.740200px;}
.x6_c00185{left:79.165200px;}
.xf_c00185{left:84.175200px;}
.xc_c00185{left:85.300200px;}
.x4_c00185{left:87.115200px;}
.x7_c00185{left:92.890200px;}
.x8_c00185{left:98.590200px;}
.x2_c00185{left:102.940200px;}
.x18_c00185{left:125.290200px;}
.x11_c00185{left:172.090200px;}
.x12_c00185{left:174.565200px;}
.xe_c00185{left:204.115200px;}
.x13_c00185{left:208.375200px;}
.x3_c00185{left:276.115200px;}
.x14_c00185{left:341.590200px;}
.x15_c00185{left:353.890200px;}
.x16_c00185{left:418.690200px;}
.x10_c00185{left:585.340200px;}
.x17_c00185{left:634.990200px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls0_c00185{letter-spacing:0.000000pt;}
.ws0_c00185{word-spacing:0.000000pt;}
.fs1_c00185{font-size:48.000000pt;}
.fs2_c00185{font-size:53.333333pt;}
.fs0_c00185{font-size:64.000000pt;}
.fs3_c00185{font-size:69.333333pt;}
.y0_c00185{bottom:0.000000pt;}
.y3c_c00185{bottom:75.053333pt;}
.y3b_c00185{bottom:81.120000pt;}
.y3a_c00185{bottom:87.186667pt;}
.y39_c00185{bottom:91.386667pt;}
.y38_c00185{bottom:104.453333pt;}
.y37_c00185{bottom:106.666667pt;}
.y36_c00185{bottom:110.186667pt;}
.y35_c00185{bottom:173.253333pt;}
.y34_c00185{bottom:175.786667pt;}
.y33_c00185{bottom:177.453333pt;}
.y32_c00185{bottom:178.053333pt;}
.y31_c00185{bottom:178.666667pt;}
.y30_c00185{bottom:197.253333pt;}
.y2f_c00185{bottom:213.586667pt;}
.y2e_c00185{bottom:233.133333pt;}
.y2d_c00185{bottom:252.333333pt;}
.y2c_c00185{bottom:271.853333pt;}
.y2b_c00185{bottom:290.720000pt;}
.y2a_c00185{bottom:309.920000pt;}
.y29_c00185{bottom:329.800000pt;}
.y28_c00185{bottom:348.666667pt;}
.y27_c00185{bottom:367.853333pt;}
.y26_c00185{bottom:388.333333pt;}
.y25_c00185{bottom:406.853333pt;}
.y24_c00185{bottom:426.120000pt;}
.y23_c00185{bottom:445.000000pt;}
.y22_c00185{bottom:464.186667pt;}
.y21_c00185{bottom:483.333333pt;}
.y20_c00185{bottom:501.920000pt;}
.y1f_c00185{bottom:502.520000pt;}
.y1e_c00185{bottom:521.786667pt;}
.y1d_c00185{bottom:540.920000pt;}
.y1c_c00185{bottom:560.453333pt;}
.y1a_c00185{bottom:579.053333pt;}
.y1b_c00185{bottom:580.000000pt;}
.y19_c00185{bottom:598.853333pt;}
.y18_c00185{bottom:618.053333pt;}
.y17_c00185{bottom:637.000000pt;}
.y16_c00185{bottom:655.786667pt;}
.y15_c00185{bottom:675.333333pt;}
.y14_c00185{bottom:692.000000pt;}
.y13_c00185{bottom:713.720000pt;}
.y12_c00185{bottom:732.933333pt;}
.y11_c00185{bottom:752.133333pt;}
.y10_c00185{bottom:766.853333pt;}
.yf_c00185{bottom:789.933333pt;}
.ye_c00185{bottom:808.800000pt;}
.yd_c00185{bottom:825.800000pt;}
.ya_c00185{bottom:840.800000pt;}
.yb_c00185{bottom:841.466667pt;}
.yc_c00185{bottom:847.520000pt;}
.y9_c00185{bottom:867.053333pt;}
.y6_c00185{bottom:877.933333pt;}
.y7_c00185{bottom:878.186667pt;}
.y8_c00185{bottom:883.386667pt;}
.y5_c00185{bottom:903.186667pt;}
.y4_c00185{bottom:923.386667pt;}
.y1_c00185{bottom:965.933333pt;}
.y3_c00185{bottom:973.600000pt;}
.y2_c00185{bottom:978.933333pt;}
.h2_c00185{height:47.109375pt;}
.h3_c00185{height:52.343750pt;}
.h6_c00185{height:53.750000pt;}
.h1_c00185{height:62.812500pt;}
.h7_c00185{height:64.500000pt;}
.h5_c00185{height:68.013021pt;}
.h4_c00185{height:69.875000pt;}
.h0_c00185{height:1044.000000pt;}
.w0_c00185{width:650.646400pt;}
.w1_c00185{width:650.666667pt;}
.x0_c00185{left:0.000000pt;}
.xd_c00185{left:47.635733pt;}
.xb_c00185{left:48.635733pt;}
.xa_c00185{left:49.569067pt;}
.x5_c00185{left:50.569067pt;}
.x1_c00185{left:68.155733pt;}
.x9_c00185{left:69.102400pt;}
.x6_c00185{left:70.369067pt;}
.xf_c00185{left:74.822400pt;}
.xc_c00185{left:75.822400pt;}
.x4_c00185{left:77.435733pt;}
.x7_c00185{left:82.569067pt;}
.x8_c00185{left:87.635733pt;}
.x2_c00185{left:91.502400pt;}
.x18_c00185{left:111.369067pt;}
.x11_c00185{left:152.969067pt;}
.x12_c00185{left:155.169067pt;}
.xe_c00185{left:181.435733pt;}
.x13_c00185{left:185.222400pt;}
.x3_c00185{left:245.435733pt;}
.x14_c00185{left:303.635733pt;}
.x15_c00185{left:314.569067pt;}
.x16_c00185{left:372.169067pt;}
.x10_c00185{left:520.302400pt;}
.x17_c00185{left:564.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_26eab11cdc17de821dd1e63c.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00186;src:url('chunks/assets/font_ee4ee1c12ce6e13ead31f423.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00186;src:url('chunks/assets/font_c46116ad2dd482bd40317cd5.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00186{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00186{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00186{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c00186{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c00186{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00186{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m17_c00186{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m19_c00186{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00186{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00186{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00186{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00186{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c00186{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00186{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c00186{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00186{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00186{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c00186{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c00186{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00186{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00186{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00186{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00186{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00186{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c00186{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m15_c00186{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c00186{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m10_c00186{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.me_c00186{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.v1_c00186{vertical-align:7.200000px;}
.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;}
}
.ws0_c00186{word-spacing:0.000000px;}
._0_c00186{margin-left:-13.852381px;}
.fc0_c00186{color:transparent;}
.fs1_c00186{font-size:66.000000px;}
.fs0_c00186{font-size:72.000000px;}
.fs2_c00186{font-size:78.000000px;}
.fs3_c00186{font-size:84.000000px;}
.y0_c00186{bottom:0.000000px;}
.y38_c00186{bottom:74.685000px;}
.y39_c00186{bottom:76.125000px;}
.y3a_c00186{bottom:77.625000px;}
.y3c_c00186{bottom:78.285000px;}
.y3b_c00186{bottom:78.960000px;}
.y35_c00186{bottom:98.760000px;}
.y36_c00186{bottom:100.935000px;}
.y37_c00186{bottom:101.310000px;}
.y33_c00186{bottom:121.185000px;}
.y34_c00186{bottom:122.910000px;}
.y32_c00186{bottom:140.625000px;}
.y30_c00186{bottom:159.660000px;}
.y31_c00186{bottom:163.635000px;}
.y2f_c00186{bottom:183.750000px;}
.y2b_c00186{bottom:202.875000px;}
.y2c_c00186{bottom:205.410000px;}
.y2d_c00186{bottom:206.460000px;}
.y2e_c00186{bottom:206.760000px;}
.y2a_c00186{bottom:225.135000px;}
.y29_c00186{bottom:246.060000px;}
.y28_c00186{bottom:267.285000px;}
.y27_c00186{bottom:288.525000px;}
.y26_c00186{bottom:309.750000px;}
.y25_c00186{bottom:329.250000px;}
.y24_c00186{bottom:352.560000px;}
.y23_c00186{bottom:374.160000px;}
.y22_c00186{bottom:395.460000px;}
.y21_c00186{bottom:415.935000px;}
.y20_c00186{bottom:438.000000px;}
.y1f_c00186{bottom:459.885000px;}
.y1e_c00186{bottom:481.500000px;}
.y1d_c00186{bottom:503.085000px;}
.y1c_c00186{bottom:524.685000px;}
.y1b_c00186{bottom:546.285000px;}
.y1a_c00186{bottom:567.885000px;}
.y19_c00186{bottom:589.500000px;}
.y18_c00186{bottom:589.875000px;}
.y17_c00186{bottom:611.085000px;}
.y16_c00186{bottom:632.685000px;}
.y15_c00186{bottom:654.285000px;}
.y14_c00186{bottom:675.885000px;}
.y13_c00186{bottom:697.500000px;}
.y12_c00186{bottom:719.760000px;}
.y11_c00186{bottom:741.075000px;}
.y10_c00186{bottom:762.960000px;}
.yf_c00186{bottom:784.260000px;}
.ye_c00186{bottom:806.550000px;}
.yd_c00186{bottom:827.835000px;}
.yc_c00186{bottom:847.275000px;}
.yb_c00186{bottom:848.685000px;}
.ya_c00186{bottom:849.750000px;}
.y9_c00186{bottom:870.675000px;}
.y8_c00186{bottom:892.275000px;}
.y7_c00186{bottom:913.500000px;}
.y6_c00186{bottom:934.710000px;}
.y5_c00186{bottom:955.935000px;}
.y4_c00186{bottom:976.875000px;}
.y3_c00186{bottom:998.775000px;}
.y2_c00186{bottom:1020.375000px;}
.y1_c00186{bottom:1075.125000px;}
.h2_c00186{height:64.775391px;}
.h3_c00186{height:66.515625px;}
.h1_c00186{height:70.664062px;}
.h6_c00186{height:76.514648px;}
.h4_c00186{height:76.552734px;}
.h5_c00186{height:78.609375px;}
.h7_c00186{height:83.752734px;}
.h0_c00186{height:1174.500000px;}
.w0_c00186{width:731.977200px;}
.w1_c00186{width:732.000000px;}
.x0_c00186{left:0.000000px;}
.x2_c00186{left:66.565200px;}
.x4_c00186{left:67.990200px;}
.xb_c00186{left:69.790200px;}
.xc_c00186{left:70.915200px;}
.x10_c00186{left:72.340200px;}
.x12_c00186{left:74.140200px;}
.x16_c00186{left:75.550200px;}
.x7_c00186{left:98.590200px;}
.x3_c00186{left:99.715200px;}
.x8_c00186{left:101.140200px;}
.xf_c00186{left:104.365200px;}
.x11_c00186{left:105.490200px;}
.x18_c00186{left:107.290200px;}
.x17_c00186{left:128.515200px;}
.x1c_c00186{left:187.540200px;}
.x1d_c00186{left:206.590200px;}
.x9_c00186{left:282.565200px;}
.xd_c00186{left:292.990200px;}
.xa_c00186{left:312.490200px;}
.xe_c00186{left:329.365200px;}
.x1e_c00186{left:332.965200px;}
.x1a_c00186{left:407.515200px;}
.x13_c00186{left:440.290200px;}
.x5_c00186{left:509.740200px;}
.x1f_c00186{left:518.740200px;}
.x6_c00186{left:527.365200px;}
.x19_c00186{left:533.515200px;}
.x1b_c00186{left:579.565200px;}
.x14_c00186{left:590.740200px;}
.x15_c00186{left:611.965200px;}
.x1_c00186{left:637.165200px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.v1_c00186{vertical-align:6.400000pt;}
.ls0_c00186{letter-spacing:0.000000pt;}
.ws0_c00186{word-spacing:0.000000pt;}
._0_c00186{margin-left:-12.313228pt;}
.fs1_c00186{font-size:58.666667pt;}
.fs0_c00186{font-size:64.000000pt;}
.fs2_c00186{font-size:69.333333pt;}
.fs3_c00186{font-size:74.666667pt;}
.y0_c00186{bottom:0.000000pt;}
.y38_c00186{bottom:66.386667pt;}
.y39_c00186{bottom:67.666667pt;}
.y3a_c00186{bottom:69.000000pt;}
.y3c_c00186{bottom:69.586667pt;}
.y3b_c00186{bottom:70.186667pt;}
.y35_c00186{bottom:87.786667pt;}
.y36_c00186{bottom:89.720000pt;}
.y37_c00186{bottom:90.053333pt;}
.y33_c00186{bottom:107.720000pt;}
.y34_c00186{bottom:109.253333pt;}
.y32_c00186{bottom:125.000000pt;}
.y30_c00186{bottom:141.920000pt;}
.y31_c00186{bottom:145.453333pt;}
.y2f_c00186{bottom:163.333333pt;}
.y2b_c00186{bottom:180.333333pt;}
.y2c_c00186{bottom:182.586667pt;}
.y2d_c00186{bottom:183.520000pt;}
.y2e_c00186{bottom:183.786667pt;}
.y2a_c00186{bottom:200.120000pt;}
.y29_c00186{bottom:218.720000pt;}
.y28_c00186{bottom:237.586667pt;}
.y27_c00186{bottom:256.466667pt;}
.y26_c00186{bottom:275.333333pt;}
.y25_c00186{bottom:292.666667pt;}
.y24_c00186{bottom:313.386667pt;}
.y23_c00186{bottom:332.586667pt;}
.y22_c00186{bottom:351.520000pt;}
.y21_c00186{bottom:369.720000pt;}
.y20_c00186{bottom:389.333333pt;}
.y1f_c00186{bottom:408.786667pt;}
.y1e_c00186{bottom:428.000000pt;}
.y1d_c00186{bottom:447.186667pt;}
.y1c_c00186{bottom:466.386667pt;}
.y1b_c00186{bottom:485.586667pt;}
.y1a_c00186{bottom:504.786667pt;}
.y19_c00186{bottom:524.000000pt;}
.y18_c00186{bottom:524.333333pt;}
.y17_c00186{bottom:543.186667pt;}
.y16_c00186{bottom:562.386667pt;}
.y15_c00186{bottom:581.586667pt;}
.y14_c00186{bottom:600.786667pt;}
.y13_c00186{bottom:620.000000pt;}
.y12_c00186{bottom:639.786667pt;}
.y11_c00186{bottom:658.733333pt;}
.y10_c00186{bottom:678.186667pt;}
.yf_c00186{bottom:697.120000pt;}
.ye_c00186{bottom:716.933333pt;}
.yd_c00186{bottom:735.853333pt;}
.yc_c00186{bottom:753.133333pt;}
.yb_c00186{bottom:754.386667pt;}
.ya_c00186{bottom:755.333333pt;}
.y9_c00186{bottom:773.933333pt;}
.y8_c00186{bottom:793.133333pt;}
.y7_c00186{bottom:812.000000pt;}
.y6_c00186{bottom:830.853333pt;}
.y5_c00186{bottom:849.720000pt;}
.y4_c00186{bottom:868.333333pt;}
.y3_c00186{bottom:887.800000pt;}
.y2_c00186{bottom:907.000000pt;}
.y1_c00186{bottom:955.666667pt;}
.h2_c00186{height:57.578125pt;}
.h3_c00186{height:59.125000pt;}
.h1_c00186{height:62.812500pt;}
.h6_c00186{height:68.013021pt;}
.h4_c00186{height:68.046875pt;}
.h5_c00186{height:69.875000pt;}
.h7_c00186{height:74.446875pt;}
.h0_c00186{height:1044.000000pt;}
.w0_c00186{width:650.646400pt;}
.w1_c00186{width:650.666667pt;}
.x0_c00186{left:0.000000pt;}
.x2_c00186{left:59.169067pt;}
.x4_c00186{left:60.435733pt;}
.xb_c00186{left:62.035733pt;}
.xc_c00186{left:63.035733pt;}
.x10_c00186{left:64.302400pt;}
.x12_c00186{left:65.902400pt;}
.x16_c00186{left:67.155733pt;}
.x7_c00186{left:87.635733pt;}
.x3_c00186{left:88.635733pt;}
.x8_c00186{left:89.902400pt;}
.xf_c00186{left:92.769067pt;}
.x11_c00186{left:93.769067pt;}
.x18_c00186{left:95.369067pt;}
.x17_c00186{left:114.235733pt;}
.x1c_c00186{left:166.702400pt;}
.x1d_c00186{left:183.635733pt;}
.x9_c00186{left:251.169067pt;}
.xd_c00186{left:260.435733pt;}
.xa_c00186{left:277.769067pt;}
.xe_c00186{left:292.769067pt;}
.x1e_c00186{left:295.969067pt;}
.x1a_c00186{left:362.235733pt;}
.x13_c00186{left:391.369067pt;}
.x5_c00186{left:453.102400pt;}
.x1f_c00186{left:461.102400pt;}
.x6_c00186{left:468.769067pt;}
.x19_c00186{left:474.235733pt;}
.x1b_c00186{left:515.169067pt;}
.x14_c00186{left:525.102400pt;}
.x15_c00186{left:543.969067pt;}
.x1_c00186{left:566.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_97cbadb18d490a6799be36b7.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00187;src:url('chunks/assets/font_1209ad5acdcad041b85ce7f1.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00187{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7_c00187{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00187{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c00187{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00187{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00187{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00187{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c00187{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c00187{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00187{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9_c00187{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00187{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c00187{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00187{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00187{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00187{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c00187{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00187{color:transparent;}
.fs1_c00187{font-size:54.000000px;}
.fs0_c00187{font-size:72.000000px;}
.y0_c00187{bottom:0.000000px;}
.y28_c00187{bottom:183.060000px;}
.y27_c00187{bottom:199.935000px;}
.y26_c00187{bottom:221.910000px;}
.y25_c00187{bottom:243.885000px;}
.y24_c00187{bottom:265.500000px;}
.y23_c00187{bottom:287.460000px;}
.y22_c00187{bottom:308.685000px;}
.y21_c00187{bottom:330.285000px;}
.y20_c00187{bottom:351.900000px;}
.y1f_c00187{bottom:373.875000px;}
.y1e_c00187{bottom:395.460000px;}
.y1d_c00187{bottom:417.435000px;}
.y1c_c00187{bottom:439.410000px;}
.y1b_c00187{bottom:460.635000px;}
.y1a_c00187{bottom:482.535000px;}
.y19_c00187{bottom:503.835000px;}
.y18_c00187{bottom:525.435000px;}
.y17_c00187{bottom:546.660000px;}
.y16_c00187{bottom:568.260000px;}
.y15_c00187{bottom:589.875000px;}
.y14_c00187{bottom:611.460000px;}
.y13_c00187{bottom:633.435000px;}
.y12_c00187{bottom:654.960000px;}
.y11_c00187{bottom:676.635000px;}
.y10_c00187{bottom:782.460000px;}
.yf_c00187{bottom:805.125000px;}
.ye_c00187{bottom:826.710000px;}
.yd_c00187{bottom:848.025000px;}
.yc_c00187{bottom:869.250000px;}
.yb_c00187{bottom:890.460000px;}
.ya_c00187{bottom:912.750000px;}
.y9_c00187{bottom:929.310000px;}
.y8_c00187{bottom:955.275000px;}
.y7_c00187{bottom:976.875000px;}
.y6_c00187{bottom:998.460000px;}
.y5_c00187{bottom:1019.685000px;}
.y4_c00187{bottom:1040.250000px;}
.y1_c00187{bottom:1089.900000px;}
.y3_c00187{bottom:1097.835000px;}
.y2_c00187{bottom:1104.675000px;}
.h2_c00187{height:54.421875px;}
.h1_c00187{height:70.664062px;}
.h0_c00187{height:1174.500000px;}
.w0_c00187{width:731.977200px;}
.w1_c00187{width:732.000000px;}
.x0_c00187{left:0.000000px;}
.xc_c00187{left:58.990200px;}
.xb_c00187{left:60.115200px;}
.x9_c00187{left:61.540200px;}
.x8_c00187{left:62.965200px;}
.x6_c00187{left:64.090200px;}
.x5_c00187{left:65.140200px;}
.x4_c00187{left:66.190200px;}
.x1_c00187{left:86.740200px;}
.xa_c00187{left:92.140200px;}
.x7_c00187{left:94.690200px;}
.x2_c00187{left:113.365200px;}
.x3_c00187{left:286.165200px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls0_c00187{letter-spacing:0.000000pt;}
.ws0_c00187{word-spacing:0.000000pt;}
.fs1_c00187{font-size:48.000000pt;}
.fs0_c00187{font-size:64.000000pt;}
.y0_c00187{bottom:0.000000pt;}
.y28_c00187{bottom:162.720000pt;}
.y27_c00187{bottom:177.720000pt;}
.y26_c00187{bottom:197.253333pt;}
.y25_c00187{bottom:216.786667pt;}
.y24_c00187{bottom:236.000000pt;}
.y23_c00187{bottom:255.520000pt;}
.y22_c00187{bottom:274.386667pt;}
.y21_c00187{bottom:293.586667pt;}
.y20_c00187{bottom:312.800000pt;}
.y1f_c00187{bottom:332.333333pt;}
.y1e_c00187{bottom:351.520000pt;}
.y1d_c00187{bottom:371.053333pt;}
.y1c_c00187{bottom:390.586667pt;}
.y1b_c00187{bottom:409.453333pt;}
.y1a_c00187{bottom:428.920000pt;}
.y19_c00187{bottom:447.853333pt;}
.y18_c00187{bottom:467.053333pt;}
.y17_c00187{bottom:485.920000pt;}
.y16_c00187{bottom:505.120000pt;}
.y15_c00187{bottom:524.333333pt;}
.y14_c00187{bottom:543.520000pt;}
.y13_c00187{bottom:563.053333pt;}
.y12_c00187{bottom:582.186667pt;}
.y11_c00187{bottom:601.453333pt;}
.y10_c00187{bottom:695.520000pt;}
.yf_c00187{bottom:715.666667pt;}
.ye_c00187{bottom:734.853333pt;}
.yd_c00187{bottom:753.800000pt;}
.yc_c00187{bottom:772.666667pt;}
.yb_c00187{bottom:791.520000pt;}
.ya_c00187{bottom:811.333333pt;}
.y9_c00187{bottom:826.053333pt;}
.y8_c00187{bottom:849.133333pt;}
.y7_c00187{bottom:868.333333pt;}
.y6_c00187{bottom:887.520000pt;}
.y5_c00187{bottom:906.386667pt;}
.y4_c00187{bottom:924.666667pt;}
.y1_c00187{bottom:968.800000pt;}
.y3_c00187{bottom:975.853333pt;}
.y2_c00187{bottom:981.933333pt;}
.h2_c00187{height:48.375000pt;}
.h1_c00187{height:62.812500pt;}
.h0_c00187{height:1044.000000pt;}
.w0_c00187{width:650.646400pt;}
.w1_c00187{width:650.666667pt;}
.x0_c00187{left:0.000000pt;}
.xc_c00187{left:52.435733pt;}
.xb_c00187{left:53.435733pt;}
.x9_c00187{left:54.702400pt;}
.x8_c00187{left:55.969067pt;}
.x6_c00187{left:56.969067pt;}
.x5_c00187{left:57.902400pt;}
.x4_c00187{left:58.835733pt;}
.x1_c00187{left:77.102400pt;}
.xa_c00187{left:81.902400pt;}
.x7_c00187{left:84.169067pt;}
.x2_c00187{left:100.769067pt;}
.x3_c00187{left:254.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_25c5411d0d331848e134cb9f.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.432129;font-style:normal;font-weight:normal;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_3ff763477d7464c69331b501.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00188{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m4_c00188{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1_c00188{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3_c00188{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc_c00188{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9_c00188{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me_c00188{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00188{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6_c00188{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00188{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c00188{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c00188{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c00188{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c00188{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5_c00188{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00188{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00188{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2_c00188{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00188{word-spacing:0.000000px;}
.fc0_c00188{color:transparent;}
.fs0_c00188{font-size:30.000000px;}
.fs2_c00188{font-size:72.000000px;}
.fs1_c00188{font-size:84.000000px;}
.y0_c00188{bottom:0.000000px;}
.y2a_c00188{bottom:46.935000px;}
.y29_c00188{bottom:284.535000px;}
.y28_c00188{bottom:305.775000px;}
.y27_c00188{bottom:327.060000px;}
.y26_c00188{bottom:348.285000px;}
.y25_c00188{bottom:369.585000px;}
.y24_c00188{bottom:390.375000px;}
.y5_c00188{bottom:399.435000px;}
.y23_c00188{bottom:412.710000px;}
.y22_c00188{bottom:433.635000px;}
.y21_c00188{bottom:455.250000px;}
.y20_c00188{bottom:477.135000px;}
.y1f_c00188{bottom:499.125000px;}
.y1e_c00188{bottom:520.335000px;}
.y1c_c00188{bottom:541.560000px;}
.y1d_c00188{bottom:542.310000px;}
.y1b_c00188{bottom:563.535000px;}
.y1a_c00188{bottom:585.135000px;}
.y19_c00188{bottom:606.750000px;}
.y1_c00188{bottom:619.710000px;}
.y18_c00188{bottom:628.335000px;}
.y17_c00188{bottom:649.935000px;}
.y16_c00188{bottom:671.535000px;}
.y15_c00188{bottom:693.210000px;}
.y14_c00188{bottom:714.750000px;}
.y13_c00188{bottom:736.785000px;}
.y12_c00188{bottom:758.325000px;}
.y11_c00188{bottom:780.675000px;}
.y10_c00188{bottom:801.525000px;}
.yf_c00188{bottom:823.500000px;}
.ye_c00188{bottom:845.085000px;}
.yd_c00188{bottom:866.685000px;}
.yc_c00188{bottom:888.300000px;}
.yb_c00188{bottom:909.525000px;}
.ya_c00188{bottom:931.125000px;}
.y9_c00188{bottom:952.425000px;}
.y8_c00188{bottom:973.560000px;}
.y7_c00188{bottom:995.175000px;}
.y6_c00188{bottom:1016.775000px;}
.y4_c00188{bottom:1073.310000px;}
.y3_c00188{bottom:1075.875000px;}
.y2_c00188{bottom:1076.250000px;}
.h3_c00188{height:29.443359px;}
.h1_c00188{height:31.289062px;}
.h4_c00188{height:70.664062px;}
.h2_c00188{height:82.441406px;}
.h0_c00188{height:1174.500000px;}
.w0_c00188{width:731.977200px;}
.w1_c00188{width:732.000000px;}
.x1_c00188{left:-21.259800px;}
.x5_c00188{left:-14.059800px;}
.x0_c00188{left:0.000000px;}
.x7_c00188{left:56.515200px;}
.x8_c00188{left:57.565200px;}
.xa_c00188{left:59.365200px;}
.xd_c00188{left:60.490200px;}
.xe_c00188{left:63.340200px;}
.x6_c00188{left:88.540200px;}
.x9_c00188{left:89.965200px;}
.xb_c00188{left:91.390200px;}
.xf_c00188{left:94.690200px;}
.xc_c00188{left:117.715200px;}
.x2_c00188{left:270.715200px;}
.x3_c00188{left:466.165200px;}
.x10_c00188{left:591.115200px;}
.x4_c00188{left:628.540200px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls0_c00188{letter-spacing:0.000000pt;}
.ws0_c00188{word-spacing:0.000000pt;}
.fs0_c00188{font-size:26.666667pt;}
.fs2_c00188{font-size:64.000000pt;}
.fs1_c00188{font-size:74.666667pt;}
.y0_c00188{bottom:0.000000pt;}
.y2a_c00188{bottom:41.720000pt;}
.y29_c00188{bottom:252.920000pt;}
.y28_c00188{bottom:271.800000pt;}
.y27_c00188{bottom:290.720000pt;}
.y26_c00188{bottom:309.586667pt;}
.y25_c00188{bottom:328.520000pt;}
.y24_c00188{bottom:347.000000pt;}
.y5_c00188{bottom:355.053333pt;}
.y23_c00188{bottom:366.853333pt;}
.y22_c00188{bottom:385.453333pt;}
.y21_c00188{bottom:404.666667pt;}
.y20_c00188{bottom:424.120000pt;}
.y1f_c00188{bottom:443.666667pt;}
.y1e_c00188{bottom:462.520000pt;}
.y1c_c00188{bottom:481.386667pt;}
.y1d_c00188{bottom:482.053333pt;}
.y1b_c00188{bottom:500.920000pt;}
.y1a_c00188{bottom:520.120000pt;}
.y19_c00188{bottom:539.333333pt;}
.y1_c00188{bottom:550.853333pt;}
.y18_c00188{bottom:558.520000pt;}
.y17_c00188{bottom:577.720000pt;}
.y16_c00188{bottom:596.920000pt;}
.y15_c00188{bottom:616.186667pt;}
.y14_c00188{bottom:635.333333pt;}
.y13_c00188{bottom:654.920000pt;}
.y12_c00188{bottom:674.066667pt;}
.y11_c00188{bottom:693.933333pt;}
.y10_c00188{bottom:712.466667pt;}
.yf_c00188{bottom:732.000000pt;}
.ye_c00188{bottom:751.186667pt;}
.yd_c00188{bottom:770.386667pt;}
.yc_c00188{bottom:789.600000pt;}
.yb_c00188{bottom:808.466667pt;}
.ya_c00188{bottom:827.666667pt;}
.y9_c00188{bottom:846.600000pt;}
.y8_c00188{bottom:865.386667pt;}
.y7_c00188{bottom:884.600000pt;}
.y6_c00188{bottom:903.800000pt;}
.y4_c00188{bottom:954.053333pt;}
.y3_c00188{bottom:956.333333pt;}
.y2_c00188{bottom:956.666667pt;}
.h3_c00188{height:26.171875pt;}
.h1_c00188{height:27.812500pt;}
.h4_c00188{height:62.812500pt;}
.h2_c00188{height:73.281250pt;}
.h0_c00188{height:1044.000000pt;}
.w0_c00188{width:650.646400pt;}
.w1_c00188{width:650.666667pt;}
.x1_c00188{left:-18.897600pt;}
.x5_c00188{left:-12.497600pt;}
.x0_c00188{left:0.000000pt;}
.x7_c00188{left:50.235733pt;}
.x8_c00188{left:51.169067pt;}
.xa_c00188{left:52.769067pt;}
.xd_c00188{left:53.769067pt;}
.xe_c00188{left:56.302400pt;}
.x6_c00188{left:78.702400pt;}
.x9_c00188{left:79.969067pt;}
.xb_c00188{left:81.235733pt;}
.xf_c00188{left:84.169067pt;}
.xc_c00188{left:104.635733pt;}
.x2_c00188{left:240.635733pt;}
.x3_c00188{left:414.369067pt;}
.x10_c00188{left:525.435733pt;}
.x4_c00188{left:558.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b488ce6c643dda418f891353.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00189;src:url('chunks/assets/font_93c51c34b9272e561837da58.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00189;src:url('chunks/assets/font_5d9a05a5e6f3e3ff1df92c74.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00189{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m4_c00189{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3_c00189{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1_c00189{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00189{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5_c00189{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00189{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,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:0.000000px;}
.fc0_c00189{color:transparent;}
.fs2_c00189{font-size:90.000000px;}
.fs1_c00189{font-size:96.000000px;}
.fs0_c00189{font-size:168.000000px;}
.y0_c00189{bottom:0.000000px;}
.y7_c00189{bottom:448.710000px;}
.y6_c00189{bottom:450.885000px;}
.y5_c00189{bottom:582.960000px;}
.y4_c00189{bottom:584.085000px;}
.y2_c00189{bottom:719.460000px;}
.y3_c00189{bottom:720.885000px;}
.y1_c00189{bottom:872.835000px;}
.h3_c00189{height:88.330078px;}
.h4_c00189{height:90.703125px;}
.h2_c00189{height:94.171875px;}
.h1_c00189{height:169.312500px;}
.h0_c00189{height:1174.500000px;}
.w0_c00189{width:731.977200px;}
.w1_c00189{width:732.000000px;}
.x0_c00189{left:0.000000px;}
.x5_c00189{left:60.790200px;}
.x2_c00189{left:62.965200px;}
.x1_c00189{left:103.690200px;}
.x7_c00189{left:244.390200px;}
.x3_c00189{left:307.390200px;}
.x4_c00189{left:356.365200px;}
.x6_c00189{left:451.390200px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls0_c00189{letter-spacing:0.000000pt;}
.ws0_c00189{word-spacing:0.000000pt;}
.fs2_c00189{font-size:80.000000pt;}
.fs1_c00189{font-size:85.333333pt;}
.fs0_c00189{font-size:149.333333pt;}
.y0_c00189{bottom:0.000000pt;}
.y7_c00189{bottom:398.853333pt;}
.y6_c00189{bottom:400.786667pt;}
.y5_c00189{bottom:518.186667pt;}
.y4_c00189{bottom:519.186667pt;}
.y2_c00189{bottom:639.520000pt;}
.y3_c00189{bottom:640.786667pt;}
.y1_c00189{bottom:775.853333pt;}
.h3_c00189{height:78.515625pt;}
.h4_c00189{height:80.625000pt;}
.h2_c00189{height:83.708333pt;}
.h1_c00189{height:150.500000pt;}
.h0_c00189{height:1044.000000pt;}
.w0_c00189{width:650.646400pt;}
.w1_c00189{width:650.666667pt;}
.x0_c00189{left:0.000000pt;}
.x5_c00189{left:54.035733pt;}
.x2_c00189{left:55.969067pt;}
.x1_c00189{left:92.169067pt;}
.x7_c00189{left:217.235733pt;}
.x3_c00189{left:273.235733pt;}
.x4_c00189{left:316.769067pt;}
.x6_c00189{left:401.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_feccc7de976b39ad21b67f65.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00190;src:url('chunks/assets/font_062c7ded4c1e5aa56ea0bd2b.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00190;src:url('chunks/assets/font_cb24781ecf97636fe5127e4c.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00190{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m3_c00190{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2_c00190{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md_c00190{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00190{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m12_c00190{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c00190{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c00190{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00190{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00190{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c00190{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00190{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00190{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00190{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00190{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00190{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00190{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00190{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c00190{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00190{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00190{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00190{vertical-align:0.000000px;}
.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;}
}
.ws0_c00190{word-spacing:0.000000px;}
.fc0_c00190{color:transparent;}
.fs0_c00190{font-size:60.000000px;}
.fs3_c00190{font-size:66.000000px;}
.fs1_c00190{font-size:72.000000px;}
.fs2_c00190{font-size:150.000000px;}
.y0_c00190{bottom:0.000000px;}
.y2b_c00190{bottom:77.910000px;}
.y2a_c00190{bottom:99.510000px;}
.y29_c00190{bottom:120.435000px;}
.y28_c00190{bottom:141.000000px;}
.y27_c00190{bottom:160.710000px;}
.y25_c00190{bottom:181.560000px;}
.y26_c00190{bottom:184.125000px;}
.y24_c00190{bottom:202.785000px;}
.y22_c00190{bottom:223.410000px;}
.y23_c00190{bottom:225.885000px;}
.y21_c00190{bottom:244.260000px;}
.y20_c00190{bottom:265.500000px;}
.y1f_c00190{bottom:286.710000px;}
.y1e_c00190{bottom:308.025000px;}
.y1d_c00190{bottom:329.250000px;}
.y1c_c00190{bottom:351.900000px;}
.y1a_c00190{bottom:372.060000px;}
.y1b_c00190{bottom:373.125000px;}
.y19_c00190{bottom:394.035000px;}
.y18_c00190{bottom:415.635000px;}
.y17_c00190{bottom:436.875000px;}
.y16_c00190{bottom:458.460000px;}
.y15_c00190{bottom:480.435000px;}
.y14_c00190{bottom:501.960000px;}
.y13_c00190{bottom:523.635000px;}
.y12_c00190{bottom:544.875000px;}
.y11_c00190{bottom:545.910000px;}
.y10_c00190{bottom:566.760000px;}
.yf_c00190{bottom:567.210000px;}
.ye_c00190{bottom:588.060000px;}
.yd_c00190{bottom:609.660000px;}
.yc_c00190{bottom:631.260000px;}
.yb_c00190{bottom:652.500000px;}
.ya_c00190{bottom:674.085000px;}
.y9_c00190{bottom:695.310000px;}
.y8_c00190{bottom:717.000000px;}
.y7_c00190{bottom:739.260000px;}
.y6_c00190{bottom:841.875000px;}
.y4_c00190{bottom:844.335000px;}
.y5_c00190{bottom:862.185000px;}
.y3_c00190{bottom:1068.675000px;}
.y2_c00190{bottom:1071.525000px;}
.y1_c00190{bottom:1071.900000px;}
.h1_c00190{height:60.468750px;}
.h5_c00190{height:64.775391px;}
.h4_c00190{height:70.664062px;}
.h2_c00190{height:72.562500px;}
.h3_c00190{height:156.445312px;}
.h0_c00190{height:1174.500000px;}
.w0_c00190{width:731.977200px;}
.w1_c00190{width:732.000000px;}
.x0_c00190{left:0.000000px;}
.x9_c00190{left:41.740200px;}
.xb_c00190{left:49.690200px;}
.x8_c00190{left:50.740200px;}
.x4_c00190{left:52.540200px;}
.x10_c00190{left:53.590200px;}
.xd_c00190{left:82.090200px;}
.x7_c00190{left:83.890200px;}
.xa_c00190{left:235.765200px;}
.x1_c00190{left:292.690200px;}
.x5_c00190{left:364.990200px;}
.xc_c00190{left:431.965200px;}
.x2_c00190{left:460.390200px;}
.xf_c00190{left:477.340200px;}
.x6_c00190{left:549.715200px;}
.xe_c00190{left:589.315200px;}
.x3_c00190{left:622.390200px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls0_c00190{letter-spacing:0.000000pt;}
.ws0_c00190{word-spacing:0.000000pt;}
.fs0_c00190{font-size:53.333333pt;}
.fs3_c00190{font-size:58.666667pt;}
.fs1_c00190{font-size:64.000000pt;}
.fs2_c00190{font-size:133.333333pt;}
.y0_c00190{bottom:0.000000pt;}
.y2b_c00190{bottom:69.253333pt;}
.y2a_c00190{bottom:88.453333pt;}
.y29_c00190{bottom:107.053333pt;}
.y28_c00190{bottom:125.333333pt;}
.y27_c00190{bottom:142.853333pt;}
.y25_c00190{bottom:161.386667pt;}
.y26_c00190{bottom:163.666667pt;}
.y24_c00190{bottom:180.253333pt;}
.y22_c00190{bottom:198.586667pt;}
.y23_c00190{bottom:200.786667pt;}
.y21_c00190{bottom:217.120000pt;}
.y20_c00190{bottom:236.000000pt;}
.y1f_c00190{bottom:254.853333pt;}
.y1e_c00190{bottom:273.800000pt;}
.y1d_c00190{bottom:292.666667pt;}
.y1c_c00190{bottom:312.800000pt;}
.y1a_c00190{bottom:330.720000pt;}
.y1b_c00190{bottom:331.666667pt;}
.y19_c00190{bottom:350.253333pt;}
.y18_c00190{bottom:369.453333pt;}
.y17_c00190{bottom:388.333333pt;}
.y16_c00190{bottom:407.520000pt;}
.y15_c00190{bottom:427.053333pt;}
.y14_c00190{bottom:446.186667pt;}
.y13_c00190{bottom:465.453333pt;}
.y12_c00190{bottom:484.333333pt;}
.y11_c00190{bottom:485.253333pt;}
.y10_c00190{bottom:503.786667pt;}
.yf_c00190{bottom:504.186667pt;}
.ye_c00190{bottom:522.720000pt;}
.yd_c00190{bottom:541.920000pt;}
.yc_c00190{bottom:561.120000pt;}
.yb_c00190{bottom:580.000000pt;}
.ya_c00190{bottom:599.186667pt;}
.y9_c00190{bottom:618.053333pt;}
.y8_c00190{bottom:637.333333pt;}
.y7_c00190{bottom:657.120000pt;}
.y6_c00190{bottom:748.333333pt;}
.y4_c00190{bottom:750.520000pt;}
.y5_c00190{bottom:766.386667pt;}
.y3_c00190{bottom:949.933333pt;}
.y2_c00190{bottom:952.466667pt;}
.y1_c00190{bottom:952.800000pt;}
.h1_c00190{height:53.750000pt;}
.h5_c00190{height:57.578125pt;}
.h4_c00190{height:62.812500pt;}
.h2_c00190{height:64.500000pt;}
.h3_c00190{height:139.062500pt;}
.h0_c00190{height:1044.000000pt;}
.w0_c00190{width:650.646400pt;}
.w1_c00190{width:650.666667pt;}
.x0_c00190{left:0.000000pt;}
.x9_c00190{left:37.102400pt;}
.xb_c00190{left:44.169067pt;}
.x8_c00190{left:45.102400pt;}
.x4_c00190{left:46.702400pt;}
.x10_c00190{left:47.635733pt;}
.xd_c00190{left:72.969067pt;}
.x7_c00190{left:74.569067pt;}
.xa_c00190{left:209.569067pt;}
.x1_c00190{left:260.169067pt;}
.x5_c00190{left:324.435733pt;}
.xc_c00190{left:383.969067pt;}
.x2_c00190{left:409.235733pt;}
.xf_c00190{left:424.302400pt;}
.x6_c00190{left:488.635733pt;}
.xe_c00190{left:523.835733pt;}
.x3_c00190{left:553.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f95ed27fdbc11cef4f29d432.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00191;src:url('chunks/assets/font_a8ac24e8b9ef50aa2097eb35.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00191;src:url('chunks/assets/font_6a0ca2fccef0d24318fbb9a3.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00191{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.md_c00191{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c00191{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c00191{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c00191{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m9_c00191{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c00191{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00191{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c00191{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00191{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c00191{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c00191{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2_c00191{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00191{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m8_c00191{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.ma_c00191{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m1_c00191{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00191{color:transparent;}
.fs1_c00191{font-size:54.000000px;}
.fs3_c00191{font-size:66.000000px;}
.fs0_c00191{font-size:72.000000px;}
.fs2_c00191{font-size:78.000000px;}
.y0_c00191{bottom:0.000000px;}
.y20_c00191{bottom:428.910000px;}
.y1f_c00191{bottom:458.835000px;}
.y1e_c00191{bottom:508.500000px;}
.y1d_c00191{bottom:553.875000px;}
.y1c_c00191{bottom:570.060000px;}
.y1b_c00191{bottom:573.660000px;}
.y1a_c00191{bottom:592.710000px;}
.y19_c00191{bottom:595.560000px;}
.y18_c00191{bottom:619.035000px;}
.y17_c00191{bottom:639.510000px;}
.y16_c00191{bottom:661.125000px;}
.y15_c00191{bottom:682.710000px;}
.y14_c00191{bottom:704.310000px;}
.y13_c00191{bottom:725.910000px;}
.y12_c00191{bottom:747.510000px;}
.y11_c00191{bottom:769.125000px;}
.yf_c00191{bottom:790.050000px;}
.y10_c00191{bottom:790.710000px;}
.ye_c00191{bottom:812.025000px;}
.yd_c00191{bottom:833.250000px;}
.yc_c00191{bottom:854.835000px;}
.yb_c00191{bottom:876.060000px;}
.ya_c00191{bottom:897.675000px;}
.y9_c00191{bottom:919.275000px;}
.y8_c00191{bottom:940.875000px;}
.y7_c00191{bottom:962.085000px;}
.y6_c00191{bottom:983.310000px;}
.y5_c00191{bottom:1004.925000px;}
.y4_c00191{bottom:1025.835000px;}
.y1_c00191{bottom:1077.675000px;}
.y2_c00191{bottom:1078.050000px;}
.y3_c00191{bottom:1082.685000px;}
.h2_c00191{height:52.998047px;}
.h7_c00191{height:54.421875px;}
.h5_c00191{height:64.775391px;}
.h6_c00191{height:70.628906px;}
.h1_c00191{height:70.664062px;}
.h3_c00191{height:76.552734px;}
.h4_c00191{height:78.609375px;}
.h0_c00191{height:1174.500000px;}
.w0_c00191{width:731.977200px;}
.w1_c00191{width:732.000000px;}
.x0_c00191{left:0.000000px;}
.x13_c00191{left:67.315200px;}
.x11_c00191{left:68.740200px;}
.xf_c00191{left:70.165200px;}
.xc_c00191{left:71.290200px;}
.x8_c00191{left:73.765200px;}
.x7_c00191{left:74.890200px;}
.x6_c00191{left:75.925200px;}
.x5_c00191{left:77.740200px;}
.x10_c00191{left:91.090200px;}
.xd_c00191{left:92.140200px;}
.xa_c00191{left:94.990200px;}
.x1_c00191{left:98.290200px;}
.x9_c00191{left:102.190200px;}
.x4_c00191{left:107.590200px;}
.x2_c00191{left:123.790200px;}
.xe_c00191{left:134.290200px;}
.xb_c00191{left:135.715200px;}
.x3_c00191{left:301.990200px;}
.x16_c00191{left:351.715200px;}
.x15_c00191{left:395.590200px;}
.x14_c00191{left:643.990200px;}
.x12_c00191{left:665.590200px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls0_c00191{letter-spacing:0.000000pt;}
.ws0_c00191{word-spacing:0.000000pt;}
.fs1_c00191{font-size:48.000000pt;}
.fs3_c00191{font-size:58.666667pt;}
.fs0_c00191{font-size:64.000000pt;}
.fs2_c00191{font-size:69.333333pt;}
.y0_c00191{bottom:0.000000pt;}
.y20_c00191{bottom:381.253333pt;}
.y1f_c00191{bottom:407.853333pt;}
.y1e_c00191{bottom:452.000000pt;}
.y1d_c00191{bottom:492.333333pt;}
.y1c_c00191{bottom:506.720000pt;}
.y1b_c00191{bottom:509.920000pt;}
.y1a_c00191{bottom:526.853333pt;}
.y19_c00191{bottom:529.386667pt;}
.y18_c00191{bottom:550.253333pt;}
.y17_c00191{bottom:568.453333pt;}
.y16_c00191{bottom:587.666667pt;}
.y15_c00191{bottom:606.853333pt;}
.y14_c00191{bottom:626.053333pt;}
.y13_c00191{bottom:645.253333pt;}
.y12_c00191{bottom:664.453333pt;}
.y11_c00191{bottom:683.666667pt;}
.yf_c00191{bottom:702.266667pt;}
.y10_c00191{bottom:702.853333pt;}
.ye_c00191{bottom:721.800000pt;}
.yd_c00191{bottom:740.666667pt;}
.yc_c00191{bottom:759.853333pt;}
.yb_c00191{bottom:778.720000pt;}
.ya_c00191{bottom:797.933333pt;}
.y9_c00191{bottom:817.133333pt;}
.y8_c00191{bottom:836.333333pt;}
.y7_c00191{bottom:855.186667pt;}
.y6_c00191{bottom:874.053333pt;}
.y5_c00191{bottom:893.266667pt;}
.y4_c00191{bottom:911.853333pt;}
.y1_c00191{bottom:957.933333pt;}
.y2_c00191{bottom:958.266667pt;}
.y3_c00191{bottom:962.386667pt;}
.h2_c00191{height:47.109375pt;}
.h7_c00191{height:48.375000pt;}
.h5_c00191{height:57.578125pt;}
.h6_c00191{height:62.781250pt;}
.h1_c00191{height:62.812500pt;}
.h3_c00191{height:68.046875pt;}
.h4_c00191{height:69.875000pt;}
.h0_c00191{height:1044.000000pt;}
.w0_c00191{width:650.646400pt;}
.w1_c00191{width:650.666667pt;}
.x0_c00191{left:0.000000pt;}
.x13_c00191{left:59.835733pt;}
.x11_c00191{left:61.102400pt;}
.xf_c00191{left:62.369067pt;}
.xc_c00191{left:63.369067pt;}
.x8_c00191{left:65.569067pt;}
.x7_c00191{left:66.569067pt;}
.x6_c00191{left:67.489067pt;}
.x5_c00191{left:69.102400pt;}
.x10_c00191{left:80.969067pt;}
.xd_c00191{left:81.902400pt;}
.xa_c00191{left:84.435733pt;}
.x1_c00191{left:87.369067pt;}
.x9_c00191{left:90.835733pt;}
.x4_c00191{left:95.635733pt;}
.x2_c00191{left:110.035733pt;}
.xe_c00191{left:119.369067pt;}
.xb_c00191{left:120.635733pt;}
.x3_c00191{left:268.435733pt;}
.x16_c00191{left:312.635733pt;}
.x15_c00191{left:351.635733pt;}
.x14_c00191{left:572.435733pt;}
.x12_c00191{left:591.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb52904f136e9e0ebae6c951.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00192;src:url('chunks/assets/font_fb7c11c1c1e901fe3300246f.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00192;src:url('chunks/assets/font_741f88407f7c0bb02a7c52eb.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00192{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m2_c00192{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m9_c00192{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6_c00192{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m17_c00192{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00192{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00192{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00192{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m16_c00192{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c00192{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c00192{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00192{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00192{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00192{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00192{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c00192{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00192{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00192{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00192{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00192{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c00192{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00192{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c00192{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00192{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00192{color:transparent;}
.fs5_c00192{font-size:66.000000px;}
.fs3_c00192{font-size:72.000000px;}
.fs2_c00192{font-size:78.000000px;}
.fs4_c00192{font-size:84.000000px;}
.fs1_c00192{font-size:168.000000px;}
.fs0_c00192{font-size:198.000000px;}
.y0_c00192{bottom:0.000000px;}
.y2e_c00192{bottom:82.185000px;}
.y2f_c00192{bottom:84.060000px;}
.y2d_c00192{bottom:105.660000px;}
.y2c_c00192{bottom:124.710000px;}
.y2b_c00192{bottom:146.685000px;}
.y29_c00192{bottom:167.160000px;}
.y2a_c00192{bottom:168.285000px;}
.y27_c00192{bottom:187.410000px;}
.y26_c00192{bottom:187.710000px;}
.y25_c00192{bottom:188.085000px;}
.y28_c00192{bottom:189.510000px;}
.y24_c00192{bottom:208.935000px;}
.y23_c00192{bottom:230.160000px;}
.y22_c00192{bottom:251.085000px;}
.y21_c00192{bottom:272.310000px;}
.y20_c00192{bottom:293.535000px;}
.y1f_c00192{bottom:314.835000px;}
.y1e_c00192{bottom:335.685000px;}
.y1d_c00192{bottom:357.000000px;}
.y1c_c00192{bottom:378.150000px;}
.y1b_c00192{bottom:400.125000px;}
.y1a_c00192{bottom:420.660000px;}
.y19_c00192{bottom:442.260000px;}
.y18_c00192{bottom:463.875000px;}
.y17_c00192{bottom:485.385000px;}
.y16_c00192{bottom:507.000000px;}
.y15_c00192{bottom:528.285000px;}
.y14_c00192{bottom:549.510000px;}
.y13_c00192{bottom:570.810000px;}
.y12_c00192{bottom:592.035000px;}
.y11_c00192{bottom:593.085000px;}
.y10_c00192{bottom:593.460000px;}
.yf_c00192{bottom:614.010000px;}
.ye_c00192{bottom:635.625000px;}
.yd_c00192{bottom:658.260000px;}
.yc_c00192{bottom:678.435000px;}
.yb_c00192{bottom:700.035000px;}
.ya_c00192{bottom:719.085000px;}
.y9_c00192{bottom:721.260000px;}
.y8_c00192{bottom:723.750000px;}
.y7_c00192{bottom:740.385000px;}
.y6_c00192{bottom:742.875000px;}
.y5_c00192{bottom:743.910000px;}
.y4_c00192{bottom:745.035000px;}
.y3_c00192{bottom:853.710000px;}
.y1_c00192{bottom:857.685000px;}
.y2_c00192{bottom:883.050000px;}
.h7_c00192{height:64.775391px;}
.h5_c00192{height:70.664062px;}
.h4_c00192{height:72.562500px;}
.h3_c00192{height:78.609375px;}
.h6_c00192{height:82.441406px;}
.h2_c00192{height:175.218750px;}
.h1_c00192{height:199.546875px;}
.h0_c00192{height:1174.500000px;}
.w0_c00192{width:731.977200px;}
.w1_c00192{width:732.000000px;}
.x0_c00192{left:0.000000px;}
.xd_c00192{left:53.290200px;}
.x8_c00192{left:54.715200px;}
.xf_c00192{left:55.765200px;}
.x1_c00192{left:57.565200px;}
.xe_c00192{left:85.300200px;}
.x4_c00192{left:87.115200px;}
.x10_c00192{left:88.540200px;}
.x13_c00192{left:191.125200px;}
.x12_c00192{left:200.875200px;}
.x11_c00192{left:214.540200px;}
.xb_c00192{left:245.515200px;}
.xc_c00192{left:272.890200px;}
.x5_c00192{left:282.940200px;}
.x9_c00192{left:302.365200px;}
.x6_c00192{left:310.990200px;}
.x2_c00192{left:314.590200px;}
.x3_c00192{left:555.115200px;}
.xa_c00192{left:625.690200px;}
.x7_c00192{left:642.565200px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls0_c00192{letter-spacing:0.000000pt;}
.ws0_c00192{word-spacing:0.000000pt;}
.fs5_c00192{font-size:58.666667pt;}
.fs3_c00192{font-size:64.000000pt;}
.fs2_c00192{font-size:69.333333pt;}
.fs4_c00192{font-size:74.666667pt;}
.fs1_c00192{font-size:149.333333pt;}
.fs0_c00192{font-size:176.000000pt;}
.y0_c00192{bottom:0.000000pt;}
.y2e_c00192{bottom:73.053333pt;}
.y2f_c00192{bottom:74.720000pt;}
.y2d_c00192{bottom:93.920000pt;}
.y2c_c00192{bottom:110.853333pt;}
.y2b_c00192{bottom:130.386667pt;}
.y29_c00192{bottom:148.586667pt;}
.y2a_c00192{bottom:149.586667pt;}
.y27_c00192{bottom:166.586667pt;}
.y26_c00192{bottom:166.853333pt;}
.y25_c00192{bottom:167.186667pt;}
.y28_c00192{bottom:168.453333pt;}
.y24_c00192{bottom:185.720000pt;}
.y23_c00192{bottom:204.586667pt;}
.y22_c00192{bottom:223.186667pt;}
.y21_c00192{bottom:242.053333pt;}
.y20_c00192{bottom:260.920000pt;}
.y1f_c00192{bottom:279.853333pt;}
.y1e_c00192{bottom:298.386667pt;}
.y1d_c00192{bottom:317.333333pt;}
.y1c_c00192{bottom:336.133333pt;}
.y1b_c00192{bottom:355.666667pt;}
.y1a_c00192{bottom:373.920000pt;}
.y19_c00192{bottom:393.120000pt;}
.y18_c00192{bottom:412.333333pt;}
.y17_c00192{bottom:431.453333pt;}
.y16_c00192{bottom:450.666667pt;}
.y15_c00192{bottom:469.586667pt;}
.y14_c00192{bottom:488.453333pt;}
.y13_c00192{bottom:507.386667pt;}
.y12_c00192{bottom:526.253333pt;}
.y11_c00192{bottom:527.186667pt;}
.y10_c00192{bottom:527.520000pt;}
.yf_c00192{bottom:545.786667pt;}
.ye_c00192{bottom:565.000000pt;}
.yd_c00192{bottom:585.120000pt;}
.yc_c00192{bottom:603.053333pt;}
.yb_c00192{bottom:622.253333pt;}
.ya_c00192{bottom:639.186667pt;}
.y9_c00192{bottom:641.120000pt;}
.y8_c00192{bottom:643.333333pt;}
.y7_c00192{bottom:658.120000pt;}
.y6_c00192{bottom:660.333333pt;}
.y5_c00192{bottom:661.253333pt;}
.y4_c00192{bottom:662.253333pt;}
.y3_c00192{bottom:758.853333pt;}
.y1_c00192{bottom:762.386667pt;}
.y2_c00192{bottom:784.933333pt;}
.h7_c00192{height:57.578125pt;}
.h5_c00192{height:62.812500pt;}
.h4_c00192{height:64.500000pt;}
.h3_c00192{height:69.875000pt;}
.h6_c00192{height:73.281250pt;}
.h2_c00192{height:155.750000pt;}
.h1_c00192{height:177.375000pt;}
.h0_c00192{height:1044.000000pt;}
.w0_c00192{width:650.646400pt;}
.w1_c00192{width:650.666667pt;}
.x0_c00192{left:0.000000pt;}
.xd_c00192{left:47.369067pt;}
.x8_c00192{left:48.635733pt;}
.xf_c00192{left:49.569067pt;}
.x1_c00192{left:51.169067pt;}
.xe_c00192{left:75.822400pt;}
.x4_c00192{left:77.435733pt;}
.x10_c00192{left:78.702400pt;}
.x13_c00192{left:169.889067pt;}
.x12_c00192{left:178.555733pt;}
.x11_c00192{left:190.702400pt;}
.xb_c00192{left:218.235733pt;}
.xc_c00192{left:242.569067pt;}
.x5_c00192{left:251.502400pt;}
.x9_c00192{left:268.769067pt;}
.x6_c00192{left:276.435733pt;}
.x2_c00192{left:279.635733pt;}
.x3_c00192{left:493.435733pt;}
.xa_c00192{left:556.169067pt;}
.x7_c00192{left:571.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2b3972b6ad2afc04a934f1a.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00193;src:url('chunks/assets/font_7d06dc472a36e0dfcdfff3de.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00193;src:url('chunks/assets/font_a5b14d4915df94804c262d88.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00193{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m16_c00193{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m13_c00193{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m15_c00193{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c00193{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00193{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00193{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf_c00193{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5_c00193{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00193{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00193{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00193{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00193{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00193{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00193{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00193{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00193{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00193{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00193{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.me_c00193{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m11_c00193{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m10_c00193{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1_c00193{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00193{color:transparent;}
.fs1_c00193{font-size:60.000000px;}
.fs2_c00193{font-size:66.000000px;}
.fs0_c00193{font-size:72.000000px;}
.fs3_c00193{font-size:78.000000px;}
.y0_c00193{bottom:0.000000px;}
.y24_c00193{bottom:424.635000px;}
.y23_c00193{bottom:454.500000px;}
.y22_c00193{bottom:455.625000px;}
.y21_c00193{bottom:456.660000px;}
.y20_c00193{bottom:506.010000px;}
.y1f_c00193{bottom:549.510000px;}
.y1e_c00193{bottom:570.810000px;}
.y1d_c00193{bottom:592.035000px;}
.y1c_c00193{bottom:615.810000px;}
.y1b_c00193{bottom:635.910000px;}
.y1a_c00193{bottom:637.710000px;}
.y19_c00193{bottom:658.635000px;}
.y18_c00193{bottom:678.435000px;}
.y17_c00193{bottom:679.875000px;}
.y16_c00193{bottom:700.710000px;}
.y15_c00193{bottom:719.460000px;}
.y14_c00193{bottom:720.510000px;}
.y13_c00193{bottom:721.950000px;}
.y12_c00193{bottom:743.250000px;}
.y11_c00193{bottom:764.835000px;}
.y10_c00193{bottom:786.435000px;}
.yf_c00193{bottom:807.960000px;}
.ye_c00193{bottom:828.900000px;}
.yd_c00193{bottom:850.185000px;}
.yc_c00193{bottom:871.710000px;}
.yb_c00193{bottom:893.025000px;}
.ya_c00193{bottom:914.625000px;}
.y9_c00193{bottom:936.210000px;}
.y8_c00193{bottom:957.435000px;}
.y7_c00193{bottom:979.050000px;}
.y6_c00193{bottom:1000.275000px;}
.y5_c00193{bottom:1021.125000px;}
.y4_c00193{bottom:1042.335000px;}
.y1_c00193{bottom:1093.125000px;}
.y2_c00193{bottom:1093.500000px;}
.y3_c00193{bottom:1099.650000px;}
.h2_c00193{height:58.886719px;}
.h5_c00193{height:60.468750px;}
.h3_c00193{height:64.775391px;}
.h1_c00193{height:70.664062px;}
.h4_c00193{height:76.514648px;}
.h0_c00193{height:1174.500000px;}
.w0_c00193{width:731.977200px;}
.w1_c00193{width:732.000000px;}
.x0_c00193{left:0.000000px;}
.x17_c00193{left:65.890200px;}
.x15_c00193{left:66.940200px;}
.x12_c00193{left:69.490200px;}
.xc_c00193{left:70.915200px;}
.xb_c00193{left:71.965200px;}
.x9_c00193{left:73.390200px;}
.x8_c00193{left:74.890200px;}
.x7_c00193{left:76.675200px;}
.x5_c00193{left:78.790200px;}
.x4_c00193{left:79.915200px;}
.x16_c00193{left:87.790200px;}
.x13_c00193{left:88.915200px;}
.x10_c00193{left:91.390200px;}
.x18_c00193{left:93.550200px;}
.x1_c00193{left:100.090200px;}
.xf_c00193{left:101.140200px;}
.xa_c00193{left:102.940200px;}
.x6_c00193{left:107.590200px;}
.x2_c00193{left:126.340200px;}
.x14_c00193{left:130.990200px;}
.x11_c00193{left:132.115200px;}
.x3_c00193{left:300.190200px;}
.x1c_c00193{left:358.540200px;}
.x19_c00193{left:368.965200px;}
.x1a_c00193{left:484.540200px;}
.x1b_c00193{left:509.740200px;}
.xd_c00193{left:586.090200px;}
.xe_c00193{left:614.515200px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls0_c00193{letter-spacing:0.000000pt;}
.ws0_c00193{word-spacing:0.000000pt;}
.fs1_c00193{font-size:53.333333pt;}
.fs2_c00193{font-size:58.666667pt;}
.fs0_c00193{font-size:64.000000pt;}
.fs3_c00193{font-size:69.333333pt;}
.y0_c00193{bottom:0.000000pt;}
.y24_c00193{bottom:377.453333pt;}
.y23_c00193{bottom:404.000000pt;}
.y22_c00193{bottom:405.000000pt;}
.y21_c00193{bottom:405.920000pt;}
.y20_c00193{bottom:449.786667pt;}
.y1f_c00193{bottom:488.453333pt;}
.y1e_c00193{bottom:507.386667pt;}
.y1d_c00193{bottom:526.253333pt;}
.y1c_c00193{bottom:547.386667pt;}
.y1b_c00193{bottom:565.253333pt;}
.y1a_c00193{bottom:566.853333pt;}
.y19_c00193{bottom:585.453333pt;}
.y18_c00193{bottom:603.053333pt;}
.y17_c00193{bottom:604.333333pt;}
.y16_c00193{bottom:622.853333pt;}
.y15_c00193{bottom:639.520000pt;}
.y14_c00193{bottom:640.453333pt;}
.y13_c00193{bottom:641.733333pt;}
.y12_c00193{bottom:660.666667pt;}
.y11_c00193{bottom:679.853333pt;}
.y10_c00193{bottom:699.053333pt;}
.yf_c00193{bottom:718.186667pt;}
.ye_c00193{bottom:736.800000pt;}
.yd_c00193{bottom:755.720000pt;}
.yc_c00193{bottom:774.853333pt;}
.yb_c00193{bottom:793.800000pt;}
.ya_c00193{bottom:813.000000pt;}
.y9_c00193{bottom:832.186667pt;}
.y8_c00193{bottom:851.053333pt;}
.y7_c00193{bottom:870.266667pt;}
.y6_c00193{bottom:889.133333pt;}
.y5_c00193{bottom:907.666667pt;}
.y4_c00193{bottom:926.520000pt;}
.y1_c00193{bottom:971.666667pt;}
.y2_c00193{bottom:972.000000pt;}
.y3_c00193{bottom:977.466667pt;}
.h2_c00193{height:52.343750pt;}
.h5_c00193{height:53.750000pt;}
.h3_c00193{height:57.578125pt;}
.h1_c00193{height:62.812500pt;}
.h4_c00193{height:68.013021pt;}
.h0_c00193{height:1044.000000pt;}
.w0_c00193{width:650.646400pt;}
.w1_c00193{width:650.666667pt;}
.x0_c00193{left:0.000000pt;}
.x17_c00193{left:58.569067pt;}
.x15_c00193{left:59.502400pt;}
.x12_c00193{left:61.769067pt;}
.xc_c00193{left:63.035733pt;}
.xb_c00193{left:63.969067pt;}
.x9_c00193{left:65.235733pt;}
.x8_c00193{left:66.569067pt;}
.x7_c00193{left:68.155733pt;}
.x5_c00193{left:70.035733pt;}
.x4_c00193{left:71.035733pt;}
.x16_c00193{left:78.035733pt;}
.x13_c00193{left:79.035733pt;}
.x10_c00193{left:81.235733pt;}
.x18_c00193{left:83.155733pt;}
.x1_c00193{left:88.969067pt;}
.xf_c00193{left:89.902400pt;}
.xa_c00193{left:91.502400pt;}
.x6_c00193{left:95.635733pt;}
.x2_c00193{left:112.302400pt;}
.x14_c00193{left:116.435733pt;}
.x11_c00193{left:117.435733pt;}
.x3_c00193{left:266.835733pt;}
.x1c_c00193{left:318.702400pt;}
.x19_c00193{left:327.969067pt;}
.x1a_c00193{left:430.702400pt;}
.x1b_c00193{left:453.102400pt;}
.xd_c00193{left:520.969067pt;}
.xe_c00193{left:546.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6dfb8cbf5d5f4d2e86a73775.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00194;src:url('chunks/assets/font_23b4df6a2248d123d7aa072d.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00194;src:url('chunks/assets/font_d21faab032c5d0fcdf498c62.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00194{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.mb_c00194{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.mc_c00194{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00194{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m3_c00194{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma_c00194{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7_c00194{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c00194{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m12_c00194{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c00194{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m0_c00194{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8_c00194{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00194{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c00194{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mf_c00194{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m14_c00194{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00194{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c00194{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00194{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00194{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00194{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m19_c00194{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c00194{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00194{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c00194{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c00194{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.m10_c00194{transform:matrix(1.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.582500,0.000000,0.000000,0.250000,0,0);}
.md_c00194{transform:matrix(1.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.737500,0.000000,0.000000,0.250000,0,0);}
.me_c00194{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00194{color:transparent;}
.fs3_c00194{font-size:24.000000px;}
.fs4_c00194{font-size:42.000000px;}
.fs0_c00194{font-size:60.000000px;}
.fs5_c00194{font-size:72.000000px;}
.fs1_c00194{font-size:78.000000px;}
.fs2_c00194{font-size:150.000000px;}
.y0_c00194{bottom:0.000000px;}
.y32_c00194{bottom:96.660000px;}
.y31_c00194{bottom:118.635000px;}
.y2f_c00194{bottom:138.060000px;}
.y30_c00194{bottom:140.250000px;}
.y2e_c00194{bottom:158.910000px;}
.y2d_c00194{bottom:180.510000px;}
.y2b_c00194{bottom:200.010000px;}
.y2a_c00194{bottom:200.685000px;}
.y2c_c00194{bottom:201.435000px;}
.y28_c00194{bottom:221.250000px;}
.y29_c00194{bottom:222.285000px;}
.y27_c00194{bottom:242.835000px;}
.y26_c00194{bottom:263.685000px;}
.y25_c00194{bottom:285.285000px;}
.y24_c00194{bottom:306.210000px;}
.y21_c00194{bottom:327.750000px;}
.y22_c00194{bottom:328.125000px;}
.y23_c00194{bottom:328.500000px;}
.y20_c00194{bottom:348.285000px;}
.y1f_c00194{bottom:348.960000px;}
.y1d_c00194{bottom:369.900000px;}
.y1e_c00194{bottom:370.650000px;}
.y1c_c00194{bottom:391.125000px;}
.y1a_c00194{bottom:412.035000px;}
.y1b_c00194{bottom:412.710000px;}
.y19_c00194{bottom:433.260000px;}
.y18_c00194{bottom:454.500000px;}
.y17_c00194{bottom:476.085000px;}
.y16_c00194{bottom:497.685000px;}
.y15_c00194{bottom:519.285000px;}
.y14_c00194{bottom:540.510000px;}
.y13_c00194{bottom:561.435000px;}
.y12_c00194{bottom:562.125000px;}
.y10_c00194{bottom:578.685000px;}
.y11_c00194{bottom:583.035000px;}
.yf_c00194{bottom:604.635000px;}
.ye_c00194{bottom:625.875000px;}
.yc_c00194{bottom:627.285000px;}
.yb_c00194{bottom:647.460000px;}
.ya_c00194{bottom:668.685000px;}
.y9_c00194{bottom:690.660000px;}
.y5_c00194{bottom:712.260000px;}
.y6_c00194{bottom:733.875000px;}
.y8_c00194{bottom:751.875000px;}
.y7_c00194{bottom:755.460000px;}
.y33_c00194{bottom:862.710000px;}
.y4_c00194{bottom:867.750000px;}
.y3_c00194{bottom:979.335000px;}
.y2_c00194{bottom:1086.675000px;}
.y1_c00194{bottom:1092.750000px;}
.yd_c00194{bottom:1174.500000px;}
.h5_c00194{height:23.554688px;}
.h6_c00194{height:41.220703px;}
.h1_c00194{height:60.468750px;}
.h7_c00194{height:70.664062px;}
.h2_c00194{height:76.552734px;}
.h4_c00194{height:78.609375px;}
.h3_c00194{height:156.445312px;}
.h0_c00194{height:1174.500000px;}
.w0_c00194{width:731.977200px;}
.w1_c00194{width:732.000000px;}
.x3_c00194{left:-21.259800px;}
.x9_c00194{left:-15.484800px;}
.xa_c00194{left:-11.884800px;}
.xb_c00194{left:-10.834800px;}
.x0_c00194{left:0.000000px;}
.x10_c00194{left:51.115200px;}
.xf_c00194{left:52.165200px;}
.xc_c00194{left:53.290200px;}
.x5_c00194{left:54.715200px;}
.x6_c00194{left:55.765200px;}
.x4_c00194{left:59.365200px;}
.x19_c00194{left:85.990200px;}
.x7_c00194{left:88.540200px;}
.x13_c00194{left:129.565200px;}
.x1b_c00194{left:151.540200px;}
.x15_c00194{left:157.315200px;}
.x1c_c00194{left:182.125200px;}
.x1_c00194{left:277.165200px;}
.x16_c00194{left:280.390200px;}
.x1a_c00194{left:282.190200px;}
.x1d_c00194{left:312.790200px;}
.xd_c00194{left:497.515200px;}
.xe_c00194{left:532.765200px;}
.x1e_c00194{left:555.490200px;}
.x17_c00194{left:576.340200px;}
.x18_c00194{left:592.915200px;}
.x11_c00194{left:603.715200px;}
.x12_c00194{left:614.140200px;}
.x14_c00194{left:620.965200px;}
.x2_c00194{left:631.765200px;}
.x8_c00194{left:646.540200px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls0_c00194{letter-spacing:0.000000pt;}
.ws0_c00194{word-spacing:0.000000pt;}
.fs3_c00194{font-size:21.333333pt;}
.fs4_c00194{font-size:37.333333pt;}
.fs0_c00194{font-size:53.333333pt;}
.fs5_c00194{font-size:64.000000pt;}
.fs1_c00194{font-size:69.333333pt;}
.fs2_c00194{font-size:133.333333pt;}
.y0_c00194{bottom:0.000000pt;}
.y32_c00194{bottom:85.920000pt;}
.y31_c00194{bottom:105.453333pt;}
.y2f_c00194{bottom:122.720000pt;}
.y30_c00194{bottom:124.666667pt;}
.y2e_c00194{bottom:141.253333pt;}
.y2d_c00194{bottom:160.453333pt;}
.y2b_c00194{bottom:177.786667pt;}
.y2a_c00194{bottom:178.386667pt;}
.y2c_c00194{bottom:179.053333pt;}
.y28_c00194{bottom:196.666667pt;}
.y29_c00194{bottom:197.586667pt;}
.y27_c00194{bottom:215.853333pt;}
.y26_c00194{bottom:234.386667pt;}
.y25_c00194{bottom:253.586667pt;}
.y24_c00194{bottom:272.186667pt;}
.y21_c00194{bottom:291.333333pt;}
.y22_c00194{bottom:291.666667pt;}
.y23_c00194{bottom:292.000000pt;}
.y20_c00194{bottom:309.586667pt;}
.y1f_c00194{bottom:310.186667pt;}
.y1d_c00194{bottom:328.800000pt;}
.y1e_c00194{bottom:329.466667pt;}
.y1c_c00194{bottom:347.666667pt;}
.y1a_c00194{bottom:366.253333pt;}
.y1b_c00194{bottom:366.853333pt;}
.y19_c00194{bottom:385.120000pt;}
.y18_c00194{bottom:404.000000pt;}
.y17_c00194{bottom:423.186667pt;}
.y16_c00194{bottom:442.386667pt;}
.y15_c00194{bottom:461.586667pt;}
.y14_c00194{bottom:480.453333pt;}
.y13_c00194{bottom:499.053333pt;}
.y12_c00194{bottom:499.666667pt;}
.y10_c00194{bottom:514.386667pt;}
.y11_c00194{bottom:518.253333pt;}
.yf_c00194{bottom:537.453333pt;}
.ye_c00194{bottom:556.333333pt;}
.yc_c00194{bottom:557.586667pt;}
.yb_c00194{bottom:575.520000pt;}
.ya_c00194{bottom:594.386667pt;}
.y9_c00194{bottom:613.920000pt;}
.y5_c00194{bottom:633.120000pt;}
.y6_c00194{bottom:652.333333pt;}
.y8_c00194{bottom:668.333333pt;}
.y7_c00194{bottom:671.520000pt;}
.y33_c00194{bottom:766.853333pt;}
.y4_c00194{bottom:771.333333pt;}
.y3_c00194{bottom:870.520000pt;}
.y2_c00194{bottom:965.933333pt;}
.y1_c00194{bottom:971.333333pt;}
.yd_c00194{bottom:1044.000000pt;}
.h5_c00194{height:20.937500pt;}
.h6_c00194{height:36.640625pt;}
.h1_c00194{height:53.750000pt;}
.h7_c00194{height:62.812500pt;}
.h2_c00194{height:68.046875pt;}
.h4_c00194{height:69.875000pt;}
.h3_c00194{height:139.062500pt;}
.h0_c00194{height:1044.000000pt;}
.w0_c00194{width:650.646400pt;}
.w1_c00194{width:650.666667pt;}
.x3_c00194{left:-18.897600pt;}
.x9_c00194{left:-13.764267pt;}
.xa_c00194{left:-10.564267pt;}
.xb_c00194{left:-9.630933pt;}
.x0_c00194{left:0.000000pt;}
.x10_c00194{left:45.435733pt;}
.xf_c00194{left:46.369067pt;}
.xc_c00194{left:47.369067pt;}
.x5_c00194{left:48.635733pt;}
.x6_c00194{left:49.569067pt;}
.x4_c00194{left:52.769067pt;}
.x19_c00194{left:76.435733pt;}
.x7_c00194{left:78.702400pt;}
.x13_c00194{left:115.169067pt;}
.x1b_c00194{left:134.702400pt;}
.x15_c00194{left:139.835733pt;}
.x1c_c00194{left:161.889067pt;}
.x1_c00194{left:246.369067pt;}
.x16_c00194{left:249.235733pt;}
.x1a_c00194{left:250.835733pt;}
.x1d_c00194{left:278.035733pt;}
.xd_c00194{left:442.235733pt;}
.xe_c00194{left:473.569067pt;}
.x1e_c00194{left:493.769067pt;}
.x17_c00194{left:512.302400pt;}
.x18_c00194{left:527.035733pt;}
.x11_c00194{left:536.635733pt;}
.x12_c00194{left:545.902400pt;}
.x14_c00194{left:551.969067pt;}
.x2_c00194{left:561.569067pt;}
.x8_c00194{left:574.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_31d530fc17ad4cfbad1733c6.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00195;src:url('chunks/assets/font_84fb35b9553492b971bc7f64.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00195;src:url('chunks/assets/font_00f99a85de9a30a122b66f5e.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00195{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.mf_c00195{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m11_c00195{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mb_c00195{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00195{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma_c00195{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1c_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);}
.m4_c00195{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3_c00195{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me_c00195{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00195{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00195{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00195{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00195{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00195{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c00195{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00195{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13_c00195{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00195{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00195{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00195{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m19_c00195{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00195{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m17_c00195{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m18_c00195{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5_c00195{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m15_c00195{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m16_c00195{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.md_c00195{transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);}
.m12_c00195{transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c00195{transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c00195{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00195{word-spacing:0.000000px;}
.fc0_c00195{color:transparent;}
.fs1_c00195{font-size:54.000000px;}
.fs4_c00195{font-size:60.000000px;}
.fs0_c00195{font-size:66.000000px;}
.fs3_c00195{font-size:78.000000px;}
.fs2_c00195{font-size:84.000000px;}
.y0_c00195{bottom:0.000000px;}
.y29_c00195{bottom:504.510000px;}
.y28_c00195{bottom:534.060000px;}
.y27_c00195{bottom:535.875000px;}
.y26_c00195{bottom:572.535000px;}
.y25_c00195{bottom:617.910000px;}
.y24_c00195{bottom:633.000000px;}
.y23_c00195{bottom:634.125000px;}
.y22_c00195{bottom:635.535000px;}
.y21_c00195{bottom:636.285000px;}
.y20_c00195{bottom:638.085000px;}
.y1f_c00195{bottom:655.335000px;}
.y1d_c00195{bottom:657.510000px;}
.y1c_c00195{bottom:657.885000px;}
.y1e_c00195{bottom:658.635000px;}
.y1b_c00195{bottom:680.910000px;}
.y1a_c00195{bottom:702.210000px;}
.y19_c00195{bottom:723.750000px;}
.y18_c00195{bottom:745.035000px;}
.y17_c00195{bottom:746.085000px;}
.y16_c00195{bottom:767.010000px;}
.y15_c00195{bottom:788.250000px;}
.y13_c00195{bottom:788.550000px;}
.y14_c00195{bottom:788.625000px;}
.y10_c00195{bottom:809.400000px;}
.y11_c00195{bottom:809.460000px;}
.y12_c00195{bottom:809.835000px;}
.yf_c00195{bottom:830.310000px;}
.ye_c00195{bottom:852.300000px;}
.yd_c00195{bottom:873.900000px;}
.yc_c00195{bottom:895.500000px;}
.yb_c00195{bottom:917.400000px;}
.ya_c00195{bottom:939.060000px;}
.y9_c00195{bottom:960.675000px;}
.y8_c00195{bottom:981.900000px;}
.y7_c00195{bottom:1003.125000px;}
.y4_c00195{bottom:1020.750000px;}
.y5_c00195{bottom:1024.050000px;}
.y6_c00195{bottom:1025.775000px;}
.y3_c00195{bottom:1045.650000px;}
.y1_c00195{bottom:1098.150000px;}
.y2_c00195{bottom:1103.250000px;}
.h2_c00195{height:54.421875px;}
.h7_c00195{height:58.886719px;}
.h8_c00195{height:60.468750px;}
.h5_c00195{height:64.743164px;}
.h1_c00195{height:64.775391px;}
.h6_c00195{height:76.514648px;}
.h3_c00195{height:82.441406px;}
.h4_c00195{height:84.656250px;}
.h0_c00195{height:1174.500000px;}
.w0_c00195{width:731.977200px;}
.w1_c00195{width:732.000000px;}
.x0_c00195{left:0.000000px;}
.x18_c00195{left:70.540200px;}
.x12_c00195{left:71.590200px;}
.x11_c00195{left:73.090200px;}
.xe_c00195{left:74.140200px;}
.x8_c00195{left:76.675200px;}
.x5_c00195{left:78.490200px;}
.x13_c00195{left:91.765200px;}
.x1d_c00195{left:93.940200px;}
.xd_c00195{left:95.365200px;}
.x9_c00195{left:97.540200px;}
.x1_c00195{left:98.590200px;}
.x4_c00195{left:109.090200px;}
.xa_c00195{left:110.890200px;}
.x14_c00195{left:114.790200px;}
.xf_c00195{left:115.915200px;}
.xb_c00195{left:116.965200px;}
.x2_c00195{left:124.915200px;}
.x15_c00195{left:125.965200px;}
.x10_c00195{left:137.140200px;}
.xc_c00195{left:138.565200px;}
.x16_c00195{left:158.365200px;}
.x3_c00195{left:298.090200px;}
.x6_c00195{left:316.090200px;}
.x7_c00195{left:362.890200px;}
.x20_c00195{left:364.690200px;}
.x19_c00195{left:386.965200px;}
.x1e_c00195{left:400.690200px;}
.x1a_c00195{left:416.890200px;}
.x1f_c00195{left:436.315200px;}
.x1b_c00195{left:554.365200px;}
.x1c_c00195{left:589.315200px;}
.x17_c00195{left:599.740200px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls0_c00195{letter-spacing:0.000000pt;}
.ws0_c00195{word-spacing:0.000000pt;}
.fs1_c00195{font-size:48.000000pt;}
.fs4_c00195{font-size:53.333333pt;}
.fs0_c00195{font-size:58.666667pt;}
.fs3_c00195{font-size:69.333333pt;}
.fs2_c00195{font-size:74.666667pt;}
.y0_c00195{bottom:0.000000pt;}
.y29_c00195{bottom:448.453333pt;}
.y28_c00195{bottom:474.720000pt;}
.y27_c00195{bottom:476.333333pt;}
.y26_c00195{bottom:508.920000pt;}
.y25_c00195{bottom:549.253333pt;}
.y24_c00195{bottom:562.666667pt;}
.y23_c00195{bottom:563.666667pt;}
.y22_c00195{bottom:564.920000pt;}
.y21_c00195{bottom:565.586667pt;}
.y20_c00195{bottom:567.186667pt;}
.y1f_c00195{bottom:582.520000pt;}
.y1d_c00195{bottom:584.453333pt;}
.y1c_c00195{bottom:584.786667pt;}
.y1e_c00195{bottom:585.453333pt;}
.y1b_c00195{bottom:605.253333pt;}
.y1a_c00195{bottom:624.186667pt;}
.y19_c00195{bottom:643.333333pt;}
.y18_c00195{bottom:662.253333pt;}
.y17_c00195{bottom:663.186667pt;}
.y16_c00195{bottom:681.786667pt;}
.y15_c00195{bottom:700.666667pt;}
.y13_c00195{bottom:700.933333pt;}
.y14_c00195{bottom:701.000000pt;}
.y10_c00195{bottom:719.466667pt;}
.y11_c00195{bottom:719.520000pt;}
.y12_c00195{bottom:719.853333pt;}
.yf_c00195{bottom:738.053333pt;}
.ye_c00195{bottom:757.600000pt;}
.yd_c00195{bottom:776.800000pt;}
.yc_c00195{bottom:796.000000pt;}
.yb_c00195{bottom:815.466667pt;}
.ya_c00195{bottom:834.720000pt;}
.y9_c00195{bottom:853.933333pt;}
.y8_c00195{bottom:872.800000pt;}
.y7_c00195{bottom:891.666667pt;}
.y4_c00195{bottom:907.333333pt;}
.y5_c00195{bottom:910.266667pt;}
.y6_c00195{bottom:911.800000pt;}
.y3_c00195{bottom:929.466667pt;}
.y1_c00195{bottom:976.133333pt;}
.y2_c00195{bottom:980.666667pt;}
.h2_c00195{height:48.375000pt;}
.h7_c00195{height:52.343750pt;}
.h8_c00195{height:53.750000pt;}
.h5_c00195{height:57.549479pt;}
.h1_c00195{height:57.578125pt;}
.h6_c00195{height:68.013021pt;}
.h3_c00195{height:73.281250pt;}
.h4_c00195{height:75.250000pt;}
.h0_c00195{height:1044.000000pt;}
.w0_c00195{width:650.646400pt;}
.w1_c00195{width:650.666667pt;}
.x0_c00195{left:0.000000pt;}
.x18_c00195{left:62.702400pt;}
.x12_c00195{left:63.635733pt;}
.x11_c00195{left:64.969067pt;}
.xe_c00195{left:65.902400pt;}
.x8_c00195{left:68.155733pt;}
.x5_c00195{left:69.769067pt;}
.x13_c00195{left:81.569067pt;}
.x1d_c00195{left:83.502400pt;}
.xd_c00195{left:84.769067pt;}
.x9_c00195{left:86.702400pt;}
.x1_c00195{left:87.635733pt;}
.x4_c00195{left:96.969067pt;}
.xa_c00195{left:98.569067pt;}
.x14_c00195{left:102.035733pt;}
.xf_c00195{left:103.035733pt;}
.xb_c00195{left:103.969067pt;}
.x2_c00195{left:111.035733pt;}
.x15_c00195{left:111.969067pt;}
.x10_c00195{left:121.902400pt;}
.xc_c00195{left:123.169067pt;}
.x16_c00195{left:140.769067pt;}
.x3_c00195{left:264.969067pt;}
.x6_c00195{left:280.969067pt;}
.x7_c00195{left:322.569067pt;}
.x20_c00195{left:324.169067pt;}
.x19_c00195{left:343.969067pt;}
.x1e_c00195{left:356.169067pt;}
.x1a_c00195{left:370.569067pt;}
.x1f_c00195{left:387.835733pt;}
.x1b_c00195{left:492.769067pt;}
.x1c_c00195{left:523.835733pt;}
.x17_c00195{left:533.102400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_684003114aab6d794dac027c.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00196;src:url('chunks/assets/font_68f7e6013c1aa3dcb019b2ba.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00196;src:url('chunks/assets/font_25a1538ac46988c753b299ad.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00196;src:url('chunks/assets/font_224a230fe685a38fe67aaf3d.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00196{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb_c00196{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m0_c00196{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m10_c00196{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m15_c00196{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m16_c00196{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00196{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m19_c00196{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c00196{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m14_c00196{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m12_c00196{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c00196{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m22_c00196{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c00196{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m25_c00196{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mf_c00196{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m21_c00196{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c00196{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00196{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00196{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00196{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c00196{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2_c00196{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00196{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00196{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00196{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00196{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m23_c00196{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00196{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m20_c00196{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m24_c00196{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c00196{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00196{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00196{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c00196{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m7_c00196{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4_c00196{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,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;}
.fc0_c00196{color:transparent;}
.fs4_c00196{font-size:48.000000px;}
.fs2_c00196{font-size:54.000000px;}
.fs6_c00196{font-size:60.000000px;}
.fs1_c00196{font-size:66.000000px;}
.fs3_c00196{font-size:72.000000px;}
.fs5_c00196{font-size:84.000000px;}
.fs0_c00196{font-size:204.000000px;}
.y0_c00196{bottom:0.000000px;}
.y42_c00196{bottom:77.535000px;}
.y3a_c00196{bottom:94.125000px;}
.y3b_c00196{bottom:95.535000px;}
.y3c_c00196{bottom:96.285000px;}
.y3d_c00196{bottom:97.410000px;}
.y3e_c00196{bottom:98.085000px;}
.y3f_c00196{bottom:98.835000px;}
.y40_c00196{bottom:99.885000px;}
.y41_c00196{bottom:100.635000px;}
.y37_c00196{bottom:112.785000px;}
.y38_c00196{bottom:116.085000px;}
.y39_c00196{bottom:117.510000px;}
.y36_c00196{bottom:129.000000px;}
.y35_c00196{bottom:147.060000px;}
.y34_c00196{bottom:163.635000px;}
.y33_c00196{bottom:178.410000px;}
.y32_c00196{bottom:196.410000px;}
.y31_c00196{bottom:211.875000px;}
.y2e_c00196{bottom:229.500000px;}
.y2f_c00196{bottom:230.910000px;}
.y30_c00196{bottom:232.785000px;}
.y2d_c00196{bottom:245.685000px;}
.y2b_c00196{bottom:262.560000px;}
.y2c_c00196{bottom:263.310000px;}
.y2a_c00196{bottom:280.275000px;}
.y29_c00196{bottom:297.210000px;}
.y28_c00196{bottom:314.460000px;}
.y27_c00196{bottom:366.285000px;}
.y26_c00196{bottom:387.585000px;}
.y25_c00196{bottom:409.125000px;}
.y24_c00196{bottom:409.185000px;}
.y23_c00196{bottom:409.500000px;}
.y22_c00196{bottom:430.410000px;}
.y21_c00196{bottom:451.635000px;}
.y20_c00196{bottom:473.250000px;}
.y1f_c00196{bottom:474.285000px;}
.y1d_c00196{bottom:494.835000px;}
.y1c_c00196{bottom:495.510000px;}
.y1e_c00196{bottom:495.885000px;}
.y1b_c00196{bottom:539.460000px;}
.y1a_c00196{bottom:564.285000px;}
.y19_c00196{bottom:576.885000px;}
.y18_c00196{bottom:577.635000px;}
.y17_c00196{bottom:590.625000px;}
.y16_c00196{bottom:603.510000px;}
.y15_c00196{bottom:646.710000px;}
.y14_c00196{bottom:662.625000px;}
.y13_c00196{bottom:679.500000px;}
.y12_c00196{bottom:681.510000px;}
.y11_c00196{bottom:682.710000px;}
.y10_c00196{bottom:697.500000px;}
.yf_c00196{bottom:713.685000px;}
.ye_c00196{bottom:716.160000px;}
.yd_c00196{bottom:717.285000px;}
.yc_c00196{bottom:731.700000px;}
.y8_c00196{bottom:744.585000px;}
.yb_c00196{bottom:747.585000px;}
.ya_c00196{bottom:748.950000px;}
.y9_c00196{bottom:750.825000px;}
.y7_c00196{bottom:764.085000px;}
.y6_c00196{bottom:764.760000px;}
.y5_c00196{bottom:767.325000px;}
.y4_c00196{bottom:782.760000px;}
.y3_c00196{bottom:786.435000px;}
.y2_c00196{bottom:787.500000px;}
.y1_c00196{bottom:858.060000px;}
.h5_c00196{height:48.375000px;}
.h3_c00196{height:52.971680px;}
.h8_c00196{height:58.886719px;}
.h2_c00196{height:64.775391px;}
.h4_c00196{height:70.628906px;}
.h9_c00196{height:70.664062px;}
.h6_c00196{height:82.441406px;}
.h7_c00196{height:84.656250px;}
.h1_c00196{height:200.214844px;}
.h0_c00196{height:1174.500000px;}
.w0_c00196{width:731.977200px;}
.w1_c00196{width:732.000000px;}
.x7_c00196{left:-21.259800px;}
.x0_c00196{left:0.000000px;}
.x1_c00196{left:73.390200px;}
.x16_c00196{left:75.175200px;}
.x1a_c00196{left:76.300200px;}
.x21_c00196{left:78.115200px;}
.x1b_c00196{left:93.550200px;}
.x4_c00196{left:98.590200px;}
.x1d_c00196{left:101.515200px;}
.x20_c00196{left:102.940200px;}
.x2_c00196{left:105.115200px;}
.x17_c00196{left:111.190200px;}
.x1c_c00196{left:130.690200px;}
.x15_c00196{left:178.540200px;}
.x18_c00196{left:179.965200px;}
.x24_c00196{left:210.190200px;}
.xc_c00196{left:228.940200px;}
.xd_c00196{left:231.490200px;}
.xa_c00196{left:254.140200px;}
.x12_c00196{left:256.990200px;}
.x3_c00196{left:261.340200px;}
.xb_c00196{left:271.090200px;}
.x13_c00196{left:282.190200px;}
.x25_c00196{left:294.490200px;}
.x19_c00196{left:324.715200px;}
.xf_c00196{left:382.990200px;}
.xe_c00196{left:404.590200px;}
.x8_c00196{left:411.490200px;}
.x26_c00196{left:413.590200px;}
.x9_c00196{left:431.965200px;}
.x27_c00196{left:473.365200px;}
.x22_c00196{left:495.715200px;}
.x1e_c00196{left:497.140200px;}
.x1f_c00196{left:514.090200px;}
.x11_c00196{left:541.765200px;}
.x28_c00196{left:560.890200px;}
.x23_c00196{left:581.740200px;}
.x5_c00196{left:590.740200px;}
.x29_c00196{left:593.965200px;}
.x6_c00196{left:608.740200px;}
.x2a_c00196{left:637.165200px;}
.x10_c00196{left:662.365200px;}
.x14_c00196{left:665.965200px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls0_c00196{letter-spacing:0.000000pt;}
.ws0_c00196{word-spacing:0.000000pt;}
.fs4_c00196{font-size:42.666667pt;}
.fs2_c00196{font-size:48.000000pt;}
.fs6_c00196{font-size:53.333333pt;}
.fs1_c00196{font-size:58.666667pt;}
.fs3_c00196{font-size:64.000000pt;}
.fs5_c00196{font-size:74.666667pt;}
.fs0_c00196{font-size:181.333333pt;}
.y0_c00196{bottom:0.000000pt;}
.y42_c00196{bottom:68.920000pt;}
.y3a_c00196{bottom:83.666667pt;}
.y3b_c00196{bottom:84.920000pt;}
.y3c_c00196{bottom:85.586667pt;}
.y3d_c00196{bottom:86.586667pt;}
.y3e_c00196{bottom:87.186667pt;}
.y3f_c00196{bottom:87.853333pt;}
.y40_c00196{bottom:88.786667pt;}
.y41_c00196{bottom:89.453333pt;}
.y37_c00196{bottom:100.253333pt;}
.y38_c00196{bottom:103.186667pt;}
.y39_c00196{bottom:104.453333pt;}
.y36_c00196{bottom:114.666667pt;}
.y35_c00196{bottom:130.720000pt;}
.y34_c00196{bottom:145.453333pt;}
.y33_c00196{bottom:158.586667pt;}
.y32_c00196{bottom:174.586667pt;}
.y31_c00196{bottom:188.333333pt;}
.y2e_c00196{bottom:204.000000pt;}
.y2f_c00196{bottom:205.253333pt;}
.y30_c00196{bottom:206.920000pt;}
.y2d_c00196{bottom:218.386667pt;}
.y2b_c00196{bottom:233.386667pt;}
.y2c_c00196{bottom:234.053333pt;}
.y2a_c00196{bottom:249.133333pt;}
.y29_c00196{bottom:264.186667pt;}
.y28_c00196{bottom:279.520000pt;}
.y27_c00196{bottom:325.586667pt;}
.y26_c00196{bottom:344.520000pt;}
.y25_c00196{bottom:363.666667pt;}
.y24_c00196{bottom:363.720000pt;}
.y23_c00196{bottom:364.000000pt;}
.y22_c00196{bottom:382.586667pt;}
.y21_c00196{bottom:401.453333pt;}
.y20_c00196{bottom:420.666667pt;}
.y1f_c00196{bottom:421.586667pt;}
.y1d_c00196{bottom:439.853333pt;}
.y1c_c00196{bottom:440.453333pt;}
.y1e_c00196{bottom:440.786667pt;}
.y1b_c00196{bottom:479.520000pt;}
.y1a_c00196{bottom:501.586667pt;}
.y19_c00196{bottom:512.786667pt;}
.y18_c00196{bottom:513.453333pt;}
.y17_c00196{bottom:525.000000pt;}
.y16_c00196{bottom:536.453333pt;}
.y15_c00196{bottom:574.853333pt;}
.y14_c00196{bottom:589.000000pt;}
.y13_c00196{bottom:604.000000pt;}
.y12_c00196{bottom:605.786667pt;}
.y11_c00196{bottom:606.853333pt;}
.y10_c00196{bottom:620.000000pt;}
.yf_c00196{bottom:634.386667pt;}
.ye_c00196{bottom:636.586667pt;}
.yd_c00196{bottom:637.586667pt;}
.yc_c00196{bottom:650.400000pt;}
.y8_c00196{bottom:661.853333pt;}
.yb_c00196{bottom:664.520000pt;}
.ya_c00196{bottom:665.733333pt;}
.y9_c00196{bottom:667.400000pt;}
.y7_c00196{bottom:679.186667pt;}
.y6_c00196{bottom:679.786667pt;}
.y5_c00196{bottom:682.066667pt;}
.y4_c00196{bottom:695.786667pt;}
.y3_c00196{bottom:699.053333pt;}
.y2_c00196{bottom:700.000000pt;}
.y1_c00196{bottom:762.720000pt;}
.h5_c00196{height:43.000000pt;}
.h3_c00196{height:47.085938pt;}
.h8_c00196{height:52.343750pt;}
.h2_c00196{height:57.578125pt;}
.h4_c00196{height:62.781250pt;}
.h9_c00196{height:62.812500pt;}
.h6_c00196{height:73.281250pt;}
.h7_c00196{height:75.250000pt;}
.h1_c00196{height:177.968750pt;}
.h0_c00196{height:1044.000000pt;}
.w0_c00196{width:650.646400pt;}
.w1_c00196{width:650.666667pt;}
.x7_c00196{left:-18.897600pt;}
.x0_c00196{left:0.000000pt;}
.x1_c00196{left:65.235733pt;}
.x16_c00196{left:66.822400pt;}
.x1a_c00196{left:67.822400pt;}
.x21_c00196{left:69.435733pt;}
.x1b_c00196{left:83.155733pt;}
.x4_c00196{left:87.635733pt;}
.x1d_c00196{left:90.235733pt;}
.x20_c00196{left:91.502400pt;}
.x2_c00196{left:93.435733pt;}
.x17_c00196{left:98.835733pt;}
.x1c_c00196{left:116.169067pt;}
.x15_c00196{left:158.702400pt;}
.x18_c00196{left:159.969067pt;}
.x24_c00196{left:186.835733pt;}
.xc_c00196{left:203.502400pt;}
.xd_c00196{left:205.769067pt;}
.xa_c00196{left:225.902400pt;}
.x12_c00196{left:228.435733pt;}
.x3_c00196{left:232.302400pt;}
.xb_c00196{left:240.969067pt;}
.x13_c00196{left:250.835733pt;}
.x25_c00196{left:261.769067pt;}
.x19_c00196{left:288.635733pt;}
.xf_c00196{left:340.435733pt;}
.xe_c00196{left:359.635733pt;}
.x8_c00196{left:365.769067pt;}
.x26_c00196{left:367.635733pt;}
.x9_c00196{left:383.969067pt;}
.x27_c00196{left:420.769067pt;}
.x22_c00196{left:440.635733pt;}
.x1e_c00196{left:441.902400pt;}
.x1f_c00196{left:456.969067pt;}
.x11_c00196{left:481.569067pt;}
.x28_c00196{left:498.569067pt;}
.x23_c00196{left:517.102400pt;}
.x5_c00196{left:525.102400pt;}
.x29_c00196{left:527.969067pt;}
.x6_c00196{left:541.102400pt;}
.x2a_c00196{left:566.369067pt;}
.x10_c00196{left:588.769067pt;}
.x14_c00196{left:591.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63091c2d544157ad41b48b7b.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00197;src:url('chunks/assets/font_1428e0931f5b769499a4e29f.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00197;src:url('chunks/assets/font_0d8af0adaf89f9952c89a489.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00197{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c00197{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m15_c00197{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4_c00197{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c00197{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c00197{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00197{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00197{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c00197{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00197{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00197{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00197{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17_c00197{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c00197{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c00197{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00197{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c00197{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00197{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00197{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00197{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00197{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00197{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00197{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m19_c00197{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m18_c00197{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00197{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00197{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c00197{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00197{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00197{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00197{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c00197{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00197{color:transparent;}
.fs1_c00197{font-size:60.000000px;}
.fs3_c00197{font-size:66.000000px;}
.fs0_c00197{font-size:72.000000px;}
.fs2_c00197{font-size:78.000000px;}
.fs4_c00197{font-size:84.000000px;}
.y0_c00197{bottom:0.000000px;}
.y49_c00197{bottom:97.335000px;}
.y48_c00197{bottom:100.935000px;}
.y47_c00197{bottom:104.910000px;}
.y46_c00197{bottom:110.685000px;}
.y45_c00197{bottom:117.885000px;}
.y44_c00197{bottom:123.960000px;}
.y43_c00197{bottom:128.685000px;}
.y42_c00197{bottom:130.875000px;}
.y41_c00197{bottom:152.460000px;}
.y40_c00197{bottom:163.260000px;}
.y3f_c00197{bottom:164.685000px;}
.y3e_c00197{bottom:169.335000px;}
.y3d_c00197{bottom:187.035000px;}
.y3c_c00197{bottom:198.135000px;}
.y3b_c00197{bottom:201.060000px;}
.y3a_c00197{bottom:206.085000px;}
.y39_c00197{bottom:222.960000px;}
.y38_c00197{bottom:233.085000px;}
.y37_c00197{bottom:235.185000px;}
.y36_c00197{bottom:241.035000px;}
.y35_c00197{bottom:241.710000px;}
.y34_c00197{bottom:242.760000px;}
.y33_c00197{bottom:309.435000px;}
.y32_c00197{bottom:330.960000px;}
.y31_c00197{bottom:352.935000px;}
.y30_c00197{bottom:377.460000px;}
.y2f_c00197{bottom:396.210000px;}
.y2e_c00197{bottom:418.500000px;}
.y2d_c00197{bottom:439.710000px;}
.y2c_c00197{bottom:461.685000px;}
.y2b_c00197{bottom:485.085000px;}
.y2a_c00197{bottom:504.885000px;}
.y29_c00197{bottom:526.875000px;}
.y28_c00197{bottom:548.460000px;}
.y27_c00197{bottom:570.435000px;}
.y26_c00197{bottom:591.660000px;}
.y25_c00197{bottom:613.260000px;}
.y24_c00197{bottom:635.250000px;}
.y23_c00197{bottom:656.835000px;}
.y22_c00197{bottom:678.435000px;}
.y1e_c00197{bottom:699.660000px;}
.y1f_c00197{bottom:700.035000px;}
.y20_c00197{bottom:700.710000px;}
.y21_c00197{bottom:701.085000px;}
.y1d_c00197{bottom:719.460000px;}
.y1b_c00197{bottom:742.875000px;}
.y1c_c00197{bottom:744.660000px;}
.y1a_c00197{bottom:764.460000px;}
.y14_c00197{bottom:783.885000px;}
.y15_c00197{bottom:785.310000px;}
.y16_c00197{bottom:785.685000px;}
.y17_c00197{bottom:786.435000px;}
.y18_c00197{bottom:788.175000px;}
.y19_c00197{bottom:788.550000px;}
.y13_c00197{bottom:806.925000px;}
.y12_c00197{bottom:829.185000px;}
.y11_c00197{bottom:850.125000px;}
.yf_c00197{bottom:861.300000px;}
.y10_c00197{bottom:871.710000px;}
.ye_c00197{bottom:893.025000px;}
.yd_c00197{bottom:914.250000px;}
.yc_c00197{bottom:932.925000px;}
.yb_c00197{bottom:958.185000px;}
.ya_c00197{bottom:978.675000px;}
.y9_c00197{bottom:1000.275000px;}
.y8_c00197{bottom:1021.500000px;}
.y4_c00197{bottom:1034.835000px;}
.y5_c00197{bottom:1036.275000px;}
.y6_c00197{bottom:1038.750000px;}
.y7_c00197{bottom:1044.525000px;}
.y1_c00197{bottom:1095.960000px;}
.y3_c00197{bottom:1103.625000px;}
.y2_c00197{bottom:1110.210000px;}
.h2_c00197{height:58.886719px;}
.h5_c00197{height:64.775391px;}
.h3_c00197{height:70.664062px;}
.h1_c00197{height:72.562500px;}
.h4_c00197{height:76.514648px;}
.h6_c00197{height:82.400391px;}
.h0_c00197{height:1174.500000px;}
.w0_c00197{width:731.977200px;}
.w1_c00197{width:732.000000px;}
.x0_c00197{left:0.000000px;}
.x1f_c00197{left:45.715200px;}
.x1e_c00197{left:46.765200px;}
.x1b_c00197{left:47.890200px;}
.x14_c00197{left:48.940200px;}
.xc_c00197{left:49.990200px;}
.xb_c00197{left:51.790200px;}
.x9_c00197{left:52.915200px;}
.x8_c00197{left:53.965200px;}
.xd_c00197{left:56.515200px;}
.x20_c00197{left:61.540200px;}
.x25_c00197{left:69.115200px;}
.x28_c00197{left:70.165200px;}
.x1_c00197{left:73.390200px;}
.x1d_c00197{left:76.675200px;}
.x1c_c00197{left:77.740200px;}
.xe_c00197{left:79.915200px;}
.xa_c00197{left:82.390200px;}
.x4_c00197{left:84.175200px;}
.x2c_c00197{left:85.990200px;}
.x21_c00197{left:97.540200px;}
.x2_c00197{left:100.765200px;}
.x5_c00197{left:114.115200px;}
.x22_c00197{left:120.190200px;}
.x23_c00197{left:166.690200px;}
.x2e_c00197{left:186.790200px;}
.x6_c00197{left:223.165200px;}
.x26_c00197{left:224.290200px;}
.xf_c00197{left:228.940200px;}
.x7_c00197{left:246.940200px;}
.x2f_c00197{left:254.515200px;}
.x3_c00197{left:273.565200px;}
.x10_c00197{left:292.315200px;}
.x11_c00197{left:334.090200px;}
.x2d_c00197{left:336.940200px;}
.x29_c00197{left:358.165200px;}
.x16_c00197{left:373.990200px;}
.x17_c00197{left:450.715200px;}
.x27_c00197{left:454.690200px;}
.x12_c00197{left:455.740200px;}
.x2a_c00197{left:473.740200px;}
.x18_c00197{left:477.340200px;}
.x19_c00197{left:566.290200px;}
.x24_c00197{left:594.340200px;}
.x1a_c00197{left:614.140200px;}
.x15_c00197{left:623.890200px;}
.x2b_c00197{left:626.365200px;}
.x13_c00197{left:642.565200px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls0_c00197{letter-spacing:0.000000pt;}
.ws0_c00197{word-spacing:0.000000pt;}
.fs1_c00197{font-size:53.333333pt;}
.fs3_c00197{font-size:58.666667pt;}
.fs0_c00197{font-size:64.000000pt;}
.fs2_c00197{font-size:69.333333pt;}
.fs4_c00197{font-size:74.666667pt;}
.y0_c00197{bottom:0.000000pt;}
.y49_c00197{bottom:86.520000pt;}
.y48_c00197{bottom:89.720000pt;}
.y47_c00197{bottom:93.253333pt;}
.y46_c00197{bottom:98.386667pt;}
.y45_c00197{bottom:104.786667pt;}
.y44_c00197{bottom:110.186667pt;}
.y43_c00197{bottom:114.386667pt;}
.y42_c00197{bottom:116.333333pt;}
.y41_c00197{bottom:135.520000pt;}
.y40_c00197{bottom:145.120000pt;}
.y3f_c00197{bottom:146.386667pt;}
.y3e_c00197{bottom:150.520000pt;}
.y3d_c00197{bottom:166.253333pt;}
.y3c_c00197{bottom:176.120000pt;}
.y3b_c00197{bottom:178.720000pt;}
.y3a_c00197{bottom:183.186667pt;}
.y39_c00197{bottom:198.186667pt;}
.y38_c00197{bottom:207.186667pt;}
.y37_c00197{bottom:209.053333pt;}
.y36_c00197{bottom:214.253333pt;}
.y35_c00197{bottom:214.853333pt;}
.y34_c00197{bottom:215.786667pt;}
.y33_c00197{bottom:275.053333pt;}
.y32_c00197{bottom:294.186667pt;}
.y31_c00197{bottom:313.720000pt;}
.y30_c00197{bottom:335.520000pt;}
.y2f_c00197{bottom:352.186667pt;}
.y2e_c00197{bottom:372.000000pt;}
.y2d_c00197{bottom:390.853333pt;}
.y2c_c00197{bottom:410.386667pt;}
.y2b_c00197{bottom:431.186667pt;}
.y2a_c00197{bottom:448.786667pt;}
.y29_c00197{bottom:468.333333pt;}
.y28_c00197{bottom:487.520000pt;}
.y27_c00197{bottom:507.053333pt;}
.y26_c00197{bottom:525.920000pt;}
.y25_c00197{bottom:545.120000pt;}
.y24_c00197{bottom:564.666667pt;}
.y23_c00197{bottom:583.853333pt;}
.y22_c00197{bottom:603.053333pt;}
.y1e_c00197{bottom:621.920000pt;}
.y1f_c00197{bottom:622.253333pt;}
.y20_c00197{bottom:622.853333pt;}
.y21_c00197{bottom:623.186667pt;}
.y1d_c00197{bottom:639.520000pt;}
.y1b_c00197{bottom:660.333333pt;}
.y1c_c00197{bottom:661.920000pt;}
.y1a_c00197{bottom:679.520000pt;}
.y14_c00197{bottom:696.786667pt;}
.y15_c00197{bottom:698.053333pt;}
.y16_c00197{bottom:698.386667pt;}
.y17_c00197{bottom:699.053333pt;}
.y18_c00197{bottom:700.600000pt;}
.y19_c00197{bottom:700.933333pt;}
.y13_c00197{bottom:717.266667pt;}
.y12_c00197{bottom:737.053333pt;}
.y11_c00197{bottom:755.666667pt;}
.yf_c00197{bottom:765.600000pt;}
.y10_c00197{bottom:774.853333pt;}
.ye_c00197{bottom:793.800000pt;}
.yd_c00197{bottom:812.666667pt;}
.yc_c00197{bottom:829.266667pt;}
.yb_c00197{bottom:851.720000pt;}
.ya_c00197{bottom:869.933333pt;}
.y9_c00197{bottom:889.133333pt;}
.y8_c00197{bottom:908.000000pt;}
.y4_c00197{bottom:919.853333pt;}
.y5_c00197{bottom:921.133333pt;}
.y6_c00197{bottom:923.333333pt;}
.y7_c00197{bottom:928.466667pt;}
.y1_c00197{bottom:974.186667pt;}
.y3_c00197{bottom:981.000000pt;}
.y2_c00197{bottom:986.853333pt;}
.h2_c00197{height:52.343750pt;}
.h5_c00197{height:57.578125pt;}
.h3_c00197{height:62.812500pt;}
.h1_c00197{height:64.500000pt;}
.h4_c00197{height:68.013021pt;}
.h6_c00197{height:73.244792pt;}
.h0_c00197{height:1044.000000pt;}
.w0_c00197{width:650.646400pt;}
.w1_c00197{width:650.666667pt;}
.x0_c00197{left:0.000000pt;}
.x1f_c00197{left:40.635733pt;}
.x1e_c00197{left:41.569067pt;}
.x1b_c00197{left:42.569067pt;}
.x14_c00197{left:43.502400pt;}
.xc_c00197{left:44.435733pt;}
.xb_c00197{left:46.035733pt;}
.x9_c00197{left:47.035733pt;}
.x8_c00197{left:47.969067pt;}
.xd_c00197{left:50.235733pt;}
.x20_c00197{left:54.702400pt;}
.x25_c00197{left:61.435733pt;}
.x28_c00197{left:62.369067pt;}
.x1_c00197{left:65.235733pt;}
.x1d_c00197{left:68.155733pt;}
.x1c_c00197{left:69.102400pt;}
.xe_c00197{left:71.035733pt;}
.xa_c00197{left:73.235733pt;}
.x4_c00197{left:74.822400pt;}
.x2c_c00197{left:76.435733pt;}
.x21_c00197{left:86.702400pt;}
.x2_c00197{left:89.569067pt;}
.x5_c00197{left:101.435733pt;}
.x22_c00197{left:106.835733pt;}
.x23_c00197{left:148.169067pt;}
.x2e_c00197{left:166.035733pt;}
.x6_c00197{left:198.369067pt;}
.x26_c00197{left:199.369067pt;}
.xf_c00197{left:203.502400pt;}
.x7_c00197{left:219.502400pt;}
.x2f_c00197{left:226.235733pt;}
.x3_c00197{left:243.169067pt;}
.x10_c00197{left:259.835733pt;}
.x11_c00197{left:296.969067pt;}
.x2d_c00197{left:299.502400pt;}
.x29_c00197{left:318.369067pt;}
.x16_c00197{left:332.435733pt;}
.x17_c00197{left:400.635733pt;}
.x27_c00197{left:404.169067pt;}
.x12_c00197{left:405.102400pt;}
.x2a_c00197{left:421.102400pt;}
.x18_c00197{left:424.302400pt;}
.x19_c00197{left:503.369067pt;}
.x24_c00197{left:528.302400pt;}
.x1a_c00197{left:545.902400pt;}
.x15_c00197{left:554.569067pt;}
.x2b_c00197{left:556.769067pt;}
.x13_c00197{left:571.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b737b08324df17b933cc06f6.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00198;src:url('chunks/assets/font_9c4f479b2cacebeb6d4115cd.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00198;src:url('chunks/assets/font_e0613d1dd2b65ee4bb280ece.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00198;src:url('chunks/assets/font_c5fb16a87fd51666f48399f2.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00198{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3_c00198{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m14_c00198{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m13_c00198{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1_c00198{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf_c00198{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00198{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c00198{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c00198{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00198{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c00198{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00198{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00198{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00198{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00198{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00198{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c00198{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00198{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c00198{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00198{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c00198{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2_c00198{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.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;}
}
.ws0_c00198{word-spacing:0.000000px;}
.fc0_c00198{color:transparent;}
.fs1_c00198{font-size:54.000000px;}
.fs0_c00198{font-size:66.000000px;}
.fs2_c00198{font-size:72.000000px;}
.fs3_c00198{font-size:78.000000px;}
.y0_c00198{bottom:0.000000px;}
.y30_c00198{bottom:309.060000px;}
.y31_c00198{bottom:310.185000px;}
.y2f_c00198{bottom:327.060000px;}
.y2e_c00198{bottom:344.025000px;}
.y2d_c00198{bottom:344.310000px;}
.y2c_c00198{bottom:360.525000px;}
.y2a_c00198{bottom:377.460000px;}
.y2b_c00198{bottom:381.060000px;}
.y29_c00198{bottom:394.710000px;}
.y28_c00198{bottom:411.660000px;}
.y25_c00198{bottom:428.535000px;}
.y26_c00198{bottom:428.910000px;}
.y27_c00198{bottom:430.410000px;}
.y24_c00198{bottom:490.125000px;}
.y23_c00198{bottom:512.085000px;}
.y22_c00198{bottom:532.935000px;}
.y21_c00198{bottom:554.910000px;}
.y20_c00198{bottom:576.135000px;}
.y1f_c00198{bottom:597.750000px;}
.y1e_c00198{bottom:619.035000px;}
.y1d_c00198{bottom:640.260000px;}
.y1c_c00198{bottom:661.875000px;}
.y1b_c00198{bottom:683.085000px;}
.y1a_c00198{bottom:683.460000px;}
.y19_c00198{bottom:683.760000px;}
.y18_c00198{bottom:704.685000px;}
.y17_c00198{bottom:725.535000px;}
.y16_c00198{bottom:725.910000px;}
.y15_c00198{bottom:727.035000px;}
.y14_c00198{bottom:747.885000px;}
.y13_c00198{bottom:769.875000px;}
.y12_c00198{bottom:790.710000px;}
.y11_c00198{bottom:812.310000px;}
.y10_c00198{bottom:834.300000px;}
.yf_c00198{bottom:855.525000px;}
.ye_c00198{bottom:877.125000px;}
.yd_c00198{bottom:895.875000px;}
.yc_c00198{bottom:896.925000px;}
.yb_c00198{bottom:898.710000px;}
.ya_c00198{bottom:919.650000px;}
.y9_c00198{bottom:940.500000px;}
.y8_c00198{bottom:962.085000px;}
.y7_c00198{bottom:983.310000px;}
.y6_c00198{bottom:1004.925000px;}
.y5_c00198{bottom:1026.210000px;}
.y4_c00198{bottom:1082.310000px;}
.y1_c00198{bottom:1085.550000px;}
.y2_c00198{bottom:1085.925000px;}
.y3_c00198{bottom:1096.335000px;}
.h2_c00198{height:54.421875px;}
.h5_c00198{height:64.775391px;}
.h1_c00198{height:66.515625px;}
.h4_c00198{height:70.664062px;}
.h3_c00198{height:72.562500px;}
.h6_c00198{height:76.514648px;}
.h7_c00198{height:76.552734px;}
.h8_c00198{height:78.609375px;}
.h0_c00198{height:1174.500000px;}
.w0_c00198{width:731.977200px;}
.w1_c00198{width:732.000000px;}
.x0_c00198{left:0.000000px;}
.x13_c00198{left:66.190200px;}
.x18_c00198{left:67.315200px;}
.xc_c00198{left:68.740200px;}
.xa_c00198{left:71.965200px;}
.x6_c00198{left:73.390200px;}
.x5_c00198{left:78.490200px;}
.x14_c00198{left:83.515200px;}
.x12_c00198{left:98.590200px;}
.xb_c00198{left:101.890200px;}
.x7_c00198{left:105.490200px;}
.x1a_c00198{left:119.890200px;}
.x15_c00198{left:121.690200px;}
.x10_c00198{left:221.740200px;}
.x1_c00198{left:286.165200px;}
.x2_c00198{left:312.490200px;}
.x16_c00198{left:357.790200px;}
.xd_c00198{left:364.690200px;}
.x11_c00198{left:368.965200px;}
.x8_c00198{left:388.765200px;}
.x1b_c00198{left:409.315200px;}
.x3_c00198{left:481.315200px;}
.x17_c00198{left:494.290200px;}
.xe_c00198{left:495.340200px;}
.xf_c00198{left:522.715200px;}
.x4_c00198{left:643.690200px;}
.x19_c00198{left:647.590200px;}
.x9_c00198{left:673.540200px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls0_c00198{letter-spacing:0.000000pt;}
.ws0_c00198{word-spacing:0.000000pt;}
.fs1_c00198{font-size:48.000000pt;}
.fs0_c00198{font-size:58.666667pt;}
.fs2_c00198{font-size:64.000000pt;}
.fs3_c00198{font-size:69.333333pt;}
.y0_c00198{bottom:0.000000pt;}
.y30_c00198{bottom:274.720000pt;}
.y31_c00198{bottom:275.720000pt;}
.y2f_c00198{bottom:290.720000pt;}
.y2e_c00198{bottom:305.800000pt;}
.y2d_c00198{bottom:306.053333pt;}
.y2c_c00198{bottom:320.466667pt;}
.y2a_c00198{bottom:335.520000pt;}
.y2b_c00198{bottom:338.720000pt;}
.y29_c00198{bottom:350.853333pt;}
.y28_c00198{bottom:365.920000pt;}
.y25_c00198{bottom:380.920000pt;}
.y26_c00198{bottom:381.253333pt;}
.y27_c00198{bottom:382.586667pt;}
.y24_c00198{bottom:435.666667pt;}
.y23_c00198{bottom:455.186667pt;}
.y22_c00198{bottom:473.720000pt;}
.y21_c00198{bottom:493.253333pt;}
.y20_c00198{bottom:512.120000pt;}
.y1f_c00198{bottom:531.333333pt;}
.y1e_c00198{bottom:550.253333pt;}
.y1d_c00198{bottom:569.120000pt;}
.y1c_c00198{bottom:588.333333pt;}
.y1b_c00198{bottom:607.186667pt;}
.y1a_c00198{bottom:607.520000pt;}
.y19_c00198{bottom:607.786667pt;}
.y18_c00198{bottom:626.386667pt;}
.y17_c00198{bottom:644.920000pt;}
.y16_c00198{bottom:645.253333pt;}
.y15_c00198{bottom:646.253333pt;}
.y14_c00198{bottom:664.786667pt;}
.y13_c00198{bottom:684.333333pt;}
.y12_c00198{bottom:702.853333pt;}
.y11_c00198{bottom:722.053333pt;}
.y10_c00198{bottom:741.600000pt;}
.yf_c00198{bottom:760.466667pt;}
.ye_c00198{bottom:779.666667pt;}
.yd_c00198{bottom:796.333333pt;}
.yc_c00198{bottom:797.266667pt;}
.yb_c00198{bottom:798.853333pt;}
.ya_c00198{bottom:817.466667pt;}
.y9_c00198{bottom:836.000000pt;}
.y8_c00198{bottom:855.186667pt;}
.y7_c00198{bottom:874.053333pt;}
.y6_c00198{bottom:893.266667pt;}
.y5_c00198{bottom:912.186667pt;}
.y4_c00198{bottom:962.053333pt;}
.y1_c00198{bottom:964.933333pt;}
.y2_c00198{bottom:965.266667pt;}
.y3_c00198{bottom:974.520000pt;}
.h2_c00198{height:48.375000pt;}
.h5_c00198{height:57.578125pt;}
.h1_c00198{height:59.125000pt;}
.h4_c00198{height:62.812500pt;}
.h3_c00198{height:64.500000pt;}
.h6_c00198{height:68.013021pt;}
.h7_c00198{height:68.046875pt;}
.h8_c00198{height:69.875000pt;}
.h0_c00198{height:1044.000000pt;}
.w0_c00198{width:650.646400pt;}
.w1_c00198{width:650.666667pt;}
.x0_c00198{left:0.000000pt;}
.x13_c00198{left:58.835733pt;}
.x18_c00198{left:59.835733pt;}
.xc_c00198{left:61.102400pt;}
.xa_c00198{left:63.969067pt;}
.x6_c00198{left:65.235733pt;}
.x5_c00198{left:69.769067pt;}
.x14_c00198{left:74.235733pt;}
.x12_c00198{left:87.635733pt;}
.xb_c00198{left:90.569067pt;}
.x7_c00198{left:93.769067pt;}
.x1a_c00198{left:106.569067pt;}
.x15_c00198{left:108.169067pt;}
.x10_c00198{left:197.102400pt;}
.x1_c00198{left:254.369067pt;}
.x2_c00198{left:277.769067pt;}
.x16_c00198{left:318.035733pt;}
.xd_c00198{left:324.169067pt;}
.x11_c00198{left:327.969067pt;}
.x8_c00198{left:345.569067pt;}
.x1b_c00198{left:363.835733pt;}
.x3_c00198{left:427.835733pt;}
.x17_c00198{left:439.369067pt;}
.xe_c00198{left:440.302400pt;}
.xf_c00198{left:464.635733pt;}
.x4_c00198{left:572.169067pt;}
.x19_c00198{left:575.635733pt;}
.x9_c00198{left:598.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f196e7ccab5a967ca9e47f36.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00199;src:url('chunks/assets/font_b2b18d1d4565c536351453cb.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.402354;font-style:normal;font-weight:normal;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_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00199;src:url('chunks/assets/font_9b3b6fc835c3249dfdcdd41e.woff2')format("woff");}.ff4_c00199{font-family:ff4_c00199;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c00199{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6_c00199{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5_c00199{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00199{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00199{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c00199{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c00199{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1_c00199{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00199{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00199{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00199{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00199{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2_c00199{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m15_c00199{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00199{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00199{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00199{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00199{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00199{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c00199{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00199{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c00199{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m12_c00199{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m16_c00199{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m18_c00199{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c00199{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v1_c00199{vertical-align:-2.700000px;}
.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;}
}
.ws0_c00199{word-spacing:-16.500000px;}
.ws1_c00199{word-spacing:0.000000px;}
._1_c00199{margin-left:-9.455523px;}
._0_c00199{width:1.073250px;}
.fc0_c00199{color:transparent;}
.fs4_c00199{font-size:30.000000px;}
.fs1_c00199{font-size:60.000000px;}
.fs0_c00199{font-size:66.000000px;}
.fs3_c00199{font-size:72.000000px;}
.fs2_c00199{font-size:84.000000px;}
.y0_c00199{bottom:0.000000px;}
.y39_c00199{bottom:128.310000px;}
.y33_c00199{bottom:139.875000px;}
.y32_c00199{bottom:140.535000px;}
.y38_c00199{bottom:146.010000px;}
.y37_c00199{bottom:180.885000px;}
.y31_c00199{bottom:183.060000px;}
.y30_c00199{bottom:183.810000px;}
.y36_c00199{bottom:216.135000px;}
.y2f_c00199{bottom:216.885000px;}
.y2e_c00199{bottom:218.310000px;}
.y35_c00199{bottom:251.460000px;}
.y2d_c00199{bottom:260.775000px;}
.y2c_c00199{bottom:261.900000px;}
.y34_c00199{bottom:268.710000px;}
.y2b_c00199{bottom:304.710000px;}
.y29_c00199{bottom:311.910000px;}
.y2a_c00199{bottom:312.285000px;}
.y27_c00199{bottom:312.960000px;}
.y26_c00199{bottom:313.335000px;}
.y28_c00199{bottom:322.335000px;}
.y25_c00199{bottom:356.535000px;}
.y24_c00199{bottom:391.125000px;}
.y23_c00199{bottom:426.375000px;}
.y22_c00199{bottom:426.435000px;}
.y20_c00199{bottom:460.935000px;}
.y21_c00199{bottom:461.685000px;}
.y1e_c00199{bottom:495.135000px;}
.y1d_c00199{bottom:495.210000px;}
.y1f_c00199{bottom:496.260000px;}
.y3a_c00199{bottom:501.960000px;}
.y1b_c00199{bottom:529.335000px;}
.y1c_c00199{bottom:530.835000px;}
.y4_c00199{bottom:563.535000px;}
.y2_c00199{bottom:565.335000px;}
.y3_c00199{bottom:581.250000px;}
.y1_c00199{bottom:583.035000px;}
.y1a_c00199{bottom:618.285000px;}
.y19_c00199{bottom:635.910000px;}
.y18_c00199{bottom:653.535000px;}
.y17_c00199{bottom:670.500000px;}
.y16_c00199{bottom:687.810000px;}
.y15_c00199{bottom:705.435000px;}
.yd_c00199{bottom:711.210000px;}
.ye_c00199{bottom:711.510000px;}
.y14_c00199{bottom:722.700000px;}
.y13_c00199{bottom:740.325000px;}
.y12_c00199{bottom:757.635000px;}
.y11_c00199{bottom:774.885000px;}
.y10_c00199{bottom:792.210000px;}
.yf_c00199{bottom:809.775000px;}
.yc_c00199{bottom:842.925000px;}
.y8_c00199{bottom:855.900000px;}
.yb_c00199{bottom:860.550000px;}
.ya_c00199{bottom:860.625000px;}
.y9_c00199{bottom:877.875000px;}
.y7_c00199{bottom:965.025000px;}
.y5_c00199{bottom:1090.935000px;}
.y6_c00199{bottom:1101.810000px;}
.h5_c00199{height:31.289062px;}
.h2_c00199{height:61.670545px;}
.h1_c00199{height:64.775391px;}
.h4_c00199{height:70.628906px;}
.h3_c00199{height:82.441406px;}
.h0_c00199{height:1174.500000px;}
.w0_c00199{width:731.977200px;}
.w1_c00199{width:732.000000px;}
.x0_c00199{left:0.000000px;}
.x24_c00199{left:45.340200px;}
.x6_c00199{left:68.365200px;}
.x8_c00199{left:87.490200px;}
.x3_c00199{left:181.375200px;}
.x10_c00199{left:182.875200px;}
.x1b_c00199{left:183.940200px;}
.x4_c00199{left:197.965200px;}
.x5_c00199{left:224.590200px;}
.x7_c00199{left:276.490200px;}
.x13_c00199{left:277.915200px;}
.x11_c00199{left:280.090200px;}
.x14_c00199{left:295.165200px;}
.x1f_c00199{left:298.090200px;}
.xa_c00199{left:310.990200px;}
.xe_c00199{left:312.490200px;}
.x1e_c00199{left:323.590200px;}
.x18_c00199{left:336.190200px;}
.x1c_c00199{left:338.365200px;}
.x16_c00199{left:364.315200px;}
.x1d_c00199{left:372.940200px;}
.xc_c00199{left:379.390200px;}
.x1_c00199{left:403.900200px;}
.x1a_c00199{left:407.140200px;}
.x12_c00199{left:427.990200px;}
.xb_c00199{left:435.565200px;}
.xf_c00199{left:436.990200px;}
.x17_c00199{left:438.115200px;}
.x19_c00199{left:441.340200px;}
.xd_c00199{left:450.340200px;}
.x9_c00199{left:451.390200px;}
.x15_c00199{left:453.565200px;}
.x20_c00199{left:454.990200px;}
.x23_c00199{left:456.115200px;}
.x2_c00199{left:469.390200px;}
.x22_c00199{left:472.990200px;}
.x21_c00199{left:508.990200px;}
@media print{
.v1_c00199{vertical-align:-2.400000pt;}
.v0_c00199{vertical-align:0.000000pt;}
.ls0_c00199{letter-spacing:0.000000pt;}
.ws0_c00199{word-spacing:-14.666667pt;}
.ws1_c00199{word-spacing:0.000000pt;}
._1_c00199{margin-left:-8.404909pt;}
._0_c00199{width:0.954000pt;}
.fs4_c00199{font-size:26.666667pt;}
.fs1_c00199{font-size:53.333333pt;}
.fs0_c00199{font-size:58.666667pt;}
.fs3_c00199{font-size:64.000000pt;}
.fs2_c00199{font-size:74.666667pt;}
.y0_c00199{bottom:0.000000pt;}
.y39_c00199{bottom:114.053333pt;}
.y33_c00199{bottom:124.333333pt;}
.y32_c00199{bottom:124.920000pt;}
.y38_c00199{bottom:129.786667pt;}
.y37_c00199{bottom:160.786667pt;}
.y31_c00199{bottom:162.720000pt;}
.y30_c00199{bottom:163.386667pt;}
.y36_c00199{bottom:192.120000pt;}
.y2f_c00199{bottom:192.786667pt;}
.y2e_c00199{bottom:194.053333pt;}
.y35_c00199{bottom:223.520000pt;}
.y2d_c00199{bottom:231.800000pt;}
.y2c_c00199{bottom:232.800000pt;}
.y34_c00199{bottom:238.853333pt;}
.y2b_c00199{bottom:270.853333pt;}
.y29_c00199{bottom:277.253333pt;}
.y2a_c00199{bottom:277.586667pt;}
.y27_c00199{bottom:278.186667pt;}
.y26_c00199{bottom:278.520000pt;}
.y28_c00199{bottom:286.520000pt;}
.y25_c00199{bottom:316.920000pt;}
.y24_c00199{bottom:347.666667pt;}
.y23_c00199{bottom:379.000000pt;}
.y22_c00199{bottom:379.053333pt;}
.y20_c00199{bottom:409.720000pt;}
.y21_c00199{bottom:410.386667pt;}
.y1e_c00199{bottom:440.120000pt;}
.y1d_c00199{bottom:440.186667pt;}
.y1f_c00199{bottom:441.120000pt;}
.y3a_c00199{bottom:446.186667pt;}
.y1b_c00199{bottom:470.520000pt;}
.y1c_c00199{bottom:471.853333pt;}
.y4_c00199{bottom:500.920000pt;}
.y2_c00199{bottom:502.520000pt;}
.y3_c00199{bottom:516.666667pt;}
.y1_c00199{bottom:518.253333pt;}
.y1a_c00199{bottom:549.586667pt;}
.y19_c00199{bottom:565.253333pt;}
.y18_c00199{bottom:580.920000pt;}
.y17_c00199{bottom:596.000000pt;}
.y16_c00199{bottom:611.386667pt;}
.y15_c00199{bottom:627.053333pt;}
.yd_c00199{bottom:632.186667pt;}
.ye_c00199{bottom:632.453333pt;}
.y14_c00199{bottom:642.400000pt;}
.y13_c00199{bottom:658.066667pt;}
.y12_c00199{bottom:673.453333pt;}
.y11_c00199{bottom:688.786667pt;}
.y10_c00199{bottom:704.186667pt;}
.yf_c00199{bottom:719.800000pt;}
.yc_c00199{bottom:749.266667pt;}
.y8_c00199{bottom:760.800000pt;}
.yb_c00199{bottom:764.933333pt;}
.ya_c00199{bottom:765.000000pt;}
.y9_c00199{bottom:780.333333pt;}
.y7_c00199{bottom:857.800000pt;}
.y5_c00199{bottom:969.720000pt;}
.y6_c00199{bottom:979.386667pt;}
.h5_c00199{height:27.812500pt;}
.h2_c00199{height:54.818262pt;}
.h1_c00199{height:57.578125pt;}
.h4_c00199{height:62.781250pt;}
.h3_c00199{height:73.281250pt;}
.h0_c00199{height:1044.000000pt;}
.w0_c00199{width:650.646400pt;}
.w1_c00199{width:650.666667pt;}
.x0_c00199{left:0.000000pt;}
.x24_c00199{left:40.302400pt;}
.x6_c00199{left:60.769067pt;}
.x8_c00199{left:77.769067pt;}
.x3_c00199{left:161.222400pt;}
.x10_c00199{left:162.555733pt;}
.x1b_c00199{left:163.502400pt;}
.x4_c00199{left:175.969067pt;}
.x5_c00199{left:199.635733pt;}
.x7_c00199{left:245.769067pt;}
.x13_c00199{left:247.035733pt;}
.x11_c00199{left:248.969067pt;}
.x14_c00199{left:262.369067pt;}
.x1f_c00199{left:264.969067pt;}
.xa_c00199{left:276.435733pt;}
.xe_c00199{left:277.769067pt;}
.x1e_c00199{left:287.635733pt;}
.x18_c00199{left:298.835733pt;}
.x1c_c00199{left:300.769067pt;}
.x16_c00199{left:323.835733pt;}
.x1d_c00199{left:331.502400pt;}
.xc_c00199{left:337.235733pt;}
.x1_c00199{left:359.022400pt;}
.x1a_c00199{left:361.902400pt;}
.x12_c00199{left:380.435733pt;}
.xb_c00199{left:387.169067pt;}
.xf_c00199{left:388.435733pt;}
.x17_c00199{left:389.435733pt;}
.x19_c00199{left:392.302400pt;}
.xd_c00199{left:400.302400pt;}
.x9_c00199{left:401.235733pt;}
.x15_c00199{left:403.169067pt;}
.x20_c00199{left:404.435733pt;}
.x23_c00199{left:405.435733pt;}
.x2_c00199{left:417.235733pt;}
.x22_c00199{left:420.435733pt;}
.x21_c00199{left:452.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_474ce3d05d7f2b7b0edb5d39.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00200;src:url('chunks/assets/font_41a9928d7627183fad499434.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00200;src:url('chunks/assets/font_f5d6155652daa6bc6480ea71.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00200;src:url('chunks/assets/font_f5d319bdc6c0a9e2fbcd368e.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00200;src:url('chunks/assets/font_0b6296fb48644529dd89722f.woff2')format("woff");}.ff5_c00200{font-family:ff5_c00200;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1b_c00200{transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);}
.m22_c00200{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m18_c00200{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me_c00200{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00200{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m5_c00200{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0_c00200{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00200{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c00200{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c00200{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3_c00200{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m21_c00200{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m17_c00200{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00200{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c00200{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00200{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00200{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c00200{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c00200{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c00200{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c00200{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00200{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00200{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1_c00200{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00200{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c00200{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00200{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00200{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00200{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00200{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c00200{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m20_c00200{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m15_c00200{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m10_c00200{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m11_c00200{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.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;}
}
.ws0_c00200{word-spacing:0.000000px;}
.fc0_c00200{color:transparent;}
.fs3_c00200{font-size:54.000000px;}
.fs5_c00200{font-size:60.000000px;}
.fs2_c00200{font-size:66.000000px;}
.fs0_c00200{font-size:72.000000px;}
.fs1_c00200{font-size:84.000000px;}
.fs4_c00200{font-size:114.000000px;}
.y0_c00200{bottom:0.000000px;}
.y49_c00200{bottom:78.960000px;}
.y46_c00200{bottom:94.875000px;}
.y45_c00200{bottom:95.910000px;}
.y44_c00200{bottom:96.285000px;}
.y43_c00200{bottom:96.660000px;}
.y47_c00200{bottom:98.085000px;}
.y48_c00200{bottom:99.885000px;}
.y42_c00200{bottom:113.910000px;}
.y3f_c00200{bottom:130.125000px;}
.y40_c00200{bottom:133.335000px;}
.y41_c00200{bottom:133.410000px;}
.y3d_c00200{bottom:147.060000px;}
.y3e_c00200{bottom:150.660000px;}
.y39_c00200{bottom:162.510000px;}
.y3a_c00200{bottom:162.885000px;}
.y38_c00200{bottom:163.260000px;}
.y3b_c00200{bottom:164.385000px;}
.y3c_c00200{bottom:166.875000px;}
.y36_c00200{bottom:179.385000px;}
.y37_c00200{bottom:182.685000px;}
.y35_c00200{bottom:197.385000px;}
.y34_c00200{bottom:213.960000px;}
.y33_c00200{bottom:230.910000px;}
.y31_c00200{bottom:247.875000px;}
.y32_c00200{bottom:250.035000px;}
.y30_c00200{bottom:300.375000px;}
.y2f_c00200{bottom:322.335000px;}
.y2e_c00200{bottom:343.275000px;}
.y2b_c00200{bottom:364.125000px;}
.y2c_c00200{bottom:364.875000px;}
.y2d_c00200{bottom:365.910000px;}
.y27_c00200{bottom:385.035000px;}
.y26_c00200{bottom:385.710000px;}
.y28_c00200{bottom:386.085000px;}
.y29_c00200{bottom:386.460000px;}
.y2a_c00200{bottom:387.525000px;}
.y25_c00200{bottom:407.310000px;}
.y24_c00200{bottom:428.535000px;}
.y21_c00200{bottom:449.760000px;}
.y22_c00200{bottom:450.135000px;}
.y23_c00200{bottom:450.885000px;}
.y20_c00200{bottom:471.750000px;}
.y1f_c00200{bottom:493.335000px;}
.y1e_c00200{bottom:514.935000px;}
.y1d_c00200{bottom:536.250000px;}
.y1c_c00200{bottom:557.085000px;}
.y1b_c00200{bottom:579.435000px;}
.y1a_c00200{bottom:601.035000px;}
.y16_c00200{bottom:629.085000px;}
.y18_c00200{bottom:633.435000px;}
.y19_c00200{bottom:641.685000px;}
.y17_c00200{bottom:650.310000px;}
.y4e_c00200{bottom:671.910000px;}
.y4d_c00200{bottom:679.875000px;}
.y4c_c00200{bottom:680.910000px;}
.y4a_c00200{bottom:687.750000px;}
.y4b_c00200{bottom:710.835000px;}
.y15_c00200{bottom:746.460000px;}
.y14_c00200{bottom:763.335000px;}
.y13_c00200{bottom:784.935000px;}
.y12_c00200{bottom:806.625000px;}
.y11_c00200{bottom:828.525000px;}
.y10_c00200{bottom:850.125000px;}
.yf_c00200{bottom:871.425000px;}
.ye_c00200{bottom:892.650000px;}
.yd_c00200{bottom:913.875000px;}
.yc_c00200{bottom:933.300000px;}
.yb_c00200{bottom:935.085000px;}
.ya_c00200{bottom:935.460000px;}
.y9_c00200{bottom:953.775000px;}
.y8_c00200{bottom:954.525000px;}
.y7_c00200{bottom:956.685000px;}
.y6_c00200{bottom:977.925000px;}
.y5_c00200{bottom:996.960000px;}
.y4_c00200{bottom:998.085000px;}
.y3_c00200{bottom:999.525000px;}
.y2_c00200{bottom:1020.750000px;}
.y1_c00200{bottom:1078.335000px;}
.ha_c00200{height:52.998047px;}
.h4_c00200{height:54.421875px;}
.h7_c00200{height:58.886719px;}
.h8_c00200{height:64.743164px;}
.h6_c00200{height:64.775391px;}
.h3_c00200{height:66.515625px;}
.h9_c00200{height:70.628906px;}
.h1_c00200{height:70.664062px;}
.h2_c00200{height:82.400391px;}
.h5_c00200{height:118.898438px;}
.h0_c00200{height:1174.500000px;}
.w0_c00200{width:731.977200px;}
.w1_c00200{width:732.000000px;}
.x0_c00200{left:0.000000px;}
.x3_c00200{left:79.540200px;}
.xb_c00200{left:80.590200px;}
.x14_c00200{left:81.715200px;}
.x1e_c00200{left:82.765200px;}
.x21_c00200{left:84.175200px;}
.x22_c00200{left:85.300200px;}
.x2d_c00200{left:86.740200px;}
.x1f_c00200{left:100.090200px;}
.x2_c00200{left:111.940200px;}
.x6_c00200{left:113.365200px;}
.x1d_c00200{left:114.490200px;}
.x2e_c00200{left:120.940200px;}
.x17_c00200{left:143.290200px;}
.x2f_c00200{left:189.715200px;}
.x30_c00200{left:205.540200px;}
.x24_c00200{left:215.965200px;}
.xd_c00200{left:234.715200px;}
.x33_c00200{left:236.140200px;}
.xe_c00200{left:246.565200px;}
.x11_c00200{left:260.590200px;}
.x25_c00200{left:286.540200px;}
.x26_c00200{left:309.190200px;}
.x27_c00200{left:310.315200px;}
.x28_c00200{left:314.590200px;}
.x1_c00200{left:320.740200px;}
.x23_c00200{left:341.590200px;}
.x18_c00200{left:348.115200px;}
.x15_c00200{left:356.740200px;}
.x16_c00200{left:376.150200px;}
.x9_c00200{left:396.715200px;}
.x1b_c00200{left:404.965200px;}
.x12_c00200{left:410.365200px;}
.x31_c00200{left:420.490200px;}
.xf_c00200{left:426.190200px;}
.x10_c00200{left:442.390200px;}
.x1c_c00200{left:445.315200px;}
.x19_c00200{left:451.765200px;}
.x2b_c00200{left:479.890200px;}
.x13_c00200{left:481.315200px;}
.x29_c00200{left:502.165200px;}
.x4_c00200{left:505.090200px;}
.xa_c00200{left:527.740200px;}
.xc_c00200{left:529.165200px;}
.x34_c00200{left:563.740200px;}
.x7_c00200{left:576.340200px;}
.x32_c00200{left:600.115200px;}
.x1a_c00200{left:604.765200px;}
.x2c_c00200{left:614.140200px;}
.x2a_c00200{left:631.390200px;}
.x5_c00200{left:638.290200px;}
.x20_c00200{left:670.315200px;}
.x8_c00200{left:680.740200px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls0_c00200{letter-spacing:0.000000pt;}
.ws0_c00200{word-spacing:0.000000pt;}
.fs3_c00200{font-size:48.000000pt;}
.fs5_c00200{font-size:53.333333pt;}
.fs2_c00200{font-size:58.666667pt;}
.fs0_c00200{font-size:64.000000pt;}
.fs1_c00200{font-size:74.666667pt;}
.fs4_c00200{font-size:101.333333pt;}
.y0_c00200{bottom:0.000000pt;}
.y49_c00200{bottom:70.186667pt;}
.y46_c00200{bottom:84.333333pt;}
.y45_c00200{bottom:85.253333pt;}
.y44_c00200{bottom:85.586667pt;}
.y43_c00200{bottom:85.920000pt;}
.y47_c00200{bottom:87.186667pt;}
.y48_c00200{bottom:88.786667pt;}
.y42_c00200{bottom:101.253333pt;}
.y3f_c00200{bottom:115.666667pt;}
.y40_c00200{bottom:118.520000pt;}
.y41_c00200{bottom:118.586667pt;}
.y3d_c00200{bottom:130.720000pt;}
.y3e_c00200{bottom:133.920000pt;}
.y39_c00200{bottom:144.453333pt;}
.y3a_c00200{bottom:144.786667pt;}
.y38_c00200{bottom:145.120000pt;}
.y3b_c00200{bottom:146.120000pt;}
.y3c_c00200{bottom:148.333333pt;}
.y36_c00200{bottom:159.453333pt;}
.y37_c00200{bottom:162.386667pt;}
.y35_c00200{bottom:175.453333pt;}
.y34_c00200{bottom:190.186667pt;}
.y33_c00200{bottom:205.253333pt;}
.y31_c00200{bottom:220.333333pt;}
.y32_c00200{bottom:222.253333pt;}
.y30_c00200{bottom:267.000000pt;}
.y2f_c00200{bottom:286.520000pt;}
.y2e_c00200{bottom:305.133333pt;}
.y2b_c00200{bottom:323.666667pt;}
.y2c_c00200{bottom:324.333333pt;}
.y2d_c00200{bottom:325.253333pt;}
.y27_c00200{bottom:342.253333pt;}
.y26_c00200{bottom:342.853333pt;}
.y28_c00200{bottom:343.186667pt;}
.y29_c00200{bottom:343.520000pt;}
.y2a_c00200{bottom:344.466667pt;}
.y25_c00200{bottom:362.053333pt;}
.y24_c00200{bottom:380.920000pt;}
.y21_c00200{bottom:399.786667pt;}
.y22_c00200{bottom:400.120000pt;}
.y23_c00200{bottom:400.786667pt;}
.y20_c00200{bottom:419.333333pt;}
.y1f_c00200{bottom:438.520000pt;}
.y1e_c00200{bottom:457.720000pt;}
.y1d_c00200{bottom:476.666667pt;}
.y1c_c00200{bottom:495.186667pt;}
.y1b_c00200{bottom:515.053333pt;}
.y1a_c00200{bottom:534.253333pt;}
.y16_c00200{bottom:559.186667pt;}
.y18_c00200{bottom:563.053333pt;}
.y19_c00200{bottom:570.386667pt;}
.y17_c00200{bottom:578.053333pt;}
.y4e_c00200{bottom:597.253333pt;}
.y4d_c00200{bottom:604.333333pt;}
.y4c_c00200{bottom:605.253333pt;}
.y4a_c00200{bottom:611.333333pt;}
.y4b_c00200{bottom:631.853333pt;}
.y15_c00200{bottom:663.520000pt;}
.y14_c00200{bottom:678.520000pt;}
.y13_c00200{bottom:697.720000pt;}
.y12_c00200{bottom:717.000000pt;}
.y11_c00200{bottom:736.466667pt;}
.y10_c00200{bottom:755.666667pt;}
.yf_c00200{bottom:774.600000pt;}
.ye_c00200{bottom:793.466667pt;}
.yd_c00200{bottom:812.333333pt;}
.yc_c00200{bottom:829.600000pt;}
.yb_c00200{bottom:831.186667pt;}
.ya_c00200{bottom:831.520000pt;}
.y9_c00200{bottom:847.800000pt;}
.y8_c00200{bottom:848.466667pt;}
.y7_c00200{bottom:850.386667pt;}
.y6_c00200{bottom:869.266667pt;}
.y5_c00200{bottom:886.186667pt;}
.y4_c00200{bottom:887.186667pt;}
.y3_c00200{bottom:888.466667pt;}
.y2_c00200{bottom:907.333333pt;}
.y1_c00200{bottom:958.520000pt;}
.ha_c00200{height:47.109375pt;}
.h4_c00200{height:48.375000pt;}
.h7_c00200{height:52.343750pt;}
.h8_c00200{height:57.549479pt;}
.h6_c00200{height:57.578125pt;}
.h3_c00200{height:59.125000pt;}
.h9_c00200{height:62.781250pt;}
.h1_c00200{height:62.812500pt;}
.h2_c00200{height:73.244792pt;}
.h5_c00200{height:105.687500pt;}
.h0_c00200{height:1044.000000pt;}
.w0_c00200{width:650.646400pt;}
.w1_c00200{width:650.666667pt;}
.x0_c00200{left:0.000000pt;}
.x3_c00200{left:70.702400pt;}
.xb_c00200{left:71.635733pt;}
.x14_c00200{left:72.635733pt;}
.x1e_c00200{left:73.569067pt;}
.x21_c00200{left:74.822400pt;}
.x22_c00200{left:75.822400pt;}
.x2d_c00200{left:77.102400pt;}
.x1f_c00200{left:88.969067pt;}
.x2_c00200{left:99.502400pt;}
.x6_c00200{left:100.769067pt;}
.x1d_c00200{left:101.769067pt;}
.x2e_c00200{left:107.502400pt;}
.x17_c00200{left:127.369067pt;}
.x2f_c00200{left:168.635733pt;}
.x30_c00200{left:182.702400pt;}
.x24_c00200{left:191.969067pt;}
.xd_c00200{left:208.635733pt;}
.x33_c00200{left:209.902400pt;}
.xe_c00200{left:219.169067pt;}
.x11_c00200{left:231.635733pt;}
.x25_c00200{left:254.702400pt;}
.x26_c00200{left:274.835733pt;}
.x27_c00200{left:275.835733pt;}
.x28_c00200{left:279.635733pt;}
.x1_c00200{left:285.102400pt;}
.x23_c00200{left:303.635733pt;}
.x18_c00200{left:309.435733pt;}
.x15_c00200{left:317.102400pt;}
.x16_c00200{left:334.355733pt;}
.x9_c00200{left:352.635733pt;}
.x1b_c00200{left:359.969067pt;}
.x12_c00200{left:364.769067pt;}
.x31_c00200{left:373.769067pt;}
.xf_c00200{left:378.835733pt;}
.x10_c00200{left:393.235733pt;}
.x1c_c00200{left:395.835733pt;}
.x19_c00200{left:401.569067pt;}
.x2b_c00200{left:426.569067pt;}
.x13_c00200{left:427.835733pt;}
.x29_c00200{left:446.369067pt;}
.x4_c00200{left:448.969067pt;}
.xa_c00200{left:469.102400pt;}
.xc_c00200{left:470.369067pt;}
.x34_c00200{left:501.102400pt;}
.x7_c00200{left:512.302400pt;}
.x32_c00200{left:533.435733pt;}
.x1a_c00200{left:537.569067pt;}
.x2c_c00200{left:545.902400pt;}
.x2a_c00200{left:561.235733pt;}
.x5_c00200{left:567.369067pt;}
.x20_c00200{left:595.835733pt;}
.x8_c00200{left:605.102400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27c67667191f4f5e26520a06.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00201;src:url('chunks/assets/font_e34286547f93b131363339d3.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00201;src:url('chunks/assets/font_84bb4c9b2a06d53f05079f2a.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00201;src:url('chunks/assets/font_4326b0845287eb44962adf17.woff2')format("woff");}.ff4_c00201{font-family:ff4_c00201;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me_c00201{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m20_c00201{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2_c00201{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4_c00201{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.m1c_c00201{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8_c00201{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3_c00201{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m22_c00201{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c00201{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00201{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c00201{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c00201{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c00201{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00201{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c00201{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m23_c00201{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c00201{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c00201{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00201{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m17_c00201{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00201{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c00201{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00201{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m19_c00201{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c00201{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00201{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00201{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc_c00201{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m10_c00201{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.md_c00201{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.mb_c00201{transform:matrix(2.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00201{transform:matrix(2.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00201{transform:matrix(2.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.337500,0.000000,0.000000,0.250000,0,0);}
.m21_c00201{transform:matrix(4.675000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.675000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.675000,0.000000,0.000000,0.250000,0,0);}
.m6_c00201{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.v1_c00201{vertical-align:1.500000px;}
.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;}
}
.ws1_c00201{word-spacing:0.000000px;}
.ws0_c00201{word-spacing:177.160887px;}
.fc0_c00201{color:transparent;}
.fs3_c00201{font-size:36.000000px;}
.fs0_c00201{font-size:60.000000px;}
.fs2_c00201{font-size:66.000000px;}
.fs4_c00201{font-size:72.000000px;}
.fs1_c00201{font-size:84.000000px;}
.y0_c00201{bottom:0.000000px;}
.y5d_c00201{bottom:89.085000px;}
.y5c_c00201{bottom:111.375000px;}
.y5b_c00201{bottom:133.335000px;}
.y5a_c00201{bottom:154.560000px;}
.y59_c00201{bottom:175.875000px;}
.y58_c00201{bottom:180.210000px;}
.y57_c00201{bottom:198.510000px;}
.y56_c00201{bottom:219.060000px;}
.y55_c00201{bottom:221.535000px;}
.y54_c00201{bottom:223.035000px;}
.y53_c00201{bottom:328.125000px;}
.y52_c00201{bottom:328.875000px;}
.y51_c00201{bottom:329.535000px;}
.y50_c00201{bottom:330.285000px;}
.y4f_c00201{bottom:345.435000px;}
.y4e_c00201{bottom:346.125000px;}
.y4d_c00201{bottom:347.250000px;}
.y4c_c00201{bottom:363.000000px;}
.y4b_c00201{bottom:363.750000px;}
.y4a_c00201{bottom:364.500000px;}
.y49_c00201{bottom:380.685000px;}
.y48_c00201{bottom:381.060000px;}
.y47_c00201{bottom:381.435000px;}
.y46_c00201{bottom:397.935000px;}
.y45_c00201{bottom:398.310000px;}
.y44_c00201{bottom:398.685000px;}
.y43_c00201{bottom:415.635000px;}
.y41_c00201{bottom:415.935000px;}
.y42_c00201{bottom:416.010000px;}
.y40_c00201{bottom:416.310000px;}
.y3d_c00201{bottom:432.885000px;}
.y3f_c00201{bottom:433.260000px;}
.y3e_c00201{bottom:433.635000px;}
.y3c_c00201{bottom:450.210000px;}
.y3a_c00201{bottom:450.510000px;}
.y3b_c00201{bottom:450.885000px;}
.y37_c00201{bottom:467.460000px;}
.y39_c00201{bottom:467.835000px;}
.y38_c00201{bottom:468.585000px;}
.y34_c00201{bottom:484.410000px;}
.y35_c00201{bottom:484.710000px;}
.y36_c00201{bottom:485.460000px;}
.y31_c00201{bottom:501.660000px;}
.y33_c00201{bottom:502.710000px;}
.y32_c00201{bottom:502.785000px;}
.y2d_c00201{bottom:518.910000px;}
.y2f_c00201{bottom:520.035000px;}
.y2c_c00201{bottom:535.875000px;}
.y2e_c00201{bottom:537.285000px;}
.y30_c00201{bottom:537.585000px;}
.y2a_c00201{bottom:552.810000px;}
.y2b_c00201{bottom:554.250000px;}
.y27_c00201{bottom:570.060000px;}
.y28_c00201{bottom:570.435000px;}
.y29_c00201{bottom:571.500000px;}
.y23_c00201{bottom:587.310000px;}
.y24_c00201{bottom:588.750000px;}
.y25_c00201{bottom:589.125000px;}
.y26_c00201{bottom:589.875000px;}
.y20_c00201{bottom:604.260000px;}
.y21_c00201{bottom:606.435000px;}
.y22_c00201{bottom:607.125000px;}
.y1d_c00201{bottom:621.510000px;}
.y1e_c00201{bottom:623.685000px;}
.y1f_c00201{bottom:624.435000px;}
.y1a_c00201{bottom:638.835000px;}
.y1b_c00201{bottom:640.935000px;}
.y1c_c00201{bottom:642.060000px;}
.y18_c00201{bottom:655.785000px;}
.y19_c00201{bottom:658.185000px;}
.y14_c00201{bottom:672.660000px;}
.y15_c00201{bottom:675.210000px;}
.y16_c00201{bottom:676.260000px;}
.y17_c00201{bottom:677.010000px;}
.y10_c00201{bottom:690.660000px;}
.y11_c00201{bottom:691.035000px;}
.y12_c00201{bottom:691.710000px;}
.y13_c00201{bottom:692.460000px;}
.yd_c00201{bottom:706.500000px;}
.ye_c00201{bottom:709.410000px;}
.yf_c00201{bottom:710.460000px;}
.y7_c00201{bottom:723.075000px;}
.y8_c00201{bottom:723.750000px;}
.y9_c00201{bottom:724.500000px;}
.ya_c00201{bottom:724.875000px;}
.yb_c00201{bottom:725.250000px;}
.yc_c00201{bottom:726.660000px;}
.y6_c00201{bottom:728.385000px;}
.y4_c00201{bottom:787.125000px;}
.y5_c00201{bottom:788.625000px;}
.y3_c00201{bottom:878.550000px;}
.y2_c00201{bottom:913.125000px;}
.y5e_c00201{bottom:1087.050000px;}
.y1_c00201{bottom:1096.050000px;}
.h4_c00201{height:37.546875px;}
.h1_c00201{height:58.886719px;}
.h3_c00201{height:64.775391px;}
.h5_c00201{height:66.275391px;}
.h7_c00201{height:72.562500px;}
.h6_c00201{height:82.400391px;}
.h2_c00201{height:82.441406px;}
.h0_c00201{height:1174.500000px;}
.w0_c00201{width:731.977200px;}
.w1_c00201{width:732.000000px;}
.x0_c00201{left:0.000000px;}
.x33_c00201{left:36.340200px;}
.x30_c00201{left:37.390200px;}
.x28_c00201{left:57.190200px;}
.x19_c00201{left:58.315200px;}
.x7_c00201{left:60.490200px;}
.x32_c00201{left:67.690200px;}
.x2d_c00201{left:68.740200px;}
.x34_c00201{left:69.790200px;}
.x2_c00201{left:93.175200px;}
.x1e_c00201{left:94.315200px;}
.x25_c00201{left:95.740200px;}
.x2a_c00201{left:100.765200px;}
.x1f_c00201{left:103.315200px;}
.x8_c00201{left:105.115200px;}
.x2b_c00201{left:109.390200px;}
.x1b_c00201{left:111.565200px;}
.x20_c00201{left:120.190200px;}
.x2c_c00201{left:127.090200px;}
.x16_c00201{left:128.140200px;}
.x29_c00201{left:134.965200px;}
.x22_c00201{left:145.390200px;}
.x31_c00201{left:151.915200px;}
.x1a_c00201{left:154.090200px;}
.x2e_c00201{left:169.915200px;}
.x9_c00201{left:178.165200px;}
.x13_c00201{left:179.590200px;}
.xa_c00201{left:197.290200px;}
.xb_c00201{left:200.500200px;}
.xc_c00201{left:214.540200px;}
.xd_c00201{left:218.140200px;}
.xe_c00201{left:231.790200px;}
.x14_c00201{left:233.590200px;}
.x15_c00201{left:247.315200px;}
.xf_c00201{left:256.990200px;}
.x1_c00201{left:270.715200px;}
.x4_c00201{left:278.290200px;}
.x2f_c00201{left:294.490200px;}
.x26_c00201{left:295.915200px;}
.x21_c00201{left:296.965200px;}
.x3_c00201{left:302.365200px;}
.x18_c00201{left:305.965200px;}
.x11_c00201{left:307.090200px;}
.x10_c00201{left:316.765200px;}
.x5_c00201{left:380.515200px;}
.x27_c00201{left:402.490200px;}
.x1c_c00201{left:403.900200px;}
.x17_c00201{left:405.340200px;}
.x12_c00201{left:413.965200px;}
.x23_c00201{left:495.340200px;}
.x1d_c00201{left:496.765200px;}
.x6_c00201{left:497.890200px;}
.x24_c00201{left:537.790200px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.v1_c00201{vertical-align:1.333333pt;}
.ls0_c00201{letter-spacing:0.000000pt;}
.ws1_c00201{word-spacing:0.000000pt;}
.ws0_c00201{word-spacing:157.476344pt;}
.fs3_c00201{font-size:32.000000pt;}
.fs0_c00201{font-size:53.333333pt;}
.fs2_c00201{font-size:58.666667pt;}
.fs4_c00201{font-size:64.000000pt;}
.fs1_c00201{font-size:74.666667pt;}
.y0_c00201{bottom:0.000000pt;}
.y5d_c00201{bottom:79.186667pt;}
.y5c_c00201{bottom:99.000000pt;}
.y5b_c00201{bottom:118.520000pt;}
.y5a_c00201{bottom:137.386667pt;}
.y59_c00201{bottom:156.333333pt;}
.y58_c00201{bottom:160.186667pt;}
.y57_c00201{bottom:176.453333pt;}
.y56_c00201{bottom:194.720000pt;}
.y55_c00201{bottom:196.920000pt;}
.y54_c00201{bottom:198.253333pt;}
.y53_c00201{bottom:291.666667pt;}
.y52_c00201{bottom:292.333333pt;}
.y51_c00201{bottom:292.920000pt;}
.y50_c00201{bottom:293.586667pt;}
.y4f_c00201{bottom:307.053333pt;}
.y4e_c00201{bottom:307.666667pt;}
.y4d_c00201{bottom:308.666667pt;}
.y4c_c00201{bottom:322.666667pt;}
.y4b_c00201{bottom:323.333333pt;}
.y4a_c00201{bottom:324.000000pt;}
.y49_c00201{bottom:338.386667pt;}
.y48_c00201{bottom:338.720000pt;}
.y47_c00201{bottom:339.053333pt;}
.y46_c00201{bottom:353.720000pt;}
.y45_c00201{bottom:354.053333pt;}
.y44_c00201{bottom:354.386667pt;}
.y43_c00201{bottom:369.453333pt;}
.y41_c00201{bottom:369.720000pt;}
.y42_c00201{bottom:369.786667pt;}
.y40_c00201{bottom:370.053333pt;}
.y3d_c00201{bottom:384.786667pt;}
.y3f_c00201{bottom:385.120000pt;}
.y3e_c00201{bottom:385.453333pt;}
.y3c_c00201{bottom:400.186667pt;}
.y3a_c00201{bottom:400.453333pt;}
.y3b_c00201{bottom:400.786667pt;}
.y37_c00201{bottom:415.520000pt;}
.y39_c00201{bottom:415.853333pt;}
.y38_c00201{bottom:416.520000pt;}
.y34_c00201{bottom:430.586667pt;}
.y35_c00201{bottom:430.853333pt;}
.y36_c00201{bottom:431.520000pt;}
.y31_c00201{bottom:445.920000pt;}
.y33_c00201{bottom:446.853333pt;}
.y32_c00201{bottom:446.920000pt;}
.y2d_c00201{bottom:461.253333pt;}
.y2f_c00201{bottom:462.253333pt;}
.y2c_c00201{bottom:476.333333pt;}
.y2e_c00201{bottom:477.586667pt;}
.y30_c00201{bottom:477.853333pt;}
.y2a_c00201{bottom:491.386667pt;}
.y2b_c00201{bottom:492.666667pt;}
.y27_c00201{bottom:506.720000pt;}
.y28_c00201{bottom:507.053333pt;}
.y29_c00201{bottom:508.000000pt;}
.y23_c00201{bottom:522.053333pt;}
.y24_c00201{bottom:523.333333pt;}
.y25_c00201{bottom:523.666667pt;}
.y26_c00201{bottom:524.333333pt;}
.y20_c00201{bottom:537.120000pt;}
.y21_c00201{bottom:539.053333pt;}
.y22_c00201{bottom:539.666667pt;}
.y1d_c00201{bottom:552.453333pt;}
.y1e_c00201{bottom:554.386667pt;}
.y1f_c00201{bottom:555.053333pt;}
.y1a_c00201{bottom:567.853333pt;}
.y1b_c00201{bottom:569.720000pt;}
.y1c_c00201{bottom:570.720000pt;}
.y18_c00201{bottom:582.920000pt;}
.y19_c00201{bottom:585.053333pt;}
.y14_c00201{bottom:597.920000pt;}
.y15_c00201{bottom:600.186667pt;}
.y16_c00201{bottom:601.120000pt;}
.y17_c00201{bottom:601.786667pt;}
.y10_c00201{bottom:613.920000pt;}
.y11_c00201{bottom:614.253333pt;}
.y12_c00201{bottom:614.853333pt;}
.y13_c00201{bottom:615.520000pt;}
.yd_c00201{bottom:628.000000pt;}
.ye_c00201{bottom:630.586667pt;}
.yf_c00201{bottom:631.520000pt;}
.y7_c00201{bottom:642.733333pt;}
.y8_c00201{bottom:643.333333pt;}
.y9_c00201{bottom:644.000000pt;}
.ya_c00201{bottom:644.333333pt;}
.yb_c00201{bottom:644.666667pt;}
.yc_c00201{bottom:645.920000pt;}
.y6_c00201{bottom:647.453333pt;}
.y4_c00201{bottom:699.666667pt;}
.y5_c00201{bottom:701.000000pt;}
.y3_c00201{bottom:780.933333pt;}
.y2_c00201{bottom:811.666667pt;}
.y5e_c00201{bottom:966.266667pt;}
.y1_c00201{bottom:974.266667pt;}
.h4_c00201{height:33.375000pt;}
.h1_c00201{height:52.343750pt;}
.h3_c00201{height:57.578125pt;}
.h5_c00201{height:58.911458pt;}
.h7_c00201{height:64.500000pt;}
.h6_c00201{height:73.244792pt;}
.h2_c00201{height:73.281250pt;}
.h0_c00201{height:1044.000000pt;}
.w0_c00201{width:650.646400pt;}
.w1_c00201{width:650.666667pt;}
.x0_c00201{left:0.000000pt;}
.x33_c00201{left:32.302400pt;}
.x30_c00201{left:33.235733pt;}
.x28_c00201{left:50.835733pt;}
.x19_c00201{left:51.835733pt;}
.x7_c00201{left:53.769067pt;}
.x32_c00201{left:60.169067pt;}
.x2d_c00201{left:61.102400pt;}
.x34_c00201{left:62.035733pt;}
.x2_c00201{left:82.822400pt;}
.x1e_c00201{left:83.835733pt;}
.x25_c00201{left:85.102400pt;}
.x2a_c00201{left:89.569067pt;}
.x1f_c00201{left:91.835733pt;}
.x8_c00201{left:93.435733pt;}
.x2b_c00201{left:97.235733pt;}
.x1b_c00201{left:99.169067pt;}
.x20_c00201{left:106.835733pt;}
.x2c_c00201{left:112.969067pt;}
.x16_c00201{left:113.902400pt;}
.x29_c00201{left:119.969067pt;}
.x22_c00201{left:129.235733pt;}
.x31_c00201{left:135.035733pt;}
.x1a_c00201{left:136.969067pt;}
.x2e_c00201{left:151.035733pt;}
.x9_c00201{left:158.369067pt;}
.x13_c00201{left:159.635733pt;}
.xa_c00201{left:175.369067pt;}
.xb_c00201{left:178.222400pt;}
.xc_c00201{left:190.702400pt;}
.xd_c00201{left:193.902400pt;}
.xe_c00201{left:206.035733pt;}
.x14_c00201{left:207.635733pt;}
.x15_c00201{left:219.835733pt;}
.xf_c00201{left:228.435733pt;}
.x1_c00201{left:240.635733pt;}
.x4_c00201{left:247.369067pt;}
.x2f_c00201{left:261.769067pt;}
.x26_c00201{left:263.035733pt;}
.x21_c00201{left:263.969067pt;}
.x3_c00201{left:268.769067pt;}
.x18_c00201{left:271.969067pt;}
.x11_c00201{left:272.969067pt;}
.x10_c00201{left:281.569067pt;}
.x5_c00201{left:338.235733pt;}
.x27_c00201{left:357.769067pt;}
.x1c_c00201{left:359.022400pt;}
.x17_c00201{left:360.302400pt;}
.x12_c00201{left:367.969067pt;}
.x23_c00201{left:440.302400pt;}
.x1d_c00201{left:441.569067pt;}
.x6_c00201{left:442.569067pt;}
.x24_c00201{left:478.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_946028a7ecb6ea4b248510dd.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00202;src:url('chunks/assets/font_504526fb70e0ff2993905bff.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00202;src:url('chunks/assets/font_f3cc05287dea7783e732ede4.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00202;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff4_c00202{font-family:ff4_c00202;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00202{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.md_c00202{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4_c00202{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00202{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me_c00202{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c00202{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13_c00202{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c00202{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8_c00202{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00202{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00202{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00202{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00202{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00202{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00202{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00202{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m0_c00202{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00202{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00202{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3_c00202{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.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;}
}
.ws0_c00202{word-spacing:0.000000px;}
.fc0_c00202{color:transparent;}
.fs1_c00202{font-size:60.000000px;}
.fs0_c00202{font-size:66.000000px;}
.fs2_c00202{font-size:72.000000px;}
.fs3_c00202{font-size:78.000000px;}
.y0_c00202{bottom:0.000000px;}
.y24_c00202{bottom:405.525000px;}
.y21_c00202{bottom:422.460000px;}
.y22_c00202{bottom:423.510000px;}
.y23_c00202{bottom:424.635000px;}
.y20_c00202{bottom:440.460000px;}
.y1b_c00202{bottom:457.035000px;}
.y1c_c00202{bottom:457.335000px;}
.y1d_c00202{bottom:458.085000px;}
.y1e_c00202{bottom:458.460000px;}
.y1f_c00202{bottom:458.835000px;}
.y1a_c00202{bottom:523.635000px;}
.y18_c00202{bottom:544.875000px;}
.y19_c00202{bottom:545.250000px;}
.y16_c00202{bottom:566.460000px;}
.y17_c00202{bottom:566.835000px;}
.y15_c00202{bottom:588.060000px;}
.y14_c00202{bottom:609.660000px;}
.y13_c00202{bottom:630.885000px;}
.y12_c00202{bottom:652.125000px;}
.y11_c00202{bottom:673.710000px;}
.y10_c00202{bottom:782.460000px;}
.yf_c00202{bottom:804.375000px;}
.ye_c00202{bottom:826.335000px;}
.yd_c00202{bottom:847.650000px;}
.yc_c00202{bottom:869.175000px;}
.yb_c00202{bottom:890.775000px;}
.ya_c00202{bottom:911.310000px;}
.y9_c00202{bottom:932.625000px;}
.y8_c00202{bottom:954.150000px;}
.y7_c00202{bottom:975.750000px;}
.y6_c00202{bottom:997.710000px;}
.y5_c00202{bottom:1018.935000px;}
.y4_c00202{bottom:1075.875000px;}
.y1_c00202{bottom:1078.425000px;}
.y2_c00202{bottom:1078.710000px;}
.y3_c00202{bottom:1085.775000px;}
.h3_c00202{height:60.468750px;}
.h6_c00202{height:64.743164px;}
.h1_c00202{height:64.775391px;}
.h2_c00202{height:66.515625px;}
.h4_c00202{height:70.664062px;}
.h5_c00202{height:76.514648px;}
.h0_c00202{height:1174.500000px;}
.w0_c00202{width:731.977200px;}
.w1_c00202{width:732.000000px;}
.x0_c00202{left:0.000000px;}
.xc_c00202{left:68.365200px;}
.x6_c00202{left:69.490200px;}
.x8_c00202{left:71.290200px;}
.xe_c00202{left:85.300200px;}
.x7_c00202{left:90.340200px;}
.xa_c00202{left:99.340200px;}
.x9_c00202{left:101.890200px;}
.xf_c00202{left:151.165200px;}
.x1_c00202{left:285.790200px;}
.x2_c00202{left:316.090200px;}
.x3_c00202{left:317.890200px;}
.x13_c00202{left:382.990200px;}
.x10_c00202{left:419.365200px;}
.x4_c00202{left:479.515200px;}
.xd_c00202{left:484.165200px;}
.x11_c00202{left:532.090200px;}
.x12_c00202{left:546.790200px;}
.x5_c00202{left:638.965200px;}
.xb_c00202{left:654.790200px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls0_c00202{letter-spacing:0.000000pt;}
.ws0_c00202{word-spacing:0.000000pt;}
.fs1_c00202{font-size:53.333333pt;}
.fs0_c00202{font-size:58.666667pt;}
.fs2_c00202{font-size:64.000000pt;}
.fs3_c00202{font-size:69.333333pt;}
.y0_c00202{bottom:0.000000pt;}
.y24_c00202{bottom:360.466667pt;}
.y21_c00202{bottom:375.520000pt;}
.y22_c00202{bottom:376.453333pt;}
.y23_c00202{bottom:377.453333pt;}
.y20_c00202{bottom:391.520000pt;}
.y1b_c00202{bottom:406.253333pt;}
.y1c_c00202{bottom:406.520000pt;}
.y1d_c00202{bottom:407.186667pt;}
.y1e_c00202{bottom:407.520000pt;}
.y1f_c00202{bottom:407.853333pt;}
.y1a_c00202{bottom:465.453333pt;}
.y18_c00202{bottom:484.333333pt;}
.y19_c00202{bottom:484.666667pt;}
.y16_c00202{bottom:503.520000pt;}
.y17_c00202{bottom:503.853333pt;}
.y15_c00202{bottom:522.720000pt;}
.y14_c00202{bottom:541.920000pt;}
.y13_c00202{bottom:560.786667pt;}
.y12_c00202{bottom:579.666667pt;}
.y11_c00202{bottom:598.853333pt;}
.y10_c00202{bottom:695.520000pt;}
.yf_c00202{bottom:715.000000pt;}
.ye_c00202{bottom:734.520000pt;}
.yd_c00202{bottom:753.466667pt;}
.yc_c00202{bottom:772.600000pt;}
.yb_c00202{bottom:791.800000pt;}
.ya_c00202{bottom:810.053333pt;}
.y9_c00202{bottom:829.000000pt;}
.y8_c00202{bottom:848.133333pt;}
.y7_c00202{bottom:867.333333pt;}
.y6_c00202{bottom:886.853333pt;}
.y5_c00202{bottom:905.720000pt;}
.y4_c00202{bottom:956.333333pt;}
.y1_c00202{bottom:958.600000pt;}
.y2_c00202{bottom:958.853333pt;}
.y3_c00202{bottom:965.133333pt;}
.h3_c00202{height:53.750000pt;}
.h6_c00202{height:57.549479pt;}
.h1_c00202{height:57.578125pt;}
.h2_c00202{height:59.125000pt;}
.h4_c00202{height:62.812500pt;}
.h5_c00202{height:68.013021pt;}
.h0_c00202{height:1044.000000pt;}
.w0_c00202{width:650.646400pt;}
.w1_c00202{width:650.666667pt;}
.x0_c00202{left:0.000000pt;}
.xc_c00202{left:60.769067pt;}
.x6_c00202{left:61.769067pt;}
.x8_c00202{left:63.369067pt;}
.xe_c00202{left:75.822400pt;}
.x7_c00202{left:80.302400pt;}
.xa_c00202{left:88.302400pt;}
.x9_c00202{left:90.569067pt;}
.xf_c00202{left:134.369067pt;}
.x1_c00202{left:254.035733pt;}
.x2_c00202{left:280.969067pt;}
.x3_c00202{left:282.569067pt;}
.x13_c00202{left:340.435733pt;}
.x10_c00202{left:372.769067pt;}
.x4_c00202{left:426.235733pt;}
.xd_c00202{left:430.369067pt;}
.x11_c00202{left:472.969067pt;}
.x12_c00202{left:486.035733pt;}
.x5_c00202{left:567.969067pt;}
.xb_c00202{left:582.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75495b5163708543927970b4.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00203;src:url('chunks/assets/font_fb933335ed9d96a2d3f6e5a0.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00203{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00203{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m18_c00203{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0_c00203{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00203{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c00203{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m20_c00203{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c00203{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c00203{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m14_c00203{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c00203{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c00203{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c00203{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c00203{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00203{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00203{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00203{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00203{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00203{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00203{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00203{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00203{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00203{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c00203{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00203{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00203{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00203{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00203{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m21_c00203{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00203{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c00203{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00203{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m16_c00203{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m19_c00203{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls0_c00203{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00203{word-spacing:0.000000px;}
.fc0_c00203{color:transparent;}
.fs0_c00203{font-size:66.000000px;}
.fs2_c00203{font-size:72.000000px;}
.fs1_c00203{font-size:78.000000px;}
.y0_c00203{bottom:0.000000px;}
.y44_c00203{bottom:143.085000px;}
.y43_c00203{bottom:160.335000px;}
.y42_c00203{bottom:162.885000px;}
.y41_c00203{bottom:177.285000px;}
.y40_c00203{bottom:179.835000px;}
.y3f_c00203{bottom:196.710000px;}
.y3e_c00203{bottom:198.135000px;}
.y3d_c00203{bottom:215.085000px;}
.y3c_c00203{bottom:231.285000px;}
.y3b_c00203{bottom:233.085000px;}
.y31_c00203{bottom:250.710000px;}
.y3a_c00203{bottom:250.785000px;}
.y2f_c00203{bottom:252.885000px;}
.y39_c00203{bottom:266.535000px;}
.y38_c00203{bottom:268.410000px;}
.y37_c00203{bottom:284.250000px;}
.y36_c00203{bottom:301.125000px;}
.y35_c00203{bottom:303.285000px;}
.y34_c00203{bottom:319.500000px;}
.y33_c00203{bottom:336.060000px;}
.y32_c00203{bottom:337.785000px;}
.y30_c00203{bottom:338.535000px;}
.y2a_c00203{bottom:373.500000px;}
.y29_c00203{bottom:390.375000px;}
.y28_c00203{bottom:391.500000px;}
.y27_c00203{bottom:408.750000px;}
.y26_c00203{bottom:424.560000px;}
.y25_c00203{bottom:425.685000px;}
.y24_c00203{bottom:426.435000px;}
.y4_c00203{bottom:443.310000px;}
.y23_c00203{bottom:443.685000px;}
.y22_c00203{bottom:460.560000px;}
.y21_c00203{bottom:461.685000px;}
.y20_c00203{bottom:478.635000px;}
.y1f_c00203{bottom:478.935000px;}
.y1e_c00203{bottom:495.510000px;}
.y1d_c00203{bottom:496.260000px;}
.y2b_c00203{bottom:509.250000px;}
.y1c_c00203{bottom:530.460000px;}
.y1b_c00203{bottom:547.035000px;}
.y1a_c00203{bottom:548.085000px;}
.y19_c00203{bottom:565.335000px;}
.y18_c00203{bottom:582.660000px;}
.y2e_c00203{bottom:591.285000px;}
.y17_c00203{bottom:599.910000px;}
.y16_c00203{bottom:600.660000px;}
.y15_c00203{bottom:617.910000px;}
.y14_c00203{bottom:635.535000px;}
.y13_c00203{bottom:669.435000px;}
.y12_c00203{bottom:687.060000px;}
.y11_c00203{bottom:703.635000px;}
.yf_c00203{bottom:720.885000px;}
.y10_c00203{bottom:721.950000px;}
.yd_c00203{bottom:738.510000px;}
.ye_c00203{bottom:739.260000px;}
.y2c_c00203{bottom:754.035000px;}
.y2d_c00203{bottom:754.710000px;}
.yc_c00203{bottom:755.835000px;}
.ya_c00203{bottom:773.460000px;}
.yb_c00203{bottom:774.510000px;}
.y9_c00203{bottom:790.800000px;}
.y7_c00203{bottom:808.425000px;}
.y8_c00203{bottom:809.400000px;}
.y5_c00203{bottom:825.675000px;}
.y6_c00203{bottom:826.425000px;}
.y3_c00203{bottom:928.650000px;}
.y2_c00203{bottom:1084.500000px;}
.y1_c00203{bottom:1094.175000px;}
.h1_c00203{height:64.775391px;}
.h3_c00203{height:70.628906px;}
.h4_c00203{height:70.664062px;}
.h2_c00203{height:76.552734px;}
.h0_c00203{height:1174.500000px;}
.w0_c00203{width:731.977200px;}
.w1_c00203{width:732.000000px;}
.x0_c00203{left:0.000000px;}
.x19_c00203{left:52.165200px;}
.x2_c00203{left:71.290200px;}
.x1a_c00203{left:176.365200px;}
.x1c_c00203{left:186.790200px;}
.x4_c00203{left:189.340200px;}
.x1d_c00203{left:190.750200px;}
.x3_c00203{left:204.490200px;}
.x1_c00203{left:271.765200px;}
.x1b_c00203{left:274.315200px;}
.x1f_c00203{left:286.540200px;}
.xe_c00203{left:327.565200px;}
.x5_c00203{left:328.990200px;}
.x1e_c00203{left:330.490200px;}
.x9_c00203{left:332.590200px;}
.x8_c00203{left:345.940200px;}
.x16_c00203{left:346.990200px;}
.x11_c00203{left:381.565200px;}
.x15_c00203{left:383.740200px;}
.x14_c00203{left:393.775200px;}
.xa_c00203{left:400.990200px;}
.x20_c00203{left:406.090200px;}
.x22_c00203{left:408.190200px;}
.x2a_c00203{left:409.690200px;}
.x12_c00203{left:414.715200px;}
.xb_c00203{left:416.515200px;}
.xf_c00203{left:420.775200px;}
.x13_c00203{left:424.765200px;}
.x25_c00203{left:426.565200px;}
.x27_c00203{left:428.365200px;}
.xc_c00203{left:451.390200px;}
.x10_c00203{left:463.315200px;}
.x28_c00203{left:472.990200px;}
.x7_c00203{left:476.590200px;}
.x17_c00203{left:480.190200px;}
.x24_c00203{left:483.115200px;}
.x18_c00203{left:485.590200px;}
.x23_c00203{left:496.090200px;}
.x6_c00203{left:499.690200px;}
.x26_c00203{left:507.565200px;}
.xd_c00203{left:593.965200px;}
.x21_c00203{left:608.740200px;}
.x29_c00203{left:632.515200px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls0_c00203{letter-spacing:0.000000pt;}
.ws0_c00203{word-spacing:0.000000pt;}
.fs0_c00203{font-size:58.666667pt;}
.fs2_c00203{font-size:64.000000pt;}
.fs1_c00203{font-size:69.333333pt;}
.y0_c00203{bottom:0.000000pt;}
.y44_c00203{bottom:127.186667pt;}
.y43_c00203{bottom:142.520000pt;}
.y42_c00203{bottom:144.786667pt;}
.y41_c00203{bottom:157.586667pt;}
.y40_c00203{bottom:159.853333pt;}
.y3f_c00203{bottom:174.853333pt;}
.y3e_c00203{bottom:176.120000pt;}
.y3d_c00203{bottom:191.186667pt;}
.y3c_c00203{bottom:205.586667pt;}
.y3b_c00203{bottom:207.186667pt;}
.y31_c00203{bottom:222.853333pt;}
.y3a_c00203{bottom:222.920000pt;}
.y2f_c00203{bottom:224.786667pt;}
.y39_c00203{bottom:236.920000pt;}
.y38_c00203{bottom:238.586667pt;}
.y37_c00203{bottom:252.666667pt;}
.y36_c00203{bottom:267.666667pt;}
.y35_c00203{bottom:269.586667pt;}
.y34_c00203{bottom:284.000000pt;}
.y33_c00203{bottom:298.720000pt;}
.y32_c00203{bottom:300.253333pt;}
.y30_c00203{bottom:300.920000pt;}
.y2a_c00203{bottom:332.000000pt;}
.y29_c00203{bottom:347.000000pt;}
.y28_c00203{bottom:348.000000pt;}
.y27_c00203{bottom:363.333333pt;}
.y26_c00203{bottom:377.386667pt;}
.y25_c00203{bottom:378.386667pt;}
.y24_c00203{bottom:379.053333pt;}
.y4_c00203{bottom:394.053333pt;}
.y23_c00203{bottom:394.386667pt;}
.y22_c00203{bottom:409.386667pt;}
.y21_c00203{bottom:410.386667pt;}
.y20_c00203{bottom:425.453333pt;}
.y1f_c00203{bottom:425.720000pt;}
.y1e_c00203{bottom:440.453333pt;}
.y1d_c00203{bottom:441.120000pt;}
.y2b_c00203{bottom:452.666667pt;}
.y1c_c00203{bottom:471.520000pt;}
.y1b_c00203{bottom:486.253333pt;}
.y1a_c00203{bottom:487.186667pt;}
.y19_c00203{bottom:502.520000pt;}
.y18_c00203{bottom:517.920000pt;}
.y2e_c00203{bottom:525.586667pt;}
.y17_c00203{bottom:533.253333pt;}
.y16_c00203{bottom:533.920000pt;}
.y15_c00203{bottom:549.253333pt;}
.y14_c00203{bottom:564.920000pt;}
.y13_c00203{bottom:595.053333pt;}
.y12_c00203{bottom:610.720000pt;}
.y11_c00203{bottom:625.453333pt;}
.yf_c00203{bottom:640.786667pt;}
.y10_c00203{bottom:641.733333pt;}
.yd_c00203{bottom:656.453333pt;}
.ye_c00203{bottom:657.120000pt;}
.y2c_c00203{bottom:670.253333pt;}
.y2d_c00203{bottom:670.853333pt;}
.yc_c00203{bottom:671.853333pt;}
.ya_c00203{bottom:687.520000pt;}
.yb_c00203{bottom:688.453333pt;}
.y9_c00203{bottom:702.933333pt;}
.y7_c00203{bottom:718.600000pt;}
.y8_c00203{bottom:719.466667pt;}
.y5_c00203{bottom:733.933333pt;}
.y6_c00203{bottom:734.600000pt;}
.y3_c00203{bottom:825.466667pt;}
.y2_c00203{bottom:964.000000pt;}
.y1_c00203{bottom:972.600000pt;}
.h1_c00203{height:57.578125pt;}
.h3_c00203{height:62.781250pt;}
.h4_c00203{height:62.812500pt;}
.h2_c00203{height:68.046875pt;}
.h0_c00203{height:1044.000000pt;}
.w0_c00203{width:650.646400pt;}
.w1_c00203{width:650.666667pt;}
.x0_c00203{left:0.000000pt;}
.x19_c00203{left:46.369067pt;}
.x2_c00203{left:63.369067pt;}
.x1a_c00203{left:156.769067pt;}
.x1c_c00203{left:166.035733pt;}
.x4_c00203{left:168.302400pt;}
.x1d_c00203{left:169.555733pt;}
.x3_c00203{left:181.769067pt;}
.x1_c00203{left:241.569067pt;}
.x1b_c00203{left:243.835733pt;}
.x1f_c00203{left:254.702400pt;}
.xe_c00203{left:291.169067pt;}
.x5_c00203{left:292.435733pt;}
.x1e_c00203{left:293.769067pt;}
.x9_c00203{left:295.635733pt;}
.x8_c00203{left:307.502400pt;}
.x16_c00203{left:308.435733pt;}
.x11_c00203{left:339.169067pt;}
.x15_c00203{left:341.102400pt;}
.x14_c00203{left:350.022400pt;}
.xa_c00203{left:356.435733pt;}
.x20_c00203{left:360.969067pt;}
.x22_c00203{left:362.835733pt;}
.x2a_c00203{left:364.169067pt;}
.x12_c00203{left:368.635733pt;}
.xb_c00203{left:370.235733pt;}
.xf_c00203{left:374.022400pt;}
.x13_c00203{left:377.569067pt;}
.x25_c00203{left:379.169067pt;}
.x27_c00203{left:380.769067pt;}
.xc_c00203{left:401.235733pt;}
.x10_c00203{left:411.835733pt;}
.x28_c00203{left:420.435733pt;}
.x7_c00203{left:423.635733pt;}
.x17_c00203{left:426.835733pt;}
.x24_c00203{left:429.435733pt;}
.x18_c00203{left:431.635733pt;}
.x23_c00203{left:440.969067pt;}
.x6_c00203{left:444.169067pt;}
.x26_c00203{left:451.169067pt;}
.xd_c00203{left:527.969067pt;}
.x21_c00203{left:541.102400pt;}
.x29_c00203{left:562.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6490b67d84036f5d6cde5385.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00204{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3_c00204{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m11_c00204{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m13_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);}
.m0_c00204{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c00204{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00204{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00204{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00204{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00204{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00204{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4_c00204{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00204{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m12_c00204{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00204{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00204{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me_c00204{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c00204{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.md_c00204{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m1_c00204{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.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;}
}
.ws0_c00204{word-spacing:0.000000px;}
.fc0_c00204{color:transparent;}
.fs0_c00204{font-size:66.000000px;}
.fs1_c00204{font-size:78.000000px;}
.y0_c00204{bottom:0.000000px;}
.y1b_c00204{bottom:55.935000px;}
.y16_c00204{bottom:380.685000px;}
.y17_c00204{bottom:381.060000px;}
.y18_c00204{bottom:382.875000px;}
.y15_c00204{bottom:403.035000px;}
.y19_c00204{bottom:416.385000px;}
.y14_c00204{bottom:423.510000px;}
.y1a_c00204{bottom:433.635000px;}
.y13_c00204{bottom:557.835000px;}
.y12_c00204{bottom:575.085000px;}
.y11_c00204{bottom:592.410000px;}
.y10_c00204{bottom:608.625000px;}
.yf_c00204{bottom:609.285000px;}
.ya_c00204{bottom:617.160000px;}
.y9_c00204{bottom:617.250000px;}
.ye_c00204{bottom:626.625000px;}
.yd_c00204{bottom:643.875000px;}
.yc_c00204{bottom:660.810000px;}
.yb_c00204{bottom:678.060000px;}
.y8_c00204{bottom:803.685000px;}
.y7_c00204{bottom:804.060000px;}
.y5_c00204{bottom:812.310000px;}
.y6_c00204{bottom:821.685000px;}
.y4_c00204{bottom:911.310000px;}
.y3_c00204{bottom:1077.300000px;}
.y2_c00204{bottom:1080.585000px;}
.y1_c00204{bottom:1080.900000px;}
.h1_c00204{height:64.775391px;}
.h2_c00204{height:76.552734px;}
.h0_c00204{height:1174.500000px;}
.w0_c00204{width:731.977200px;}
.w1_c00204{width:732.000000px;}
.x0_c00204{left:0.000000px;}
.x5_c00204{left:71.290200px;}
.xa_c00204{left:72.715200px;}
.x14_c00204{left:73.765200px;}
.xb_c00204{left:134.290200px;}
.x4_c00204{left:179.590200px;}
.x6_c00204{left:199.375200px;}
.xd_c00204{left:201.940200px;}
.x12_c00204{left:214.915200px;}
.x7_c00204{left:229.690200px;}
.x8_c00204{left:265.315200px;}
.xe_c00204{left:284.740200px;}
.x15_c00204{left:295.165200px;}
.x13_c00204{left:304.915200px;}
.x1_c00204{left:309.190200px;}
.xf_c00204{left:322.915200px;}
.x10_c00204{left:336.190200px;}
.x11_c00204{left:391.315200px;}
.x9_c00204{left:416.140200px;}
.x16_c00204{left:420.115200px;}
.xc_c00204{left:431.965200px;}
.x18_c00204{left:435.565200px;}
.x17_c00204{left:451.090200px;}
.x2_c00204{left:476.290200px;}
.x19_c00204{left:610.540200px;}
.x3_c00204{left:638.965200px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls0_c00204{letter-spacing:0.000000pt;}
.ws0_c00204{word-spacing:0.000000pt;}
.fs0_c00204{font-size:58.666667pt;}
.fs1_c00204{font-size:69.333333pt;}
.y0_c00204{bottom:0.000000pt;}
.y1b_c00204{bottom:49.720000pt;}
.y16_c00204{bottom:338.386667pt;}
.y17_c00204{bottom:338.720000pt;}
.y18_c00204{bottom:340.333333pt;}
.y15_c00204{bottom:358.253333pt;}
.y19_c00204{bottom:370.120000pt;}
.y14_c00204{bottom:376.453333pt;}
.y1a_c00204{bottom:385.453333pt;}
.y13_c00204{bottom:495.853333pt;}
.y12_c00204{bottom:511.186667pt;}
.y11_c00204{bottom:526.586667pt;}
.y10_c00204{bottom:541.000000pt;}
.yf_c00204{bottom:541.586667pt;}
.ya_c00204{bottom:548.586667pt;}
.y9_c00204{bottom:548.666667pt;}
.ye_c00204{bottom:557.000000pt;}
.yd_c00204{bottom:572.333333pt;}
.yc_c00204{bottom:587.386667pt;}
.yb_c00204{bottom:602.720000pt;}
.y8_c00204{bottom:714.386667pt;}
.y7_c00204{bottom:714.720000pt;}
.y5_c00204{bottom:722.053333pt;}
.y6_c00204{bottom:730.386667pt;}
.y4_c00204{bottom:810.053333pt;}
.y3_c00204{bottom:957.600000pt;}
.y2_c00204{bottom:960.520000pt;}
.y1_c00204{bottom:960.800000pt;}
.h1_c00204{height:57.578125pt;}
.h2_c00204{height:68.046875pt;}
.h0_c00204{height:1044.000000pt;}
.w0_c00204{width:650.646400pt;}
.w1_c00204{width:650.666667pt;}
.x0_c00204{left:0.000000pt;}
.x5_c00204{left:63.369067pt;}
.xa_c00204{left:64.635733pt;}
.x14_c00204{left:65.569067pt;}
.xb_c00204{left:119.369067pt;}
.x4_c00204{left:159.635733pt;}
.x6_c00204{left:177.222400pt;}
.xd_c00204{left:179.502400pt;}
.x12_c00204{left:191.035733pt;}
.x7_c00204{left:204.169067pt;}
.x8_c00204{left:235.835733pt;}
.xe_c00204{left:253.102400pt;}
.x15_c00204{left:262.369067pt;}
.x13_c00204{left:271.035733pt;}
.x1_c00204{left:274.835733pt;}
.xf_c00204{left:287.035733pt;}
.x10_c00204{left:298.835733pt;}
.x11_c00204{left:347.835733pt;}
.x9_c00204{left:369.902400pt;}
.x16_c00204{left:373.435733pt;}
.xc_c00204{left:383.969067pt;}
.x18_c00204{left:387.169067pt;}
.x17_c00204{left:400.969067pt;}
.x2_c00204{left:423.369067pt;}
.x19_c00204{left:542.702400pt;}
.x3_c00204{left:567.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_675dc8fb16331ef534efe26b.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00205;src:url('chunks/assets/font_5119a759e9f18dd93d498519.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00205;src:url('chunks/assets/font_5bcef9a1380a5a82971ecc01.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00205;src:url('chunks/assets/font_44f123c7d011a8719fd2daed.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00205;src:url('chunks/assets/font_1751d1cc914e73b714d97303.woff2')format("woff");}.ff5_c00205{font-family:ff5_c00205;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1e_c00205{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m12_c00205{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00205{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m20_c00205{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m27_c00205{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m24_c00205{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m26_c00205{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m23_c00205{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m11_c00205{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m25_c00205{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m0_c00205{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m21_c00205{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00205{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00205{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m22_c00205{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c00205{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7_c00205{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00205{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c00205{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m19_c00205{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c00205{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00205{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00205{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00205{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00205{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00205{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00205{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00205{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00205{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00205{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00205{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00205{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00205{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c00205{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c00205{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.md_c00205{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00205{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m16_c00205{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m14_c00205{transform:matrix(1.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.402500,0.000000,0.000000,0.250000,0,0);}
.m1_c00205{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:-16.500000px;}
.ws1_c00205{word-spacing:0.000000px;}
.fc0_c00205{color:transparent;}
.fs3_c00205{font-size:42.000000px;}
.fs1_c00205{font-size:60.000000px;}
.fs0_c00205{font-size:66.000000px;}
.fs2_c00205{font-size:72.000000px;}
.fs4_c00205{font-size:84.000000px;}
.y0_c00205{bottom:0.000000px;}
.y46_c00205{bottom:131.625000px;}
.y45_c00205{bottom:149.535000px;}
.y44_c00205{bottom:166.785000px;}
.y5a_c00205{bottom:170.085000px;}
.y43_c00205{bottom:184.785000px;}
.y42_c00205{bottom:201.810000px;}
.y56_c00205{bottom:208.635000px;}
.y55_c00205{bottom:209.310000px;}
.y54_c00205{bottom:226.635000px;}
.y41_c00205{bottom:236.685000px;}
.y40_c00205{bottom:253.650000px;}
.y59_c00205{bottom:256.500000px;}
.y58_c00205{bottom:257.910000px;}
.y57_c00205{bottom:258.285000px;}
.y3f_c00205{bottom:271.560000px;}
.y53_c00205{bottom:282.060000px;}
.y52_c00205{bottom:304.410000px;}
.y3e_c00205{bottom:307.650000px;}
.y3d_c00205{bottom:324.525000px;}
.y51_c00205{bottom:336.750000px;}
.y3c_c00205{bottom:342.900000px;}
.y50_c00205{bottom:355.500000px;}
.y3b_c00205{bottom:359.085000px;}
.y4f_c00205{bottom:372.810000px;}
.y3a_c00205{bottom:377.460000px;}
.y39_c00205{bottom:394.410000px;}
.y38_c00205{bottom:429.660000px;}
.y37_c00205{bottom:446.910000px;}
.y36_c00205{bottom:447.660000px;}
.y35_c00205{bottom:448.035000px;}
.y4e_c00205{bottom:451.635000px;}
.y33_c00205{bottom:464.535000px;}
.y32_c00205{bottom:498.435000px;}
.y31_c00205{bottom:516.060000px;}
.y30_c00205{bottom:516.750000px;}
.y2f_c00205{bottom:517.875000px;}
.y2e_c00205{bottom:518.250000px;}
.y2d_c00205{bottom:533.010000px;}
.y2c_c00205{bottom:534.435000px;}
.y2b_c00205{bottom:535.500000px;}
.y2a_c00205{bottom:568.260000px;}
.y29_c00205{bottom:585.510000px;}
.y27_c00205{bottom:593.835000px;}
.y26_c00205{bottom:594.885000px;}
.y25_c00205{bottom:599.535000px;}
.y28_c00205{bottom:602.835000px;}
.y24_c00205{bottom:620.760000px;}
.y22_c00205{bottom:621.135000px;}
.y23_c00205{bottom:621.210000px;}
.y20_c00205{bottom:655.335000px;}
.y1f_c00205{bottom:655.410000px;}
.y21_c00205{bottom:655.710000px;}
.y1e_c00205{bottom:673.035000px;}
.y1d_c00205{bottom:680.910000px;}
.y1c_c00205{bottom:681.000000px;}
.y1b_c00205{bottom:690.285000px;}
.y19_c00205{bottom:698.160000px;}
.y1a_c00205{bottom:698.250000px;}
.y18_c00205{bottom:707.625000px;}
.y17_c00205{bottom:742.125000px;}
.y4c_c00205{bottom:749.010000px;}
.y4d_c00205{bottom:749.325000px;}
.y15_c00205{bottom:758.325000px;}
.y16_c00205{bottom:759.825000px;}
.y4b_c00205{bottom:778.500000px;}
.y14_c00205{bottom:793.275000px;}
.y4a_c00205{bottom:799.335000px;}
.y11_c00205{bottom:808.050000px;}
.y12_c00205{bottom:808.425000px;}
.y13_c00205{bottom:811.185000px;}
.ye_c00205{bottom:825.300000px;}
.yf_c00205{bottom:826.050000px;}
.y47_c00205{bottom:827.460000px;}
.y48_c00205{bottom:827.775000px;}
.y49_c00205{bottom:827.835000px;}
.y10_c00205{bottom:828.525000px;}
.yb_c00205{bottom:842.175000px;}
.yc_c00205{bottom:843.300000px;}
.yd_c00205{bottom:845.775000px;}
.ya_c00205{bottom:862.710000px;}
.y9_c00205{bottom:935.835000px;}
.y6_c00205{bottom:987.300000px;}
.y7_c00205{bottom:992.025000px;}
.y8_c00205{bottom:996.675000px;}
.y5_c00205{bottom:1016.835000px;}
.y4_c00205{bottom:1038.435000px;}
.y1_c00205{bottom:1085.550000px;}
.y3_c00205{bottom:1095.000000px;}
.y2_c00205{bottom:1100.685000px;}
.y34_c00205{bottom:1174.500000px;}
.h5_c00205{height:41.220703px;}
.h2_c00205{height:58.886719px;}
.h1_c00205{height:64.775391px;}
.h8_c00205{height:66.515625px;}
.h4_c00205{height:70.628906px;}
.h3_c00205{height:70.664062px;}
.h7_c00205{height:84.656250px;}
.h6_c00205{height:87.609375px;}
.h0_c00205{height:1174.500000px;}
.w0_c00205{width:731.977200px;}
.w1_c00205{width:732.000000px;}
.x28_c00205{left:-21.259800px;}
.x0_c00205{left:0.000000px;}
.x1a_c00205{left:47.890200px;}
.x5_c00205{left:50.365200px;}
.x32_c00205{left:58.315200px;}
.x1_c00205{left:71.290200px;}
.x2e_c00205{left:76.300200px;}
.x4_c00205{left:81.340200px;}
.x33_c00205{left:82.765200px;}
.x1d_c00205{left:84.925200px;}
.x17_c00205{left:87.790200px;}
.x2f_c00205{left:89.290200px;}
.x18_c00205{left:93.550200px;}
.x30_c00205{left:95.365200px;}
.x2_c00205{left:97.165200px;}
.x36_c00205{left:102.190200px;}
.x31_c00205{left:104.740200px;}
.x19_c00205{left:139.690200px;}
.x6_c00205{left:157.990200px;}
.x1b_c00205{left:167.740200px;}
.x37_c00205{left:179.590200px;}
.x22_c00205{left:181.750200px;}
.x12_c00205{left:184.315200px;}
.xa_c00205{left:186.115200px;}
.x38_c00205{left:195.790200px;}
.x24_c00205{left:198.715200px;}
.x14_c00205{left:200.125200px;}
.xd_c00205{left:202.315200px;}
.x8_c00205{left:205.540200px;}
.x35_c00205{left:249.490200px;}
.x15_c00205{left:253.090200px;}
.xe_c00205{left:254.515200px;}
.x34_c00205{left:262.390200px;}
.x25_c00205{left:267.790200px;}
.x3_c00205{left:271.765200px;}
.x26_c00205{left:306.340200px;}
.x16_c00205{left:308.515200px;}
.x13_c00205{left:309.940200px;}
.xb_c00205{left:311.365200px;}
.x10_c00205{left:312.790200px;}
.x3b_c00205{left:319.690200px;}
.x7_c00205{left:320.740200px;}
.x1e_c00205{left:322.540200px;}
.xf_c00205{left:323.590200px;}
.x11_c00205{left:324.715200px;}
.x9_c00205{left:326.515200px;}
.x39_c00205{left:335.890200px;}
.x2a_c00205{left:337.690200px;}
.x29_c00205{left:339.115200px;}
.xc_c00205{left:341.590200px;}
.x3a_c00205{left:348.115200px;}
.x1f_c00205{left:354.940200px;}
.x27_c00205{left:422.590200px;}
.x2b_c00205{left:436.990200px;}
.x23_c00205{left:438.775200px;}
.x1c_c00205{left:440.590200px;}
.x2d_c00205{left:452.890200px;}
.x2c_c00205{left:453.940200px;}
.x21_c00205{left:456.115200px;}
.x20_c00205{left:457.540200px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ws0_c00205{word-spacing:-14.666667pt;}
.ws1_c00205{word-spacing:0.000000pt;}
.fs3_c00205{font-size:37.333333pt;}
.fs1_c00205{font-size:53.333333pt;}
.fs0_c00205{font-size:58.666667pt;}
.fs2_c00205{font-size:64.000000pt;}
.fs4_c00205{font-size:74.666667pt;}
.y0_c00205{bottom:0.000000pt;}
.y46_c00205{bottom:117.000000pt;}
.y45_c00205{bottom:132.920000pt;}
.y44_c00205{bottom:148.253333pt;}
.y5a_c00205{bottom:151.186667pt;}
.y43_c00205{bottom:164.253333pt;}
.y42_c00205{bottom:179.386667pt;}
.y56_c00205{bottom:185.453333pt;}
.y55_c00205{bottom:186.053333pt;}
.y54_c00205{bottom:201.453333pt;}
.y41_c00205{bottom:210.386667pt;}
.y40_c00205{bottom:225.466667pt;}
.y59_c00205{bottom:228.000000pt;}
.y58_c00205{bottom:229.253333pt;}
.y57_c00205{bottom:229.586667pt;}
.y3f_c00205{bottom:241.386667pt;}
.y53_c00205{bottom:250.720000pt;}
.y52_c00205{bottom:270.586667pt;}
.y3e_c00205{bottom:273.466667pt;}
.y3d_c00205{bottom:288.466667pt;}
.y51_c00205{bottom:299.333333pt;}
.y3c_c00205{bottom:304.800000pt;}
.y50_c00205{bottom:316.000000pt;}
.y3b_c00205{bottom:319.186667pt;}
.y4f_c00205{bottom:331.386667pt;}
.y3a_c00205{bottom:335.520000pt;}
.y39_c00205{bottom:350.586667pt;}
.y38_c00205{bottom:381.920000pt;}
.y37_c00205{bottom:397.253333pt;}
.y36_c00205{bottom:397.920000pt;}
.y35_c00205{bottom:398.253333pt;}
.y4e_c00205{bottom:401.453333pt;}
.y33_c00205{bottom:412.920000pt;}
.y32_c00205{bottom:443.053333pt;}
.y31_c00205{bottom:458.720000pt;}
.y30_c00205{bottom:459.333333pt;}
.y2f_c00205{bottom:460.333333pt;}
.y2e_c00205{bottom:460.666667pt;}
.y2d_c00205{bottom:473.786667pt;}
.y2c_c00205{bottom:475.053333pt;}
.y2b_c00205{bottom:476.000000pt;}
.y2a_c00205{bottom:505.120000pt;}
.y29_c00205{bottom:520.453333pt;}
.y27_c00205{bottom:527.853333pt;}
.y26_c00205{bottom:528.786667pt;}
.y25_c00205{bottom:532.920000pt;}
.y28_c00205{bottom:535.853333pt;}
.y24_c00205{bottom:551.786667pt;}
.y22_c00205{bottom:552.120000pt;}
.y23_c00205{bottom:552.186667pt;}
.y20_c00205{bottom:582.520000pt;}
.y1f_c00205{bottom:582.586667pt;}
.y21_c00205{bottom:582.853333pt;}
.y1e_c00205{bottom:598.253333pt;}
.y1d_c00205{bottom:605.253333pt;}
.y1c_c00205{bottom:605.333333pt;}
.y1b_c00205{bottom:613.586667pt;}
.y19_c00205{bottom:620.586667pt;}
.y1a_c00205{bottom:620.666667pt;}
.y18_c00205{bottom:629.000000pt;}
.y17_c00205{bottom:659.666667pt;}
.y4c_c00205{bottom:665.786667pt;}
.y4d_c00205{bottom:666.066667pt;}
.y15_c00205{bottom:674.066667pt;}
.y16_c00205{bottom:675.400000pt;}
.y4b_c00205{bottom:692.000000pt;}
.y14_c00205{bottom:705.133333pt;}
.y4a_c00205{bottom:710.520000pt;}
.y11_c00205{bottom:718.266667pt;}
.y12_c00205{bottom:718.600000pt;}
.y13_c00205{bottom:721.053333pt;}
.ye_c00205{bottom:733.600000pt;}
.yf_c00205{bottom:734.266667pt;}
.y47_c00205{bottom:735.520000pt;}
.y48_c00205{bottom:735.800000pt;}
.y49_c00205{bottom:735.853333pt;}
.y10_c00205{bottom:736.466667pt;}
.yb_c00205{bottom:748.600000pt;}
.yc_c00205{bottom:749.600000pt;}
.yd_c00205{bottom:751.800000pt;}
.ya_c00205{bottom:766.853333pt;}
.y9_c00205{bottom:831.853333pt;}
.y6_c00205{bottom:877.600000pt;}
.y7_c00205{bottom:881.800000pt;}
.y8_c00205{bottom:885.933333pt;}
.y5_c00205{bottom:903.853333pt;}
.y4_c00205{bottom:923.053333pt;}
.y1_c00205{bottom:964.933333pt;}
.y3_c00205{bottom:973.333333pt;}
.y2_c00205{bottom:978.386667pt;}
.y34_c00205{bottom:1044.000000pt;}
.h5_c00205{height:36.640625pt;}
.h2_c00205{height:52.343750pt;}
.h1_c00205{height:57.578125pt;}
.h8_c00205{height:59.125000pt;}
.h4_c00205{height:62.781250pt;}
.h3_c00205{height:62.812500pt;}
.h7_c00205{height:75.250000pt;}
.h6_c00205{height:77.875000pt;}
.h0_c00205{height:1044.000000pt;}
.w0_c00205{width:650.646400pt;}
.w1_c00205{width:650.666667pt;}
.x28_c00205{left:-18.897600pt;}
.x0_c00205{left:0.000000pt;}
.x1a_c00205{left:42.569067pt;}
.x5_c00205{left:44.769067pt;}
.x32_c00205{left:51.835733pt;}
.x1_c00205{left:63.369067pt;}
.x2e_c00205{left:67.822400pt;}
.x4_c00205{left:72.302400pt;}
.x33_c00205{left:73.569067pt;}
.x1d_c00205{left:75.489067pt;}
.x17_c00205{left:78.035733pt;}
.x2f_c00205{left:79.369067pt;}
.x18_c00205{left:83.155733pt;}
.x30_c00205{left:84.769067pt;}
.x2_c00205{left:86.369067pt;}
.x36_c00205{left:90.835733pt;}
.x31_c00205{left:93.102400pt;}
.x19_c00205{left:124.169067pt;}
.x6_c00205{left:140.435733pt;}
.x1b_c00205{left:149.102400pt;}
.x37_c00205{left:159.635733pt;}
.x22_c00205{left:161.555733pt;}
.x12_c00205{left:163.835733pt;}
.xa_c00205{left:165.435733pt;}
.x38_c00205{left:174.035733pt;}
.x24_c00205{left:176.635733pt;}
.x14_c00205{left:177.889067pt;}
.xd_c00205{left:179.835733pt;}
.x8_c00205{left:182.702400pt;}
.x35_c00205{left:221.769067pt;}
.x15_c00205{left:224.969067pt;}
.xe_c00205{left:226.235733pt;}
.x34_c00205{left:233.235733pt;}
.x25_c00205{left:238.035733pt;}
.x3_c00205{left:241.569067pt;}
.x26_c00205{left:272.302400pt;}
.x16_c00205{left:274.235733pt;}
.x13_c00205{left:275.502400pt;}
.xb_c00205{left:276.769067pt;}
.x10_c00205{left:278.035733pt;}
.x3b_c00205{left:284.169067pt;}
.x7_c00205{left:285.102400pt;}
.x1e_c00205{left:286.702400pt;}
.xf_c00205{left:287.635733pt;}
.x11_c00205{left:288.635733pt;}
.x9_c00205{left:290.235733pt;}
.x39_c00205{left:298.569067pt;}
.x2a_c00205{left:300.169067pt;}
.x29_c00205{left:301.435733pt;}
.xc_c00205{left:303.635733pt;}
.x3a_c00205{left:309.435733pt;}
.x1f_c00205{left:315.502400pt;}
.x27_c00205{left:375.635733pt;}
.x2b_c00205{left:388.435733pt;}
.x23_c00205{left:390.022400pt;}
.x1c_c00205{left:391.635733pt;}
.x2d_c00205{left:402.569067pt;}
.x2c_c00205{left:403.502400pt;}
.x21_c00205{left:405.435733pt;}
.x20_c00205{left:406.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e905b5a09389ed1b57db8d5e.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00206;src:url('chunks/assets/font_55d21e69526e2ce3dca408f0.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00206;src:url('chunks/assets/font_4562f4b20363da52886be4fe.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00206{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7_c00206{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_c00206{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6_c00206{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m10_c00206{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md_c00206{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c00206{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c00206{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00206{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00206{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00206{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00206{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00206{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00206{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00206{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00206{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2_c00206{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.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;}
}
.ws0_c00206{word-spacing:0.000000px;}
.fc0_c00206{color:transparent;}
.fs1_c00206{font-size:60.000000px;}
.fs0_c00206{font-size:66.000000px;}
.fs3_c00206{font-size:72.000000px;}
.fs2_c00206{font-size:84.000000px;}
.y0_c00206{bottom:0.000000px;}
.y19_c00206{bottom:81.135000px;}
.y18_c00206{bottom:105.285000px;}
.y17_c00206{bottom:125.835000px;}
.y16_c00206{bottom:496.935000px;}
.y15_c00206{bottom:514.635000px;}
.y14_c00206{bottom:531.510000px;}
.y13_c00206{bottom:548.835000px;}
.y12_c00206{bottom:565.710000px;}
.y11_c00206{bottom:583.035000px;}
.yb_c00206{bottom:583.335000px;}
.y10_c00206{bottom:600.285000px;}
.yf_c00206{bottom:616.875000px;}
.ye_c00206{bottom:617.250000px;}
.yd_c00206{bottom:634.500000px;}
.yc_c00206{bottom:651.060000px;}
.ya_c00206{bottom:774.885000px;}
.y9_c00206{bottom:973.275000px;}
.y8_c00206{bottom:975.060000px;}
.y7_c00206{bottom:993.435000px;}
.y6_c00206{bottom:997.335000px;}
.y5_c00206{bottom:1016.085000px;}
.y4_c00206{bottom:1071.210000px;}
.y3_c00206{bottom:1075.125000px;}
.y2_c00206{bottom:1075.875000px;}
.y1_c00206{bottom:1076.625000px;}
.h2_c00206{height:60.468750px;}
.h6_c00206{height:64.775391px;}
.h1_c00206{height:66.515625px;}
.h4_c00206{height:70.664062px;}
.h5_c00206{height:82.400391px;}
.h3_c00206{height:84.656250px;}
.h0_c00206{height:1174.500000px;}
.w0_c00206{width:731.977200px;}
.w1_c00206{width:732.000000px;}
.x0_c00206{left:0.000000px;}
.x6_c00206{left:74.890200px;}
.x10_c00206{left:80.590200px;}
.xf_c00206{left:82.090200px;}
.x5_c00206{left:106.540200px;}
.xe_c00206{left:113.740200px;}
.x8_c00206{left:236.140200px;}
.x7_c00206{left:251.290200px;}
.x1_c00206{left:286.915200px;}
.x9_c00206{left:294.490200px;}
.xd_c00206{left:295.915200px;}
.xa_c00206{left:311.740200px;}
.x2_c00206{left:314.590200px;}
.x3_c00206{left:481.990200px;}
.xb_c00206{left:538.540200px;}
.xc_c00206{left:580.315200px;}
.x4_c00206{left:643.315200px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ws0_c00206{word-spacing:0.000000pt;}
.fs1_c00206{font-size:53.333333pt;}
.fs0_c00206{font-size:58.666667pt;}
.fs3_c00206{font-size:64.000000pt;}
.fs2_c00206{font-size:74.666667pt;}
.y0_c00206{bottom:0.000000pt;}
.y19_c00206{bottom:72.120000pt;}
.y18_c00206{bottom:93.586667pt;}
.y17_c00206{bottom:111.853333pt;}
.y16_c00206{bottom:441.720000pt;}
.y15_c00206{bottom:457.453333pt;}
.y14_c00206{bottom:472.453333pt;}
.y13_c00206{bottom:487.853333pt;}
.y12_c00206{bottom:502.853333pt;}
.y11_c00206{bottom:518.253333pt;}
.yb_c00206{bottom:518.520000pt;}
.y10_c00206{bottom:533.586667pt;}
.yf_c00206{bottom:548.333333pt;}
.ye_c00206{bottom:548.666667pt;}
.yd_c00206{bottom:564.000000pt;}
.yc_c00206{bottom:578.720000pt;}
.ya_c00206{bottom:688.786667pt;}
.y9_c00206{bottom:865.133333pt;}
.y8_c00206{bottom:866.720000pt;}
.y7_c00206{bottom:883.053333pt;}
.y6_c00206{bottom:886.520000pt;}
.y5_c00206{bottom:903.186667pt;}
.y4_c00206{bottom:952.186667pt;}
.y3_c00206{bottom:955.666667pt;}
.y2_c00206{bottom:956.333333pt;}
.y1_c00206{bottom:957.000000pt;}
.h2_c00206{height:53.750000pt;}
.h6_c00206{height:57.578125pt;}
.h1_c00206{height:59.125000pt;}
.h4_c00206{height:62.812500pt;}
.h5_c00206{height:73.244792pt;}
.h3_c00206{height:75.250000pt;}
.h0_c00206{height:1044.000000pt;}
.w0_c00206{width:650.646400pt;}
.w1_c00206{width:650.666667pt;}
.x0_c00206{left:0.000000pt;}
.x6_c00206{left:66.569067pt;}
.x10_c00206{left:71.635733pt;}
.xf_c00206{left:72.969067pt;}
.x5_c00206{left:94.702400pt;}
.xe_c00206{left:101.102400pt;}
.x8_c00206{left:209.902400pt;}
.x7_c00206{left:223.369067pt;}
.x1_c00206{left:255.035733pt;}
.x9_c00206{left:261.769067pt;}
.xd_c00206{left:263.035733pt;}
.xa_c00206{left:277.102400pt;}
.x2_c00206{left:279.635733pt;}
.x3_c00206{left:428.435733pt;}
.xb_c00206{left:478.702400pt;}
.xc_c00206{left:515.835733pt;}
.x4_c00206{left:571.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ecee68ece274b2b0ec17a2f.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00207;src:url('chunks/assets/font_1cdce719570e9dcbabce44b8.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00207;src:url('chunks/assets/font_f6a4439ba3646abbe9ed43b5.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00207{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00207{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mc_c00207{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m17_c00207{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m11_c00207{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m5_c00207{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m20_c00207{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00207{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00207{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10_c00207{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00207{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00207{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00207{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00207{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00207{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00207{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m21_c00207{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c00207{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00207{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00207{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00207{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00207{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00207{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00207{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00207{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00207{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00207{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c00207{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c00207{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16_c00207{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_c00207{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m19_c00207{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.me_c00207{transform:matrix(4.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c00207{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls1_c00207{letter-spacing:0.000000px;}
.ls0_c00207{letter-spacing:0.468000px;}
.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:0.000000px;}
.fc0_c00207{color:transparent;}
.fs4_c00207{font-size:42.000000px;}
.fs1_c00207{font-size:60.000000px;}
.fs0_c00207{font-size:66.000000px;}
.fs5_c00207{font-size:78.000000px;}
.fs2_c00207{font-size:84.000000px;}
.fs7_c00207{font-size:102.000000px;}
.fs6_c00207{font-size:126.000000px;}
.fs3_c00207{font-size:144.000000px;}
.y0_c00207{bottom:0.000000px;}
.y2a_c00207{bottom:87.660000px;}
.y29_c00207{bottom:101.310000px;}
.y28_c00207{bottom:104.910000px;}
.y27_c00207{bottom:109.260000px;}
.y26_c00207{bottom:124.035000px;}
.y23_c00207{bottom:370.650000px;}
.y25_c00207{bottom:373.125000px;}
.y24_c00207{bottom:390.375000px;}
.y20_c00207{bottom:400.125000px;}
.y1f_c00207{bottom:400.500000px;}
.y22_c00207{bottom:408.435000px;}
.y21_c00207{bottom:426.060000px;}
.y1e_c00207{bottom:460.635000px;}
.y1d_c00207{bottom:478.260000px;}
.y1c_c00207{bottom:495.585000px;}
.y1b_c00207{bottom:513.135000px;}
.y2e_c00207{bottom:521.460000px;}
.y1a_c00207{bottom:530.460000px;}
.y2d_c00207{bottom:542.310000px;}
.y19_c00207{bottom:548.085000px;}
.y18_c00207{bottom:565.410000px;}
.y2c_c00207{bottom:580.785000px;}
.y17_c00207{bottom:583.035000px;}
.y2b_c00207{bottom:604.635000px;}
.y16_c00207{bottom:618.285000px;}
.y13_c00207{bottom:622.260000px;}
.y15_c00207{bottom:625.125000px;}
.y14_c00207{bottom:635.910000px;}
.y11_c00207{bottom:669.750000px;}
.y12_c00207{bottom:670.875000px;}
.yf_c00207{bottom:704.685000px;}
.y10_c00207{bottom:705.435000px;}
.ye_c00207{bottom:712.935000px;}
.yc_c00207{bottom:723.075000px;}
.yd_c00207{bottom:727.335000px;}
.yb_c00207{bottom:728.760000px;}
.ya_c00207{bottom:757.635000px;}
.y9_c00207{bottom:775.935000px;}
.y8_c00207{bottom:783.135000px;}
.y7_c00207{bottom:793.560000px;}
.y5_c00207{bottom:810.525000px;}
.y6_c00207{bottom:810.900000px;}
.y4_c00207{bottom:906.300000px;}
.y1_c00207{bottom:1083.435000px;}
.y3_c00207{bottom:1092.750000px;}
.y2_c00207{bottom:1099.275000px;}
.h6_c00207{height:42.328125px;}
.h2_c00207{height:58.886719px;}
.h1_c00207{height:64.775391px;}
.h4_c00207{height:65.075391px;}
.h7_c00207{height:76.552734px;}
.h3_c00207{height:82.441406px;}
.h9_c00207{height:106.382812px;}
.h8_c00207{height:131.414062px;}
.h5_c00207{height:150.187500px;}
.h0_c00207{height:1174.500000px;}
.w0_c00207{width:731.977200px;}
.w1_c00207{width:732.000000px;}
.x0_c00207{left:0.000000px;}
.x1a_c00207{left:40.690200px;}
.x1d_c00207{left:45.340200px;}
.x1e_c00207{left:46.765200px;}
.xd_c00207{left:68.740200px;}
.x19_c00207{left:71.965200px;}
.x1_c00207{left:76.300200px;}
.xa_c00207{left:84.175200px;}
.x2_c00207{left:103.315200px;}
.x12_c00207{left:105.490200px;}
.x14_c00207{left:155.515200px;}
.x1b_c00207{left:170.290200px;}
.x4_c00207{left:207.715200px;}
.x18_c00207{left:228.940200px;}
.xb_c00207{left:237.190200px;}
.x15_c00207{left:244.090200px;}
.x3_c00207{left:278.290200px;}
.x11_c00207{left:285.790200px;}
.xe_c00207{left:299.140200px;}
.x8_c00207{left:300.565200px;}
.x1c_c00207{left:364.315200px;}
.xf_c00207{left:397.765200px;}
.x9_c00207{left:399.940200px;}
.x13_c00207{left:400.990200px;}
.xc_c00207{left:404.275200px;}
.x10_c00207{left:407.515200px;}
.x16_c00207{left:412.900200px;}
.x5_c00207{left:416.140200px;}
.x17_c00207{left:430.150200px;}
.x7_c00207{left:433.090200px;}
.x6_c00207{left:607.690200px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls1_c00207{letter-spacing:0.000000pt;}
.ls0_c00207{letter-spacing:0.416000pt;}
.ws0_c00207{word-spacing:0.000000pt;}
.fs4_c00207{font-size:37.333333pt;}
.fs1_c00207{font-size:53.333333pt;}
.fs0_c00207{font-size:58.666667pt;}
.fs5_c00207{font-size:69.333333pt;}
.fs2_c00207{font-size:74.666667pt;}
.fs7_c00207{font-size:90.666667pt;}
.fs6_c00207{font-size:112.000000pt;}
.fs3_c00207{font-size:128.000000pt;}
.y0_c00207{bottom:0.000000pt;}
.y2a_c00207{bottom:77.920000pt;}
.y29_c00207{bottom:90.053333pt;}
.y28_c00207{bottom:93.253333pt;}
.y27_c00207{bottom:97.120000pt;}
.y26_c00207{bottom:110.253333pt;}
.y23_c00207{bottom:329.466667pt;}
.y25_c00207{bottom:331.666667pt;}
.y24_c00207{bottom:347.000000pt;}
.y20_c00207{bottom:355.666667pt;}
.y1f_c00207{bottom:356.000000pt;}
.y22_c00207{bottom:363.053333pt;}
.y21_c00207{bottom:378.720000pt;}
.y1e_c00207{bottom:409.453333pt;}
.y1d_c00207{bottom:425.120000pt;}
.y1c_c00207{bottom:440.520000pt;}
.y1b_c00207{bottom:456.120000pt;}
.y2e_c00207{bottom:463.520000pt;}
.y1a_c00207{bottom:471.520000pt;}
.y2d_c00207{bottom:482.053333pt;}
.y19_c00207{bottom:487.186667pt;}
.y18_c00207{bottom:502.586667pt;}
.y2c_c00207{bottom:516.253333pt;}
.y17_c00207{bottom:518.253333pt;}
.y2b_c00207{bottom:537.453333pt;}
.y16_c00207{bottom:549.586667pt;}
.y13_c00207{bottom:553.120000pt;}
.y15_c00207{bottom:555.666667pt;}
.y14_c00207{bottom:565.253333pt;}
.y11_c00207{bottom:595.333333pt;}
.y12_c00207{bottom:596.333333pt;}
.yf_c00207{bottom:626.386667pt;}
.y10_c00207{bottom:627.053333pt;}
.ye_c00207{bottom:633.720000pt;}
.yc_c00207{bottom:642.733333pt;}
.yd_c00207{bottom:646.520000pt;}
.yb_c00207{bottom:647.786667pt;}
.ya_c00207{bottom:673.453333pt;}
.y9_c00207{bottom:689.720000pt;}
.y8_c00207{bottom:696.120000pt;}
.y7_c00207{bottom:705.386667pt;}
.y5_c00207{bottom:720.466667pt;}
.y6_c00207{bottom:720.800000pt;}
.y4_c00207{bottom:805.600000pt;}
.y1_c00207{bottom:963.053333pt;}
.y3_c00207{bottom:971.333333pt;}
.y2_c00207{bottom:977.133333pt;}
.h6_c00207{height:37.625000pt;}
.h2_c00207{height:52.343750pt;}
.h1_c00207{height:57.578125pt;}
.h4_c00207{height:57.844792pt;}
.h7_c00207{height:68.046875pt;}
.h3_c00207{height:73.281250pt;}
.h9_c00207{height:94.562500pt;}
.h8_c00207{height:116.812500pt;}
.h5_c00207{height:133.500000pt;}
.h0_c00207{height:1044.000000pt;}
.w0_c00207{width:650.646400pt;}
.w1_c00207{width:650.666667pt;}
.x0_c00207{left:0.000000pt;}
.x1a_c00207{left:36.169067pt;}
.x1d_c00207{left:40.302400pt;}
.x1e_c00207{left:41.569067pt;}
.xd_c00207{left:61.102400pt;}
.x19_c00207{left:63.969067pt;}
.x1_c00207{left:67.822400pt;}
.xa_c00207{left:74.822400pt;}
.x2_c00207{left:91.835733pt;}
.x12_c00207{left:93.769067pt;}
.x14_c00207{left:138.235733pt;}
.x1b_c00207{left:151.369067pt;}
.x4_c00207{left:184.635733pt;}
.x18_c00207{left:203.502400pt;}
.xb_c00207{left:210.835733pt;}
.x15_c00207{left:216.969067pt;}
.x3_c00207{left:247.369067pt;}
.x11_c00207{left:254.035733pt;}
.xe_c00207{left:265.902400pt;}
.x8_c00207{left:267.169067pt;}
.x1c_c00207{left:323.835733pt;}
.xf_c00207{left:353.569067pt;}
.x9_c00207{left:355.502400pt;}
.x13_c00207{left:356.435733pt;}
.xc_c00207{left:359.355733pt;}
.x10_c00207{left:362.235733pt;}
.x16_c00207{left:367.022400pt;}
.x5_c00207{left:369.902400pt;}
.x17_c00207{left:382.355733pt;}
.x7_c00207{left:384.969067pt;}
.x6_c00207{left:540.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d4fc5adea9653da8271bb378.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00208;src:url('chunks/assets/font_82f289b063440607ea7d4aab.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00208;src:url('chunks/assets/font_08d6a2f5a0a7d512a2609625.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00208;src:url('chunks/assets/font_2659800c9d76791d80c570dd.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00208{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m10_c00208{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m17_c00208{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m15_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);}
.m11_c00208{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md_c00208{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c00208{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00208{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c00208{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00208{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00208{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c00208{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00208{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00208{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf_c00208{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00208{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00208{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00208{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m18_c00208{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00208{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c00208{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00208{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m12_c00208{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m13_c00208{transform:matrix(3.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00208{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00208{color:transparent;}
.fs3_c00208{font-size:24.000000px;}
.fs0_c00208{font-size:60.000000px;}
.fs2_c00208{font-size:66.000000px;}
.fs4_c00208{font-size:72.000000px;}
.fs1_c00208{font-size:78.000000px;}
.y0_c00208{bottom:0.000000px;}
.y2b_c00208{bottom:76.785000px;}
.y2c_c00208{bottom:77.910000px;}
.y2d_c00208{bottom:79.410000px;}
.y2e_c00208{bottom:80.085000px;}
.y28_c00208{bottom:95.535000px;}
.y29_c00208{bottom:97.035000px;}
.y2a_c00208{bottom:97.710000px;}
.y27_c00208{bottom:156.810000px;}
.y25_c00208{bottom:172.935000px;}
.y26_c00208{bottom:173.310000px;}
.y23_c00208{bottom:189.135000px;}
.y24_c00208{bottom:189.885000px;}
.y21_c00208{bottom:205.710000px;}
.y22_c00208{bottom:206.460000px;}
.y20_c00208{bottom:222.660000px;}
.y1f_c00208{bottom:230.160000px;}
.y1e_c00208{bottom:230.535000px;}
.y1c_c00208{bottom:255.060000px;}
.y1d_c00208{bottom:255.435000px;}
.y1b_c00208{bottom:263.310000px;}
.y1a_c00208{bottom:271.935000px;}
.y19_c00208{bottom:272.310000px;}
.y18_c00208{bottom:272.400000px;}
.y17_c00208{bottom:305.835000px;}
.y16_c00208{bottom:323.085000px;}
.y13_c00208{bottom:350.835000px;}
.y14_c00208{bottom:365.250000px;}
.y15_c00208{bottom:374.625000px;}
.y11_c00208{bottom:408.060000px;}
.y12_c00208{bottom:408.435000px;}
.y10_c00208{bottom:442.260000px;}
.yf_c00208{bottom:459.510000px;}
.yc_c00208{bottom:467.460000px;}
.ye_c00208{bottom:476.835000px;}
.yd_c00208{bottom:494.085000px;}
.yb_c00208{bottom:582.285000px;}
.ya_c00208{bottom:710.385000px;}
.y9_c00208{bottom:710.460000px;}
.y8_c00208{bottom:821.310000px;}
.y7_c00208{bottom:839.685000px;}
.y6_c00208{bottom:856.650000px;}
.y5_c00208{bottom:938.310000px;}
.y4_c00208{bottom:940.185000px;}
.y3_c00208{bottom:1082.310000px;}
.y1_c00208{bottom:1085.925000px;}
.y2_c00208{bottom:1095.900000px;}
.h4_c00208{height:25.031250px;}
.h1_c00208{height:58.886719px;}
.h6_c00208{height:64.743164px;}
.h3_c00208{height:64.775391px;}
.h5_c00208{height:72.562500px;}
.h2_c00208{height:78.609375px;}
.h0_c00208{height:1174.500000px;}
.w0_c00208{width:731.977200px;}
.w1_c00208{width:732.000000px;}
.x0_c00208{left:0.000000px;}
.x10_c00208{left:67.315200px;}
.x1d_c00208{left:84.175200px;}
.x20_c00208{left:121.315200px;}
.x1e_c00208{left:124.915200px;}
.xb_c00208{left:182.125200px;}
.x21_c00208{left:190.750200px;}
.xa_c00208{left:205.540200px;}
.x4_c00208{left:210.190200px;}
.x16_c00208{left:254.890200px;}
.x7_c00208{left:261.340200px;}
.x1_c00208{left:287.290200px;}
.xd_c00208{left:298.090200px;}
.xc_c00208{left:299.140200px;}
.x12_c00208{left:314.965200px;}
.x8_c00208{left:316.765200px;}
.x22_c00208{left:374.740200px;}
.x9_c00208{left:381.565200px;}
.xe_c00208{left:385.150200px;}
.x1f_c00208{left:406.090200px;}
.x6_c00208{left:421.150200px;}
.x1a_c00208{left:447.115200px;}
.xf_c00208{left:449.965200px;}
.x17_c00208{left:463.690200px;}
.x11_c00208{left:466.165200px;}
.x1c_c00208{left:478.090200px;}
.x18_c00208{left:479.890200px;}
.x2_c00208{left:482.365200px;}
.x15_c00208{left:497.890200px;}
.x1b_c00208{left:514.390200px;}
.x19_c00208{left:516.190200px;}
.x14_c00208{left:517.990200px;}
.x5_c00208{left:529.915200px;}
.x13_c00208{left:577.765200px;}
.x3_c00208{left:644.740200px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls0_c00208{letter-spacing:0.000000pt;}
.ws0_c00208{word-spacing:0.000000pt;}
.fs3_c00208{font-size:21.333333pt;}
.fs0_c00208{font-size:53.333333pt;}
.fs2_c00208{font-size:58.666667pt;}
.fs4_c00208{font-size:64.000000pt;}
.fs1_c00208{font-size:69.333333pt;}
.y0_c00208{bottom:0.000000pt;}
.y2b_c00208{bottom:68.253333pt;}
.y2c_c00208{bottom:69.253333pt;}
.y2d_c00208{bottom:70.586667pt;}
.y2e_c00208{bottom:71.186667pt;}
.y28_c00208{bottom:84.920000pt;}
.y29_c00208{bottom:86.253333pt;}
.y2a_c00208{bottom:86.853333pt;}
.y27_c00208{bottom:139.386667pt;}
.y25_c00208{bottom:153.720000pt;}
.y26_c00208{bottom:154.053333pt;}
.y23_c00208{bottom:168.120000pt;}
.y24_c00208{bottom:168.786667pt;}
.y21_c00208{bottom:182.853333pt;}
.y22_c00208{bottom:183.520000pt;}
.y20_c00208{bottom:197.920000pt;}
.y1f_c00208{bottom:204.586667pt;}
.y1e_c00208{bottom:204.920000pt;}
.y1c_c00208{bottom:226.720000pt;}
.y1d_c00208{bottom:227.053333pt;}
.y1b_c00208{bottom:234.053333pt;}
.y1a_c00208{bottom:241.720000pt;}
.y19_c00208{bottom:242.053333pt;}
.y18_c00208{bottom:242.133333pt;}
.y17_c00208{bottom:271.853333pt;}
.y16_c00208{bottom:287.186667pt;}
.y13_c00208{bottom:311.853333pt;}
.y14_c00208{bottom:324.666667pt;}
.y15_c00208{bottom:333.000000pt;}
.y11_c00208{bottom:362.720000pt;}
.y12_c00208{bottom:363.053333pt;}
.y10_c00208{bottom:393.120000pt;}
.yf_c00208{bottom:408.453333pt;}
.yc_c00208{bottom:415.520000pt;}
.ye_c00208{bottom:423.853333pt;}
.yd_c00208{bottom:439.186667pt;}
.yb_c00208{bottom:517.586667pt;}
.ya_c00208{bottom:631.453333pt;}
.y9_c00208{bottom:631.520000pt;}
.y8_c00208{bottom:730.053333pt;}
.y7_c00208{bottom:746.386667pt;}
.y6_c00208{bottom:761.466667pt;}
.y5_c00208{bottom:834.053333pt;}
.y4_c00208{bottom:835.720000pt;}
.y3_c00208{bottom:962.053333pt;}
.y1_c00208{bottom:965.266667pt;}
.y2_c00208{bottom:974.133333pt;}
.h4_c00208{height:22.250000pt;}
.h1_c00208{height:52.343750pt;}
.h6_c00208{height:57.549479pt;}
.h3_c00208{height:57.578125pt;}
.h5_c00208{height:64.500000pt;}
.h2_c00208{height:69.875000pt;}
.h0_c00208{height:1044.000000pt;}
.w0_c00208{width:650.646400pt;}
.w1_c00208{width:650.666667pt;}
.x0_c00208{left:0.000000pt;}
.x10_c00208{left:59.835733pt;}
.x1d_c00208{left:74.822400pt;}
.x20_c00208{left:107.835733pt;}
.x1e_c00208{left:111.035733pt;}
.xb_c00208{left:161.889067pt;}
.x21_c00208{left:169.555733pt;}
.xa_c00208{left:182.702400pt;}
.x4_c00208{left:186.835733pt;}
.x16_c00208{left:226.569067pt;}
.x7_c00208{left:232.302400pt;}
.x1_c00208{left:255.369067pt;}
.xd_c00208{left:264.969067pt;}
.xc_c00208{left:265.902400pt;}
.x12_c00208{left:279.969067pt;}
.x8_c00208{left:281.569067pt;}
.x22_c00208{left:333.102400pt;}
.x9_c00208{left:339.169067pt;}
.xe_c00208{left:342.355733pt;}
.x1f_c00208{left:360.969067pt;}
.x6_c00208{left:374.355733pt;}
.x1a_c00208{left:397.435733pt;}
.xf_c00208{left:399.969067pt;}
.x17_c00208{left:412.169067pt;}
.x11_c00208{left:414.369067pt;}
.x1c_c00208{left:424.969067pt;}
.x18_c00208{left:426.569067pt;}
.x2_c00208{left:428.769067pt;}
.x15_c00208{left:442.569067pt;}
.x1b_c00208{left:457.235733pt;}
.x19_c00208{left:458.835733pt;}
.x14_c00208{left:460.435733pt;}
.x5_c00208{left:471.035733pt;}
.x13_c00208{left:513.569067pt;}
.x3_c00208{left:573.102400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_11b33efc242b30887614b6d9.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00209;src:url('chunks/assets/font_cf3902c5605ebb4158051d18.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00209;src:url('chunks/assets/font_5d49e53fb243e1cc0cadf750.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00209{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00209{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m12_c00209{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mb_c00209{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.me_c00209{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf_c00209{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m14_c00209{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c00209{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00209{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00209{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m17_c00209{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m18_c00209{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00209{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c00209{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1_c00209{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16_c00209{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00209{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00209{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00209{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m19_c00209{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00209{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m15_c00209{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00209{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00209{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c00209{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00209{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5_c00209{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m6_c00209{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.mc_c00209{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:-16.500000px;}
.ws1_c00209{word-spacing:0.000000px;}
._0_c00209{width:1.320750px;}
.fc0_c00209{color:transparent;}
.fs1_c00209{font-size:54.000000px;}
.fs3_c00209{font-size:60.000000px;}
.fs0_c00209{font-size:66.000000px;}
.fs2_c00209{font-size:84.000000px;}
.y0_c00209{bottom:0.000000px;}
.y31_c00209{bottom:95.910000px;}
.y30_c00209{bottom:98.085000px;}
.y2f_c00209{bottom:102.435000px;}
.y2e_c00209{bottom:156.750000px;}
.y2d_c00209{bottom:160.335000px;}
.y2c_c00209{bottom:161.460000px;}
.y2b_c00209{bottom:175.125000px;}
.y2a_c00209{bottom:212.160000px;}
.y29_c00209{bottom:212.910000px;}
.y28_c00209{bottom:228.810000px;}
.y27_c00209{bottom:260.835000px;}
.y25_c00209{bottom:272.310000px;}
.y24_c00209{bottom:273.060000px;}
.y26_c00209{bottom:277.710000px;}
.y23_c00209{bottom:289.275000px;}
.y22_c00209{bottom:295.410000px;}
.y35_c00209{bottom:331.410000px;}
.y34_c00209{bottom:332.085000px;}
.y33_c00209{bottom:341.085000px;}
.y32_c00209{bottom:341.775000px;}
.y21_c00209{bottom:347.625000px;}
.y20_c00209{bottom:357.660000px;}
.y1f_c00209{bottom:358.410000px;}
.y1d_c00209{bottom:365.625000px;}
.y1c_c00209{bottom:402.660000px;}
.y1b_c00209{bottom:409.185000px;}
.y1a_c00209{bottom:419.910000px;}
.y19_c00209{bottom:470.385000px;}
.y18_c00209{bottom:505.185000px;}
.y16_c00209{bottom:727.710000px;}
.y10_c00209{bottom:730.950000px;}
.y11_c00209{bottom:732.750000px;}
.y14_c00209{bottom:746.085000px;}
.y15_c00209{bottom:746.835000px;}
.ye_c00209{bottom:765.510000px;}
.yf_c00209{bottom:767.010000px;}
.yd_c00209{bottom:801.900000px;}
.y13_c00209{bottom:809.400000px;}
.y17_c00209{bottom:814.500000px;}
.yc_c00209{bottom:820.275000px;}
.yb_c00209{bottom:853.425000px;}
.y8_c00209{bottom:867.810000px;}
.y9_c00209{bottom:868.500000px;}
.y12_c00209{bottom:868.875000px;}
.ya_c00209{bottom:872.460000px;}
.y7_c00209{bottom:889.710000px;}
.y6_c00209{bottom:922.500000px;}
.y5_c00209{bottom:941.250000px;}
.y4_c00209{bottom:958.875000px;}
.y3_c00209{bottom:1022.925000px;}
.y1_c00209{bottom:1096.050000px;}
.y2_c00209{bottom:1106.775000px;}
.y1e_c00209{bottom:1174.500000px;}
.h4_c00209{height:52.998047px;}
.h2_c00209{height:54.421875px;}
.h5_c00209{height:58.886719px;}
.h6_c00209{height:64.743164px;}
.h1_c00209{height:64.775391px;}
.h3_c00209{height:82.441406px;}
.h0_c00209{height:1174.500000px;}
.w0_c00209{width:731.977200px;}
.w1_c00209{width:732.000000px;}
.x19_c00209{left:-21.259800px;}
.x0_c00209{left:0.000000px;}
.x10_c00209{left:43.915200px;}
.x16_c00209{left:46.090200px;}
.x1a_c00209{left:47.515200px;}
.x21_c00209{left:48.565200px;}
.x1_c00209{left:61.915200px;}
.x26_c00209{left:63.715200px;}
.x1e_c00209{left:64.765200px;}
.x24_c00209{left:66.940200px;}
.x14_c00209{left:110.140200px;}
.x11_c00209{left:119.515200px;}
.x12_c00209{left:129.940200px;}
.xf_c00209{left:130.990200px;}
.x22_c00209{left:148.315200px;}
.x3_c00209{left:161.590200px;}
.x27_c00209{left:188.965200px;}
.x1f_c00209{left:190.090200px;}
.x13_c00209{left:231.115200px;}
.x18_c00209{left:241.165200px;}
.x2_c00209{left:261.715200px;}
.x5_c00209{left:267.490200px;}
.x8_c00209{left:268.915200px;}
.xb_c00209{left:270.340200px;}
.xe_c00209{left:287.290200px;}
.xc_c00209{left:288.340200px;}
.x28_c00209{left:301.690200px;}
.x4_c00209{left:305.290200px;}
.x9_c00209{left:308.890200px;}
.x15_c00209{left:310.990200px;}
.x17_c00209{left:316.765200px;}
.x7_c00209{left:319.690200px;}
.xd_c00209{left:320.740200px;}
.x1b_c00209{left:323.965200px;}
.x6_c00209{left:335.515200px;}
.xa_c00209{left:337.690200px;}
.x1d_c00209{left:339.115200px;}
.x23_c00209{left:354.190200px;}
.x1c_c00209{left:355.690200px;}
.x20_c00209{left:373.315200px;}
.x25_c00209{left:426.940200px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls0_c00209{letter-spacing:0.000000pt;}
.ws0_c00209{word-spacing:-14.666667pt;}
.ws1_c00209{word-spacing:0.000000pt;}
._0_c00209{width:1.174000pt;}
.fs1_c00209{font-size:48.000000pt;}
.fs3_c00209{font-size:53.333333pt;}
.fs0_c00209{font-size:58.666667pt;}
.fs2_c00209{font-size:74.666667pt;}
.y0_c00209{bottom:0.000000pt;}
.y31_c00209{bottom:85.253333pt;}
.y30_c00209{bottom:87.186667pt;}
.y2f_c00209{bottom:91.053333pt;}
.y2e_c00209{bottom:139.333333pt;}
.y2d_c00209{bottom:142.520000pt;}
.y2c_c00209{bottom:143.520000pt;}
.y2b_c00209{bottom:155.666667pt;}
.y2a_c00209{bottom:188.586667pt;}
.y29_c00209{bottom:189.253333pt;}
.y28_c00209{bottom:203.386667pt;}
.y27_c00209{bottom:231.853333pt;}
.y25_c00209{bottom:242.053333pt;}
.y24_c00209{bottom:242.720000pt;}
.y26_c00209{bottom:246.853333pt;}
.y23_c00209{bottom:257.133333pt;}
.y22_c00209{bottom:262.586667pt;}
.y35_c00209{bottom:294.586667pt;}
.y34_c00209{bottom:295.186667pt;}
.y33_c00209{bottom:303.186667pt;}
.y32_c00209{bottom:303.800000pt;}
.y21_c00209{bottom:309.000000pt;}
.y20_c00209{bottom:317.920000pt;}
.y1f_c00209{bottom:318.586667pt;}
.y1d_c00209{bottom:325.000000pt;}
.y1c_c00209{bottom:357.920000pt;}
.y1b_c00209{bottom:363.720000pt;}
.y1a_c00209{bottom:373.253333pt;}
.y19_c00209{bottom:418.120000pt;}
.y18_c00209{bottom:449.053333pt;}
.y16_c00209{bottom:646.853333pt;}
.y10_c00209{bottom:649.733333pt;}
.y11_c00209{bottom:651.333333pt;}
.y14_c00209{bottom:663.186667pt;}
.y15_c00209{bottom:663.853333pt;}
.ye_c00209{bottom:680.453333pt;}
.yf_c00209{bottom:681.786667pt;}
.yd_c00209{bottom:712.800000pt;}
.y13_c00209{bottom:719.466667pt;}
.y17_c00209{bottom:724.000000pt;}
.yc_c00209{bottom:729.133333pt;}
.yb_c00209{bottom:758.600000pt;}
.y8_c00209{bottom:771.386667pt;}
.y9_c00209{bottom:772.000000pt;}
.y12_c00209{bottom:772.333333pt;}
.ya_c00209{bottom:775.520000pt;}
.y7_c00209{bottom:790.853333pt;}
.y6_c00209{bottom:820.000000pt;}
.y5_c00209{bottom:836.666667pt;}
.y4_c00209{bottom:852.333333pt;}
.y3_c00209{bottom:909.266667pt;}
.y1_c00209{bottom:974.266667pt;}
.y2_c00209{bottom:983.800000pt;}
.y1e_c00209{bottom:1044.000000pt;}
.h4_c00209{height:47.109375pt;}
.h2_c00209{height:48.375000pt;}
.h5_c00209{height:52.343750pt;}
.h6_c00209{height:57.549479pt;}
.h1_c00209{height:57.578125pt;}
.h3_c00209{height:73.281250pt;}
.h0_c00209{height:1044.000000pt;}
.w0_c00209{width:650.646400pt;}
.w1_c00209{width:650.666667pt;}
.x19_c00209{left:-18.897600pt;}
.x0_c00209{left:0.000000pt;}
.x10_c00209{left:39.035733pt;}
.x16_c00209{left:40.969067pt;}
.x1a_c00209{left:42.235733pt;}
.x21_c00209{left:43.169067pt;}
.x1_c00209{left:55.035733pt;}
.x26_c00209{left:56.635733pt;}
.x1e_c00209{left:57.569067pt;}
.x24_c00209{left:59.502400pt;}
.x14_c00209{left:97.902400pt;}
.x11_c00209{left:106.235733pt;}
.x12_c00209{left:115.502400pt;}
.xf_c00209{left:116.435733pt;}
.x22_c00209{left:131.835733pt;}
.x3_c00209{left:143.635733pt;}
.x27_c00209{left:167.969067pt;}
.x1f_c00209{left:168.969067pt;}
.x13_c00209{left:205.435733pt;}
.x18_c00209{left:214.369067pt;}
.x2_c00209{left:232.635733pt;}
.x5_c00209{left:237.769067pt;}
.x8_c00209{left:239.035733pt;}
.xb_c00209{left:240.302400pt;}
.xe_c00209{left:255.369067pt;}
.xc_c00209{left:256.302400pt;}
.x28_c00209{left:268.169067pt;}
.x4_c00209{left:271.369067pt;}
.x9_c00209{left:274.569067pt;}
.x15_c00209{left:276.435733pt;}
.x17_c00209{left:281.569067pt;}
.x7_c00209{left:284.169067pt;}
.xd_c00209{left:285.102400pt;}
.x1b_c00209{left:287.969067pt;}
.x6_c00209{left:298.235733pt;}
.xa_c00209{left:300.169067pt;}
.x1d_c00209{left:301.435733pt;}
.x23_c00209{left:314.835733pt;}
.x1c_c00209{left:316.169067pt;}
.x20_c00209{left:331.835733pt;}
.x25_c00209{left:379.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_79d8a0d5e4f5dabcced5c5f2.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00210;src:url('chunks/assets/font_e6d51bceed7fc244111cbb46.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00210;src:url('chunks/assets/font_4f09c737ff19d28df1d081af.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00210;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff4_c00210{font-family:ff4_c00210;line-height:1.575000;font-style:normal;font-weight:normal;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_72de89e4aa01755d8de38545.woff2')format("woff");}.ff5_c00210{font-family:ff5_c00210;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00210{transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);}
.m6_c00210{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m7_c00210{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md_c00210{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m14_c00210{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c00210{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me_c00210{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c00210{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00210{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c00210{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c00210{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c00210{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m11_c00210{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00210{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c00210{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00210{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m0_c00210{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00210{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00210{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c00210{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00210{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c00210{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c00210{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2_c00210{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:-16.500000px;}
.ws1_c00210{word-spacing:0.000000px;}
.fc0_c00210{color:transparent;}
.fs3_c00210{font-size:18.000000px;}
.fs4_c00210{font-size:24.000000px;}
.fs0_c00210{font-size:42.000000px;}
.fs1_c00210{font-size:60.000000px;}
.fs5_c00210{font-size:66.000000px;}
.fs2_c00210{font-size:72.000000px;}
.y0_c00210{bottom:0.000000px;}
.y2f_c00210{bottom:96.285000px;}
.y30_c00210{bottom:97.335000px;}
.y2e_c00210{bottom:121.500000px;}
.y2d_c00210{bottom:142.410000px;}
.y29_c00210{bottom:378.525000px;}
.y27_c00210{bottom:385.710000px;}
.y28_c00210{bottom:386.085000px;}
.y26_c00210{bottom:395.460000px;}
.y24_c00210{bottom:426.435000px;}
.y25_c00210{bottom:427.125000px;}
.yd_c00210{bottom:428.535000px;}
.y22_c00210{bottom:462.810000px;}
.y23_c00210{bottom:463.125000px;}
.y20_c00210{bottom:470.010000px;}
.y21_c00210{bottom:470.310000px;}
.y1f_c00210{bottom:480.435000px;}
.y1c_c00210{bottom:513.210000px;}
.y1d_c00210{bottom:513.510000px;}
.y1e_c00210{bottom:513.885000px;}
.y1b_c00210{bottom:547.335000px;}
.y1a_c00210{bottom:547.710000px;}
.y19_c00210{bottom:564.660000px;}
.y16_c00210{bottom:572.910000px;}
.y17_c00210{bottom:573.285000px;}
.y18_c00210{bottom:581.535000px;}
.y15_c00210{bottom:598.875000px;}
.yc_c00210{bottom:608.910000px;}
.y14_c00210{bottom:632.385000px;}
.y13_c00210{bottom:650.010000px;}
.y2c_c00210{bottom:657.885000px;}
.y2b_c00210{bottom:658.260000px;}
.y12_c00210{bottom:666.885000px;}
.y11_c00210{bottom:683.835000px;}
.y2a_c00210{bottom:701.460000px;}
.y10_c00210{bottom:718.035000px;}
.ye_c00210{bottom:735.285000px;}
.yf_c00210{bottom:752.910000px;}
.yb_c00210{bottom:887.250000px;}
.y6_c00210{bottom:889.050000px;}
.ya_c00210{bottom:1008.150000px;}
.y9_c00210{bottom:1009.275000px;}
.y8_c00210{bottom:1011.060000px;}
.y7_c00210{bottom:1031.175000px;}
.y4_c00210{bottom:1086.675000px;}
.y3_c00210{bottom:1090.275000px;}
.y2_c00210{bottom:1091.685000px;}
.y5_c00210{bottom:1105.710000px;}
.y1_c00210{bottom:1166.550000px;}
.h4_c00210{height:18.773438px;}
.h5_c00210{height:19.206000px;}
.h6_c00210{height:23.554688px;}
.h1_c00210{height:43.804688px;}
.h2_c00210{height:60.468750px;}
.h8_c00210{height:64.775391px;}
.h7_c00210{height:70.628906px;}
.h3_c00210{height:70.664062px;}
.h0_c00210{height:1174.500000px;}
.w0_c00210{width:731.977200px;}
.w1_c00210{width:732.000000px;}
.x8_c00210{left:-5.059800px;}
.x0_c00210{left:0.000000px;}
.x5_c00210{left:6.775200px;}
.x6_c00210{left:9.715200px;}
.x7_c00210{left:11.140200px;}
.xf_c00210{left:75.550200px;}
.xe_c00210{left:76.990200px;}
.xa_c00210{left:81.340200px;}
.x25_c00210{left:109.090200px;}
.x9_c00210{left:114.790200px;}
.x26_c00210{left:146.890200px;}
.x18_c00210{left:177.115200px;}
.x14_c00210{left:178.165200px;}
.x1b_c00210{left:179.290200px;}
.x1f_c00210{left:233.590200px;}
.xd_c00210{left:234.715200px;}
.x19_c00210{left:242.590200px;}
.x1c_c00210{left:250.540200px;}
.x15_c00210{left:269.965200px;}
.x10_c00210{left:280.765200px;}
.x2_c00210{left:286.165200px;}
.x22_c00210{left:302.365200px;}
.x1_c00210{left:325.765200px;}
.x24_c00210{left:349.915200px;}
.xb_c00210{left:369.715200px;}
.x20_c00210{left:392.365200px;}
.x16_c00210{left:393.490200px;}
.x11_c00210{left:396.340200px;}
.x21_c00210{left:406.765200px;}
.x1a_c00210{left:408.190200px;}
.x13_c00210{left:410.365200px;}
.x23_c00210{left:423.340200px;}
.x1d_c00210{left:425.140200px;}
.x12_c00210{left:426.565200px;}
.xc_c00210{left:480.565200px;}
.x3_c00210{left:484.165200px;}
.x1e_c00210{left:554.740200px;}
.x17_c00210{left:582.115200px;}
.x4_c00210{left:646.165200px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls0_c00210{letter-spacing:0.000000pt;}
.ws0_c00210{word-spacing:-14.666667pt;}
.ws1_c00210{word-spacing:0.000000pt;}
.fs3_c00210{font-size:16.000000pt;}
.fs4_c00210{font-size:21.333333pt;}
.fs0_c00210{font-size:37.333333pt;}
.fs1_c00210{font-size:53.333333pt;}
.fs5_c00210{font-size:58.666667pt;}
.fs2_c00210{font-size:64.000000pt;}
.y0_c00210{bottom:0.000000pt;}
.y2f_c00210{bottom:85.586667pt;}
.y30_c00210{bottom:86.520000pt;}
.y2e_c00210{bottom:108.000000pt;}
.y2d_c00210{bottom:126.586667pt;}
.y29_c00210{bottom:336.466667pt;}
.y27_c00210{bottom:342.853333pt;}
.y28_c00210{bottom:343.186667pt;}
.y26_c00210{bottom:351.520000pt;}
.y24_c00210{bottom:379.053333pt;}
.y25_c00210{bottom:379.666667pt;}
.yd_c00210{bottom:380.920000pt;}
.y22_c00210{bottom:411.386667pt;}
.y23_c00210{bottom:411.666667pt;}
.y20_c00210{bottom:417.786667pt;}
.y21_c00210{bottom:418.053333pt;}
.y1f_c00210{bottom:427.053333pt;}
.y1c_c00210{bottom:456.186667pt;}
.y1d_c00210{bottom:456.453333pt;}
.y1e_c00210{bottom:456.786667pt;}
.y1b_c00210{bottom:486.520000pt;}
.y1a_c00210{bottom:486.853333pt;}
.y19_c00210{bottom:501.920000pt;}
.y16_c00210{bottom:509.253333pt;}
.y17_c00210{bottom:509.586667pt;}
.y18_c00210{bottom:516.920000pt;}
.y15_c00210{bottom:532.333333pt;}
.yc_c00210{bottom:541.253333pt;}
.y14_c00210{bottom:562.120000pt;}
.y13_c00210{bottom:577.786667pt;}
.y2c_c00210{bottom:584.786667pt;}
.y2b_c00210{bottom:585.120000pt;}
.y12_c00210{bottom:592.786667pt;}
.y11_c00210{bottom:607.853333pt;}
.y2a_c00210{bottom:623.520000pt;}
.y10_c00210{bottom:638.253333pt;}
.ye_c00210{bottom:653.586667pt;}
.yf_c00210{bottom:669.253333pt;}
.yb_c00210{bottom:788.666667pt;}
.y6_c00210{bottom:790.266667pt;}
.ya_c00210{bottom:896.133333pt;}
.y9_c00210{bottom:897.133333pt;}
.y8_c00210{bottom:898.720000pt;}
.y7_c00210{bottom:916.600000pt;}
.y4_c00210{bottom:965.933333pt;}
.y3_c00210{bottom:969.133333pt;}
.y2_c00210{bottom:970.386667pt;}
.y5_c00210{bottom:982.853333pt;}
.y1_c00210{bottom:1036.933333pt;}
.h4_c00210{height:16.687500pt;}
.h5_c00210{height:17.072000pt;}
.h6_c00210{height:20.937500pt;}
.h1_c00210{height:38.937500pt;}
.h2_c00210{height:53.750000pt;}
.h8_c00210{height:57.578125pt;}
.h7_c00210{height:62.781250pt;}
.h3_c00210{height:62.812500pt;}
.h0_c00210{height:1044.000000pt;}
.w0_c00210{width:650.646400pt;}
.w1_c00210{width:650.666667pt;}
.x8_c00210{left:-4.497600pt;}
.x0_c00210{left:0.000000pt;}
.x5_c00210{left:6.022400pt;}
.x6_c00210{left:8.635733pt;}
.x7_c00210{left:9.902400pt;}
.xf_c00210{left:67.155733pt;}
.xe_c00210{left:68.435733pt;}
.xa_c00210{left:72.302400pt;}
.x25_c00210{left:96.969067pt;}
.x9_c00210{left:102.035733pt;}
.x26_c00210{left:130.569067pt;}
.x18_c00210{left:157.435733pt;}
.x14_c00210{left:158.369067pt;}
.x1b_c00210{left:159.369067pt;}
.x1f_c00210{left:207.635733pt;}
.xd_c00210{left:208.635733pt;}
.x19_c00210{left:215.635733pt;}
.x1c_c00210{left:222.702400pt;}
.x15_c00210{left:239.969067pt;}
.x10_c00210{left:249.569067pt;}
.x2_c00210{left:254.369067pt;}
.x22_c00210{left:268.769067pt;}
.x1_c00210{left:289.569067pt;}
.x24_c00210{left:311.035733pt;}
.xb_c00210{left:328.635733pt;}
.x20_c00210{left:348.769067pt;}
.x16_c00210{left:349.769067pt;}
.x11_c00210{left:352.302400pt;}
.x21_c00210{left:361.569067pt;}
.x1a_c00210{left:362.835733pt;}
.x13_c00210{left:364.769067pt;}
.x23_c00210{left:376.302400pt;}
.x1d_c00210{left:377.902400pt;}
.x12_c00210{left:379.169067pt;}
.xc_c00210{left:427.169067pt;}
.x3_c00210{left:430.369067pt;}
.x1e_c00210{left:493.102400pt;}
.x17_c00210{left:517.435733pt;}
.x4_c00210{left:574.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7ecc52c8d645369afbff168b.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00211;src:url('chunks/assets/font_eee39db6af69218a68c21851.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00211;src:url('chunks/assets/font_0b7dd47e5662502315c4bd05.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00211{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3_c00211{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1d_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);}
.m19_c00211{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m0_c00211{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00211{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m18_c00211{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c00211{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c00211{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c00211{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00211{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00211{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c00211{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c00211{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00211{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00211{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00211{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c00211{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00211{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00211{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00211{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00211{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00211{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00211{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00211{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00211{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c00211{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8_c00211{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00211{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00211{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00211{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.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;}
}
.ws0_c00211{word-spacing:0.000000px;}
.fc0_c00211{color:transparent;}
.fs1_c00211{font-size:60.000000px;}
.fs0_c00211{font-size:66.000000px;}
.fs2_c00211{font-size:84.000000px;}
.y0_c00211{bottom:0.000000px;}
.y59_c00211{bottom:85.500000px;}
.y58_c00211{bottom:103.500000px;}
.y57_c00211{bottom:121.500000px;}
.y56_c00211{bottom:137.685000px;}
.y55_c00211{bottom:155.685000px;}
.y54_c00211{bottom:173.685000px;}
.y5d_c00211{bottom:186.660000px;}
.y5c_c00211{bottom:190.185000px;}
.y53_c00211{bottom:190.935000px;}
.y52_c00211{bottom:207.135000px;}
.y51_c00211{bottom:207.510000px;}
.y50_c00211{bottom:224.835000px;}
.y4f_c00211{bottom:225.135000px;}
.y4e_c00211{bottom:242.085000px;}
.y4d_c00211{bottom:259.710000px;}
.y4c_c00211{bottom:277.410000px;}
.y4b_c00211{bottom:298.935000px;}
.y4a_c00211{bottom:316.275000px;}
.y49_c00211{bottom:334.275000px;}
.y48_c00211{bottom:351.525000px;}
.y47_c00211{bottom:369.150000px;}
.y5b_c00211{bottom:374.250000px;}
.y5a_c00211{bottom:374.910000px;}
.y46_c00211{bottom:386.775000px;}
.y45_c00211{bottom:404.085000px;}
.y44_c00211{bottom:422.085000px;}
.y43_c00211{bottom:439.035000px;}
.y42_c00211{bottom:461.010000px;}
.y41_c00211{bottom:478.635000px;}
.y40_c00211{bottom:480.750000px;}
.y3f_c00211{bottom:481.875000px;}
.y3e_c00211{bottom:495.510000px;}
.y1f_c00211{bottom:518.910000px;}
.y1e_c00211{bottom:519.000000px;}
.y3a_c00211{bottom:535.125000px;}
.y1d_c00211{bottom:535.875000px;}
.y1c_c00211{bottom:536.625000px;}
.y3d_c00211{bottom:548.835000px;}
.y39_c00211{bottom:552.810000px;}
.y1b_c00211{bottom:553.500000px;}
.y38_c00211{bottom:569.685000px;}
.y1a_c00211{bottom:570.750000px;}
.y19_c00211{bottom:588.060000px;}
.y37_c00211{bottom:608.910000px;}
.y18_c00211{bottom:618.660000px;}
.y36_c00211{bottom:626.625000px;}
.y17_c00211{bottom:636.585000px;}
.y35_c00211{bottom:644.250000px;}
.y16_c00211{bottom:653.625000px;}
.y34_c00211{bottom:661.875000px;}
.y3c_c00211{bottom:663.660000px;}
.y15_c00211{bottom:684.135000px;}
.y33_c00211{bottom:692.460000px;}
.y14_c00211{bottom:701.460000px;}
.y32_c00211{bottom:709.710000px;}
.y13_c00211{bottom:718.410000px;}
.y31_c00211{bottom:727.335000px;}
.y12_c00211{bottom:735.660000px;}
.y30_c00211{bottom:757.635000px;}
.y2f_c00211{bottom:775.260000px;}
.y11_c00211{bottom:791.460000px;}
.y2e_c00211{bottom:792.900000px;}
.yf_c00211{bottom:808.710000px;}
.y10_c00211{bottom:809.775000px;}
.y2d_c00211{bottom:810.210000px;}
.ye_c00211{bottom:826.335000px;}
.y2c_c00211{bottom:827.460000px;}
.yd_c00211{bottom:842.925000px;}
.y2b_c00211{bottom:844.800000px;}
.y2a_c00211{bottom:865.650000px;}
.y29_c00211{bottom:883.275000px;}
.yb_c00211{bottom:898.050000px;}
.yc_c00211{bottom:898.335000px;}
.y28_c00211{bottom:900.525000px;}
.y3b_c00211{bottom:910.935000px;}
.ya_c00211{bottom:916.335000px;}
.y27_c00211{bottom:918.210000px;}
.y9_c00211{bottom:933.675000px;}
.y26_c00211{bottom:936.150000px;}
.y8_c00211{bottom:951.675000px;}
.y25_c00211{bottom:953.460000px;}
.y7_c00211{bottom:968.925000px;}
.y22_c00211{bottom:971.460000px;}
.y23_c00211{bottom:972.525000px;}
.y24_c00211{bottom:973.560000px;}
.y21_c00211{bottom:988.710000px;}
.y20_c00211{bottom:1006.335000px;}
.y4_c00211{bottom:1044.150000px;}
.y5_c00211{bottom:1047.060000px;}
.y6_c00211{bottom:1049.250000px;}
.y1_c00211{bottom:1097.835000px;}
.y3_c00211{bottom:1105.800000px;}
.y2_c00211{bottom:1112.625000px;}
.h2_c00211{height:58.886719px;}
.h5_c00211{height:64.743164px;}
.h4_c00211{height:64.775391px;}
.h1_c00211{height:66.515625px;}
.h3_c00211{height:82.441406px;}
.h0_c00211{height:1174.500000px;}
.w0_c00211{width:731.977200px;}
.w1_c00211{width:732.000000px;}
.x0_c00211{left:0.000000px;}
.x18_c00211{left:40.315200px;}
.x1_c00211{left:59.740200px;}
.x2_c00211{left:86.365200px;}
.x17_c00211{left:127.390200px;}
.x19_c00211{left:130.690200px;}
.x4_c00211{left:175.315200px;}
.x21_c00211{left:223.915200px;}
.x7_c00211{left:240.790200px;}
.xe_c00211{left:241.915200px;}
.x8_c00211{left:257.740200px;}
.xc_c00211{left:258.790200px;}
.x3_c00211{left:259.915200px;}
.x9_c00211{left:282.190200px;}
.x1a_c00211{left:283.690200px;}
.x5_c00211{left:296.965200px;}
.xa_c00211{left:299.515200px;}
.xb_c00211{left:305.290200px;}
.x22_c00211{left:318.940200px;}
.x6_c00211{left:332.965200px;}
.xd_c00211{left:341.965200px;}
.xf_c00211{left:343.390200px;}
.x20_c00211{left:406.390200px;}
.x1b_c00211{left:408.565200px;}
.x14_c00211{left:419.740200px;}
.x10_c00211{left:420.775200px;}
.x16_c00211{left:422.965200px;}
.x15_c00211{left:424.390200px;}
.x1c_c00211{left:425.515200px;}
.x1d_c00211{left:426.940200px;}
.x13_c00211{left:438.115200px;}
.x1e_c00211{left:443.890200px;}
.x1f_c00211{left:482.740200px;}
.x11_c00211{left:558.715200px;}
.x12_c00211{left:575.590200px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ws0_c00211{word-spacing:0.000000pt;}
.fs1_c00211{font-size:53.333333pt;}
.fs0_c00211{font-size:58.666667pt;}
.fs2_c00211{font-size:74.666667pt;}
.y0_c00211{bottom:0.000000pt;}
.y59_c00211{bottom:76.000000pt;}
.y58_c00211{bottom:92.000000pt;}
.y57_c00211{bottom:108.000000pt;}
.y56_c00211{bottom:122.386667pt;}
.y55_c00211{bottom:138.386667pt;}
.y54_c00211{bottom:154.386667pt;}
.y5d_c00211{bottom:165.920000pt;}
.y5c_c00211{bottom:169.053333pt;}
.y53_c00211{bottom:169.720000pt;}
.y52_c00211{bottom:184.120000pt;}
.y51_c00211{bottom:184.453333pt;}
.y50_c00211{bottom:199.853333pt;}
.y4f_c00211{bottom:200.120000pt;}
.y4e_c00211{bottom:215.186667pt;}
.y4d_c00211{bottom:230.853333pt;}
.y4c_c00211{bottom:246.586667pt;}
.y4b_c00211{bottom:265.720000pt;}
.y4a_c00211{bottom:281.133333pt;}
.y49_c00211{bottom:297.133333pt;}
.y48_c00211{bottom:312.466667pt;}
.y47_c00211{bottom:328.133333pt;}
.y5b_c00211{bottom:332.666667pt;}
.y5a_c00211{bottom:333.253333pt;}
.y46_c00211{bottom:343.800000pt;}
.y45_c00211{bottom:359.186667pt;}
.y44_c00211{bottom:375.186667pt;}
.y43_c00211{bottom:390.253333pt;}
.y42_c00211{bottom:409.786667pt;}
.y41_c00211{bottom:425.453333pt;}
.y40_c00211{bottom:427.333333pt;}
.y3f_c00211{bottom:428.333333pt;}
.y3e_c00211{bottom:440.453333pt;}
.y1f_c00211{bottom:461.253333pt;}
.y1e_c00211{bottom:461.333333pt;}
.y3a_c00211{bottom:475.666667pt;}
.y1d_c00211{bottom:476.333333pt;}
.y1c_c00211{bottom:477.000000pt;}
.y3d_c00211{bottom:487.853333pt;}
.y39_c00211{bottom:491.386667pt;}
.y1b_c00211{bottom:492.000000pt;}
.y38_c00211{bottom:506.386667pt;}
.y1a_c00211{bottom:507.333333pt;}
.y19_c00211{bottom:522.720000pt;}
.y37_c00211{bottom:541.253333pt;}
.y18_c00211{bottom:549.920000pt;}
.y36_c00211{bottom:557.000000pt;}
.y17_c00211{bottom:565.853333pt;}
.y35_c00211{bottom:572.666667pt;}
.y16_c00211{bottom:581.000000pt;}
.y34_c00211{bottom:588.333333pt;}
.y3c_c00211{bottom:589.920000pt;}
.y15_c00211{bottom:608.120000pt;}
.y33_c00211{bottom:615.520000pt;}
.y14_c00211{bottom:623.520000pt;}
.y32_c00211{bottom:630.853333pt;}
.y13_c00211{bottom:638.586667pt;}
.y31_c00211{bottom:646.520000pt;}
.y12_c00211{bottom:653.920000pt;}
.y30_c00211{bottom:673.453333pt;}
.y2f_c00211{bottom:689.120000pt;}
.y11_c00211{bottom:703.520000pt;}
.y2e_c00211{bottom:704.800000pt;}
.yf_c00211{bottom:718.853333pt;}
.y10_c00211{bottom:719.800000pt;}
.y2d_c00211{bottom:720.186667pt;}
.ye_c00211{bottom:734.520000pt;}
.y2c_c00211{bottom:735.520000pt;}
.yd_c00211{bottom:749.266667pt;}
.y2b_c00211{bottom:750.933333pt;}
.y2a_c00211{bottom:769.466667pt;}
.y29_c00211{bottom:785.133333pt;}
.yb_c00211{bottom:798.266667pt;}
.yc_c00211{bottom:798.520000pt;}
.y28_c00211{bottom:800.466667pt;}
.y3b_c00211{bottom:809.720000pt;}
.ya_c00211{bottom:814.520000pt;}
.y27_c00211{bottom:816.186667pt;}
.y9_c00211{bottom:829.933333pt;}
.y26_c00211{bottom:832.133333pt;}
.y8_c00211{bottom:845.933333pt;}
.y25_c00211{bottom:847.520000pt;}
.y7_c00211{bottom:861.266667pt;}
.y22_c00211{bottom:863.520000pt;}
.y23_c00211{bottom:864.466667pt;}
.y24_c00211{bottom:865.386667pt;}
.y21_c00211{bottom:878.853333pt;}
.y20_c00211{bottom:894.520000pt;}
.y4_c00211{bottom:928.133333pt;}
.y5_c00211{bottom:930.720000pt;}
.y6_c00211{bottom:932.666667pt;}
.y1_c00211{bottom:975.853333pt;}
.y3_c00211{bottom:982.933333pt;}
.y2_c00211{bottom:989.000000pt;}
.h2_c00211{height:52.343750pt;}
.h5_c00211{height:57.549479pt;}
.h4_c00211{height:57.578125pt;}
.h1_c00211{height:59.125000pt;}
.h3_c00211{height:73.281250pt;}
.h0_c00211{height:1044.000000pt;}
.w0_c00211{width:650.646400pt;}
.w1_c00211{width:650.666667pt;}
.x0_c00211{left:0.000000pt;}
.x18_c00211{left:35.835733pt;}
.x1_c00211{left:53.102400pt;}
.x2_c00211{left:76.769067pt;}
.x17_c00211{left:113.235733pt;}
.x19_c00211{left:116.169067pt;}
.x4_c00211{left:155.835733pt;}
.x21_c00211{left:199.035733pt;}
.x7_c00211{left:214.035733pt;}
.xe_c00211{left:215.035733pt;}
.x8_c00211{left:229.102400pt;}
.xc_c00211{left:230.035733pt;}
.x3_c00211{left:231.035733pt;}
.x9_c00211{left:250.835733pt;}
.x1a_c00211{left:252.169067pt;}
.x5_c00211{left:263.969067pt;}
.xa_c00211{left:266.235733pt;}
.xb_c00211{left:271.369067pt;}
.x22_c00211{left:283.502400pt;}
.x6_c00211{left:295.969067pt;}
.xd_c00211{left:303.969067pt;}
.xf_c00211{left:305.235733pt;}
.x20_c00211{left:361.235733pt;}
.x1b_c00211{left:363.169067pt;}
.x14_c00211{left:373.102400pt;}
.x10_c00211{left:374.022400pt;}
.x16_c00211{left:375.969067pt;}
.x15_c00211{left:377.235733pt;}
.x1c_c00211{left:378.235733pt;}
.x1d_c00211{left:379.502400pt;}
.x13_c00211{left:389.435733pt;}
.x1e_c00211{left:394.569067pt;}
.x1f_c00211{left:429.102400pt;}
.x11_c00211{left:496.635733pt;}
.x12_c00211{left:511.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec393775f3717d1623fe822.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00212;src:url('chunks/assets/font_833b74dd0438b1d5680de1a8.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00212;src:url('chunks/assets/font_a00de343322f91955459c6d4.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00212;src:url('chunks/assets/font_dfe82386a79a4ba79a81e8b1.woff2')format("woff");}.ff4_c00212{font-family:ff4_c00212;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00212;src:url('chunks/assets/font_e077ca096201e5f633e5d56d.woff2')format("woff");}.ff5_c00212{font-family:ff5_c00212;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00212{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m25_c00212{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m0_c00212{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m16_c00212{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m5_c00212{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4_c00212{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c00212{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9_c00212{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m17_c00212{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c00212{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m23_c00212{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00212{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c00212{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m24_c00212{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00212{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c00212{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00212{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me_c00212{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c00212{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00212{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00212{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00212{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00212{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c00212{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00212{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00212{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00212{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00212{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00212{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00212{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c00212{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m19_c00212{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m12_c00212{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22_c00212{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m21_c00212{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00212{transform:matrix(2.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00212{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v1_c00212{vertical-align:-1.500000px;}
.v0_c00212{vertical-align:0.000000px;}
.ls0_c00212{letter-spacing:0.000000px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00212{word-spacing:0.000000px;}
._0_c00212{margin-left:-5.638383px;}
.fc0_c00212{color:transparent;}
.fs6_c00212{font-size:30.000000px;}
.fs5_c00212{font-size:36.000000px;}
.fs1_c00212{font-size:60.000000px;}
.fs0_c00212{font-size:66.000000px;}
.fs4_c00212{font-size:72.000000px;}
.fs2_c00212{font-size:78.000000px;}
.fs3_c00212{font-size:84.000000px;}
.y0_c00212{bottom:0.000000px;}
.y52_c00212{bottom:78.585000px;}
.y53_c00212{bottom:79.710000px;}
.y54_c00212{bottom:80.460000px;}
.y55_c00212{bottom:81.510000px;}
.y56_c00212{bottom:82.260000px;}
.y57_c00212{bottom:83.685000px;}
.y50_c00212{bottom:101.385000px;}
.y4f_c00212{bottom:101.685000px;}
.y51_c00212{bottom:103.500000px;}
.y4e_c00212{bottom:122.625000px;}
.y4d_c00212{bottom:143.460000px;}
.y4c_c00212{bottom:164.685000px;}
.y48_c00212{bottom:184.500000px;}
.y49_c00212{bottom:184.785000px;}
.y4a_c00212{bottom:185.250000px;}
.y4b_c00212{bottom:187.410000px;}
.y47_c00212{bottom:206.085000px;}
.y45_c00212{bottom:226.935000px;}
.y46_c00212{bottom:230.160000px;}
.y44_c00212{bottom:247.875000px;}
.y43_c00212{bottom:248.625000px;}
.y42_c00212{bottom:269.460000px;}
.y41_c00212{bottom:289.935000px;}
.y3e_c00212{bottom:310.125000px;}
.y3d_c00212{bottom:310.500000px;}
.y3f_c00212{bottom:310.875000px;}
.y3c_c00212{bottom:311.535000px;}
.y40_c00212{bottom:311.625000px;}
.y3b_c00212{bottom:332.085000px;}
.y38_c00212{bottom:352.650000px;}
.y3a_c00212{bottom:352.935000px;}
.y39_c00212{bottom:353.025000px;}
.y37_c00212{bottom:354.060000px;}
.y35_c00212{bottom:374.160000px;}
.y34_c00212{bottom:375.285000px;}
.y36_c00212{bottom:375.660000px;}
.y33_c00212{bottom:395.085000px;}
.y32_c00212{bottom:396.525000px;}
.y31_c00212{bottom:417.000000px;}
.y30_c00212{bottom:437.910000px;}
.y2c_c00212{bottom:458.760000px;}
.y2e_c00212{bottom:459.510000px;}
.y2f_c00212{bottom:459.585000px;}
.y2b_c00212{bottom:481.500000px;}
.y2a_c00212{bottom:502.710000px;}
.y28_c00212{bottom:524.010000px;}
.y29_c00212{bottom:524.685000px;}
.y25_c00212{bottom:545.535000px;}
.y26_c00212{bottom:545.625000px;}
.y27_c00212{bottom:545.910000px;}
.y24_c00212{bottom:566.835000px;}
.y23_c00212{bottom:567.510000px;}
.y22_c00212{bottom:567.885000px;}
.y21_c00212{bottom:702.885000px;}
.y20_c00212{bottom:703.185000px;}
.y1f_c00212{bottom:703.935000px;}
.y1e_c00212{bottom:704.685000px;}
.y1d_c00212{bottom:725.910000px;}
.y1c_c00212{bottom:746.835000px;}
.y1b_c00212{bottom:747.210000px;}
.y1a_c00212{bottom:747.885000px;}
.y19_c00212{bottom:769.125000px;}
.y18_c00212{bottom:790.710000px;}
.y17_c00212{bottom:799.335000px;}
.y16_c00212{bottom:812.310000px;}
.y15_c00212{bottom:833.925000px;}
.y14_c00212{bottom:834.300000px;}
.y58_c00212{bottom:855.210000px;}
.y13_c00212{bottom:855.525000px;}
.y12_c00212{bottom:876.810000px;}
.y11_c00212{bottom:897.675000px;}
.y10_c00212{bottom:919.275000px;}
.yf_c00212{bottom:940.125000px;}
.ye_c00212{bottom:940.875000px;}
.yd_c00212{bottom:962.085000px;}
.yc_c00212{bottom:982.650000px;}
.yb_c00212{bottom:983.310000px;}
.ya_c00212{bottom:984.375000px;}
.y9_c00212{bottom:984.810000px;}
.y8_c00212{bottom:1004.925000px;}
.y7_c00212{bottom:1005.675000px;}
.y6_c00212{bottom:1026.525000px;}
.y5_c00212{bottom:1027.275000px;}
.y4_c00212{bottom:1083.060000px;}
.y2_c00212{bottom:1087.335000px;}
.y1_c00212{bottom:1087.710000px;}
.y3_c00212{bottom:1097.835000px;}
.y2d_c00212{bottom:1174.500000px;}
.hd_c00212{height:31.289062px;}
.h9_c00212{height:35.332031px;}
.hc_c00212{height:58.886719px;}
.h2_c00212{height:60.468750px;}
.hb_c00212{height:64.743164px;}
.h8_c00212{height:64.775391px;}
.h1_c00212{height:68.835938px;}
.ha_c00212{height:70.628906px;}
.h7_c00212{height:70.664062px;}
.h3_c00212{height:76.552734px;}
.h6_c00212{height:82.441406px;}
.h5_c00212{height:83.156250px;}
.h4_c00212{height:84.656250px;}
.h0_c00212{height:1174.500000px;}
.w0_c00212{width:731.977200px;}
.w1_c00212{width:732.000000px;}
.x11_c00212{left:-21.259800px;}
.x21_c00212{left:-20.209800px;}
.x12_c00212{left:-11.884800px;}
.x22_c00212{left:-7.624800px;}
.x0_c00212{left:0.000000px;}
.x7_c00212{left:50.740200px;}
.xd_c00212{left:51.790200px;}
.x15_c00212{left:53.590200px;}
.x25_c00212{left:55.390200px;}
.x2b_c00212{left:56.890200px;}
.x33_c00212{left:58.690200px;}
.x38_c00212{left:59.740200px;}
.x16_c00212{left:77.740200px;}
.x5_c00212{left:82.390200px;}
.x1a_c00212{left:85.675200px;}
.x30_c00212{left:89.290200px;}
.x34_c00212{left:90.340200px;}
.x9_c00212{left:95.365200px;}
.x31_c00212{left:129.940200px;}
.x39_c00212{left:133.915200px;}
.x23_c00212{left:136.765200px;}
.xf_c00212{left:166.315200px;}
.x17_c00212{left:170.290200px;}
.x10_c00212{left:196.915200px;}
.x1b_c00212{left:201.940200px;}
.xa_c00212{left:228.190200px;}
.x1c_c00212{left:232.915200px;}
.x27_c00212{left:235.390200px;}
.xb_c00212{left:259.540200px;}
.x1_c00212{left:261.715200px;}
.x2c_c00212{left:267.115200px;}
.x28_c00212{left:277.915200px;}
.x2d_c00212{left:295.540200px;}
.xe_c00212{left:308.890200px;}
.x18_c00212{left:330.115200px;}
.x8_c00212{left:345.940200px;}
.x19_c00212{left:347.365200px;}
.x29_c00212{left:363.565200px;}
.x2_c00212{left:366.775200px;}
.x2a_c00212{left:380.140200px;}
.x3b_c00212{left:400.990200px;}
.x35_c00212{left:402.490200px;}
.x6_c00212{left:413.275200px;}
.x36_c00212{left:418.990200px;}
.x24_c00212{left:422.965200px;}
.xc_c00212{left:451.090200px;}
.x2e_c00212{left:452.140200px;}
.x3_c00212{left:455.365200px;}
.x1e_c00212{left:467.965200px;}
.x26_c00212{left:472.690200px;}
.x2f_c00212{left:478.765200px;}
.x1f_c00212{left:491.365200px;}
.x20_c00212{left:501.115200px;}
.x3c_c00212{left:504.340200px;}
.x37_c00212{left:514.390200px;}
.x3a_c00212{left:524.515200px;}
.x13_c00212{left:538.915200px;}
.x1d_c00212{left:549.340200px;}
.x3d_c00212{left:590.365200px;}
.x14_c00212{left:604.765200px;}
.x4_c00212{left:616.690200px;}
.x3e_c00212{left:617.740200px;}
.x32_c00212{left:645.790200px;}
@media print{
.v1_c00212{vertical-align:-1.333333pt;}
.v0_c00212{vertical-align:0.000000pt;}
.ls0_c00212{letter-spacing:0.000000pt;}
.ws0_c00212{word-spacing:0.000000pt;}
._0_c00212{margin-left:-5.011896pt;}
.fs6_c00212{font-size:26.666667pt;}
.fs5_c00212{font-size:32.000000pt;}
.fs1_c00212{font-size:53.333333pt;}
.fs0_c00212{font-size:58.666667pt;}
.fs4_c00212{font-size:64.000000pt;}
.fs2_c00212{font-size:69.333333pt;}
.fs3_c00212{font-size:74.666667pt;}
.y0_c00212{bottom:0.000000pt;}
.y52_c00212{bottom:69.853333pt;}
.y53_c00212{bottom:70.853333pt;}
.y54_c00212{bottom:71.520000pt;}
.y55_c00212{bottom:72.453333pt;}
.y56_c00212{bottom:73.120000pt;}
.y57_c00212{bottom:74.386667pt;}
.y50_c00212{bottom:90.120000pt;}
.y4f_c00212{bottom:90.386667pt;}
.y51_c00212{bottom:92.000000pt;}
.y4e_c00212{bottom:109.000000pt;}
.y4d_c00212{bottom:127.520000pt;}
.y4c_c00212{bottom:146.386667pt;}
.y48_c00212{bottom:164.000000pt;}
.y49_c00212{bottom:164.253333pt;}
.y4a_c00212{bottom:164.666667pt;}
.y4b_c00212{bottom:166.586667pt;}
.y47_c00212{bottom:183.186667pt;}
.y45_c00212{bottom:201.720000pt;}
.y46_c00212{bottom:204.586667pt;}
.y44_c00212{bottom:220.333333pt;}
.y43_c00212{bottom:221.000000pt;}
.y42_c00212{bottom:239.520000pt;}
.y41_c00212{bottom:257.720000pt;}
.y3e_c00212{bottom:275.666667pt;}
.y3d_c00212{bottom:276.000000pt;}
.y3f_c00212{bottom:276.333333pt;}
.y3c_c00212{bottom:276.920000pt;}
.y40_c00212{bottom:277.000000pt;}
.y3b_c00212{bottom:295.186667pt;}
.y38_c00212{bottom:313.466667pt;}
.y3a_c00212{bottom:313.720000pt;}
.y39_c00212{bottom:313.800000pt;}
.y37_c00212{bottom:314.720000pt;}
.y35_c00212{bottom:332.586667pt;}
.y34_c00212{bottom:333.586667pt;}
.y36_c00212{bottom:333.920000pt;}
.y33_c00212{bottom:351.186667pt;}
.y32_c00212{bottom:352.466667pt;}
.y31_c00212{bottom:370.666667pt;}
.y30_c00212{bottom:389.253333pt;}
.y2c_c00212{bottom:407.786667pt;}
.y2e_c00212{bottom:408.453333pt;}
.y2f_c00212{bottom:408.520000pt;}
.y2b_c00212{bottom:428.000000pt;}
.y2a_c00212{bottom:446.853333pt;}
.y28_c00212{bottom:465.786667pt;}
.y29_c00212{bottom:466.386667pt;}
.y25_c00212{bottom:484.920000pt;}
.y26_c00212{bottom:485.000000pt;}
.y27_c00212{bottom:485.253333pt;}
.y24_c00212{bottom:503.853333pt;}
.y23_c00212{bottom:504.453333pt;}
.y22_c00212{bottom:504.786667pt;}
.y21_c00212{bottom:624.786667pt;}
.y20_c00212{bottom:625.053333pt;}
.y1f_c00212{bottom:625.720000pt;}
.y1e_c00212{bottom:626.386667pt;}
.y1d_c00212{bottom:645.253333pt;}
.y1c_c00212{bottom:663.853333pt;}
.y1b_c00212{bottom:664.186667pt;}
.y1a_c00212{bottom:664.786667pt;}
.y19_c00212{bottom:683.666667pt;}
.y18_c00212{bottom:702.853333pt;}
.y17_c00212{bottom:710.520000pt;}
.y16_c00212{bottom:722.053333pt;}
.y15_c00212{bottom:741.266667pt;}
.y14_c00212{bottom:741.600000pt;}
.y58_c00212{bottom:760.186667pt;}
.y13_c00212{bottom:760.466667pt;}
.y12_c00212{bottom:779.386667pt;}
.y11_c00212{bottom:797.933333pt;}
.y10_c00212{bottom:817.133333pt;}
.yf_c00212{bottom:835.666667pt;}
.ye_c00212{bottom:836.333333pt;}
.yd_c00212{bottom:855.186667pt;}
.yc_c00212{bottom:873.466667pt;}
.yb_c00212{bottom:874.053333pt;}
.ya_c00212{bottom:875.000000pt;}
.y9_c00212{bottom:875.386667pt;}
.y8_c00212{bottom:893.266667pt;}
.y7_c00212{bottom:893.933333pt;}
.y6_c00212{bottom:912.466667pt;}
.y5_c00212{bottom:913.133333pt;}
.y4_c00212{bottom:962.720000pt;}
.y2_c00212{bottom:966.520000pt;}
.y1_c00212{bottom:966.853333pt;}
.y3_c00212{bottom:975.853333pt;}
.y2d_c00212{bottom:1044.000000pt;}
.hd_c00212{height:27.812500pt;}
.h9_c00212{height:31.406250pt;}
.hc_c00212{height:52.343750pt;}
.h2_c00212{height:53.750000pt;}
.hb_c00212{height:57.549479pt;}
.h8_c00212{height:57.578125pt;}
.h1_c00212{height:61.187500pt;}
.ha_c00212{height:62.781250pt;}
.h7_c00212{height:62.812500pt;}
.h3_c00212{height:68.046875pt;}
.h6_c00212{height:73.281250pt;}
.h5_c00212{height:73.916667pt;}
.h4_c00212{height:75.250000pt;}
.h0_c00212{height:1044.000000pt;}
.w0_c00212{width:650.646400pt;}
.w1_c00212{width:650.666667pt;}
.x11_c00212{left:-18.897600pt;}
.x21_c00212{left:-17.964267pt;}
.x12_c00212{left:-10.564267pt;}
.x22_c00212{left:-6.777600pt;}
.x0_c00212{left:0.000000pt;}
.x7_c00212{left:45.102400pt;}
.xd_c00212{left:46.035733pt;}
.x15_c00212{left:47.635733pt;}
.x25_c00212{left:49.235733pt;}
.x2b_c00212{left:50.569067pt;}
.x33_c00212{left:52.169067pt;}
.x38_c00212{left:53.102400pt;}
.x16_c00212{left:69.102400pt;}
.x5_c00212{left:73.235733pt;}
.x1a_c00212{left:76.155733pt;}
.x30_c00212{left:79.369067pt;}
.x34_c00212{left:80.302400pt;}
.x9_c00212{left:84.769067pt;}
.x31_c00212{left:115.502400pt;}
.x39_c00212{left:119.035733pt;}
.x23_c00212{left:121.569067pt;}
.xf_c00212{left:147.835733pt;}
.x17_c00212{left:151.369067pt;}
.x10_c00212{left:175.035733pt;}
.x1b_c00212{left:179.502400pt;}
.xa_c00212{left:202.835733pt;}
.x1c_c00212{left:207.035733pt;}
.x27_c00212{left:209.235733pt;}
.xb_c00212{left:230.702400pt;}
.x1_c00212{left:232.635733pt;}
.x2c_c00212{left:237.435733pt;}
.x28_c00212{left:247.035733pt;}
.x2d_c00212{left:262.702400pt;}
.xe_c00212{left:274.569067pt;}
.x18_c00212{left:293.435733pt;}
.x8_c00212{left:307.502400pt;}
.x19_c00212{left:308.769067pt;}
.x29_c00212{left:323.169067pt;}
.x2_c00212{left:326.022400pt;}
.x2a_c00212{left:337.902400pt;}
.x3b_c00212{left:356.435733pt;}
.x35_c00212{left:357.769067pt;}
.x6_c00212{left:367.355733pt;}
.x36_c00212{left:372.435733pt;}
.x24_c00212{left:375.969067pt;}
.xc_c00212{left:400.969067pt;}
.x2e_c00212{left:401.902400pt;}
.x3_c00212{left:404.769067pt;}
.x1e_c00212{left:415.969067pt;}
.x26_c00212{left:420.169067pt;}
.x2f_c00212{left:425.569067pt;}
.x1f_c00212{left:436.769067pt;}
.x20_c00212{left:445.435733pt;}
.x3c_c00212{left:448.302400pt;}
.x37_c00212{left:457.235733pt;}
.x3a_c00212{left:466.235733pt;}
.x13_c00212{left:479.035733pt;}
.x1d_c00212{left:488.302400pt;}
.x3d_c00212{left:524.769067pt;}
.x14_c00212{left:537.569067pt;}
.x4_c00212{left:548.169067pt;}
.x3e_c00212{left:549.102400pt;}
.x32_c00212{left:574.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f63ccfd6d9a4ec8d0363de2d.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00213;src:url('chunks/assets/font_fdcd3d5f91674b522b594d62.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00213;src:url('chunks/assets/font_22d331b225e2b4f2a3f60205.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1e_c00213{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m13_c00213{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mf_c00213{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m6_c00213{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m12_c00213{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00213{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8_c00213{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md_c00213{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m18_c00213{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00213{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m19_c00213{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00213{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00213{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00213{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00213{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c00213{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00213{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00213{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00213{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00213{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00213{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m14_c00213{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c00213{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c00213{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c00213{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00213{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7_c00213{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00213{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00213{transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);}
.m10_c00213{transform:matrix(1.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.412500,0.000000,0.000000,0.250000,0,0);}
.m1_c00213{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.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;}
}
.ws0_c00213{word-spacing:0.000000px;}
.fc0_c00213{color:transparent;}
.fs1_c00213{font-size:60.000000px;}
.fs2_c00213{font-size:66.000000px;}
.fs0_c00213{font-size:72.000000px;}
.fs3_c00213{font-size:78.000000px;}
.y0_c00213{bottom:0.000000px;}
.y43_c00213{bottom:92.310000px;}
.y41_c00213{bottom:114.660000px;}
.y40_c00213{bottom:119.685000px;}
.y42_c00213{bottom:131.250000px;}
.y3f_c00213{bottom:135.510000px;}
.y3e_c00213{bottom:140.625000px;}
.y3d_c00213{bottom:141.960000px;}
.y3c_c00213{bottom:143.085000px;}
.y3b_c00213{bottom:164.010000px;}
.y3a_c00213{bottom:180.885000px;}
.y39_c00213{bottom:202.500000px;}
.y38_c00213{bottom:222.660000px;}
.y37_c00213{bottom:223.035000px;}
.y36_c00213{bottom:226.560000px;}
.y35_c00213{bottom:246.750000px;}
.y34_c00213{bottom:268.410000px;}
.y33_c00213{bottom:288.900000px;}
.y32_c00213{bottom:291.375000px;}
.y31_c00213{bottom:293.250000px;}
.y30_c00213{bottom:311.910000px;}
.y2f_c00213{bottom:333.210000px;}
.y2e_c00213{bottom:355.500000px;}
.y2d_c00213{bottom:377.085000px;}
.y2c_c00213{bottom:398.310000px;}
.y2b_c00213{bottom:400.875000px;}
.y2a_c00213{bottom:419.160000px;}
.y29_c00213{bottom:421.035000px;}
.y28_c00213{bottom:442.935000px;}
.y27_c00213{bottom:464.625000px;}
.y26_c00213{bottom:486.210000px;}
.y25_c00213{bottom:508.125000px;}
.y24_c00213{bottom:529.710000px;}
.y23_c00213{bottom:551.310000px;}
.y22_c00213{bottom:572.625000px;}
.y21_c00213{bottom:594.510000px;}
.y20_c00213{bottom:616.500000px;}
.y1f_c00213{bottom:638.085000px;}
.y1e_c00213{bottom:659.685000px;}
.y1d_c00213{bottom:681.660000px;}
.y1c_c00213{bottom:703.635000px;}
.y1b_c00213{bottom:723.075000px;}
.y1a_c00213{bottom:746.085000px;}
.y18_c00213{bottom:766.200000px;}
.y17_c00213{bottom:766.260000px;}
.y19_c00213{bottom:767.325000px;}
.y16_c00213{bottom:788.250000px;}
.y13_c00213{bottom:807.585000px;}
.y14_c00213{bottom:807.675000px;}
.y15_c00213{bottom:811.650000px;}
.y12_c00213{bottom:828.900000px;}
.y11_c00213{bottom:854.085000px;}
.y10_c00213{bottom:873.900000px;}
.yf_c00213{bottom:897.300000px;}
.ye_c00213{bottom:915.675000px;}
.yd_c00213{bottom:940.125000px;}
.yc_c00213{bottom:962.085000px;}
.yb_c00213{bottom:984.060000px;}
.y7_c00213{bottom:996.300000px;}
.y8_c00213{bottom:996.675000px;}
.y9_c00213{bottom:997.710000px;}
.ya_c00213{bottom:1006.425000px;}
.y5_c00213{bottom:1025.460000px;}
.y6_c00213{bottom:1027.650000px;}
.y4_c00213{bottom:1047.435000px;}
.y1_c00213{bottom:1097.460000px;}
.y3_c00213{bottom:1105.800000px;}
.y2_c00213{bottom:1111.710000px;}
.h2_c00213{height:58.886719px;}
.h4_c00213{height:60.468750px;}
.h3_c00213{height:64.743164px;}
.h1_c00213{height:70.664062px;}
.h5_c00213{height:76.552734px;}
.h0_c00213{height:1174.500000px;}
.w0_c00213{width:731.977200px;}
.w1_c00213{width:732.000000px;}
.x0_c00213{left:0.000000px;}
.x14_c00213{left:56.515200px;}
.x13_c00213{left:58.315200px;}
.x11_c00213{left:60.115200px;}
.xa_c00213{left:61.165200px;}
.x4_c00213{left:62.290200px;}
.xb_c00213{left:64.390200px;}
.xd_c00213{left:80.290200px;}
.x1_c00213{left:84.550200px;}
.x7_c00213{left:87.790200px;}
.x1a_c00213{left:89.290200px;}
.x12_c00213{left:90.715200px;}
.xc_c00213{left:93.175200px;}
.xe_c00213{left:95.365200px;}
.xf_c00213{left:101.515200px;}
.x8_c00213{left:109.765200px;}
.x2_c00213{left:111.190200px;}
.x10_c00213{left:122.740200px;}
.x9_c00213{left:160.540200px;}
.x1b_c00213{left:165.190200px;}
.x1c_c00213{left:240.490200px;}
.x1d_c00213{left:254.140200px;}
.x3_c00213{left:286.165200px;}
.x16_c00213{left:289.765200px;}
.x17_c00213{left:305.290200px;}
.x1e_c00213{left:371.890200px;}
.x18_c00213{left:492.115200px;}
.x19_c00213{left:525.190200px;}
.x5_c00213{left:570.940200px;}
.x15_c00213{left:610.540200px;}
.x6_c00213{left:669.565200px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls0_c00213{letter-spacing:0.000000pt;}
.ws0_c00213{word-spacing:0.000000pt;}
.fs1_c00213{font-size:53.333333pt;}
.fs2_c00213{font-size:58.666667pt;}
.fs0_c00213{font-size:64.000000pt;}
.fs3_c00213{font-size:69.333333pt;}
.y0_c00213{bottom:0.000000pt;}
.y43_c00213{bottom:82.053333pt;}
.y41_c00213{bottom:101.920000pt;}
.y40_c00213{bottom:106.386667pt;}
.y42_c00213{bottom:116.666667pt;}
.y3f_c00213{bottom:120.453333pt;}
.y3e_c00213{bottom:125.000000pt;}
.y3d_c00213{bottom:126.186667pt;}
.y3c_c00213{bottom:127.186667pt;}
.y3b_c00213{bottom:145.786667pt;}
.y3a_c00213{bottom:160.786667pt;}
.y39_c00213{bottom:180.000000pt;}
.y38_c00213{bottom:197.920000pt;}
.y37_c00213{bottom:198.253333pt;}
.y36_c00213{bottom:201.386667pt;}
.y35_c00213{bottom:219.333333pt;}
.y34_c00213{bottom:238.586667pt;}
.y33_c00213{bottom:256.800000pt;}
.y32_c00213{bottom:259.000000pt;}
.y31_c00213{bottom:260.666667pt;}
.y30_c00213{bottom:277.253333pt;}
.y2f_c00213{bottom:296.186667pt;}
.y2e_c00213{bottom:316.000000pt;}
.y2d_c00213{bottom:335.186667pt;}
.y2c_c00213{bottom:354.053333pt;}
.y2b_c00213{bottom:356.333333pt;}
.y2a_c00213{bottom:372.586667pt;}
.y29_c00213{bottom:374.253333pt;}
.y28_c00213{bottom:393.720000pt;}
.y27_c00213{bottom:413.000000pt;}
.y26_c00213{bottom:432.186667pt;}
.y25_c00213{bottom:451.666667pt;}
.y24_c00213{bottom:470.853333pt;}
.y23_c00213{bottom:490.053333pt;}
.y22_c00213{bottom:509.000000pt;}
.y21_c00213{bottom:528.453333pt;}
.y20_c00213{bottom:548.000000pt;}
.y1f_c00213{bottom:567.186667pt;}
.y1e_c00213{bottom:586.386667pt;}
.y1d_c00213{bottom:605.920000pt;}
.y1c_c00213{bottom:625.453333pt;}
.y1b_c00213{bottom:642.733333pt;}
.y1a_c00213{bottom:663.186667pt;}
.y18_c00213{bottom:681.066667pt;}
.y17_c00213{bottom:681.120000pt;}
.y19_c00213{bottom:682.066667pt;}
.y16_c00213{bottom:700.666667pt;}
.y13_c00213{bottom:717.853333pt;}
.y14_c00213{bottom:717.933333pt;}
.y15_c00213{bottom:721.466667pt;}
.y12_c00213{bottom:736.800000pt;}
.y11_c00213{bottom:759.186667pt;}
.y10_c00213{bottom:776.800000pt;}
.yf_c00213{bottom:797.600000pt;}
.ye_c00213{bottom:813.933333pt;}
.yd_c00213{bottom:835.666667pt;}
.yc_c00213{bottom:855.186667pt;}
.yb_c00213{bottom:874.720000pt;}
.y7_c00213{bottom:885.600000pt;}
.y8_c00213{bottom:885.933333pt;}
.y9_c00213{bottom:886.853333pt;}
.ya_c00213{bottom:894.600000pt;}
.y5_c00213{bottom:911.520000pt;}
.y6_c00213{bottom:913.466667pt;}
.y4_c00213{bottom:931.053333pt;}
.y1_c00213{bottom:975.520000pt;}
.y3_c00213{bottom:982.933333pt;}
.y2_c00213{bottom:988.186667pt;}
.h2_c00213{height:52.343750pt;}
.h4_c00213{height:53.750000pt;}
.h3_c00213{height:57.549479pt;}
.h1_c00213{height:62.812500pt;}
.h5_c00213{height:68.046875pt;}
.h0_c00213{height:1044.000000pt;}
.w0_c00213{width:650.646400pt;}
.w1_c00213{width:650.666667pt;}
.x0_c00213{left:0.000000pt;}
.x14_c00213{left:50.235733pt;}
.x13_c00213{left:51.835733pt;}
.x11_c00213{left:53.435733pt;}
.xa_c00213{left:54.369067pt;}
.x4_c00213{left:55.369067pt;}
.xb_c00213{left:57.235733pt;}
.xd_c00213{left:71.369067pt;}
.x1_c00213{left:75.155733pt;}
.x7_c00213{left:78.035733pt;}
.x1a_c00213{left:79.369067pt;}
.x12_c00213{left:80.635733pt;}
.xc_c00213{left:82.822400pt;}
.xe_c00213{left:84.769067pt;}
.xf_c00213{left:90.235733pt;}
.x8_c00213{left:97.569067pt;}
.x2_c00213{left:98.835733pt;}
.x10_c00213{left:109.102400pt;}
.x9_c00213{left:142.702400pt;}
.x1b_c00213{left:146.835733pt;}
.x1c_c00213{left:213.769067pt;}
.x1d_c00213{left:225.902400pt;}
.x3_c00213{left:254.369067pt;}
.x16_c00213{left:257.569067pt;}
.x17_c00213{left:271.369067pt;}
.x1e_c00213{left:330.569067pt;}
.x18_c00213{left:437.435733pt;}
.x19_c00213{left:466.835733pt;}
.x5_c00213{left:507.502400pt;}
.x15_c00213{left:542.702400pt;}
.x6_c00213{left:595.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e52e5f8de42a4c07c2cea3ea.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00214;src:url('chunks/assets/font_a17460484f9e1e5d7e2975da.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00214;src:url('chunks/assets/font_cfe7d595d5c2b67bdf29d11b.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00214;src:url('chunks/assets/font_c75af887902f72cd73f1329d.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00214;src:url('chunks/assets/font_aa8411a7fed5c69b400b5cf9.woff2')format("woff");}.ff5_c00214{font-family:ff5_c00214;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00214{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m6_c00214{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0_c00214{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9_c00214{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5_c00214{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3_c00214{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00214{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c00214{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c00214{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c00214{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00214{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00214{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00214{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00214{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c00214{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00214{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c00214{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c00214{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c00214{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m7_c00214{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m2_c00214{transform:matrix(2.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.600000,0.000000,0.000000,0.250000,0,0);}
.m4_c00214{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00214{color:transparent;}
.fs3_c00214{font-size:12.000000px;}
.fs0_c00214{font-size:36.000000px;}
.fs1_c00214{font-size:60.000000px;}
.fs5_c00214{font-size:66.000000px;}
.fs2_c00214{font-size:72.000000px;}
.fs4_c00214{font-size:78.000000px;}
.y0_c00214{bottom:0.000000px;}
.y1f_c00214{bottom:538.035000px;}
.y20_c00214{bottom:540.510000px;}
.y1e_c00214{bottom:626.250000px;}
.y1d_c00214{bottom:648.510000px;}
.y1c_c00214{bottom:669.750000px;}
.y1b_c00214{bottom:690.285000px;}
.y1a_c00214{bottom:712.635000px;}
.y17_c00214{bottom:733.500000px;}
.y18_c00214{bottom:733.875000px;}
.y19_c00214{bottom:734.625000px;}
.y16_c00214{bottom:755.460000px;}
.y15_c00214{bottom:777.060000px;}
.y13_c00214{bottom:797.175000px;}
.y14_c00214{bottom:798.675000px;}
.y12_c00214{bottom:820.275000px;}
.y10_c00214{bottom:841.500000px;}
.y11_c00214{bottom:841.875000px;}
.yf_c00214{bottom:863.085000px;}
.ye_c00214{bottom:883.935000px;}
.yd_c00214{bottom:905.250000px;}
.yc_c00214{bottom:926.085000px;}
.yb_c00214{bottom:947.310000px;}
.ya_c00214{bottom:968.925000px;}
.y9_c00214{bottom:990.150000px;}
.y8_c00214{bottom:1011.375000px;}
.y7_c00214{bottom:1033.335000px;}
.y6_c00214{bottom:1074.375000px;}
.y5_c00214{bottom:1074.435000px;}
.y4_c00214{bottom:1089.900000px;}
.y3_c00214{bottom:1091.685000px;}
.y2_c00214{bottom:1092.060000px;}
.y1_c00214{bottom:1169.835000px;}
.h4_c00214{height:12.515625px;}
.h5_c00214{height:12.804000px;}
.h1_c00214{height:35.332031px;}
.h2_c00214{height:60.468750px;}
.h7_c00214{height:64.775391px;}
.h3_c00214{height:70.664062px;}
.h6_c00214{height:76.514648px;}
.h0_c00214{height:1174.500000px;}
.w0_c00214{width:731.977200px;}
.w1_c00214{width:732.000000px;}
.x0_c00214{left:0.000000px;}
.xb_c00214{left:69.115200px;}
.xd_c00214{left:70.540200px;}
.x13_c00214{left:71.965200px;}
.x14_c00214{left:88.915200px;}
.x10_c00214{left:94.315200px;}
.xc_c00214{left:102.940200px;}
.x15_c00214{left:180.715200px;}
.x1_c00214{left:250.540200px;}
.x2_c00214{left:254.140200px;}
.x3_c00214{left:257.365200px;}
.x11_c00214{left:277.540200px;}
.x4_c00214{left:280.765200px;}
.xe_c00214{left:320.740200px;}
.x12_c00214{left:355.315200px;}
.xf_c00214{left:444.190200px;}
.x5_c00214{left:475.165200px;}
.x6_c00214{left:634.990200px;}
.x7_c00214{left:647.965200px;}
.x8_c00214{left:660.190200px;}
.x9_c00214{left:668.515200px;}
.xa_c00214{left:674.590200px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls0_c00214{letter-spacing:0.000000pt;}
.ws0_c00214{word-spacing:0.000000pt;}
.fs3_c00214{font-size:10.666667pt;}
.fs0_c00214{font-size:32.000000pt;}
.fs1_c00214{font-size:53.333333pt;}
.fs5_c00214{font-size:58.666667pt;}
.fs2_c00214{font-size:64.000000pt;}
.fs4_c00214{font-size:69.333333pt;}
.y0_c00214{bottom:0.000000pt;}
.y1f_c00214{bottom:478.253333pt;}
.y20_c00214{bottom:480.453333pt;}
.y1e_c00214{bottom:556.666667pt;}
.y1d_c00214{bottom:576.453333pt;}
.y1c_c00214{bottom:595.333333pt;}
.y1b_c00214{bottom:613.586667pt;}
.y1a_c00214{bottom:633.453333pt;}
.y17_c00214{bottom:652.000000pt;}
.y18_c00214{bottom:652.333333pt;}
.y19_c00214{bottom:653.000000pt;}
.y16_c00214{bottom:671.520000pt;}
.y15_c00214{bottom:690.720000pt;}
.y13_c00214{bottom:708.600000pt;}
.y14_c00214{bottom:709.933333pt;}
.y12_c00214{bottom:729.133333pt;}
.y10_c00214{bottom:748.000000pt;}
.y11_c00214{bottom:748.333333pt;}
.yf_c00214{bottom:767.186667pt;}
.ye_c00214{bottom:785.720000pt;}
.yd_c00214{bottom:804.666667pt;}
.yc_c00214{bottom:823.186667pt;}
.yb_c00214{bottom:842.053333pt;}
.ya_c00214{bottom:861.266667pt;}
.y9_c00214{bottom:880.133333pt;}
.y8_c00214{bottom:899.000000pt;}
.y7_c00214{bottom:918.520000pt;}
.y6_c00214{bottom:955.000000pt;}
.y5_c00214{bottom:955.053333pt;}
.y4_c00214{bottom:968.800000pt;}
.y3_c00214{bottom:970.386667pt;}
.y2_c00214{bottom:970.720000pt;}
.y1_c00214{bottom:1039.853333pt;}
.h4_c00214{height:11.125000pt;}
.h5_c00214{height:11.381333pt;}
.h1_c00214{height:31.406250pt;}
.h2_c00214{height:53.750000pt;}
.h7_c00214{height:57.578125pt;}
.h3_c00214{height:62.812500pt;}
.h6_c00214{height:68.013021pt;}
.h0_c00214{height:1044.000000pt;}
.w0_c00214{width:650.646400pt;}
.w1_c00214{width:650.666667pt;}
.x0_c00214{left:0.000000pt;}
.xb_c00214{left:61.435733pt;}
.xd_c00214{left:62.702400pt;}
.x13_c00214{left:63.969067pt;}
.x14_c00214{left:79.035733pt;}
.x10_c00214{left:83.835733pt;}
.xc_c00214{left:91.502400pt;}
.x15_c00214{left:160.635733pt;}
.x1_c00214{left:222.702400pt;}
.x2_c00214{left:225.902400pt;}
.x3_c00214{left:228.769067pt;}
.x11_c00214{left:246.702400pt;}
.x4_c00214{left:249.569067pt;}
.xe_c00214{left:285.102400pt;}
.x12_c00214{left:315.835733pt;}
.xf_c00214{left:394.835733pt;}
.x5_c00214{left:422.369067pt;}
.x6_c00214{left:564.435733pt;}
.x7_c00214{left:575.969067pt;}
.x8_c00214{left:586.835733pt;}
.x9_c00214{left:594.235733pt;}
.xa_c00214{left:599.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3b9f7cec5904f82e8a82975.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00215;src:url('chunks/assets/font_363d8b3c6a5c389a6449a6b1.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00215;src:url('chunks/assets/font_be002d60f8fe3457a1294815.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00215{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5_c00215{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1_c00215{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4_c00215{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2_c00215{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00215{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.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;}
}
.ws0_c00215{word-spacing:0.000000px;}
.fc0_c00215{color:transparent;}
.fs1_c00215{font-size:90.000000px;}
.fs3_c00215{font-size:96.000000px;}
.fs2_c00215{font-size:114.000000px;}
.fs0_c00215{font-size:174.000000px;}
.y0_c00215{bottom:0.000000px;}
.y5_c00215{bottom:498.750000px;}
.y4_c00215{bottom:499.785000px;}
.y2_c00215{bottom:649.260000px;}
.y3_c00215{bottom:649.935000px;}
.y1_c00215{bottom:773.385000px;}
.h2_c00215{height:88.286133px;}
.h4_c00215{height:94.218750px;}
.h3_c00215{height:111.884766px;}
.h1_c00215{height:175.359375px;}
.h0_c00215{height:1174.500000px;}
.w0_c00215{width:731.977200px;}
.w1_c00215{width:732.000000px;}
.x0_c00215{left:0.000000px;}
.x2_c00215{left:57.565200px;}
.x6_c00215{left:60.490200px;}
.x1_c00215{left:98.290200px;}
.x3_c00215{left:219.565200px;}
.x4_c00215{left:267.115200px;}
.x7_c00215{left:341.590200px;}
.x5_c00215{left:358.915200px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls0_c00215{letter-spacing:0.000000pt;}
.ws0_c00215{word-spacing:0.000000pt;}
.fs1_c00215{font-size:80.000000pt;}
.fs3_c00215{font-size:85.333333pt;}
.fs2_c00215{font-size:101.333333pt;}
.fs0_c00215{font-size:154.666667pt;}
.y0_c00215{bottom:0.000000pt;}
.y5_c00215{bottom:443.333333pt;}
.y4_c00215{bottom:444.253333pt;}
.y2_c00215{bottom:577.120000pt;}
.y3_c00215{bottom:577.720000pt;}
.y1_c00215{bottom:687.453333pt;}
.h2_c00215{height:78.476562pt;}
.h4_c00215{height:83.750000pt;}
.h3_c00215{height:99.453125pt;}
.h1_c00215{height:155.875000pt;}
.h0_c00215{height:1044.000000pt;}
.w0_c00215{width:650.646400pt;}
.w1_c00215{width:650.666667pt;}
.x0_c00215{left:0.000000pt;}
.x2_c00215{left:51.169067pt;}
.x6_c00215{left:53.769067pt;}
.x1_c00215{left:87.369067pt;}
.x3_c00215{left:195.169067pt;}
.x4_c00215{left:237.435733pt;}
.x7_c00215{left:303.635733pt;}
.x5_c00215{left:319.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af467b10c6fb5304d477d37c.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00216;src:url('chunks/assets/font_337468cbd4ee469501a1331f.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00216;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00216{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m28_c00216{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00216{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2_c00216{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc_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);}
.m16_c00216{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9_c00216{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c00216{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10_c00216{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m14_c00216{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c00216{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m25_c00216{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00216{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m17_c00216{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c00216{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00216{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c00216{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c00216{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m19_c00216{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m11_c00216{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00216{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m0_c00216{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00216{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00216{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00216{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c00216{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00216{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00216{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00216{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m18_c00216{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m5_c00216{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m22_c00216{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m24_c00216{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00216{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m23_c00216{transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);}
.m21_c00216{transform:matrix(3.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.835000,0.000000,0.000000,0.250000,0,0);}
.m20_c00216{transform:matrix(3.897500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.897500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.897500,0.000000,0.000000,0.250000,0,0);}
.m26_c00216{transform:matrix(3.900000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.900000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.900000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00216{transform:matrix(3.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.960000,0.000000,0.000000,0.250000,0,0);}
.m27_c00216{transform:matrix(4.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.797500,0.000000,0.000000,0.250000,0,0);}
.m1_c00216{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.ls0_c00216{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00216{word-spacing:0.000000px;}
.fc0_c00216{color:transparent;}
.fs3_c00216{font-size:36.000000px;}
.fs2_c00216{font-size:48.000000px;}
.fs0_c00216{font-size:66.000000px;}
.fs1_c00216{font-size:72.000000px;}
.fs4_c00216{font-size:84.000000px;}
.y0_c00216{bottom:0.000000px;}
.y44_c00216{bottom:93.375000px;}
.y41_c00216{bottom:114.285000px;}
.y42_c00216{bottom:114.960000px;}
.y43_c00216{bottom:115.710000px;}
.y3e_c00216{bottom:135.510000px;}
.y3f_c00216{bottom:137.310000px;}
.y40_c00216{bottom:138.000000px;}
.y3c_c00216{bottom:156.435000px;}
.y3d_c00216{bottom:156.750000px;}
.y38_c00216{bottom:177.285000px;}
.y39_c00216{bottom:178.035000px;}
.y3a_c00216{bottom:179.460000px;}
.y3b_c00216{bottom:180.510000px;}
.y32_c00216{bottom:198.135000px;}
.y31_c00216{bottom:198.885000px;}
.y33_c00216{bottom:199.635000px;}
.y34_c00216{bottom:200.310000px;}
.y35_c00216{bottom:200.685000px;}
.y36_c00216{bottom:201.060000px;}
.y37_c00216{bottom:201.435000px;}
.y2f_c00216{bottom:219.435000px;}
.y30_c00216{bottom:220.500000px;}
.y2c_c00216{bottom:241.035000px;}
.y2d_c00216{bottom:242.760000px;}
.y2e_c00216{bottom:243.135000px;}
.y2b_c00216{bottom:262.275000px;}
.y2a_c00216{bottom:283.125000px;}
.y29_c00216{bottom:283.875000px;}
.y28_c00216{bottom:304.710000px;}
.y27_c00216{bottom:326.025000px;}
.y26_c00216{bottom:326.310000px;}
.y24_c00216{bottom:347.160000px;}
.y25_c00216{bottom:347.535000px;}
.y22_c00216{bottom:367.650000px;}
.y21_c00216{bottom:368.085000px;}
.y23_c00216{bottom:368.460000px;}
.y20_c00216{bottom:389.685000px;}
.y1e_c00216{bottom:410.535000px;}
.y1f_c00216{bottom:410.910000px;}
.y1d_c00216{bottom:431.460000px;}
.y1c_c00216{bottom:431.835000px;}
.y1b_c00216{bottom:453.060000px;}
.y1a_c00216{bottom:474.285000px;}
.y19_c00216{bottom:474.660000px;}
.y18_c00216{bottom:496.260000px;}
.y17_c00216{bottom:517.500000px;}
.y16_c00216{bottom:517.875000px;}
.y15_c00216{bottom:518.250000px;}
.y14_c00216{bottom:539.085000px;}
.y13_c00216{bottom:560.685000px;}
.y12_c00216{bottom:561.060000px;}
.y11_c00216{bottom:561.435000px;}
.y10_c00216{bottom:580.785000px;}
.yf_c00216{bottom:581.250000px;}
.ye_c00216{bottom:581.910000px;}
.yd_c00216{bottom:582.660000px;}
.yc_c00216{bottom:603.510000px;}
.yb_c00216{bottom:624.810000px;}
.ya_c00216{bottom:625.875000px;}
.y9_c00216{bottom:646.035000px;}
.y8_c00216{bottom:647.085000px;}
.y7_c00216{bottom:756.885000px;}
.y6_c00216{bottom:854.085000px;}
.y5_c00216{bottom:884.310000px;}
.y4_c00216{bottom:912.375000px;}
.y3_c00216{bottom:1081.935000px;}
.y1_c00216{bottom:1086.675000px;}
.y2_c00216{bottom:1096.710000px;}
.h4_c00216{height:36.281250px;}
.h3_c00216{height:48.375000px;}
.h7_c00216{height:64.743164px;}
.h6_c00216{height:64.775391px;}
.h1_c00216{height:66.515625px;}
.h2_c00216{height:70.664062px;}
.h5_c00216{height:82.441406px;}
.h0_c00216{height:1174.500000px;}
.w0_c00216{width:731.977200px;}
.w1_c00216{width:732.000000px;}
.x0_c00216{left:0.000000px;}
.x17_c00216{left:66.565200px;}
.xa_c00216{left:67.690200px;}
.x1f_c00216{left:69.115200px;}
.x4_c00216{left:71.290200px;}
.x1c_c00216{left:77.740200px;}
.x23_c00216{left:78.790200px;}
.x12_c00216{left:98.590200px;}
.x8_c00216{left:99.715200px;}
.x32_c00216{left:106.915200px;}
.x7_c00216{left:122.365200px;}
.x33_c00216{left:130.315200px;}
.x6_c00216{left:139.690200px;}
.x27_c00216{left:145.765200px;}
.x10_c00216{left:154.765200px;}
.x28_c00216{left:158.740200px;}
.x36_c00216{left:166.990200px;}
.x11_c00216{left:181.750200px;}
.x5_c00216{left:187.915200px;}
.x13_c00216{left:189.715200px;}
.x29_c00216{left:194.740200px;}
.xd_c00216{left:207.715200px;}
.xb_c00216{left:209.140200px;}
.x20_c00216{left:237.940200px;}
.x21_c00216{left:240.490200px;}
.x14_c00216{left:244.090200px;}
.xc_c00216{left:260.965200px;}
.x1a_c00216{left:269.290200px;}
.x15_c00216{left:272.140200px;}
.x1_c00216{left:308.515200px;}
.x16_c00216{left:310.990200px;}
.x1b_c00216{left:316.090200px;}
.x9_c00216{left:319.990200px;}
.x24_c00216{left:336.565200px;}
.x39_c00216{left:360.715200px;}
.x3a_c00216{left:387.340200px;}
.x2a_c00216{left:388.390200px;}
.x2b_c00216{left:411.775200px;}
.x37_c00216{left:428.740200px;}
.x1d_c00216{left:467.290200px;}
.x2_c00216{left:475.540200px;}
.x38_c00216{left:479.515200px;}
.x19_c00216{left:485.290200px;}
.x22_c00216{left:489.940200px;}
.x2c_c00216{left:502.915200px;}
.x1e_c00216{left:524.890200px;}
.x2d_c00216{left:525.940200px;}
.x34_c00216{left:541.390200px;}
.x2e_c00216{left:551.515200px;}
.xe_c00216{left:555.115200px;}
.x2f_c00216{left:564.115200px;}
.x35_c00216{left:570.190200px;}
.xf_c00216{left:581.365200px;}
.x30_c00216{left:600.115200px;}
.x25_c00216{left:607.990200px;}
.x31_c00216{left:630.340200px;}
.x3_c00216{left:640.390200px;}
.x26_c00216{left:647.965200px;}
.x18_c00216{left:670.690200px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls0_c00216{letter-spacing:0.000000pt;}
.ws0_c00216{word-spacing:0.000000pt;}
.fs3_c00216{font-size:32.000000pt;}
.fs2_c00216{font-size:42.666667pt;}
.fs0_c00216{font-size:58.666667pt;}
.fs1_c00216{font-size:64.000000pt;}
.fs4_c00216{font-size:74.666667pt;}
.y0_c00216{bottom:0.000000pt;}
.y44_c00216{bottom:83.000000pt;}
.y41_c00216{bottom:101.586667pt;}
.y42_c00216{bottom:102.186667pt;}
.y43_c00216{bottom:102.853333pt;}
.y3e_c00216{bottom:120.453333pt;}
.y3f_c00216{bottom:122.053333pt;}
.y40_c00216{bottom:122.666667pt;}
.y3c_c00216{bottom:139.053333pt;}
.y3d_c00216{bottom:139.333333pt;}
.y38_c00216{bottom:157.586667pt;}
.y39_c00216{bottom:158.253333pt;}
.y3a_c00216{bottom:159.520000pt;}
.y3b_c00216{bottom:160.453333pt;}
.y32_c00216{bottom:176.120000pt;}
.y31_c00216{bottom:176.786667pt;}
.y33_c00216{bottom:177.453333pt;}
.y34_c00216{bottom:178.053333pt;}
.y35_c00216{bottom:178.386667pt;}
.y36_c00216{bottom:178.720000pt;}
.y37_c00216{bottom:179.053333pt;}
.y2f_c00216{bottom:195.053333pt;}
.y30_c00216{bottom:196.000000pt;}
.y2c_c00216{bottom:214.253333pt;}
.y2d_c00216{bottom:215.786667pt;}
.y2e_c00216{bottom:216.120000pt;}
.y2b_c00216{bottom:233.133333pt;}
.y2a_c00216{bottom:251.666667pt;}
.y29_c00216{bottom:252.333333pt;}
.y28_c00216{bottom:270.853333pt;}
.y27_c00216{bottom:289.800000pt;}
.y26_c00216{bottom:290.053333pt;}
.y24_c00216{bottom:308.586667pt;}
.y25_c00216{bottom:308.920000pt;}
.y22_c00216{bottom:326.800000pt;}
.y21_c00216{bottom:327.186667pt;}
.y23_c00216{bottom:327.520000pt;}
.y20_c00216{bottom:346.386667pt;}
.y1e_c00216{bottom:364.920000pt;}
.y1f_c00216{bottom:365.253333pt;}
.y1d_c00216{bottom:383.520000pt;}
.y1c_c00216{bottom:383.853333pt;}
.y1b_c00216{bottom:402.720000pt;}
.y1a_c00216{bottom:421.586667pt;}
.y19_c00216{bottom:421.920000pt;}
.y18_c00216{bottom:441.120000pt;}
.y17_c00216{bottom:460.000000pt;}
.y16_c00216{bottom:460.333333pt;}
.y15_c00216{bottom:460.666667pt;}
.y14_c00216{bottom:479.186667pt;}
.y13_c00216{bottom:498.386667pt;}
.y12_c00216{bottom:498.720000pt;}
.y11_c00216{bottom:499.053333pt;}
.y10_c00216{bottom:516.253333pt;}
.yf_c00216{bottom:516.666667pt;}
.ye_c00216{bottom:517.253333pt;}
.yd_c00216{bottom:517.920000pt;}
.yc_c00216{bottom:536.453333pt;}
.yb_c00216{bottom:555.386667pt;}
.ya_c00216{bottom:556.333333pt;}
.y9_c00216{bottom:574.253333pt;}
.y8_c00216{bottom:575.186667pt;}
.y7_c00216{bottom:672.786667pt;}
.y6_c00216{bottom:759.186667pt;}
.y5_c00216{bottom:786.053333pt;}
.y4_c00216{bottom:811.000000pt;}
.y3_c00216{bottom:961.720000pt;}
.y1_c00216{bottom:965.933333pt;}
.y2_c00216{bottom:974.853333pt;}
.h4_c00216{height:32.250000pt;}
.h3_c00216{height:43.000000pt;}
.h7_c00216{height:57.549479pt;}
.h6_c00216{height:57.578125pt;}
.h1_c00216{height:59.125000pt;}
.h2_c00216{height:62.812500pt;}
.h5_c00216{height:73.281250pt;}
.h0_c00216{height:1044.000000pt;}
.w0_c00216{width:650.646400pt;}
.w1_c00216{width:650.666667pt;}
.x0_c00216{left:0.000000pt;}
.x17_c00216{left:59.169067pt;}
.xa_c00216{left:60.169067pt;}
.x1f_c00216{left:61.435733pt;}
.x4_c00216{left:63.369067pt;}
.x1c_c00216{left:69.102400pt;}
.x23_c00216{left:70.035733pt;}
.x12_c00216{left:87.635733pt;}
.x8_c00216{left:88.635733pt;}
.x32_c00216{left:95.035733pt;}
.x7_c00216{left:108.769067pt;}
.x33_c00216{left:115.835733pt;}
.x6_c00216{left:124.169067pt;}
.x27_c00216{left:129.569067pt;}
.x10_c00216{left:137.569067pt;}
.x28_c00216{left:141.102400pt;}
.x36_c00216{left:148.435733pt;}
.x11_c00216{left:161.555733pt;}
.x5_c00216{left:167.035733pt;}
.x13_c00216{left:168.635733pt;}
.x29_c00216{left:173.102400pt;}
.xd_c00216{left:184.635733pt;}
.xb_c00216{left:185.902400pt;}
.x20_c00216{left:211.502400pt;}
.x21_c00216{left:213.769067pt;}
.x14_c00216{left:216.969067pt;}
.xc_c00216{left:231.969067pt;}
.x1a_c00216{left:239.369067pt;}
.x15_c00216{left:241.902400pt;}
.x1_c00216{left:274.235733pt;}
.x16_c00216{left:276.435733pt;}
.x1b_c00216{left:280.969067pt;}
.x9_c00216{left:284.435733pt;}
.x24_c00216{left:299.169067pt;}
.x39_c00216{left:320.635733pt;}
.x3a_c00216{left:344.302400pt;}
.x2a_c00216{left:345.235733pt;}
.x2b_c00216{left:366.022400pt;}
.x37_c00216{left:381.102400pt;}
.x1d_c00216{left:415.369067pt;}
.x2_c00216{left:422.702400pt;}
.x38_c00216{left:426.235733pt;}
.x19_c00216{left:431.369067pt;}
.x22_c00216{left:435.502400pt;}
.x2c_c00216{left:447.035733pt;}
.x1e_c00216{left:466.569067pt;}
.x2d_c00216{left:467.502400pt;}
.x34_c00216{left:481.235733pt;}
.x2e_c00216{left:490.235733pt;}
.xe_c00216{left:493.435733pt;}
.x2f_c00216{left:501.435733pt;}
.x35_c00216{left:506.835733pt;}
.xf_c00216{left:516.769067pt;}
.x30_c00216{left:533.435733pt;}
.x25_c00216{left:540.435733pt;}
.x31_c00216{left:560.302400pt;}
.x3_c00216{left:569.235733pt;}
.x26_c00216{left:575.969067pt;}
.x18_c00216{left:596.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e64f8c7085bcab99355e5c8.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00217;src:url('chunks/assets/font_529a84de97007558f237b307.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00217{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,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);}
.m9_c00217{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c00217{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00217{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00217{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00217{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00217{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00217{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00217{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00217{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00217{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00217{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00217{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c00217{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00217{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00217{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00217{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00217{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00217{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c00217{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1_c00217{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.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;}
}
.ws0_c00217{word-spacing:0.000000px;}
.fc0_c00217{color:transparent;}
.fs1_c00217{font-size:60.000000px;}
.fs2_c00217{font-size:66.000000px;}
.fs0_c00217{font-size:72.000000px;}
.y0_c00217{bottom:0.000000px;}
.y38_c00217{bottom:79.710000px;}
.y37_c00217{bottom:85.125000px;}
.y39_c00217{bottom:100.935000px;}
.y36_c00217{bottom:105.285000px;}
.y35_c00217{bottom:124.710000px;}
.y34_c00217{bottom:133.710000px;}
.y33_c00217{bottom:134.835000px;}
.y32_c00217{bottom:146.685000px;}
.y31_c00217{bottom:169.035000px;}
.y30_c00217{bottom:190.635000px;}
.y2f_c00217{bottom:212.910000px;}
.y2e_c00217{bottom:234.885000px;}
.y2c_c00217{bottom:254.310000px;}
.y2d_c00217{bottom:254.685000px;}
.y2b_c00217{bottom:258.285000px;}
.y2a_c00217{bottom:279.525000px;}
.y29_c00217{bottom:300.750000px;}
.y28_c00217{bottom:322.710000px;}
.y27_c00217{bottom:344.400000px;}
.y26_c00217{bottom:366.000000px;}
.y25_c00217{bottom:391.500000px;}
.y24_c00217{bottom:410.535000px;}
.y23_c00217{bottom:432.510000px;}
.y22_c00217{bottom:454.500000px;}
.y21_c00217{bottom:475.785000px;}
.y20_c00217{bottom:497.685000px;}
.y1f_c00217{bottom:519.285000px;}
.y1e_c00217{bottom:541.185000px;}
.y1d_c00217{bottom:562.875000px;}
.y1c_c00217{bottom:584.460000px;}
.y1b_c00217{bottom:606.375000px;}
.y1a_c00217{bottom:628.035000px;}
.y19_c00217{bottom:650.010000px;}
.y18_c00217{bottom:671.910000px;}
.y17_c00217{bottom:693.510000px;}
.y16_c00217{bottom:714.825000px;}
.y15_c00217{bottom:736.710000px;}
.y14_c00217{bottom:758.325000px;}
.y13_c00217{bottom:779.925000px;}
.y12_c00217{bottom:801.525000px;}
.y11_c00217{bottom:822.810000px;}
.y10_c00217{bottom:842.925000px;}
.yb_c00217{bottom:861.300000px;}
.yf_c00217{bottom:865.275000px;}
.yd_c00217{bottom:882.210000px;}
.ye_c00217{bottom:887.250000px;}
.ya_c00217{bottom:907.710000px;}
.yc_c00217{bottom:913.125000px;}
.y9_c00217{bottom:929.685000px;}
.y8_c00217{bottom:952.050000px;}
.y7_c00217{bottom:974.025000px;}
.y6_c00217{bottom:990.900000px;}
.y5_c00217{bottom:1016.085000px;}
.y4_c00217{bottom:1038.435000px;}
.y1_c00217{bottom:1086.960000px;}
.y3_c00217{bottom:1095.300000px;}
.y2_c00217{bottom:1101.585000px;}
.h2_c00217{height:58.886719px;}
.h3_c00217{height:66.515625px;}
.h1_c00217{height:70.664062px;}
.h0_c00217{height:1174.500000px;}
.w0_c00217{width:731.977200px;}
.w1_c00217{width:732.000000px;}
.x0_c00217{left:0.000000px;}
.x13_c00217{left:62.965200px;}
.xe_c00217{left:64.090200px;}
.xd_c00217{left:65.140200px;}
.xc_c00217{left:66.190200px;}
.x7_c00217{left:68.365200px;}
.x5_c00217{left:70.540200px;}
.x14_c00217{left:87.790200px;}
.x1_c00217{left:88.915200px;}
.x8_c00217{left:93.550200px;}
.xf_c00217{left:95.365200px;}
.x10_c00217{left:96.790200px;}
.xb_c00217{left:98.290200px;}
.x6_c00217{left:99.340200px;}
.x4_c00217{left:101.515200px;}
.xa_c00217{left:104.740200px;}
.x2_c00217{left:115.915200px;}
.x15_c00217{left:118.090200px;}
.x3_c00217{left:291.565200px;}
.x16_c00217{left:501.115200px;}
.x11_c00217{left:512.290200px;}
.x12_c00217{left:544.690200px;}
.x17_c00217{left:548.590200px;}
.x9_c00217{left:643.990200px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls0_c00217{letter-spacing:0.000000pt;}
.ws0_c00217{word-spacing:0.000000pt;}
.fs1_c00217{font-size:53.333333pt;}
.fs2_c00217{font-size:58.666667pt;}
.fs0_c00217{font-size:64.000000pt;}
.y0_c00217{bottom:0.000000pt;}
.y38_c00217{bottom:70.853333pt;}
.y37_c00217{bottom:75.666667pt;}
.y39_c00217{bottom:89.720000pt;}
.y36_c00217{bottom:93.586667pt;}
.y35_c00217{bottom:110.853333pt;}
.y34_c00217{bottom:118.853333pt;}
.y33_c00217{bottom:119.853333pt;}
.y32_c00217{bottom:130.386667pt;}
.y31_c00217{bottom:150.253333pt;}
.y30_c00217{bottom:169.453333pt;}
.y2f_c00217{bottom:189.253333pt;}
.y2e_c00217{bottom:208.786667pt;}
.y2c_c00217{bottom:226.053333pt;}
.y2d_c00217{bottom:226.386667pt;}
.y2b_c00217{bottom:229.586667pt;}
.y2a_c00217{bottom:248.466667pt;}
.y29_c00217{bottom:267.333333pt;}
.y28_c00217{bottom:286.853333pt;}
.y27_c00217{bottom:306.133333pt;}
.y26_c00217{bottom:325.333333pt;}
.y25_c00217{bottom:348.000000pt;}
.y24_c00217{bottom:364.920000pt;}
.y23_c00217{bottom:384.453333pt;}
.y22_c00217{bottom:404.000000pt;}
.y21_c00217{bottom:422.920000pt;}
.y20_c00217{bottom:442.386667pt;}
.y1f_c00217{bottom:461.586667pt;}
.y1e_c00217{bottom:481.053333pt;}
.y1d_c00217{bottom:500.333333pt;}
.y1c_c00217{bottom:519.520000pt;}
.y1b_c00217{bottom:539.000000pt;}
.y1a_c00217{bottom:558.253333pt;}
.y19_c00217{bottom:577.786667pt;}
.y18_c00217{bottom:597.253333pt;}
.y17_c00217{bottom:616.453333pt;}
.y16_c00217{bottom:635.400000pt;}
.y15_c00217{bottom:654.853333pt;}
.y14_c00217{bottom:674.066667pt;}
.y13_c00217{bottom:693.266667pt;}
.y12_c00217{bottom:712.466667pt;}
.y11_c00217{bottom:731.386667pt;}
.y10_c00217{bottom:749.266667pt;}
.yb_c00217{bottom:765.600000pt;}
.yf_c00217{bottom:769.133333pt;}
.yd_c00217{bottom:784.186667pt;}
.ye_c00217{bottom:788.666667pt;}
.ya_c00217{bottom:806.853333pt;}
.yc_c00217{bottom:811.666667pt;}
.y9_c00217{bottom:826.386667pt;}
.y8_c00217{bottom:846.266667pt;}
.y7_c00217{bottom:865.800000pt;}
.y6_c00217{bottom:880.800000pt;}
.y5_c00217{bottom:903.186667pt;}
.y4_c00217{bottom:923.053333pt;}
.y1_c00217{bottom:966.186667pt;}
.y3_c00217{bottom:973.600000pt;}
.y2_c00217{bottom:979.186667pt;}
.h2_c00217{height:52.343750pt;}
.h3_c00217{height:59.125000pt;}
.h1_c00217{height:62.812500pt;}
.h0_c00217{height:1044.000000pt;}
.w0_c00217{width:650.646400pt;}
.w1_c00217{width:650.666667pt;}
.x0_c00217{left:0.000000pt;}
.x13_c00217{left:55.969067pt;}
.xe_c00217{left:56.969067pt;}
.xd_c00217{left:57.902400pt;}
.xc_c00217{left:58.835733pt;}
.x7_c00217{left:60.769067pt;}
.x5_c00217{left:62.702400pt;}
.x14_c00217{left:78.035733pt;}
.x1_c00217{left:79.035733pt;}
.x8_c00217{left:83.155733pt;}
.xf_c00217{left:84.769067pt;}
.x10_c00217{left:86.035733pt;}
.xb_c00217{left:87.369067pt;}
.x6_c00217{left:88.302400pt;}
.x4_c00217{left:90.235733pt;}
.xa_c00217{left:93.102400pt;}
.x2_c00217{left:103.035733pt;}
.x15_c00217{left:104.969067pt;}
.x3_c00217{left:259.169067pt;}
.x16_c00217{left:445.435733pt;}
.x11_c00217{left:455.369067pt;}
.x12_c00217{left:484.169067pt;}
.x17_c00217{left:487.635733pt;}
.x9_c00217{left:572.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a8097a33a9c93bd94fada836.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00218;src:url('chunks/assets/font_b812817f5f86d137d9a26d88.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00218;src:url('chunks/assets/font_807c2dfba35456ecde86c2a9.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00218{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m13_c00218{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0_c00218{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c00218{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00218{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00218{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00218{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00218{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00218{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00218{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00218{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00218{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00218{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00218{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00218{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c00218{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00218{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00218{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c00218{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00218{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c00218{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00218{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m14_c00218{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m19_c00218{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10_c00218{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m11_c00218{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1_c00218{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00218{word-spacing:0.000000px;}
.fc0_c00218{color:transparent;}
.fs0_c00218{font-size:60.000000px;}
.fs4_c00218{font-size:66.000000px;}
.fs2_c00218{font-size:72.000000px;}
.fs3_c00218{font-size:78.000000px;}
.fs1_c00218{font-size:84.000000px;}
.y0_c00218{bottom:0.000000px;}
.y3e_c00218{bottom:92.685000px;}
.y3d_c00218{bottom:113.910000px;}
.y3c_c00218{bottom:133.785000px;}
.y3b_c00218{bottom:154.635000px;}
.y3a_c00218{bottom:174.810000px;}
.y39_c00218{bottom:195.660000px;}
.y36_c00218{bottom:216.135000px;}
.y37_c00218{bottom:219.375000px;}
.y38_c00218{bottom:219.750000px;}
.y35_c00218{bottom:237.000000px;}
.y34_c00218{bottom:258.000000px;}
.y33_c00218{bottom:279.210000px;}
.y32_c00218{bottom:300.435000px;}
.y31_c00218{bottom:301.125000px;}
.y2f_c00218{bottom:321.660000px;}
.y30_c00218{bottom:322.035000px;}
.y2e_c00218{bottom:342.900000px;}
.y2d_c00218{bottom:364.125000px;}
.y2c_c00218{bottom:364.500000px;}
.y2b_c00218{bottom:385.035000px;}
.y27_c00218{bottom:405.150000px;}
.y28_c00218{bottom:405.900000px;}
.y29_c00218{bottom:406.560000px;}
.y2a_c00218{bottom:406.935000px;}
.y25_c00218{bottom:427.125000px;}
.y26_c00218{bottom:427.500000px;}
.y23_c00218{bottom:448.035000px;}
.y22_c00218{bottom:448.335000px;}
.y24_c00218{bottom:448.710000px;}
.y21_c00218{bottom:470.010000px;}
.y1f_c00218{bottom:491.625000px;}
.y20_c00218{bottom:492.000000px;}
.y1e_c00218{bottom:512.835000px;}
.y1d_c00218{bottom:534.435000px;}
.y1c_c00218{bottom:556.035000px;}
.y1b_c00218{bottom:577.260000px;}
.y1a_c00218{bottom:599.250000px;}
.y19_c00218{bottom:620.085000px;}
.y18_c00218{bottom:641.310000px;}
.y17_c00218{bottom:662.625000px;}
.y16_c00218{bottom:684.135000px;}
.y15_c00218{bottom:705.750000px;}
.y14_c00218{bottom:727.035000px;}
.y13_c00218{bottom:748.260000px;}
.y12_c00218{bottom:769.500000px;}
.y11_c00218{bottom:791.085000px;}
.y10_c00218{bottom:813.060000px;}
.yf_c00218{bottom:834.300000px;}
.ye_c00218{bottom:855.210000px;}
.yd_c00218{bottom:877.125000px;}
.yc_c00218{bottom:898.335000px;}
.yb_c00218{bottom:919.560000px;}
.ya_c00218{bottom:940.875000px;}
.y9_c00218{bottom:962.085000px;}
.y8_c00218{bottom:983.685000px;}
.y7_c00218{bottom:1005.300000px;}
.y6_c00218{bottom:1025.835000px;}
.y5_c00218{bottom:1026.525000px;}
.y4_c00218{bottom:1026.900000px;}
.y3_c00218{bottom:1084.125000px;}
.y2_c00218{bottom:1085.550000px;}
.y1_c00218{bottom:1085.925000px;}
.h1_c00218{height:60.468750px;}
.h5_c00218{height:64.775391px;}
.h3_c00218{height:70.664062px;}
.h6_c00218{height:76.514648px;}
.h4_c00218{height:76.552734px;}
.h2_c00218{height:84.656250px;}
.h0_c00218{height:1174.500000px;}
.w0_c00218{width:731.977200px;}
.w1_c00218{width:732.000000px;}
.x0_c00218{left:0.000000px;}
.xe_c00218{left:63.340200px;}
.xb_c00218{left:64.765200px;}
.xa_c00218{left:66.190200px;}
.x8_c00218{left:67.315200px;}
.x7_c00218{left:68.365200px;}
.x12_c00218{left:94.990200px;}
.xc_c00218{left:96.490200px;}
.x9_c00218{left:98.290200px;}
.x4_c00218{left:100.390200px;}
.x18_c00218{left:136.765200px;}
.x13_c00218{left:149.740200px;}
.xf_c00218{left:156.190200px;}
.x10_c00218{left:175.690200px;}
.x1_c00218{left:280.765200px;}
.x17_c00218{left:326.515200px;}
.x11_c00218{left:362.515200px;}
.x14_c00218{left:420.490200px;}
.x2_c00218{left:473.365200px;}
.x5_c00218{left:537.115200px;}
.x15_c00218{left:542.515200px;}
.x6_c00218{left:566.965200px;}
.x19_c00218{left:618.490200px;}
.x16_c00218{left:623.890200px;}
.x3_c00218{left:637.165200px;}
.x1a_c00218{left:652.690200px;}
.xd_c00218{left:659.140200px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls0_c00218{letter-spacing:0.000000pt;}
.ws0_c00218{word-spacing:0.000000pt;}
.fs0_c00218{font-size:53.333333pt;}
.fs4_c00218{font-size:58.666667pt;}
.fs2_c00218{font-size:64.000000pt;}
.fs3_c00218{font-size:69.333333pt;}
.fs1_c00218{font-size:74.666667pt;}
.y0_c00218{bottom:0.000000pt;}
.y3e_c00218{bottom:82.386667pt;}
.y3d_c00218{bottom:101.253333pt;}
.y3c_c00218{bottom:118.920000pt;}
.y3b_c00218{bottom:137.453333pt;}
.y3a_c00218{bottom:155.386667pt;}
.y39_c00218{bottom:173.920000pt;}
.y36_c00218{bottom:192.120000pt;}
.y37_c00218{bottom:195.000000pt;}
.y38_c00218{bottom:195.333333pt;}
.y35_c00218{bottom:210.666667pt;}
.y34_c00218{bottom:229.333333pt;}
.y33_c00218{bottom:248.186667pt;}
.y32_c00218{bottom:267.053333pt;}
.y31_c00218{bottom:267.666667pt;}
.y2f_c00218{bottom:285.920000pt;}
.y30_c00218{bottom:286.253333pt;}
.y2e_c00218{bottom:304.800000pt;}
.y2d_c00218{bottom:323.666667pt;}
.y2c_c00218{bottom:324.000000pt;}
.y2b_c00218{bottom:342.253333pt;}
.y27_c00218{bottom:360.133333pt;}
.y28_c00218{bottom:360.800000pt;}
.y29_c00218{bottom:361.386667pt;}
.y2a_c00218{bottom:361.720000pt;}
.y25_c00218{bottom:379.666667pt;}
.y26_c00218{bottom:380.000000pt;}
.y23_c00218{bottom:398.253333pt;}
.y22_c00218{bottom:398.520000pt;}
.y24_c00218{bottom:398.853333pt;}
.y21_c00218{bottom:417.786667pt;}
.y1f_c00218{bottom:437.000000pt;}
.y20_c00218{bottom:437.333333pt;}
.y1e_c00218{bottom:455.853333pt;}
.y1d_c00218{bottom:475.053333pt;}
.y1c_c00218{bottom:494.253333pt;}
.y1b_c00218{bottom:513.120000pt;}
.y1a_c00218{bottom:532.666667pt;}
.y19_c00218{bottom:551.186667pt;}
.y18_c00218{bottom:570.053333pt;}
.y17_c00218{bottom:589.000000pt;}
.y16_c00218{bottom:608.120000pt;}
.y15_c00218{bottom:627.333333pt;}
.y14_c00218{bottom:646.253333pt;}
.y13_c00218{bottom:665.120000pt;}
.y12_c00218{bottom:684.000000pt;}
.y11_c00218{bottom:703.186667pt;}
.y10_c00218{bottom:722.720000pt;}
.yf_c00218{bottom:741.600000pt;}
.ye_c00218{bottom:760.186667pt;}
.yd_c00218{bottom:779.666667pt;}
.yc_c00218{bottom:798.520000pt;}
.yb_c00218{bottom:817.386667pt;}
.ya_c00218{bottom:836.333333pt;}
.y9_c00218{bottom:855.186667pt;}
.y8_c00218{bottom:874.386667pt;}
.y7_c00218{bottom:893.600000pt;}
.y6_c00218{bottom:911.853333pt;}
.y5_c00218{bottom:912.466667pt;}
.y4_c00218{bottom:912.800000pt;}
.y3_c00218{bottom:963.666667pt;}
.y2_c00218{bottom:964.933333pt;}
.y1_c00218{bottom:965.266667pt;}
.h1_c00218{height:53.750000pt;}
.h5_c00218{height:57.578125pt;}
.h3_c00218{height:62.812500pt;}
.h6_c00218{height:68.013021pt;}
.h4_c00218{height:68.046875pt;}
.h2_c00218{height:75.250000pt;}
.h0_c00218{height:1044.000000pt;}
.w0_c00218{width:650.646400pt;}
.w1_c00218{width:650.666667pt;}
.x0_c00218{left:0.000000pt;}
.xe_c00218{left:56.302400pt;}
.xb_c00218{left:57.569067pt;}
.xa_c00218{left:58.835733pt;}
.x8_c00218{left:59.835733pt;}
.x7_c00218{left:60.769067pt;}
.x12_c00218{left:84.435733pt;}
.xc_c00218{left:85.769067pt;}
.x9_c00218{left:87.369067pt;}
.x4_c00218{left:89.235733pt;}
.x18_c00218{left:121.569067pt;}
.x13_c00218{left:133.102400pt;}
.xf_c00218{left:138.835733pt;}
.x10_c00218{left:156.169067pt;}
.x1_c00218{left:249.569067pt;}
.x17_c00218{left:290.235733pt;}
.x11_c00218{left:322.235733pt;}
.x14_c00218{left:373.769067pt;}
.x2_c00218{left:420.769067pt;}
.x5_c00218{left:477.435733pt;}
.x15_c00218{left:482.235733pt;}
.x6_c00218{left:503.969067pt;}
.x19_c00218{left:549.769067pt;}
.x16_c00218{left:554.569067pt;}
.x3_c00218{left:566.369067pt;}
.x1a_c00218{left:580.169067pt;}
.xd_c00218{left:585.902400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_41b1dca29990cd148495b5a9.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00219;src:url('chunks/assets/font_a87c5286b2b71b4fe8d24f3a.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00219{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0_c00219{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m15_c00219{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c00219{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c00219{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00219{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00219{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13_c00219{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00219{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5_c00219{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c00219{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c00219{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00219{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00219{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m12_c00219{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00219{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00219{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m14_c00219{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00219{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00219{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00219{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00219{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.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;}
}
.ws0_c00219{word-spacing:0.000000px;}
.fc0_c00219{color:transparent;}
.fs1_c00219{font-size:60.000000px;}
.fs0_c00219{font-size:72.000000px;}
.fs2_c00219{font-size:84.000000px;}
.fs3_c00219{font-size:90.000000px;}
.y0_c00219{bottom:0.000000px;}
.y37_c00219{bottom:85.875000px;}
.y36_c00219{bottom:104.250000px;}
.y35_c00219{bottom:107.460000px;}
.y34_c00219{bottom:128.685000px;}
.y33_c00219{bottom:151.035000px;}
.y32_c00219{bottom:173.010000px;}
.y31_c00219{bottom:195.285000px;}
.y30_c00219{bottom:217.635000px;}
.y2f_c00219{bottom:239.535000px;}
.y2e_c00219{bottom:261.900000px;}
.y2d_c00219{bottom:283.875000px;}
.y2c_c00219{bottom:305.460000px;}
.y2b_c00219{bottom:327.060000px;}
.y2a_c00219{bottom:349.035000px;}
.y29_c00219{bottom:371.310000px;}
.y28_c00219{bottom:393.285000px;}
.y27_c00219{bottom:415.260000px;}
.y26_c00219{bottom:437.910000px;}
.y25_c00219{bottom:458.835000px;}
.y24_c00219{bottom:480.435000px;}
.y23_c00219{bottom:502.710000px;}
.y22_c00219{bottom:524.010000px;}
.y21_c00219{bottom:545.625000px;}
.y20_c00219{bottom:567.510000px;}
.y1f_c00219{bottom:589.500000px;}
.y1e_c00219{bottom:611.460000px;}
.y1d_c00219{bottom:633.750000px;}
.y1c_c00219{bottom:655.710000px;}
.y1b_c00219{bottom:677.685000px;}
.y19_c00219{bottom:696.435000px;}
.y1a_c00219{bottom:696.750000px;}
.y16_c00219{bottom:720.210000px;}
.y17_c00219{bottom:720.885000px;}
.y18_c00219{bottom:721.260000px;}
.y15_c00219{bottom:742.785000px;}
.y14_c00219{bottom:764.760000px;}
.y13_c00219{bottom:786.750000px;}
.y10_c00219{bottom:807.300000px;}
.y12_c00219{bottom:808.710000px;}
.y11_c00219{bottom:809.085000px;}
.yf_c00219{bottom:825.300000px;}
.ye_c00219{bottom:850.500000px;}
.yd_c00219{bottom:872.460000px;}
.yb_c00219{bottom:890.460000px;}
.yc_c00219{bottom:893.685000px;}
.ya_c00219{bottom:915.675000px;}
.y9_c00219{bottom:938.025000px;}
.y8_c00219{bottom:959.550000px;}
.y7_c00219{bottom:981.150000px;}
.y6_c00219{bottom:1003.125000px;}
.y5_c00219{bottom:1024.335000px;}
.y4_c00219{bottom:1045.560000px;}
.y1_c00219{bottom:1094.550000px;}
.y3_c00219{bottom:1103.250000px;}
.y2_c00219{bottom:1109.025000px;}
.h2_c00219{height:58.886719px;}
.h1_c00219{height:70.664062px;}
.h3_c00219{height:82.400391px;}
.h4_c00219{height:88.330078px;}
.h0_c00219{height:1174.500000px;}
.w0_c00219{width:731.977200px;}
.w1_c00219{width:732.000000px;}
.x0_c00219{left:0.000000px;}
.x11_c00219{left:64.090200px;}
.x8_c00219{left:65.140200px;}
.xc_c00219{left:66.940200px;}
.x5_c00219{left:68.740200px;}
.x4_c00219{left:70.165200px;}
.x13_c00219{left:87.790200px;}
.x1_c00219{left:90.340200px;}
.x10_c00219{left:96.490200px;}
.x9_c00219{left:98.590200px;}
.x7_c00219{left:100.090200px;}
.x2_c00219{left:116.965200px;}
.xf_c00219{left:134.965200px;}
.x6_c00219{left:287.290200px;}
.x3_c00219{left:293.740200px;}
.xd_c00219{left:466.540200px;}
.xa_c00219{left:511.165200px;}
.xe_c00219{left:562.990200px;}
.xb_c00219{left:604.090200px;}
.x12_c00219{left:671.365200px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls0_c00219{letter-spacing:0.000000pt;}
.ws0_c00219{word-spacing:0.000000pt;}
.fs1_c00219{font-size:53.333333pt;}
.fs0_c00219{font-size:64.000000pt;}
.fs2_c00219{font-size:74.666667pt;}
.fs3_c00219{font-size:80.000000pt;}
.y0_c00219{bottom:0.000000pt;}
.y37_c00219{bottom:76.333333pt;}
.y36_c00219{bottom:92.666667pt;}
.y35_c00219{bottom:95.520000pt;}
.y34_c00219{bottom:114.386667pt;}
.y33_c00219{bottom:134.253333pt;}
.y32_c00219{bottom:153.786667pt;}
.y31_c00219{bottom:173.586667pt;}
.y30_c00219{bottom:193.453333pt;}
.y2f_c00219{bottom:212.920000pt;}
.y2e_c00219{bottom:232.800000pt;}
.y2d_c00219{bottom:252.333333pt;}
.y2c_c00219{bottom:271.520000pt;}
.y2b_c00219{bottom:290.720000pt;}
.y2a_c00219{bottom:310.253333pt;}
.y29_c00219{bottom:330.053333pt;}
.y28_c00219{bottom:349.586667pt;}
.y27_c00219{bottom:369.120000pt;}
.y26_c00219{bottom:389.253333pt;}
.y25_c00219{bottom:407.853333pt;}
.y24_c00219{bottom:427.053333pt;}
.y23_c00219{bottom:446.853333pt;}
.y22_c00219{bottom:465.786667pt;}
.y21_c00219{bottom:485.000000pt;}
.y20_c00219{bottom:504.453333pt;}
.y1f_c00219{bottom:524.000000pt;}
.y1e_c00219{bottom:543.520000pt;}
.y1d_c00219{bottom:563.333333pt;}
.y1c_c00219{bottom:582.853333pt;}
.y1b_c00219{bottom:602.386667pt;}
.y19_c00219{bottom:619.053333pt;}
.y1a_c00219{bottom:619.333333pt;}
.y16_c00219{bottom:640.186667pt;}
.y17_c00219{bottom:640.786667pt;}
.y18_c00219{bottom:641.120000pt;}
.y15_c00219{bottom:660.253333pt;}
.y14_c00219{bottom:679.786667pt;}
.y13_c00219{bottom:699.333333pt;}
.y10_c00219{bottom:717.600000pt;}
.y12_c00219{bottom:718.853333pt;}
.y11_c00219{bottom:719.186667pt;}
.yf_c00219{bottom:733.600000pt;}
.ye_c00219{bottom:756.000000pt;}
.yd_c00219{bottom:775.520000pt;}
.yb_c00219{bottom:791.520000pt;}
.yc_c00219{bottom:794.386667pt;}
.ya_c00219{bottom:813.933333pt;}
.y9_c00219{bottom:833.800000pt;}
.y8_c00219{bottom:852.933333pt;}
.y7_c00219{bottom:872.133333pt;}
.y6_c00219{bottom:891.666667pt;}
.y5_c00219{bottom:910.520000pt;}
.y4_c00219{bottom:929.386667pt;}
.y1_c00219{bottom:972.933333pt;}
.y3_c00219{bottom:980.666667pt;}
.y2_c00219{bottom:985.800000pt;}
.h2_c00219{height:52.343750pt;}
.h1_c00219{height:62.812500pt;}
.h3_c00219{height:73.244792pt;}
.h4_c00219{height:78.515625pt;}
.h0_c00219{height:1044.000000pt;}
.w0_c00219{width:650.646400pt;}
.w1_c00219{width:650.666667pt;}
.x0_c00219{left:0.000000pt;}
.x11_c00219{left:56.969067pt;}
.x8_c00219{left:57.902400pt;}
.xc_c00219{left:59.502400pt;}
.x5_c00219{left:61.102400pt;}
.x4_c00219{left:62.369067pt;}
.x13_c00219{left:78.035733pt;}
.x1_c00219{left:80.302400pt;}
.x10_c00219{left:85.769067pt;}
.x9_c00219{left:87.635733pt;}
.x7_c00219{left:88.969067pt;}
.x2_c00219{left:103.969067pt;}
.xf_c00219{left:119.969067pt;}
.x6_c00219{left:255.369067pt;}
.x3_c00219{left:261.102400pt;}
.xd_c00219{left:414.702400pt;}
.xa_c00219{left:454.369067pt;}
.xe_c00219{left:500.435733pt;}
.xb_c00219{left:536.969067pt;}
.x12_c00219{left:596.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4a11f8a6f13c74e5afd7e503.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00220;src:url('chunks/assets/font_dd3ae3df65b3cd553ebac561.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00220;src:url('chunks/assets/font_357912305aac670f421a0e6e.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19_c00220{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00220{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m17_c00220{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m16_c00220{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m13_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);}
.m11_c00220{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18_c00220{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m15_c00220{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00220{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5_c00220{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c00220{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c00220{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00220{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m21_c00220{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00220{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00220{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m0_c00220{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00220{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00220{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00220{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00220{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00220{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00220{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10_c00220{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00220{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00220{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m22_c00220{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00220{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c00220{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00220{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00220{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m20_c00220{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c00220{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00220{transform:matrix(1.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c00220{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls0_c00220{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00220{color:transparent;}
.fs0_c00220{font-size:54.000000px;}
.fs2_c00220{font-size:66.000000px;}
.fs1_c00220{font-size:72.000000px;}
.fs3_c00220{font-size:84.000000px;}
.y0_c00220{bottom:0.000000px;}
.y4e_c00220{bottom:76.500000px;}
.y4d_c00220{bottom:101.385000px;}
.y4c_c00220{bottom:121.500000px;}
.y4a_c00220{bottom:141.960000px;}
.y4b_c00220{bottom:144.210000px;}
.y48_c00220{bottom:162.510000px;}
.y49_c00220{bottom:165.060000px;}
.y47_c00220{bottom:182.685000px;}
.y45_c00220{bottom:201.810000px;}
.y44_c00220{bottom:202.500000px;}
.y46_c00220{bottom:205.335000px;}
.y43_c00220{bottom:223.410000px;}
.y42_c00220{bottom:243.885000px;}
.y41_c00220{bottom:244.260000px;}
.y3f_c00220{bottom:265.500000px;}
.y3d_c00220{bottom:265.785000px;}
.y3e_c00220{bottom:265.875000px;}
.y40_c00220{bottom:267.000000px;}
.y3c_c00220{bottom:286.410000px;}
.y3b_c00220{bottom:286.710000px;}
.y3a_c00220{bottom:308.025000px;}
.y38_c00220{bottom:328.125000px;}
.y39_c00220{bottom:328.875000px;}
.y37_c00220{bottom:329.250000px;}
.y36_c00220{bottom:349.410000px;}
.y35_c00220{bottom:370.650000px;}
.y34_c00220{bottom:391.500000px;}
.y33_c00220{bottom:412.710000px;}
.y32_c00220{bottom:433.635000px;}
.y31_c00220{bottom:455.250000px;}
.y30_c00220{bottom:476.460000px;}
.y2f_c00220{bottom:498.060000px;}
.y2e_c00220{bottom:519.285000px;}
.y2d_c00220{bottom:519.660000px;}
.y2c_c00220{bottom:540.885000px;}
.y2b_c00220{bottom:561.435000px;}
.y2a_c00220{bottom:562.185000px;}
.y29_c00220{bottom:583.410000px;}
.y28_c00220{bottom:604.635000px;}
.y27_c00220{bottom:624.750000px;}
.y26_c00220{bottom:626.535000px;}
.y25_c00220{bottom:647.760000px;}
.y24_c00220{bottom:666.885000px;}
.y23_c00220{bottom:667.635000px;}
.y22_c00220{bottom:668.685000px;}
.y20_c00220{bottom:669.060000px;}
.y21_c00220{bottom:669.435000px;}
.y1f_c00220{bottom:689.625000px;}
.y1e_c00220{bottom:691.035000px;}
.y1d_c00220{bottom:711.885000px;}
.y1c_c00220{bottom:730.950000px;}
.y1b_c00220{bottom:733.500000px;}
.y1a_c00220{bottom:754.410000px;}
.y19_c00220{bottom:773.085000px;}
.y18_c00220{bottom:775.260000px;}
.y17_c00220{bottom:775.935000px;}
.y16_c00220{bottom:795.435000px;}
.y15_c00220{bottom:797.250000px;}
.y14_c00220{bottom:818.460000px;}
.y13_c00220{bottom:839.685000px;}
.y12_c00220{bottom:860.925000px;}
.y11_c00220{bottom:880.335000px;}
.y10_c00220{bottom:882.525000px;}
.yf_c00220{bottom:901.650000px;}
.ye_c00220{bottom:903.435000px;}
.yd_c00220{bottom:922.875000px;}
.yc_c00220{bottom:924.675000px;}
.yb_c00220{bottom:946.275000px;}
.ya_c00220{bottom:966.060000px;}
.y9_c00220{bottom:967.800000px;}
.y8_c00220{bottom:989.085000px;}
.y7_c00220{bottom:1010.025000px;}
.y6_c00220{bottom:1010.310000px;}
.y5_c00220{bottom:1010.685000px;}
.y4_c00220{bottom:1031.925000px;}
.y3_c00220{bottom:1089.900000px;}
.y1_c00220{bottom:1091.685000px;}
.y2_c00220{bottom:1092.060000px;}
.h1_c00220{height:54.421875px;}
.h4_c00220{height:64.775391px;}
.h3_c00220{height:70.664062px;}
.h2_c00220{height:72.562500px;}
.h5_c00220{height:82.400391px;}
.h0_c00220{height:1174.500000px;}
.w0_c00220{width:731.977200px;}
.w1_c00220{width:732.000000px;}
.x0_c00220{left:0.000000px;}
.x13_c00220{left:76.300200px;}
.x4_c00220{left:78.790200px;}
.xc_c00220{left:80.590200px;}
.x29_c00220{left:81.715200px;}
.x25_c00220{left:101.890200px;}
.x1e_c00220{left:102.940200px;}
.x1b_c00220{left:110.515200px;}
.x5_c00220{left:111.565200px;}
.x1f_c00220{left:117.340200px;}
.x20_c00220{left:123.490200px;}
.x21_c00220{left:145.390200px;}
.x1c_c00220{left:150.790200px;}
.x1a_c00220{left:165.565200px;}
.xf_c00220{left:174.940200px;}
.x26_c00220{left:202.990200px;}
.x14_c00220{left:275.740200px;}
.x1_c00220{left:291.565200px;}
.x6_c00220{left:304.540200px;}
.x12_c00220{left:305.590200px;}
.x7_c00220{left:323.965200px;}
.x24_c00220{left:330.490200px;}
.x15_c00220{left:335.515200px;}
.x22_c00220{left:364.315200px;}
.x8_c00220{left:434.140200px;}
.x16_c00220{left:474.790200px;}
.x2_c00220{left:487.390200px;}
.x9_c00220{left:496.765200px;}
.x27_c00220{left:511.165200px;}
.xe_c00220{left:534.190200px;}
.x1d_c00220{left:539.290200px;}
.x19_c00220{left:545.740200px;}
.x28_c00220{left:609.115200px;}
.x18_c00220{left:610.540200px;}
.xb_c00220{left:611.965200px;}
.xd_c00220{left:614.515200px;}
.x11_c00220{left:622.390200px;}
.xa_c00220{left:633.190200px;}
.x17_c00220{left:644.365200px;}
.x3_c00220{left:652.315200px;}
.x23_c00220{left:666.715200px;}
.x10_c00220{left:677.515200px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls0_c00220{letter-spacing:0.000000pt;}
.ws0_c00220{word-spacing:0.000000pt;}
.fs0_c00220{font-size:48.000000pt;}
.fs2_c00220{font-size:58.666667pt;}
.fs1_c00220{font-size:64.000000pt;}
.fs3_c00220{font-size:74.666667pt;}
.y0_c00220{bottom:0.000000pt;}
.y4e_c00220{bottom:68.000000pt;}
.y4d_c00220{bottom:90.120000pt;}
.y4c_c00220{bottom:108.000000pt;}
.y4a_c00220{bottom:126.186667pt;}
.y4b_c00220{bottom:128.186667pt;}
.y48_c00220{bottom:144.453333pt;}
.y49_c00220{bottom:146.720000pt;}
.y47_c00220{bottom:162.386667pt;}
.y45_c00220{bottom:179.386667pt;}
.y44_c00220{bottom:180.000000pt;}
.y46_c00220{bottom:182.520000pt;}
.y43_c00220{bottom:198.586667pt;}
.y42_c00220{bottom:216.786667pt;}
.y41_c00220{bottom:217.120000pt;}
.y3f_c00220{bottom:236.000000pt;}
.y3d_c00220{bottom:236.253333pt;}
.y3e_c00220{bottom:236.333333pt;}
.y40_c00220{bottom:237.333333pt;}
.y3c_c00220{bottom:254.586667pt;}
.y3b_c00220{bottom:254.853333pt;}
.y3a_c00220{bottom:273.800000pt;}
.y38_c00220{bottom:291.666667pt;}
.y39_c00220{bottom:292.333333pt;}
.y37_c00220{bottom:292.666667pt;}
.y36_c00220{bottom:310.586667pt;}
.y35_c00220{bottom:329.466667pt;}
.y34_c00220{bottom:348.000000pt;}
.y33_c00220{bottom:366.853333pt;}
.y32_c00220{bottom:385.453333pt;}
.y31_c00220{bottom:404.666667pt;}
.y30_c00220{bottom:423.520000pt;}
.y2f_c00220{bottom:442.720000pt;}
.y2e_c00220{bottom:461.586667pt;}
.y2d_c00220{bottom:461.920000pt;}
.y2c_c00220{bottom:480.786667pt;}
.y2b_c00220{bottom:499.053333pt;}
.y2a_c00220{bottom:499.720000pt;}
.y29_c00220{bottom:518.586667pt;}
.y28_c00220{bottom:537.453333pt;}
.y27_c00220{bottom:555.333333pt;}
.y26_c00220{bottom:556.920000pt;}
.y25_c00220{bottom:575.786667pt;}
.y24_c00220{bottom:592.786667pt;}
.y23_c00220{bottom:593.453333pt;}
.y22_c00220{bottom:594.386667pt;}
.y20_c00220{bottom:594.720000pt;}
.y21_c00220{bottom:595.053333pt;}
.y1f_c00220{bottom:613.000000pt;}
.y1e_c00220{bottom:614.253333pt;}
.y1d_c00220{bottom:632.786667pt;}
.y1c_c00220{bottom:649.733333pt;}
.y1b_c00220{bottom:652.000000pt;}
.y1a_c00220{bottom:670.586667pt;}
.y19_c00220{bottom:687.186667pt;}
.y18_c00220{bottom:689.120000pt;}
.y17_c00220{bottom:689.720000pt;}
.y16_c00220{bottom:707.053333pt;}
.y15_c00220{bottom:708.666667pt;}
.y14_c00220{bottom:727.520000pt;}
.y13_c00220{bottom:746.386667pt;}
.y12_c00220{bottom:765.266667pt;}
.y11_c00220{bottom:782.520000pt;}
.y10_c00220{bottom:784.466667pt;}
.yf_c00220{bottom:801.466667pt;}
.ye_c00220{bottom:803.053333pt;}
.yd_c00220{bottom:820.333333pt;}
.yc_c00220{bottom:821.933333pt;}
.yb_c00220{bottom:841.133333pt;}
.ya_c00220{bottom:858.720000pt;}
.y9_c00220{bottom:860.266667pt;}
.y8_c00220{bottom:879.186667pt;}
.y7_c00220{bottom:897.800000pt;}
.y6_c00220{bottom:898.053333pt;}
.y5_c00220{bottom:898.386667pt;}
.y4_c00220{bottom:917.266667pt;}
.y3_c00220{bottom:968.800000pt;}
.y1_c00220{bottom:970.386667pt;}
.y2_c00220{bottom:970.720000pt;}
.h1_c00220{height:48.375000pt;}
.h4_c00220{height:57.578125pt;}
.h3_c00220{height:62.812500pt;}
.h2_c00220{height:64.500000pt;}
.h5_c00220{height:73.244792pt;}
.h0_c00220{height:1044.000000pt;}
.w0_c00220{width:650.646400pt;}
.w1_c00220{width:650.666667pt;}
.x0_c00220{left:0.000000pt;}
.x13_c00220{left:67.822400pt;}
.x4_c00220{left:70.035733pt;}
.xc_c00220{left:71.635733pt;}
.x29_c00220{left:72.635733pt;}
.x25_c00220{left:90.569067pt;}
.x1e_c00220{left:91.502400pt;}
.x1b_c00220{left:98.235733pt;}
.x5_c00220{left:99.169067pt;}
.x1f_c00220{left:104.302400pt;}
.x20_c00220{left:109.769067pt;}
.x21_c00220{left:129.235733pt;}
.x1c_c00220{left:134.035733pt;}
.x1a_c00220{left:147.169067pt;}
.xf_c00220{left:155.502400pt;}
.x26_c00220{left:180.435733pt;}
.x14_c00220{left:245.102400pt;}
.x1_c00220{left:259.169067pt;}
.x6_c00220{left:270.702400pt;}
.x12_c00220{left:271.635733pt;}
.x7_c00220{left:287.969067pt;}
.x24_c00220{left:293.769067pt;}
.x15_c00220{left:298.235733pt;}
.x22_c00220{left:323.835733pt;}
.x8_c00220{left:385.902400pt;}
.x16_c00220{left:422.035733pt;}
.x2_c00220{left:433.235733pt;}
.x9_c00220{left:441.569067pt;}
.x27_c00220{left:454.369067pt;}
.xe_c00220{left:474.835733pt;}
.x1d_c00220{left:479.369067pt;}
.x19_c00220{left:485.102400pt;}
.x28_c00220{left:541.435733pt;}
.x18_c00220{left:542.702400pt;}
.xb_c00220{left:543.969067pt;}
.xd_c00220{left:546.235733pt;}
.x11_c00220{left:553.235733pt;}
.xa_c00220{left:562.835733pt;}
.x17_c00220{left:572.769067pt;}
.x3_c00220{left:579.835733pt;}
.x23_c00220{left:592.635733pt;}
.x10_c00220{left:602.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b53f48cb4b83fc5171713621.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00221;src:url('chunks/assets/font_c330d573941c7962c14b61ab.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00221;src:url('chunks/assets/font_dc95b3995420dd9aef2255ec.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00221;src:url('chunks/assets/font_d068f631bbf9a57e86ea7456.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2c_c00221{transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);}
.m28_c00221{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m10_c00221{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00221{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m36_c00221{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m35_c00221{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc_c00221{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m34_c00221{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00221{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m19_c00221{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c00221{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00221{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00221{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00221{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00221{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m33_c00221{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00221{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m38_c00221{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c00221{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c00221{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m24_c00221{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00221{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c00221{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00221{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00221{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m20_c00221{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00221{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00221{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00221{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c00221{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c00221{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16_c00221{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00221{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m18_c00221{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m9_c00221{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7_c00221{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m12_c00221{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.md_c00221{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c00221{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00221{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m22_c00221{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m11_c00221{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m37_c00221{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00221{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m32_c00221{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m21_c00221{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m25_c00221{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m31_c00221{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m23_c00221{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00221{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00221{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m39_c00221{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m30_c00221{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m27_c00221{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00221{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m17_c00221{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m14_c00221{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00221{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m1_c00221{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00221{word-spacing:0.000000px;}
.fc0_c00221{color:transparent;}
.fs3_c00221{font-size:54.000000px;}
.fs0_c00221{font-size:60.000000px;}
.fs1_c00221{font-size:66.000000px;}
.fs2_c00221{font-size:72.000000px;}
.y0_c00221{bottom:0.000000px;}
.y6e_c00221{bottom:87.960000px;}
.y6f_c00221{bottom:88.335000px;}
.y6d_c00221{bottom:89.460000px;}
.y6c_c00221{bottom:93.810000px;}
.y6b_c00221{bottom:96.660000px;}
.y6a_c00221{bottom:98.460000px;}
.y69_c00221{bottom:114.285000px;}
.y68_c00221{bottom:118.260000px;}
.y67_c00221{bottom:119.010000px;}
.y66_c00221{bottom:132.285000px;}
.y65_c00221{bottom:133.035000px;}
.y64_c00221{bottom:135.510000px;}
.y63_c00221{bottom:140.625000px;}
.y62_c00221{bottom:158.250000px;}
.y61_c00221{bottom:160.335000px;}
.y60_c00221{bottom:161.835000px;}
.y5f_c00221{bottom:176.160000px;}
.y5e_c00221{bottom:176.910000px;}
.y5d_c00221{bottom:178.710000px;}
.y5c_c00221{bottom:182.010000px;}
.y5b_c00221{bottom:197.460000px;}
.y5a_c00221{bottom:198.135000px;}
.y59_c00221{bottom:198.510000px;}
.y58_c00221{bottom:199.260000px;}
.y57_c00221{bottom:202.500000px;}
.y56_c00221{bottom:203.250000px;}
.y55_c00221{bottom:203.535000px;}
.y54_c00221{bottom:220.500000px;}
.y53_c00221{bottom:225.210000px;}
.y52_c00221{bottom:241.035000px;}
.y51_c00221{bottom:242.835000px;}
.y50_c00221{bottom:246.435000px;}
.y4f_c00221{bottom:247.125000px;}
.y4e_c00221{bottom:264.435000px;}
.y4d_c00221{bottom:269.085000px;}
.y4c_c00221{bottom:283.875000px;}
.y4b_c00221{bottom:284.535000px;}
.y4a_c00221{bottom:287.775000px;}
.y49_c00221{bottom:311.625000px;}
.y48_c00221{bottom:327.435000px;}
.y47_c00221{bottom:330.285000px;}
.y46_c00221{bottom:332.085000px;}
.y45_c00221{bottom:332.460000px;}
.y44_c00221{bottom:350.085000px;}
.y43_c00221{bottom:351.150000px;}
.y42_c00221{bottom:352.275000px;}
.y41_c00221{bottom:354.060000px;}
.y40_c00221{bottom:373.500000px;}
.y3f_c00221{bottom:376.035000px;}
.y3e_c00221{bottom:395.085000px;}
.y3d_c00221{bottom:396.585000px;}
.y3c_c00221{bottom:417.435000px;}
.y3b_c00221{bottom:418.125000px;}
.y3a_c00221{bottom:436.875000px;}
.y39_c00221{bottom:438.660000px;}
.y7a_c00221{bottom:439.710000px;}
.y38_c00221{bottom:460.935000px;}
.y79_c00221{bottom:461.310000px;}
.y37_c00221{bottom:481.875000px;}
.y78_c00221{bottom:482.625000px;}
.y77_c00221{bottom:483.000000px;}
.y36_c00221{bottom:503.835000px;}
.y76_c00221{bottom:504.135000px;}
.y35_c00221{bottom:525.060000px;}
.y75_c00221{bottom:542.685000px;}
.y34_c00221{bottom:546.660000px;}
.y33_c00221{bottom:547.335000px;}
.y73_c00221{bottom:564.285000px;}
.y74_c00221{bottom:564.660000px;}
.y32_c00221{bottom:568.260000px;}
.y71_c00221{bottom:585.135000px;}
.y72_c00221{bottom:589.500000px;}
.y31_c00221{bottom:589.875000px;}
.y70_c00221{bottom:610.410000px;}
.y30_c00221{bottom:611.835000px;}
.y2c_c00221{bottom:631.635000px;}
.y2d_c00221{bottom:632.310000px;}
.y2e_c00221{bottom:633.060000px;}
.y2f_c00221{bottom:634.125000px;}
.y2a_c00221{bottom:653.250000px;}
.y2b_c00221{bottom:655.335000px;}
.y29_c00221{bottom:674.460000px;}
.y24_c00221{bottom:695.685000px;}
.y25_c00221{bottom:696.435000px;}
.y26_c00221{bottom:696.810000px;}
.y27_c00221{bottom:697.875000px;}
.y28_c00221{bottom:698.625000px;}
.y21_c00221{bottom:717.000000px;}
.y22_c00221{bottom:717.660000px;}
.y23_c00221{bottom:719.085000px;}
.y1f_c00221{bottom:741.075000px;}
.y1d_c00221{bottom:759.075000px;}
.y1e_c00221{bottom:763.335000px;}
.y1c_c00221{bottom:785.010000px;}
.y1b_c00221{bottom:805.875000px;}
.y17_c00221{bottom:822.060000px;}
.y18_c00221{bottom:823.800000px;}
.y19_c00221{bottom:824.925000px;}
.y1a_c00221{bottom:828.210000px;}
.y16_c00221{bottom:848.310000px;}
.y15_c00221{bottom:864.210000px;}
.y13_c00221{bottom:885.060000px;}
.y14_c00221{bottom:891.525000px;}
.y12_c00221{bottom:912.060000px;}
.yf_c00221{bottom:928.275000px;}
.y10_c00221{bottom:931.125000px;}
.y11_c00221{bottom:935.835000px;}
.ye_c00221{bottom:955.560000px;}
.yb_c00221{bottom:969.000000px;}
.yc_c00221{bottom:970.050000px;}
.yd_c00221{bottom:977.925000px;}
.ya_c00221{bottom:998.460000px;}
.y9_c00221{bottom:1019.685000px;}
.y5_c00221{bottom:1031.250000px;}
.y6_c00221{bottom:1035.900000px;}
.y7_c00221{bottom:1038.000000px;}
.y8_c00221{bottom:1043.085000px;}
.y1_c00221{bottom:1089.150000px;}
.y3_c00221{bottom:1096.710000px;}
.y4_c00221{bottom:1099.275000px;}
.y2_c00221{bottom:1103.775000px;}
.y20_c00221{bottom:1174.500000px;}
.h7_c00221{height:52.998047px;}
.h3_c00221{height:58.857422px;}
.h2_c00221{height:58.886719px;}
.h1_c00221{height:60.468750px;}
.h8_c00221{height:64.743164px;}
.h5_c00221{height:64.775391px;}
.h4_c00221{height:66.515625px;}
.h6_c00221{height:70.664062px;}
.h0_c00221{height:1174.500000px;}
.w0_c00221{width:731.977200px;}
.w1_c00221{width:732.000000px;}
.x18_c00221{left:-21.259800px;}
.x0_c00221{left:0.000000px;}
.x42_c00221{left:41.365200px;}
.x39_c00221{left:42.790200px;}
.x36_c00221{left:44.290200px;}
.x32_c00221{left:45.340200px;}
.x57_c00221{left:46.765200px;}
.x24_c00221{left:47.890200px;}
.x21_c00221{left:48.940200px;}
.x17_c00221{left:50.365200px;}
.x10_c00221{left:51.490200px;}
.x12_c00221{left:52.540200px;}
.xe_c00221{left:55.090200px;}
.x5_c00221{left:56.515200px;}
.x9_c00221{left:58.315200px;}
.x4d_c00221{left:71.965200px;}
.x1_c00221{left:74.890200px;}
.x3a_c00221{left:76.990200px;}
.x22_c00221{left:78.490200px;}
.x54_c00221{left:79.540200px;}
.x25_c00221{left:80.590200px;}
.x1b_c00221{left:81.715200px;}
.x11_c00221{left:84.925200px;}
.x26_c00221{left:86.740200px;}
.x56_c00221{left:88.165200px;}
.x53_c00221{left:90.715200px;}
.xa_c00221{left:94.990200px;}
.x13_c00221{left:97.915200px;}
.x16_c00221{left:101.515200px;}
.x2_c00221{left:103.990200px;}
.x4e_c00221{left:116.965200px;}
.xb_c00221{left:118.390200px;}
.x23_c00221{left:122.740200px;}
.x55_c00221{left:124.165200px;}
.x1c_c00221{left:125.290200px;}
.x31_c00221{left:129.565200px;}
.xf_c00221{left:131.365200px;}
.x43_c00221{left:133.165200px;}
.x37_c00221{left:135.715200px;}
.x41_c00221{left:141.490200px;}
.x33_c00221{left:143.965200px;}
.x6_c00221{left:146.890200px;}
.x3d_c00221{left:148.690200px;}
.x19_c00221{left:155.890200px;}
.x1d_c00221{left:158.365200px;}
.x3e_c00221{left:160.165200px;}
.x3f_c00221{left:161.590200px;}
.x14_c00221{left:177.115200px;}
.xc_c00221{left:178.915200px;}
.x4a_c00221{left:181.750200px;}
.x15_c00221{left:182.875200px;}
.x27_c00221{left:184.690200px;}
.xd_c00221{left:187.165200px;}
.x2d_c00221{left:190.750200px;}
.x2a_c00221{left:192.565200px;}
.x2b_c00221{left:193.990200px;}
.x29_c00221{left:196.165200px;}
.x1e_c00221{left:197.290200px;}
.x2f_c00221{left:198.715200px;}
.x1a_c00221{left:207.340200px;}
.x2e_c00221{left:211.315200px;}
.x2c_c00221{left:213.115200px;}
.x44_c00221{left:215.965200px;}
.x4f_c00221{left:228.190200px;}
.x7_c00221{left:248.365200px;}
.x50_c00221{left:258.115200px;}
.x8_c00221{left:263.890200px;}
.x3_c00221{left:279.715200px;}
.x28_c00221{left:331.165200px;}
.x1f_c00221{left:361.090200px;}
.x4_c00221{left:368.590200px;}
.x20_c00221{left:385.525200px;}
.x48_c00221{left:416.890200px;}
.x49_c00221{left:417.940200px;}
.x4b_c00221{left:431.590200px;}
.x34_c00221{left:434.140200px;}
.x35_c00221{left:453.565200px;}
.x4c_c00221{left:454.690200px;}
.x45_c00221{left:484.915200px;}
.x38_c00221{left:502.540200px;}
.x3b_c00221{left:530.290200px;}
.x46_c00221{left:535.690200px;}
.x3c_c00221{left:552.940200px;}
.x47_c00221{left:557.590200px;}
.x51_c00221{left:577.390200px;}
.x30_c00221{left:590.740200px;}
.x40_c00221{left:594.715200px;}
.x52_c00221{left:620.965200px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls0_c00221{letter-spacing:0.000000pt;}
.ws0_c00221{word-spacing:0.000000pt;}
.fs3_c00221{font-size:48.000000pt;}
.fs0_c00221{font-size:53.333333pt;}
.fs1_c00221{font-size:58.666667pt;}
.fs2_c00221{font-size:64.000000pt;}
.y0_c00221{bottom:0.000000pt;}
.y6e_c00221{bottom:78.186667pt;}
.y6f_c00221{bottom:78.520000pt;}
.y6d_c00221{bottom:79.520000pt;}
.y6c_c00221{bottom:83.386667pt;}
.y6b_c00221{bottom:85.920000pt;}
.y6a_c00221{bottom:87.520000pt;}
.y69_c00221{bottom:101.586667pt;}
.y68_c00221{bottom:105.120000pt;}
.y67_c00221{bottom:105.786667pt;}
.y66_c00221{bottom:117.586667pt;}
.y65_c00221{bottom:118.253333pt;}
.y64_c00221{bottom:120.453333pt;}
.y63_c00221{bottom:125.000000pt;}
.y62_c00221{bottom:140.666667pt;}
.y61_c00221{bottom:142.520000pt;}
.y60_c00221{bottom:143.853333pt;}
.y5f_c00221{bottom:156.586667pt;}
.y5e_c00221{bottom:157.253333pt;}
.y5d_c00221{bottom:158.853333pt;}
.y5c_c00221{bottom:161.786667pt;}
.y5b_c00221{bottom:175.520000pt;}
.y5a_c00221{bottom:176.120000pt;}
.y59_c00221{bottom:176.453333pt;}
.y58_c00221{bottom:177.120000pt;}
.y57_c00221{bottom:180.000000pt;}
.y56_c00221{bottom:180.666667pt;}
.y55_c00221{bottom:180.920000pt;}
.y54_c00221{bottom:196.000000pt;}
.y53_c00221{bottom:200.186667pt;}
.y52_c00221{bottom:214.253333pt;}
.y51_c00221{bottom:215.853333pt;}
.y50_c00221{bottom:219.053333pt;}
.y4f_c00221{bottom:219.666667pt;}
.y4e_c00221{bottom:235.053333pt;}
.y4d_c00221{bottom:239.186667pt;}
.y4c_c00221{bottom:252.333333pt;}
.y4b_c00221{bottom:252.920000pt;}
.y4a_c00221{bottom:255.800000pt;}
.y49_c00221{bottom:277.000000pt;}
.y48_c00221{bottom:291.053333pt;}
.y47_c00221{bottom:293.586667pt;}
.y46_c00221{bottom:295.186667pt;}
.y45_c00221{bottom:295.520000pt;}
.y44_c00221{bottom:311.186667pt;}
.y43_c00221{bottom:312.133333pt;}
.y42_c00221{bottom:313.133333pt;}
.y41_c00221{bottom:314.720000pt;}
.y40_c00221{bottom:332.000000pt;}
.y3f_c00221{bottom:334.253333pt;}
.y3e_c00221{bottom:351.186667pt;}
.y3d_c00221{bottom:352.520000pt;}
.y3c_c00221{bottom:371.053333pt;}
.y3b_c00221{bottom:371.666667pt;}
.y3a_c00221{bottom:388.333333pt;}
.y39_c00221{bottom:389.920000pt;}
.y7a_c00221{bottom:390.853333pt;}
.y38_c00221{bottom:409.720000pt;}
.y79_c00221{bottom:410.053333pt;}
.y37_c00221{bottom:428.333333pt;}
.y78_c00221{bottom:429.000000pt;}
.y77_c00221{bottom:429.333333pt;}
.y36_c00221{bottom:447.853333pt;}
.y76_c00221{bottom:448.120000pt;}
.y35_c00221{bottom:466.720000pt;}
.y75_c00221{bottom:482.386667pt;}
.y34_c00221{bottom:485.920000pt;}
.y33_c00221{bottom:486.520000pt;}
.y73_c00221{bottom:501.586667pt;}
.y74_c00221{bottom:501.920000pt;}
.y32_c00221{bottom:505.120000pt;}
.y71_c00221{bottom:520.120000pt;}
.y72_c00221{bottom:524.000000pt;}
.y31_c00221{bottom:524.333333pt;}
.y70_c00221{bottom:542.586667pt;}
.y30_c00221{bottom:543.853333pt;}
.y2c_c00221{bottom:561.453333pt;}
.y2d_c00221{bottom:562.053333pt;}
.y2e_c00221{bottom:562.720000pt;}
.y2f_c00221{bottom:563.666667pt;}
.y2a_c00221{bottom:580.666667pt;}
.y2b_c00221{bottom:582.520000pt;}
.y29_c00221{bottom:599.520000pt;}
.y24_c00221{bottom:618.386667pt;}
.y25_c00221{bottom:619.053333pt;}
.y26_c00221{bottom:619.386667pt;}
.y27_c00221{bottom:620.333333pt;}
.y28_c00221{bottom:621.000000pt;}
.y21_c00221{bottom:637.333333pt;}
.y22_c00221{bottom:637.920000pt;}
.y23_c00221{bottom:639.186667pt;}
.y1f_c00221{bottom:658.733333pt;}
.y1d_c00221{bottom:674.733333pt;}
.y1e_c00221{bottom:678.520000pt;}
.y1c_c00221{bottom:697.786667pt;}
.y1b_c00221{bottom:716.333333pt;}
.y17_c00221{bottom:730.720000pt;}
.y18_c00221{bottom:732.266667pt;}
.y19_c00221{bottom:733.266667pt;}
.y1a_c00221{bottom:736.186667pt;}
.y16_c00221{bottom:754.053333pt;}
.y15_c00221{bottom:768.186667pt;}
.y13_c00221{bottom:786.720000pt;}
.y14_c00221{bottom:792.466667pt;}
.y12_c00221{bottom:810.720000pt;}
.yf_c00221{bottom:825.133333pt;}
.y10_c00221{bottom:827.666667pt;}
.y11_c00221{bottom:831.853333pt;}
.ye_c00221{bottom:849.386667pt;}
.yb_c00221{bottom:861.333333pt;}
.yc_c00221{bottom:862.266667pt;}
.yd_c00221{bottom:869.266667pt;}
.ya_c00221{bottom:887.520000pt;}
.y9_c00221{bottom:906.386667pt;}
.y5_c00221{bottom:916.666667pt;}
.y6_c00221{bottom:920.800000pt;}
.y7_c00221{bottom:922.666667pt;}
.y8_c00221{bottom:927.186667pt;}
.y1_c00221{bottom:968.133333pt;}
.y3_c00221{bottom:974.853333pt;}
.y4_c00221{bottom:977.133333pt;}
.y2_c00221{bottom:981.133333pt;}
.y20_c00221{bottom:1044.000000pt;}
.h7_c00221{height:47.109375pt;}
.h3_c00221{height:52.317708pt;}
.h2_c00221{height:52.343750pt;}
.h1_c00221{height:53.750000pt;}
.h8_c00221{height:57.549479pt;}
.h5_c00221{height:57.578125pt;}
.h4_c00221{height:59.125000pt;}
.h6_c00221{height:62.812500pt;}
.h0_c00221{height:1044.000000pt;}
.w0_c00221{width:650.646400pt;}
.w1_c00221{width:650.666667pt;}
.x18_c00221{left:-18.897600pt;}
.x0_c00221{left:0.000000pt;}
.x42_c00221{left:36.769067pt;}
.x39_c00221{left:38.035733pt;}
.x36_c00221{left:39.369067pt;}
.x32_c00221{left:40.302400pt;}
.x57_c00221{left:41.569067pt;}
.x24_c00221{left:42.569067pt;}
.x21_c00221{left:43.502400pt;}
.x17_c00221{left:44.769067pt;}
.x10_c00221{left:45.769067pt;}
.x12_c00221{left:46.702400pt;}
.xe_c00221{left:48.969067pt;}
.x5_c00221{left:50.235733pt;}
.x9_c00221{left:51.835733pt;}
.x4d_c00221{left:63.969067pt;}
.x1_c00221{left:66.569067pt;}
.x3a_c00221{left:68.435733pt;}
.x22_c00221{left:69.769067pt;}
.x54_c00221{left:70.702400pt;}
.x25_c00221{left:71.635733pt;}
.x1b_c00221{left:72.635733pt;}
.x11_c00221{left:75.489067pt;}
.x26_c00221{left:77.102400pt;}
.x56_c00221{left:78.369067pt;}
.x53_c00221{left:80.635733pt;}
.xa_c00221{left:84.435733pt;}
.x13_c00221{left:87.035733pt;}
.x16_c00221{left:90.235733pt;}
.x2_c00221{left:92.435733pt;}
.x4e_c00221{left:103.969067pt;}
.xb_c00221{left:105.235733pt;}
.x23_c00221{left:109.102400pt;}
.x55_c00221{left:110.369067pt;}
.x1c_c00221{left:111.369067pt;}
.x31_c00221{left:115.169067pt;}
.xf_c00221{left:116.769067pt;}
.x43_c00221{left:118.369067pt;}
.x37_c00221{left:120.635733pt;}
.x41_c00221{left:125.769067pt;}
.x33_c00221{left:127.969067pt;}
.x6_c00221{left:130.569067pt;}
.x3d_c00221{left:132.169067pt;}
.x19_c00221{left:138.569067pt;}
.x1d_c00221{left:140.769067pt;}
.x3e_c00221{left:142.369067pt;}
.x3f_c00221{left:143.635733pt;}
.x14_c00221{left:157.435733pt;}
.xc_c00221{left:159.035733pt;}
.x4a_c00221{left:161.555733pt;}
.x15_c00221{left:162.555733pt;}
.x27_c00221{left:164.169067pt;}
.xd_c00221{left:166.369067pt;}
.x2d_c00221{left:169.555733pt;}
.x2a_c00221{left:171.169067pt;}
.x2b_c00221{left:172.435733pt;}
.x29_c00221{left:174.369067pt;}
.x1e_c00221{left:175.369067pt;}
.x2f_c00221{left:176.635733pt;}
.x1a_c00221{left:184.302400pt;}
.x2e_c00221{left:187.835733pt;}
.x2c_c00221{left:189.435733pt;}
.x44_c00221{left:191.969067pt;}
.x4f_c00221{left:202.835733pt;}
.x7_c00221{left:220.769067pt;}
.x50_c00221{left:229.435733pt;}
.x8_c00221{left:234.569067pt;}
.x3_c00221{left:248.635733pt;}
.x28_c00221{left:294.369067pt;}
.x1f_c00221{left:320.969067pt;}
.x4_c00221{left:327.635733pt;}
.x20_c00221{left:342.689067pt;}
.x48_c00221{left:370.569067pt;}
.x49_c00221{left:371.502400pt;}
.x4b_c00221{left:383.635733pt;}
.x34_c00221{left:385.902400pt;}
.x35_c00221{left:403.169067pt;}
.x4c_c00221{left:404.169067pt;}
.x45_c00221{left:431.035733pt;}
.x38_c00221{left:446.702400pt;}
.x3b_c00221{left:471.369067pt;}
.x46_c00221{left:476.169067pt;}
.x3c_c00221{left:491.502400pt;}
.x47_c00221{left:495.635733pt;}
.x51_c00221{left:513.235733pt;}
.x30_c00221{left:525.102400pt;}
.x40_c00221{left:528.635733pt;}
.x52_c00221{left:551.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9cc7e6adcfec6ac50694c82a.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00222;src:url('chunks/assets/font_a9b2456cc892a24844e31e80.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00222;src:url('chunks/assets/font_5d623748df8600b369e78215.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00222{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m15_c00222{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m10_c00222{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me_c00222{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c00222{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00222{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c00222{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00222{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00222{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00222{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7_c00222{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c00222{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00222{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c00222{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00222{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2_c00222{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00222{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00222{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13_c00222{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m12_c00222{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1_c00222{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.ls0_c00222{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00222{color:transparent;}
.fs0_c00222{font-size:60.000000px;}
.fs2_c00222{font-size:72.000000px;}
.fs1_c00222{font-size:78.000000px;}
.y0_c00222{bottom:0.000000px;}
.y39_c00222{bottom:98.835000px;}
.y38_c00222{bottom:121.125000px;}
.y37_c00222{bottom:141.285000px;}
.y36_c00222{bottom:162.210000px;}
.y34_c00222{bottom:180.885000px;}
.y35_c00222{bottom:182.685000px;}
.y32_c00222{bottom:203.160000px;}
.y33_c00222{bottom:206.760000px;}
.y31_c00222{bottom:223.710000px;}
.y30_c00222{bottom:244.260000px;}
.y2f_c00222{bottom:265.185000px;}
.y2e_c00222{bottom:286.035000px;}
.y2b_c00222{bottom:306.210000px;}
.y2c_c00222{bottom:306.900000px;}
.y2d_c00222{bottom:307.935000px;}
.y2a_c00222{bottom:327.375000px;}
.y29_c00222{bottom:349.035000px;}
.y28_c00222{bottom:370.185000px;}
.y27_c00222{bottom:390.810000px;}
.y25_c00222{bottom:409.875000px;}
.y26_c00222{bottom:411.660000px;}
.y24_c00222{bottom:432.585000px;}
.y21_c00222{bottom:453.060000px;}
.y22_c00222{bottom:454.125000px;}
.y23_c00222{bottom:454.500000px;}
.y20_c00222{bottom:474.960000px;}
.y1f_c00222{bottom:496.260000px;}
.y1e_c00222{bottom:516.810000px;}
.y1d_c00222{bottom:538.710000px;}
.y1c_c00222{bottom:559.635000px;}
.y1b_c00222{bottom:580.875000px;}
.y1a_c00222{bottom:602.085000px;}
.y19_c00222{bottom:623.385000px;}
.y18_c00222{bottom:644.910000px;}
.y17_c00222{bottom:665.835000px;}
.y16_c00222{bottom:687.060000px;}
.y15_c00222{bottom:708.285000px;}
.y14_c00222{bottom:730.260000px;}
.y13_c00222{bottom:750.750000px;}
.y12_c00222{bottom:770.925000px;}
.y11_c00222{bottom:772.425000px;}
.y10_c00222{bottom:793.275000px;}
.yf_c00222{bottom:815.175000px;}
.ye_c00222{bottom:836.460000px;}
.yd_c00222{bottom:858.060000px;}
.yc_c00222{bottom:878.625000px;}
.yb_c00222{bottom:899.835000px;}
.ya_c00222{bottom:921.435000px;}
.y9_c00222{bottom:941.925000px;}
.y8_c00222{bottom:943.050000px;}
.y7_c00222{bottom:963.210000px;}
.y6_c00222{bottom:984.750000px;}
.y5_c00222{bottom:1005.675000px;}
.y4_c00222{bottom:1027.275000px;}
.y3_c00222{bottom:1080.150000px;}
.y1_c00222{bottom:1085.925000px;}
.y2_c00222{bottom:1093.650000px;}
.h1_c00222{height:58.886719px;}
.h4_c00222{height:70.628906px;}
.h2_c00222{height:76.552734px;}
.h3_c00222{height:78.609375px;}
.h0_c00222{height:1174.500000px;}
.w0_c00222{width:731.977200px;}
.w1_c00222{width:732.000000px;}
.x0_c00222{left:0.000000px;}
.x4_c00222{left:88.540200px;}
.x6_c00222{left:89.590200px;}
.x8_c00222{left:91.090200px;}
.x14_c00222{left:93.175200px;}
.x15_c00222{left:94.315200px;}
.x19_c00222{left:96.115200px;}
.x1b_c00222{left:97.165200px;}
.x1d_c00222{left:98.590200px;}
.x13_c00222{left:115.540200px;}
.x5_c00222{left:120.940200px;}
.xa_c00222{left:121.990200px;}
.xf_c00222{left:123.115200px;}
.x7_c00222{left:125.290200px;}
.x16_c00222{left:127.765200px;}
.x1c_c00222{left:128.890200px;}
.x9_c00222{left:159.790200px;}
.xd_c00222{left:225.340200px;}
.x10_c00222{left:246.940200px;}
.xb_c00222{left:251.290200px;}
.x1_c00222{left:299.890200px;}
.x17_c00222{left:339.115200px;}
.xe_c00222{left:373.690200px;}
.x18_c00222{left:376.150200px;}
.x11_c00222{left:390.940200px;}
.xc_c00222{left:400.315200px;}
.x2_c00222{left:492.490200px;}
.x12_c00222{left:573.115200px;}
.x1a_c00222{left:575.290200px;}
.x3_c00222{left:655.915200px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls0_c00222{letter-spacing:0.000000pt;}
.ws0_c00222{word-spacing:0.000000pt;}
.fs0_c00222{font-size:53.333333pt;}
.fs2_c00222{font-size:64.000000pt;}
.fs1_c00222{font-size:69.333333pt;}
.y0_c00222{bottom:0.000000pt;}
.y39_c00222{bottom:87.853333pt;}
.y38_c00222{bottom:107.666667pt;}
.y37_c00222{bottom:125.586667pt;}
.y36_c00222{bottom:144.186667pt;}
.y34_c00222{bottom:160.786667pt;}
.y35_c00222{bottom:162.386667pt;}
.y32_c00222{bottom:180.586667pt;}
.y33_c00222{bottom:183.786667pt;}
.y31_c00222{bottom:198.853333pt;}
.y30_c00222{bottom:217.120000pt;}
.y2f_c00222{bottom:235.720000pt;}
.y2e_c00222{bottom:254.253333pt;}
.y2b_c00222{bottom:272.186667pt;}
.y2c_c00222{bottom:272.800000pt;}
.y2d_c00222{bottom:273.720000pt;}
.y2a_c00222{bottom:291.000000pt;}
.y29_c00222{bottom:310.253333pt;}
.y28_c00222{bottom:329.053333pt;}
.y27_c00222{bottom:347.386667pt;}
.y25_c00222{bottom:364.333333pt;}
.y26_c00222{bottom:365.920000pt;}
.y24_c00222{bottom:384.520000pt;}
.y21_c00222{bottom:402.720000pt;}
.y22_c00222{bottom:403.666667pt;}
.y23_c00222{bottom:404.000000pt;}
.y20_c00222{bottom:422.186667pt;}
.y1f_c00222{bottom:441.120000pt;}
.y1e_c00222{bottom:459.386667pt;}
.y1d_c00222{bottom:478.853333pt;}
.y1c_c00222{bottom:497.453333pt;}
.y1b_c00222{bottom:516.333333pt;}
.y1a_c00222{bottom:535.186667pt;}
.y19_c00222{bottom:554.120000pt;}
.y18_c00222{bottom:573.253333pt;}
.y17_c00222{bottom:591.853333pt;}
.y16_c00222{bottom:610.720000pt;}
.y15_c00222{bottom:629.586667pt;}
.y14_c00222{bottom:649.120000pt;}
.y13_c00222{bottom:667.333333pt;}
.y12_c00222{bottom:685.266667pt;}
.y11_c00222{bottom:686.600000pt;}
.y10_c00222{bottom:705.133333pt;}
.yf_c00222{bottom:724.600000pt;}
.ye_c00222{bottom:743.520000pt;}
.yd_c00222{bottom:762.720000pt;}
.yc_c00222{bottom:781.000000pt;}
.yb_c00222{bottom:799.853333pt;}
.ya_c00222{bottom:819.053333pt;}
.y9_c00222{bottom:837.266667pt;}
.y8_c00222{bottom:838.266667pt;}
.y7_c00222{bottom:856.186667pt;}
.y6_c00222{bottom:875.333333pt;}
.y5_c00222{bottom:893.933333pt;}
.y4_c00222{bottom:913.133333pt;}
.y3_c00222{bottom:960.133333pt;}
.y1_c00222{bottom:965.266667pt;}
.y2_c00222{bottom:972.133333pt;}
.h1_c00222{height:52.343750pt;}
.h4_c00222{height:62.781250pt;}
.h2_c00222{height:68.046875pt;}
.h3_c00222{height:69.875000pt;}
.h0_c00222{height:1044.000000pt;}
.w0_c00222{width:650.646400pt;}
.w1_c00222{width:650.666667pt;}
.x0_c00222{left:0.000000pt;}
.x4_c00222{left:78.702400pt;}
.x6_c00222{left:79.635733pt;}
.x8_c00222{left:80.969067pt;}
.x14_c00222{left:82.822400pt;}
.x15_c00222{left:83.835733pt;}
.x19_c00222{left:85.435733pt;}
.x1b_c00222{left:86.369067pt;}
.x1d_c00222{left:87.635733pt;}
.x13_c00222{left:102.702400pt;}
.x5_c00222{left:107.502400pt;}
.xa_c00222{left:108.435733pt;}
.xf_c00222{left:109.435733pt;}
.x7_c00222{left:111.369067pt;}
.x16_c00222{left:113.569067pt;}
.x1c_c00222{left:114.569067pt;}
.x9_c00222{left:142.035733pt;}
.xd_c00222{left:200.302400pt;}
.x10_c00222{left:219.502400pt;}
.xb_c00222{left:223.369067pt;}
.x1_c00222{left:266.569067pt;}
.x17_c00222{left:301.435733pt;}
.xe_c00222{left:332.169067pt;}
.x18_c00222{left:334.355733pt;}
.x11_c00222{left:347.502400pt;}
.xc_c00222{left:355.835733pt;}
.x2_c00222{left:437.769067pt;}
.x12_c00222{left:509.435733pt;}
.x1a_c00222{left:511.369067pt;}
.x3_c00222{left:583.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2117c470dbab9af22a2ac67.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00223;src:url('chunks/assets/font_7eef1c305aaf587115b9c607.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.402354;font-style:normal;font-weight:normal;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_e66a4e311095349189427baa.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00223;src:url('chunks/assets/font_55c2c2ce745889b574c02858.woff2')format("woff");}.ff4_c00223{font-family:ff4_c00223;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00223{transform:matrix(0.017500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017500,0.000000,0.000000,0.250000,0,0);}
.m12_c00223{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m10_c00223{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m13_c00223{transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);}
.m4_c00223{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m28_c00223{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mf_c00223{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mc_c00223{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.md_c00223{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m19_c00223{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m17_c00223{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m29_c00223{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m0_c00223{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00223{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m16_c00223{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m20_c00223{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00223{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00223{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c00223{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c00223{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c00223{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00223{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00223{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00223{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m21_c00223{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00223{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00223{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m23_c00223{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00223{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m15_c00223{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m26_c00223{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m25_c00223{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c00223{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00223{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m14_c00223{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma_c00223{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00223{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m24_c00223{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6_c00223{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m5_c00223{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m18_c00223{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m22_c00223{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1_c00223{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00223{word-spacing:0.000000px;}
.fc0_c00223{color:transparent;}
.fs5_c00223{font-size:54.000000px;}
.fs1_c00223{font-size:60.000000px;}
.fs0_c00223{font-size:66.000000px;}
.fs2_c00223{font-size:72.000000px;}
.fs4_c00223{font-size:78.000000px;}
.fs6_c00223{font-size:90.000000px;}
.fs3_c00223{font-size:102.000000px;}
.y0_c00223{bottom:0.000000px;}
.y44_c00223{bottom:88.335000px;}
.y43_c00223{bottom:117.135000px;}
.y42_c00223{bottom:118.260000px;}
.y41_c00223{bottom:118.935000px;}
.y40_c00223{bottom:169.710000px;}
.y3f_c00223{bottom:212.250000px;}
.y3e_c00223{bottom:235.635000px;}
.y3d_c00223{bottom:255.060000px;}
.y3b_c00223{bottom:268.785000px;}
.y3c_c00223{bottom:273.810000px;}
.y3a_c00223{bottom:278.085000px;}
.y39_c00223{bottom:300.435000px;}
.y38_c00223{bottom:319.875000px;}
.y37_c00223{bottom:341.835000px;}
.y36_c00223{bottom:363.750000px;}
.y35_c00223{bottom:385.035000px;}
.y34_c00223{bottom:408.750000px;}
.y33_c00223{bottom:428.910000px;}
.y32_c00223{bottom:448.710000px;}
.y31_c00223{bottom:449.460000px;}
.y30_c00223{bottom:450.585000px;}
.y2f_c00223{bottom:472.125000px;}
.y2e_c00223{bottom:494.085000px;}
.y2d_c00223{bottom:514.260000px;}
.y2c_c00223{bottom:515.310000px;}
.y2b_c00223{bottom:536.535000px;}
.y2a_c00223{bottom:558.135000px;}
.y29_c00223{bottom:579.750000px;}
.y28_c00223{bottom:600.660000px;}
.y27_c00223{bottom:623.310000px;}
.y24_c00223{bottom:642.750000px;}
.y25_c00223{bottom:643.500000px;}
.y26_c00223{bottom:645.285000px;}
.y23_c00223{bottom:666.885000px;}
.y22_c00223{bottom:688.500000px;}
.y21_c00223{bottom:710.085000px;}
.y20_c00223{bottom:731.700000px;}
.y1f_c00223{bottom:752.910000px;}
.y1e_c00223{bottom:774.885000px;}
.y1d_c00223{bottom:796.875000px;}
.y1c_c00223{bottom:817.050000px;}
.y1b_c00223{bottom:838.650000px;}
.y1a_c00223{bottom:895.125000px;}
.y17_c00223{bottom:904.875000px;}
.y18_c00223{bottom:905.625000px;}
.y19_c00223{bottom:906.960000px;}
.y15_c00223{bottom:917.085000px;}
.y16_c00223{bottom:917.835000px;}
.y11_c00223{bottom:940.125000px;}
.yf_c00223{bottom:950.250000px;}
.y10_c00223{bottom:950.925000px;}
.y12_c00223{bottom:951.960000px;}
.y13_c00223{bottom:952.050000px;}
.y14_c00223{bottom:953.085000px;}
.y9_c00223{bottom:1007.835000px;}
.ya_c00223{bottom:1008.525000px;}
.yb_c00223{bottom:1016.085000px;}
.yc_c00223{bottom:1019.685000px;}
.yd_c00223{bottom:1020.000000px;}
.ye_c00223{bottom:1020.750000px;}
.y4_c00223{bottom:1033.710000px;}
.y5_c00223{bottom:1039.125000px;}
.y6_c00223{bottom:1039.500000px;}
.y7_c00223{bottom:1039.875000px;}
.y8_c00223{bottom:1042.710000px;}
.y1_c00223{bottom:1086.585000px;}
.y3_c00223{bottom:1097.085000px;}
.y2_c00223{bottom:1101.750000px;}
.h8_c00223{height:52.998047px;}
.h5_c00223{height:58.857422px;}
.h2_c00223{height:58.886719px;}
.h7_c00223{height:62.578125px;}
.h1_c00223{height:64.775391px;}
.h3_c00223{height:70.664062px;}
.h6_c00223{height:76.514648px;}
.h9_c00223{height:88.330078px;}
.h4_c00223{height:104.839927px;}
.h0_c00223{height:1174.500000px;}
.w0_c00223{width:731.977200px;}
.w1_c00223{width:732.000000px;}
.x0_c00223{left:0.000000px;}
.x1e_c00223{left:42.490200px;}
.x1d_c00223{left:43.915200px;}
.x9_c00223{left:45.340200px;}
.x1_c00223{left:65.140200px;}
.x29_c00223{left:69.490200px;}
.x21_c00223{left:73.390200px;}
.x22_c00223{left:74.890200px;}
.x4_c00223{left:75.925200px;}
.x26_c00223{left:76.990200px;}
.x1f_c00223{left:87.490200px;}
.x2_c00223{left:91.090200px;}
.xa_c00223{left:96.115200px;}
.x20_c00223{left:103.990200px;}
.x23_c00223{left:117.715200px;}
.xb_c00223{left:143.965200px;}
.xf_c00223{left:232.540200px;}
.x18_c00223{left:260.965200px;}
.x3_c00223{left:266.365200px;}
.x10_c00223{left:269.590200px;}
.x19_c00223{left:270.715200px;}
.x16_c00223{left:295.540200px;}
.x11_c00223{left:315.340200px;}
.x1c_c00223{left:321.490200px;}
.x5_c00223{left:326.515200px;}
.x12_c00223{left:328.990200px;}
.x13_c00223{left:330.115200px;}
.x14_c00223{left:334.390200px;}
.x17_c00223{left:340.915200px;}
.x15_c00223{left:345.940200px;}
.x2d_c00223{left:349.165200px;}
.x6_c00223{left:358.915200px;}
.x7_c00223{left:366.775200px;}
.x1a_c00223{left:377.275200px;}
.x2a_c00223{left:378.715200px;}
.x8_c00223{left:394.150200px;}
.x1b_c00223{left:397.765200px;}
.xc_c00223{left:409.990200px;}
.x2b_c00223{left:415.765200px;}
.x27_c00223{left:424.090200px;}
.xd_c00223{left:433.390200px;}
.x28_c00223{left:434.890200px;}
.x2c_c00223{left:444.190200px;}
.xe_c00223{left:449.590200px;}
.x24_c00223{left:534.190200px;}
.x25_c00223{left:552.190200px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls0_c00223{letter-spacing:0.000000pt;}
.ws0_c00223{word-spacing:0.000000pt;}
.fs5_c00223{font-size:48.000000pt;}
.fs1_c00223{font-size:53.333333pt;}
.fs0_c00223{font-size:58.666667pt;}
.fs2_c00223{font-size:64.000000pt;}
.fs4_c00223{font-size:69.333333pt;}
.fs6_c00223{font-size:80.000000pt;}
.fs3_c00223{font-size:90.666667pt;}
.y0_c00223{bottom:0.000000pt;}
.y44_c00223{bottom:78.520000pt;}
.y43_c00223{bottom:104.120000pt;}
.y42_c00223{bottom:105.120000pt;}
.y41_c00223{bottom:105.720000pt;}
.y40_c00223{bottom:150.853333pt;}
.y3f_c00223{bottom:188.666667pt;}
.y3e_c00223{bottom:209.453333pt;}
.y3d_c00223{bottom:226.720000pt;}
.y3b_c00223{bottom:238.920000pt;}
.y3c_c00223{bottom:243.386667pt;}
.y3a_c00223{bottom:247.186667pt;}
.y39_c00223{bottom:267.053333pt;}
.y38_c00223{bottom:284.333333pt;}
.y37_c00223{bottom:303.853333pt;}
.y36_c00223{bottom:323.333333pt;}
.y35_c00223{bottom:342.253333pt;}
.y34_c00223{bottom:363.333333pt;}
.y33_c00223{bottom:381.253333pt;}
.y32_c00223{bottom:398.853333pt;}
.y31_c00223{bottom:399.520000pt;}
.y30_c00223{bottom:400.520000pt;}
.y2f_c00223{bottom:419.666667pt;}
.y2e_c00223{bottom:439.186667pt;}
.y2d_c00223{bottom:457.120000pt;}
.y2c_c00223{bottom:458.053333pt;}
.y2b_c00223{bottom:476.920000pt;}
.y2a_c00223{bottom:496.120000pt;}
.y29_c00223{bottom:515.333333pt;}
.y28_c00223{bottom:533.920000pt;}
.y27_c00223{bottom:554.053333pt;}
.y24_c00223{bottom:571.333333pt;}
.y25_c00223{bottom:572.000000pt;}
.y26_c00223{bottom:573.586667pt;}
.y23_c00223{bottom:592.786667pt;}
.y22_c00223{bottom:612.000000pt;}
.y21_c00223{bottom:631.186667pt;}
.y20_c00223{bottom:650.400000pt;}
.y1f_c00223{bottom:669.253333pt;}
.y1e_c00223{bottom:688.786667pt;}
.y1d_c00223{bottom:708.333333pt;}
.y1c_c00223{bottom:726.266667pt;}
.y1b_c00223{bottom:745.466667pt;}
.y1a_c00223{bottom:795.666667pt;}
.y17_c00223{bottom:804.333333pt;}
.y18_c00223{bottom:805.000000pt;}
.y19_c00223{bottom:806.186667pt;}
.y15_c00223{bottom:815.186667pt;}
.y16_c00223{bottom:815.853333pt;}
.y11_c00223{bottom:835.666667pt;}
.yf_c00223{bottom:844.666667pt;}
.y10_c00223{bottom:845.266667pt;}
.y12_c00223{bottom:846.186667pt;}
.y13_c00223{bottom:846.266667pt;}
.y14_c00223{bottom:847.186667pt;}
.y9_c00223{bottom:895.853333pt;}
.ya_c00223{bottom:896.466667pt;}
.yb_c00223{bottom:903.186667pt;}
.yc_c00223{bottom:906.386667pt;}
.yd_c00223{bottom:906.666667pt;}
.ye_c00223{bottom:907.333333pt;}
.y4_c00223{bottom:918.853333pt;}
.y5_c00223{bottom:923.666667pt;}
.y6_c00223{bottom:924.000000pt;}
.y7_c00223{bottom:924.333333pt;}
.y8_c00223{bottom:926.853333pt;}
.y1_c00223{bottom:965.853333pt;}
.y3_c00223{bottom:975.186667pt;}
.y2_c00223{bottom:979.333333pt;}
.h8_c00223{height:47.109375pt;}
.h5_c00223{height:52.317708pt;}
.h2_c00223{height:52.343750pt;}
.h7_c00223{height:55.625000pt;}
.h1_c00223{height:57.578125pt;}
.h3_c00223{height:62.812500pt;}
.h6_c00223{height:68.013021pt;}
.h9_c00223{height:78.515625pt;}
.h4_c00223{height:93.191046pt;}
.h0_c00223{height:1044.000000pt;}
.w0_c00223{width:650.646400pt;}
.w1_c00223{width:650.666667pt;}
.x0_c00223{left:0.000000pt;}
.x1e_c00223{left:37.769067pt;}
.x1d_c00223{left:39.035733pt;}
.x9_c00223{left:40.302400pt;}
.x1_c00223{left:57.902400pt;}
.x29_c00223{left:61.769067pt;}
.x21_c00223{left:65.235733pt;}
.x22_c00223{left:66.569067pt;}
.x4_c00223{left:67.489067pt;}
.x26_c00223{left:68.435733pt;}
.x1f_c00223{left:77.769067pt;}
.x2_c00223{left:80.969067pt;}
.xa_c00223{left:85.435733pt;}
.x20_c00223{left:92.435733pt;}
.x23_c00223{left:104.635733pt;}
.xb_c00223{left:127.969067pt;}
.xf_c00223{left:206.702400pt;}
.x18_c00223{left:231.969067pt;}
.x3_c00223{left:236.769067pt;}
.x10_c00223{left:239.635733pt;}
.x19_c00223{left:240.635733pt;}
.x16_c00223{left:262.702400pt;}
.x11_c00223{left:280.302400pt;}
.x1c_c00223{left:285.769067pt;}
.x5_c00223{left:290.235733pt;}
.x12_c00223{left:292.435733pt;}
.x13_c00223{left:293.435733pt;}
.x14_c00223{left:297.235733pt;}
.x17_c00223{left:303.035733pt;}
.x15_c00223{left:307.502400pt;}
.x2d_c00223{left:310.369067pt;}
.x6_c00223{left:319.035733pt;}
.x7_c00223{left:326.022400pt;}
.x1a_c00223{left:335.355733pt;}
.x2a_c00223{left:336.635733pt;}
.x8_c00223{left:350.355733pt;}
.x1b_c00223{left:353.569067pt;}
.xc_c00223{left:364.435733pt;}
.x2b_c00223{left:369.569067pt;}
.x27_c00223{left:376.969067pt;}
.xd_c00223{left:385.235733pt;}
.x28_c00223{left:386.569067pt;}
.x2c_c00223{left:394.835733pt;}
.xe_c00223{left:399.635733pt;}
.x24_c00223{left:474.835733pt;}
.x25_c00223{left:490.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbdbe77c4b967474138326f7.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00224;src:url('chunks/assets/font_62ebdaba16b084e34ee6cbc4.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00224;src:url('chunks/assets/font_b6daf558766a999f51375a52.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00224{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m12_c00224{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00224{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00224{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c00224{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c00224{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c00224{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00224{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00224{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00224{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00224{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00224{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c00224{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00224{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00224{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00224{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c00224{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m10_c00224{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1_c00224{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00224{color:transparent;}
.fs3_c00224{font-size:36.000000px;}
.fs4_c00224{font-size:42.000000px;}
.fs2_c00224{font-size:48.000000px;}
.fs0_c00224{font-size:60.000000px;}
.fs5_c00224{font-size:66.000000px;}
.fs1_c00224{font-size:72.000000px;}
.y0_c00224{bottom:0.000000px;}
.y25_c00224{bottom:100.635000px;}
.y26_c00224{bottom:102.810000px;}
.y24_c00224{bottom:121.500000px;}
.y23_c00224{bottom:142.035000px;}
.y22_c00224{bottom:162.510000px;}
.y21_c00224{bottom:183.060000px;}
.y20_c00224{bottom:203.160000px;}
.y1e_c00224{bottom:222.960000px;}
.y1f_c00224{bottom:224.085000px;}
.y1d_c00224{bottom:244.260000px;}
.y1c_c00224{bottom:265.125000px;}
.y1b_c00224{bottom:286.335000px;}
.y1a_c00224{bottom:306.900000px;}
.y19_c00224{bottom:328.185000px;}
.y18_c00224{bottom:349.035000px;}
.y17_c00224{bottom:369.525000px;}
.y16_c00224{bottom:390.435000px;}
.y15_c00224{bottom:411.285000px;}
.y14_c00224{bottom:432.210000px;}
.y13_c00224{bottom:453.435000px;}
.y12_c00224{bottom:474.660000px;}
.y11_c00224{bottom:495.210000px;}
.y10_c00224{bottom:496.260000px;}
.yf_c00224{bottom:517.500000px;}
.ye_c00224{bottom:538.410000px;}
.yd_c00224{bottom:559.635000px;}
.yc_c00224{bottom:580.875000px;}
.yb_c00224{bottom:600.960000px;}
.ya_c00224{bottom:601.785000px;}
.y9_c00224{bottom:602.835000px;}
.y8_c00224{bottom:623.310000px;}
.y7_c00224{bottom:750.750000px;}
.y6_c00224{bottom:850.875000px;}
.y5_c00224{bottom:880.710000px;}
.y4_c00224{bottom:909.150000px;}
.y3_c00224{bottom:1075.875000px;}
.y1_c00224{bottom:1081.185000px;}
.y2_c00224{bottom:1089.210000px;}
.h4_c00224{height:36.281250px;}
.h5_c00224{height:42.328125px;}
.h3_c00224{height:48.375000px;}
.h1_c00224{height:58.886719px;}
.h6_c00224{height:64.775391px;}
.h7_c00224{height:70.628906px;}
.h2_c00224{height:70.664062px;}
.h0_c00224{height:1174.500000px;}
.w0_c00224{width:731.977200px;}
.w1_c00224{width:732.000000px;}
.x0_c00224{left:0.000000px;}
.xc_c00224{left:85.990200px;}
.x9_c00224{left:87.115200px;}
.xf_c00224{left:88.540200px;}
.x4_c00224{left:91.090200px;}
.xe_c00224{left:108.340200px;}
.x7_c00224{left:111.940200px;}
.x8_c00224{left:120.565200px;}
.x6_c00224{left:160.915200px;}
.x10_c00224{left:163.765200px;}
.x5_c00224{left:209.515200px;}
.x1_c00224{left:303.790200px;}
.xa_c00224{left:441.340200px;}
.xb_c00224{left:469.090200px;}
.x2_c00224{left:498.190200px;}
.xd_c00224{left:612.340200px;}
.x11_c00224{left:641.515200px;}
.x3_c00224{left:658.765200px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls0_c00224{letter-spacing:0.000000pt;}
.ws0_c00224{word-spacing:0.000000pt;}
.fs3_c00224{font-size:32.000000pt;}
.fs4_c00224{font-size:37.333333pt;}
.fs2_c00224{font-size:42.666667pt;}
.fs0_c00224{font-size:53.333333pt;}
.fs5_c00224{font-size:58.666667pt;}
.fs1_c00224{font-size:64.000000pt;}
.y0_c00224{bottom:0.000000pt;}
.y25_c00224{bottom:89.453333pt;}
.y26_c00224{bottom:91.386667pt;}
.y24_c00224{bottom:108.000000pt;}
.y23_c00224{bottom:126.253333pt;}
.y22_c00224{bottom:144.453333pt;}
.y21_c00224{bottom:162.720000pt;}
.y20_c00224{bottom:180.586667pt;}
.y1e_c00224{bottom:198.186667pt;}
.y1f_c00224{bottom:199.186667pt;}
.y1d_c00224{bottom:217.120000pt;}
.y1c_c00224{bottom:235.666667pt;}
.y1b_c00224{bottom:254.520000pt;}
.y1a_c00224{bottom:272.800000pt;}
.y19_c00224{bottom:291.720000pt;}
.y18_c00224{bottom:310.253333pt;}
.y17_c00224{bottom:328.466667pt;}
.y16_c00224{bottom:347.053333pt;}
.y15_c00224{bottom:365.586667pt;}
.y14_c00224{bottom:384.186667pt;}
.y13_c00224{bottom:403.053333pt;}
.y12_c00224{bottom:421.920000pt;}
.y11_c00224{bottom:440.186667pt;}
.y10_c00224{bottom:441.120000pt;}
.yf_c00224{bottom:460.000000pt;}
.ye_c00224{bottom:478.586667pt;}
.yd_c00224{bottom:497.453333pt;}
.yc_c00224{bottom:516.333333pt;}
.yb_c00224{bottom:534.186667pt;}
.ya_c00224{bottom:534.920000pt;}
.y9_c00224{bottom:535.853333pt;}
.y8_c00224{bottom:554.053333pt;}
.y7_c00224{bottom:667.333333pt;}
.y6_c00224{bottom:756.333333pt;}
.y5_c00224{bottom:782.853333pt;}
.y4_c00224{bottom:808.133333pt;}
.y3_c00224{bottom:956.333333pt;}
.y1_c00224{bottom:961.053333pt;}
.y2_c00224{bottom:968.186667pt;}
.h4_c00224{height:32.250000pt;}
.h5_c00224{height:37.625000pt;}
.h3_c00224{height:43.000000pt;}
.h1_c00224{height:52.343750pt;}
.h6_c00224{height:57.578125pt;}
.h7_c00224{height:62.781250pt;}
.h2_c00224{height:62.812500pt;}
.h0_c00224{height:1044.000000pt;}
.w0_c00224{width:650.646400pt;}
.w1_c00224{width:650.666667pt;}
.x0_c00224{left:0.000000pt;}
.xc_c00224{left:76.435733pt;}
.x9_c00224{left:77.435733pt;}
.xf_c00224{left:78.702400pt;}
.x4_c00224{left:80.969067pt;}
.xe_c00224{left:96.302400pt;}
.x7_c00224{left:99.502400pt;}
.x8_c00224{left:107.169067pt;}
.x6_c00224{left:143.035733pt;}
.x10_c00224{left:145.569067pt;}
.x5_c00224{left:186.235733pt;}
.x1_c00224{left:270.035733pt;}
.xa_c00224{left:392.302400pt;}
.xb_c00224{left:416.969067pt;}
.x2_c00224{left:442.835733pt;}
.xd_c00224{left:544.302400pt;}
.x11_c00224{left:570.235733pt;}
.x3_c00224{left:585.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d64241382acdd94887a7a41.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00225;src:url('chunks/assets/font_774a5e02b21bc07485b3e065.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00225{transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);}
.mb_c00225{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m21_c00225{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3_c00225{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c00225{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c00225{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c00225{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00225{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m22_c00225{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c00225{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m0_c00225{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00225{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00225{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00225{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00225{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m19_c00225{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c00225{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c00225{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00225{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c00225{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c00225{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c00225{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m16_c00225{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00225{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7_c00225{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.ma_c00225{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m13_c00225{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mf_c00225{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00225{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c00225{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m15_c00225{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00225{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m18_c00225{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00225{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m20_c00225{transform:matrix(1.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.562500,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;}
}
.ws0_c00225{word-spacing:0.000000px;}
.fc0_c00225{color:transparent;}
.fs0_c00225{font-size:60.000000px;}
.fs1_c00225{font-size:66.000000px;}
.fs2_c00225{font-size:72.000000px;}
.y0_c00225{bottom:0.000000px;}
.y50_c00225{bottom:88.710000px;}
.y4f_c00225{bottom:91.260000px;}
.y4e_c00225{bottom:99.510000px;}
.y4d_c00225{bottom:111.435000px;}
.y4c_c00225{bottom:118.935000px;}
.y4b_c00225{bottom:141.000000px;}
.y4a_c00225{bottom:144.510000px;}
.y49_c00225{bottom:155.010000px;}
.y48_c00225{bottom:155.685000px;}
.y47_c00225{bottom:164.010000px;}
.y45_c00225{bottom:170.835000px;}
.y46_c00225{bottom:176.250000px;}
.y44_c00225{bottom:176.625000px;}
.y43_c00225{bottom:178.785000px;}
.y42_c00225{bottom:181.935000px;}
.y41_c00225{bottom:184.125000px;}
.y40_c00225{bottom:198.510000px;}
.y3f_c00225{bottom:205.710000px;}
.y3e_c00225{bottom:220.125000px;}
.y3d_c00225{bottom:225.510000px;}
.y3c_c00225{bottom:241.410000px;}
.y3a_c00225{bottom:247.500000px;}
.y39_c00225{bottom:263.025000px;}
.y3b_c00225{bottom:266.160000px;}
.y38_c00225{bottom:267.660000px;}
.y37_c00225{bottom:287.085000px;}
.y36_c00225{bottom:306.900000px;}
.y35_c00225{bottom:309.060000px;}
.y34_c00225{bottom:330.585000px;}
.y33_c00225{bottom:336.435000px;}
.y32_c00225{bottom:350.460000px;}
.y31_c00225{bottom:353.025000px;}
.y30_c00225{bottom:373.875000px;}
.y2f_c00225{bottom:399.375000px;}
.y2d_c00225{bottom:416.310000px;}
.y2e_c00225{bottom:416.385000px;}
.y2c_c00225{bottom:418.875000px;}
.y2b_c00225{bottom:439.335000px;}
.y2a_c00225{bottom:462.060000px;}
.y29_c00225{bottom:483.000000px;}
.y28_c00225{bottom:504.210000px;}
.y27_c00225{bottom:526.125000px;}
.y26_c00225{bottom:547.710000px;}
.y25_c00225{bottom:569.310000px;}
.y24_c00225{bottom:591.000000px;}
.y23_c00225{bottom:612.885000px;}
.y22_c00225{bottom:634.500000px;}
.y21_c00225{bottom:656.460000px;}
.y20_c00225{bottom:676.635000px;}
.y1e_c00225{bottom:699.285000px;}
.y1f_c00225{bottom:701.460000px;}
.y1d_c00225{bottom:720.885000px;}
.y1c_c00225{bottom:742.875000px;}
.y1b_c00225{bottom:764.460000px;}
.y1a_c00225{bottom:786.435000px;}
.y19_c00225{bottom:807.675000px;}
.y18_c00225{bottom:828.900000px;}
.y17_c00225{bottom:849.435000px;}
.y14_c00225{bottom:866.310000px;}
.y15_c00225{bottom:867.810000px;}
.y16_c00225{bottom:871.425000px;}
.y11_c00225{bottom:891.525000px;}
.y12_c00225{bottom:894.060000px;}
.y13_c00225{bottom:895.875000px;}
.y10_c00225{bottom:913.875000px;}
.yf_c00225{bottom:936.150000px;}
.yc_c00225{bottom:950.925000px;}
.yd_c00225{bottom:952.050000px;}
.ye_c00225{bottom:958.125000px;}
.yb_c00225{bottom:979.710000px;}
.y9_c00225{bottom:992.685000px;}
.ya_c00225{bottom:1001.685000px;}
.y6_c00225{bottom:1011.435000px;}
.y7_c00225{bottom:1011.810000px;}
.y8_c00225{bottom:1020.750000px;}
.y2_c00225{bottom:1032.675000px;}
.y3_c00225{bottom:1034.460000px;}
.y4_c00225{bottom:1036.650000px;}
.y5_c00225{bottom:1044.210000px;}
.y1_c00225{bottom:1100.685000px;}
.h1_c00225{height:58.886719px;}
.h2_c00225{height:64.775391px;}
.h4_c00225{height:66.515625px;}
.h3_c00225{height:70.664062px;}
.h0_c00225{height:1174.500000px;}
.w0_c00225{width:731.977200px;}
.w1_c00225{width:732.000000px;}
.x0_c00225{left:0.000000px;}
.x2_c00225{left:47.890200px;}
.xf_c00225{left:49.315200px;}
.x6_c00225{left:51.790200px;}
.x7_c00225{left:55.090200px;}
.x3_c00225{left:65.890200px;}
.x26_c00225{left:72.715200px;}
.x13_c00225{left:78.115200px;}
.x8_c00225{left:79.915200px;}
.x14_c00225{left:81.340200px;}
.xb_c00225{left:110.515200px;}
.xc_c00225{left:115.915200px;}
.x9_c00225{left:118.390200px;}
.xa_c00225{left:128.890200px;}
.x10_c00225{left:135.340200px;}
.x11_c00225{left:143.590200px;}
.x24_c00225{left:150.115200px;}
.x4_c00225{left:159.490200px;}
.x5_c00225{left:169.915200px;}
.x1e_c00225{left:202.990200px;}
.x1f_c00225{left:220.315200px;}
.x1d_c00225{left:225.340200px;}
.x28_c00225{left:252.340200px;}
.x1_c00225{left:269.590200px;}
.x27_c00225{left:295.915200px;}
.x1a_c00225{left:334.090200px;}
.x1b_c00225{left:390.190200px;}
.x1c_c00225{left:394.150200px;}
.x20_c00225{left:410.365200px;}
.x15_c00225{left:436.315200px;}
.xd_c00225{left:448.540200px;}
.x19_c00225{left:471.565200px;}
.xe_c00225{left:480.190200px;}
.x21_c00225{left:484.540200px;}
.x23_c00225{left:493.915200px;}
.x18_c00225{left:515.515200px;}
.x29_c00225{left:524.140200px;}
.x22_c00225{left:543.565200px;}
.x16_c00225{left:547.165200px;}
.x17_c00225{left:572.365200px;}
.x25_c00225{left:582.115200px;}
.x12_c00225{left:646.165200px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls0_c00225{letter-spacing:0.000000pt;}
.ws0_c00225{word-spacing:0.000000pt;}
.fs0_c00225{font-size:53.333333pt;}
.fs1_c00225{font-size:58.666667pt;}
.fs2_c00225{font-size:64.000000pt;}
.y0_c00225{bottom:0.000000pt;}
.y50_c00225{bottom:78.853333pt;}
.y4f_c00225{bottom:81.120000pt;}
.y4e_c00225{bottom:88.453333pt;}
.y4d_c00225{bottom:99.053333pt;}
.y4c_c00225{bottom:105.720000pt;}
.y4b_c00225{bottom:125.333333pt;}
.y4a_c00225{bottom:128.453333pt;}
.y49_c00225{bottom:137.786667pt;}
.y48_c00225{bottom:138.386667pt;}
.y47_c00225{bottom:145.786667pt;}
.y45_c00225{bottom:151.853333pt;}
.y46_c00225{bottom:156.666667pt;}
.y44_c00225{bottom:157.000000pt;}
.y43_c00225{bottom:158.920000pt;}
.y42_c00225{bottom:161.720000pt;}
.y41_c00225{bottom:163.666667pt;}
.y40_c00225{bottom:176.453333pt;}
.y3f_c00225{bottom:182.853333pt;}
.y3e_c00225{bottom:195.666667pt;}
.y3d_c00225{bottom:200.453333pt;}
.y3c_c00225{bottom:214.586667pt;}
.y3a_c00225{bottom:220.000000pt;}
.y39_c00225{bottom:233.800000pt;}
.y3b_c00225{bottom:236.586667pt;}
.y38_c00225{bottom:237.920000pt;}
.y37_c00225{bottom:255.186667pt;}
.y36_c00225{bottom:272.800000pt;}
.y35_c00225{bottom:274.720000pt;}
.y34_c00225{bottom:293.853333pt;}
.y33_c00225{bottom:299.053333pt;}
.y32_c00225{bottom:311.520000pt;}
.y31_c00225{bottom:313.800000pt;}
.y30_c00225{bottom:332.333333pt;}
.y2f_c00225{bottom:355.000000pt;}
.y2d_c00225{bottom:370.053333pt;}
.y2e_c00225{bottom:370.120000pt;}
.y2c_c00225{bottom:372.333333pt;}
.y2b_c00225{bottom:390.520000pt;}
.y2a_c00225{bottom:410.720000pt;}
.y29_c00225{bottom:429.333333pt;}
.y28_c00225{bottom:448.186667pt;}
.y27_c00225{bottom:467.666667pt;}
.y26_c00225{bottom:486.853333pt;}
.y25_c00225{bottom:506.053333pt;}
.y24_c00225{bottom:525.333333pt;}
.y23_c00225{bottom:544.786667pt;}
.y22_c00225{bottom:564.000000pt;}
.y21_c00225{bottom:583.520000pt;}
.y20_c00225{bottom:601.453333pt;}
.y1e_c00225{bottom:621.586667pt;}
.y1f_c00225{bottom:623.520000pt;}
.y1d_c00225{bottom:640.786667pt;}
.y1c_c00225{bottom:660.333333pt;}
.y1b_c00225{bottom:679.520000pt;}
.y1a_c00225{bottom:699.053333pt;}
.y19_c00225{bottom:717.933333pt;}
.y18_c00225{bottom:736.800000pt;}
.y17_c00225{bottom:755.053333pt;}
.y14_c00225{bottom:770.053333pt;}
.y15_c00225{bottom:771.386667pt;}
.y16_c00225{bottom:774.600000pt;}
.y11_c00225{bottom:792.466667pt;}
.y12_c00225{bottom:794.720000pt;}
.y13_c00225{bottom:796.333333pt;}
.y10_c00225{bottom:812.333333pt;}
.yf_c00225{bottom:832.133333pt;}
.yc_c00225{bottom:845.266667pt;}
.yd_c00225{bottom:846.266667pt;}
.ye_c00225{bottom:851.666667pt;}
.yb_c00225{bottom:870.853333pt;}
.y9_c00225{bottom:882.386667pt;}
.ya_c00225{bottom:890.386667pt;}
.y6_c00225{bottom:899.053333pt;}
.y7_c00225{bottom:899.386667pt;}
.y8_c00225{bottom:907.333333pt;}
.y2_c00225{bottom:917.933333pt;}
.y3_c00225{bottom:919.520000pt;}
.y4_c00225{bottom:921.466667pt;}
.y5_c00225{bottom:928.186667pt;}
.y1_c00225{bottom:978.386667pt;}
.h1_c00225{height:52.343750pt;}
.h2_c00225{height:57.578125pt;}
.h4_c00225{height:59.125000pt;}
.h3_c00225{height:62.812500pt;}
.h0_c00225{height:1044.000000pt;}
.w0_c00225{width:650.646400pt;}
.w1_c00225{width:650.666667pt;}
.x0_c00225{left:0.000000pt;}
.x2_c00225{left:42.569067pt;}
.xf_c00225{left:43.835733pt;}
.x6_c00225{left:46.035733pt;}
.x7_c00225{left:48.969067pt;}
.x3_c00225{left:58.569067pt;}
.x26_c00225{left:64.635733pt;}
.x13_c00225{left:69.435733pt;}
.x8_c00225{left:71.035733pt;}
.x14_c00225{left:72.302400pt;}
.xb_c00225{left:98.235733pt;}
.xc_c00225{left:103.035733pt;}
.x9_c00225{left:105.235733pt;}
.xa_c00225{left:114.569067pt;}
.x10_c00225{left:120.302400pt;}
.x11_c00225{left:127.635733pt;}
.x24_c00225{left:133.435733pt;}
.x4_c00225{left:141.769067pt;}
.x5_c00225{left:151.035733pt;}
.x1e_c00225{left:180.435733pt;}
.x1f_c00225{left:195.835733pt;}
.x1d_c00225{left:200.302400pt;}
.x28_c00225{left:224.302400pt;}
.x1_c00225{left:239.635733pt;}
.x27_c00225{left:263.035733pt;}
.x1a_c00225{left:296.969067pt;}
.x1b_c00225{left:346.835733pt;}
.x1c_c00225{left:350.355733pt;}
.x20_c00225{left:364.769067pt;}
.x15_c00225{left:387.835733pt;}
.xd_c00225{left:398.702400pt;}
.x19_c00225{left:419.169067pt;}
.xe_c00225{left:426.835733pt;}
.x21_c00225{left:430.702400pt;}
.x23_c00225{left:439.035733pt;}
.x18_c00225{left:458.235733pt;}
.x29_c00225{left:465.902400pt;}
.x22_c00225{left:483.169067pt;}
.x16_c00225{left:486.369067pt;}
.x17_c00225{left:508.769067pt;}
.x25_c00225{left:517.435733pt;}
.x12_c00225{left:574.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b5619681aeb30c15a9c4b34d.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00226;src:url('chunks/assets/font_7155da5c79ed665d84a7c7a7.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00226;src:url('chunks/assets/font_bf27ea95a8ec31cc004a7135.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00226{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.mc_c00226{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m1_c00226{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c00226{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00226{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c00226{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c00226{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c00226{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00226{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c00226{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00226{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00226{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c00226{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00226{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m0_c00226{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c00226{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m6_c00226{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10_c00226{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4_c00226{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mf_c00226{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00226{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m7_c00226{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.md_c00226{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2_c00226{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00226{color:transparent;}
.fs0_c00226{font-size:60.000000px;}
.fs1_c00226{font-size:66.000000px;}
.fs2_c00226{font-size:72.000000px;}
.fs3_c00226{font-size:78.000000px;}
.y0_c00226{bottom:0.000000px;}
.y3b_c00226{bottom:106.785000px;}
.y3a_c00226{bottom:127.935000px;}
.y39_c00226{bottom:148.500000px;}
.y38_c00226{bottom:167.250000px;}
.y37_c00226{bottom:188.835000px;}
.y36_c00226{bottom:209.310000px;}
.y35_c00226{bottom:229.875000px;}
.y34_c00226{bottom:249.585000px;}
.y33_c00226{bottom:271.275000px;}
.y32_c00226{bottom:292.125000px;}
.y31_c00226{bottom:313.035000px;}
.y30_c00226{bottom:333.900000px;}
.y2f_c00226{bottom:334.275000px;}
.y2e_c00226{bottom:355.125000px;}
.y2d_c00226{bottom:375.660000px;}
.y2c_c00226{bottom:396.585000px;}
.y2b_c00226{bottom:417.060000px;}
.y2a_c00226{bottom:438.660000px;}
.y29_c00226{bottom:459.210000px;}
.y28_c00226{bottom:481.125000px;}
.y27_c00226{bottom:502.335000px;}
.y26_c00226{bottom:523.635000px;}
.y25_c00226{bottom:544.875000px;}
.y24_c00226{bottom:566.085000px;}
.y23_c00226{bottom:587.310000px;}
.y22_c00226{bottom:608.250000px;}
.y21_c00226{bottom:629.385000px;}
.y20_c00226{bottom:651.060000px;}
.y1f_c00226{bottom:671.250000px;}
.y1e_c00226{bottom:692.460000px;}
.y1d_c00226{bottom:694.560000px;}
.y1c_c00226{bottom:713.685000px;}
.y1b_c00226{bottom:734.910000px;}
.y1a_c00226{bottom:756.210000px;}
.y19_c00226{bottom:777.060000px;}
.y18_c00226{bottom:800.085000px;}
.y17_c00226{bottom:819.585000px;}
.y16_c00226{bottom:821.685000px;}
.y15_c00226{bottom:822.000000px;}
.y14_c00226{bottom:841.500000px;}
.y13_c00226{bottom:862.800000px;}
.y12_c00226{bottom:883.650000px;}
.y11_c00226{bottom:901.650000px;}
.y10_c00226{bottom:902.685000px;}
.yf_c00226{bottom:905.250000px;}
.ye_c00226{bottom:925.050000px;}
.yd_c00226{bottom:926.085000px;}
.yc_c00226{bottom:927.150000px;}
.yb_c00226{bottom:944.460000px;}
.ya_c00226{bottom:947.025000px;}
.y9_c00226{bottom:967.875000px;}
.y8_c00226{bottom:988.800000px;}
.y7_c00226{bottom:1010.310000px;}
.y6_c00226{bottom:1030.875000px;}
.y5_c00226{bottom:1033.800000px;}
.y4_c00226{bottom:1086.675000px;}
.y3_c00226{bottom:1089.900000px;}
.y2_c00226{bottom:1090.275000px;}
.y1_c00226{bottom:1091.685000px;}
.h2_c00226{height:58.886719px;}
.h1_c00226{height:60.468750px;}
.h4_c00226{height:64.775391px;}
.h3_c00226{height:66.515625px;}
.h5_c00226{height:70.664062px;}
.h6_c00226{height:76.514648px;}
.h0_c00226{height:1174.500000px;}
.w0_c00226{width:731.977200px;}
.w1_c00226{width:732.000000px;}
.x0_c00226{left:0.000000px;}
.x14_c00226{left:79.540200px;}
.x10_c00226{left:81.715200px;}
.xc_c00226{left:83.140200px;}
.x9_c00226{left:84.175200px;}
.x5_c00226{left:85.675200px;}
.x13_c00226{left:113.365200px;}
.xf_c00226{left:114.790200px;}
.x15_c00226{left:139.690200px;}
.xd_c00226{left:198.340200px;}
.xe_c00226{left:199.375200px;}
.x11_c00226{left:207.715200px;}
.x16_c00226{left:213.115200px;}
.x12_c00226{left:244.390200px;}
.x1_c00226{left:298.090200px;}
.x2_c00226{left:322.540200px;}
.x8_c00226{left:334.765200px;}
.x6_c00226{left:392.740200px;}
.x3_c00226{left:490.690200px;}
.x7_c00226{left:606.565200px;}
.xa_c00226{left:639.340200px;}
.x4_c00226{left:652.690200px;}
.xb_c00226{left:662.365200px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls0_c00226{letter-spacing:0.000000pt;}
.ws0_c00226{word-spacing:0.000000pt;}
.fs0_c00226{font-size:53.333333pt;}
.fs1_c00226{font-size:58.666667pt;}
.fs2_c00226{font-size:64.000000pt;}
.fs3_c00226{font-size:69.333333pt;}
.y0_c00226{bottom:0.000000pt;}
.y3b_c00226{bottom:94.920000pt;}
.y3a_c00226{bottom:113.720000pt;}
.y39_c00226{bottom:132.000000pt;}
.y38_c00226{bottom:148.666667pt;}
.y37_c00226{bottom:167.853333pt;}
.y36_c00226{bottom:186.053333pt;}
.y35_c00226{bottom:204.333333pt;}
.y34_c00226{bottom:221.853333pt;}
.y33_c00226{bottom:241.133333pt;}
.y32_c00226{bottom:259.666667pt;}
.y31_c00226{bottom:278.253333pt;}
.y30_c00226{bottom:296.800000pt;}
.y2f_c00226{bottom:297.133333pt;}
.y2e_c00226{bottom:315.666667pt;}
.y2d_c00226{bottom:333.920000pt;}
.y2c_c00226{bottom:352.520000pt;}
.y2b_c00226{bottom:370.720000pt;}
.y2a_c00226{bottom:389.920000pt;}
.y29_c00226{bottom:408.186667pt;}
.y28_c00226{bottom:427.666667pt;}
.y27_c00226{bottom:446.520000pt;}
.y26_c00226{bottom:465.453333pt;}
.y25_c00226{bottom:484.333333pt;}
.y24_c00226{bottom:503.186667pt;}
.y23_c00226{bottom:522.053333pt;}
.y22_c00226{bottom:540.666667pt;}
.y21_c00226{bottom:559.453333pt;}
.y20_c00226{bottom:578.720000pt;}
.y1f_c00226{bottom:596.666667pt;}
.y1e_c00226{bottom:615.520000pt;}
.y1d_c00226{bottom:617.386667pt;}
.y1c_c00226{bottom:634.386667pt;}
.y1b_c00226{bottom:653.253333pt;}
.y1a_c00226{bottom:672.186667pt;}
.y19_c00226{bottom:690.720000pt;}
.y18_c00226{bottom:711.186667pt;}
.y17_c00226{bottom:728.520000pt;}
.y16_c00226{bottom:730.386667pt;}
.y15_c00226{bottom:730.666667pt;}
.y14_c00226{bottom:748.000000pt;}
.y13_c00226{bottom:766.933333pt;}
.y12_c00226{bottom:785.466667pt;}
.y11_c00226{bottom:801.466667pt;}
.y10_c00226{bottom:802.386667pt;}
.yf_c00226{bottom:804.666667pt;}
.ye_c00226{bottom:822.266667pt;}
.yd_c00226{bottom:823.186667pt;}
.yc_c00226{bottom:824.133333pt;}
.yb_c00226{bottom:839.520000pt;}
.ya_c00226{bottom:841.800000pt;}
.y9_c00226{bottom:860.333333pt;}
.y8_c00226{bottom:878.933333pt;}
.y7_c00226{bottom:898.053333pt;}
.y6_c00226{bottom:916.333333pt;}
.y5_c00226{bottom:918.933333pt;}
.y4_c00226{bottom:965.933333pt;}
.y3_c00226{bottom:968.800000pt;}
.y2_c00226{bottom:969.133333pt;}
.y1_c00226{bottom:970.386667pt;}
.h2_c00226{height:52.343750pt;}
.h1_c00226{height:53.750000pt;}
.h4_c00226{height:57.578125pt;}
.h3_c00226{height:59.125000pt;}
.h5_c00226{height:62.812500pt;}
.h6_c00226{height:68.013021pt;}
.h0_c00226{height:1044.000000pt;}
.w0_c00226{width:650.646400pt;}
.w1_c00226{width:650.666667pt;}
.x0_c00226{left:0.000000pt;}
.x14_c00226{left:70.702400pt;}
.x10_c00226{left:72.635733pt;}
.xc_c00226{left:73.902400pt;}
.x9_c00226{left:74.822400pt;}
.x5_c00226{left:76.155733pt;}
.x13_c00226{left:100.769067pt;}
.xf_c00226{left:102.035733pt;}
.x15_c00226{left:124.169067pt;}
.xd_c00226{left:176.302400pt;}
.xe_c00226{left:177.222400pt;}
.x11_c00226{left:184.635733pt;}
.x16_c00226{left:189.435733pt;}
.x12_c00226{left:217.235733pt;}
.x1_c00226{left:264.969067pt;}
.x2_c00226{left:286.702400pt;}
.x8_c00226{left:297.569067pt;}
.x6_c00226{left:349.102400pt;}
.x3_c00226{left:436.169067pt;}
.x7_c00226{left:539.169067pt;}
.xa_c00226{left:568.302400pt;}
.x4_c00226{left:580.169067pt;}
.xb_c00226{left:588.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9350096a7c11826c0704adbe.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00227;src:url('chunks/assets/font_2e376b3e001f55a86a12d2c9.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00227{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0_c00227{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m12_c00227{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00227{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c00227{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m11_c00227{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c00227{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c00227{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00227{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00227{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00227{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00227{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00227{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00227{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00227{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00227{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c00227{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00227{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00227{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c00227{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c00227{transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c00227{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00227{color:transparent;}
.fs1_c00227{font-size:60.000000px;}
.fs2_c00227{font-size:66.000000px;}
.fs0_c00227{font-size:72.000000px;}
.y0_c00227{bottom:0.000000px;}
.y3c_c00227{bottom:96.285000px;}
.y3b_c00227{bottom:100.935000px;}
.y3a_c00227{bottom:103.875000px;}
.y39_c00227{bottom:105.285000px;}
.y38_c00227{bottom:117.510000px;}
.y37_c00227{bottom:126.885000px;}
.y36_c00227{bottom:146.010000px;}
.y35_c00227{bottom:161.460000px;}
.y34_c00227{bottom:183.060000px;}
.y33_c00227{bottom:203.625000px;}
.y32_c00227{bottom:210.810000px;}
.y31_c00227{bottom:225.510000px;}
.y30_c00227{bottom:227.385000px;}
.y2f_c00227{bottom:248.535000px;}
.y2e_c00227{bottom:270.900000px;}
.y2d_c00227{bottom:292.500000px;}
.y2c_c00227{bottom:314.085000px;}
.y2b_c00227{bottom:336.435000px;}
.y2a_c00227{bottom:339.660000px;}
.y29_c00227{bottom:357.660000px;}
.y28_c00227{bottom:379.275000px;}
.y27_c00227{bottom:400.875000px;}
.y26_c00227{bottom:403.710000px;}
.y25_c00227{bottom:423.210000px;}
.y24_c00227{bottom:444.435000px;}
.y23_c00227{bottom:466.335000px;}
.y22_c00227{bottom:468.135000px;}
.y21_c00227{bottom:488.010000px;}
.y20_c00227{bottom:509.910000px;}
.y1f_c00227{bottom:531.210000px;}
.y1e_c00227{bottom:552.060000px;}
.y1d_c00227{bottom:552.435000px;}
.y1c_c00227{bottom:574.410000px;}
.y1b_c00227{bottom:596.010000px;}
.y1a_c00227{bottom:617.910000px;}
.y19_c00227{bottom:639.585000px;}
.y18_c00227{bottom:661.185000px;}
.y17_c00227{bottom:682.410000px;}
.y16_c00227{bottom:704.010000px;}
.y15_c00227{bottom:725.910000px;}
.y14_c00227{bottom:747.885000px;}
.y13_c00227{bottom:768.435000px;}
.y12_c00227{bottom:790.710000px;}
.y11_c00227{bottom:812.310000px;}
.y10_c00227{bottom:832.875000px;}
.yf_c00227{bottom:854.460000px;}
.ye_c00227{bottom:875.400000px;}
.yd_c00227{bottom:897.300000px;}
.yc_c00227{bottom:918.210000px;}
.yb_c00227{bottom:940.875000px;}
.ya_c00227{bottom:955.275000px;}
.y9_c00227{bottom:983.685000px;}
.y8_c00227{bottom:1005.000000px;}
.y6_c00227{bottom:1016.835000px;}
.y7_c00227{bottom:1027.275000px;}
.y4_c00227{bottom:1043.835000px;}
.y5_c00227{bottom:1051.050000px;}
.y1_c00227{bottom:1094.925000px;}
.y3_c00227{bottom:1104.675000px;}
.y2_c00227{bottom:1109.685000px;}
.h2_c00227{height:58.886719px;}
.h4_c00227{height:64.775391px;}
.h3_c00227{height:66.515625px;}
.h1_c00227{height:70.664062px;}
.h0_c00227{height:1174.500000px;}
.w0_c00227{width:731.977200px;}
.w1_c00227{width:732.000000px;}
.x0_c00227{left:0.000000px;}
.x1c_c00227{left:34.165200px;}
.x19_c00227{left:36.340200px;}
.x16_c00227{left:37.765200px;}
.x13_c00227{left:38.890200px;}
.x11_c00227{left:40.315200px;}
.xc_c00227{left:42.115200px;}
.xd_c00227{left:43.540200px;}
.x9_c00227{left:45.715200px;}
.x8_c00227{left:47.140200px;}
.x6_c00227{left:48.190200px;}
.x4_c00227{left:50.365200px;}
.x1a_c00227{left:60.790200px;}
.x1_c00227{left:64.390200px;}
.x15_c00227{left:71.590200px;}
.xe_c00227{left:72.715200px;}
.xb_c00227{left:75.550200px;}
.xa_c00227{left:77.365200px;}
.x1b_c00227{left:82.090200px;}
.x2_c00227{left:93.175200px;}
.x1d_c00227{left:98.965200px;}
.x10_c00227{left:102.940200px;}
.x14_c00227{left:117.715200px;}
.x12_c00227{left:128.515200px;}
.x7_c00227{left:141.490200px;}
.x1e_c00227{left:161.965200px;}
.x18_c00227{left:196.540200px;}
.x1f_c00227{left:266.740200px;}
.x3_c00227{left:268.915200px;}
.x5_c00227{left:461.515200px;}
.x17_c00227{left:646.540200px;}
.xf_c00227{left:648.715200px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ws0_c00227{word-spacing:0.000000pt;}
.fs1_c00227{font-size:53.333333pt;}
.fs2_c00227{font-size:58.666667pt;}
.fs0_c00227{font-size:64.000000pt;}
.y0_c00227{bottom:0.000000pt;}
.y3c_c00227{bottom:85.586667pt;}
.y3b_c00227{bottom:89.720000pt;}
.y3a_c00227{bottom:92.333333pt;}
.y39_c00227{bottom:93.586667pt;}
.y38_c00227{bottom:104.453333pt;}
.y37_c00227{bottom:112.786667pt;}
.y36_c00227{bottom:129.786667pt;}
.y35_c00227{bottom:143.520000pt;}
.y34_c00227{bottom:162.720000pt;}
.y33_c00227{bottom:181.000000pt;}
.y32_c00227{bottom:187.386667pt;}
.y31_c00227{bottom:200.453333pt;}
.y30_c00227{bottom:202.120000pt;}
.y2f_c00227{bottom:220.920000pt;}
.y2e_c00227{bottom:240.800000pt;}
.y2d_c00227{bottom:260.000000pt;}
.y2c_c00227{bottom:279.186667pt;}
.y2b_c00227{bottom:299.053333pt;}
.y2a_c00227{bottom:301.920000pt;}
.y29_c00227{bottom:317.920000pt;}
.y28_c00227{bottom:337.133333pt;}
.y27_c00227{bottom:356.333333pt;}
.y26_c00227{bottom:358.853333pt;}
.y25_c00227{bottom:376.186667pt;}
.y24_c00227{bottom:395.053333pt;}
.y23_c00227{bottom:414.520000pt;}
.y22_c00227{bottom:416.120000pt;}
.y21_c00227{bottom:433.786667pt;}
.y20_c00227{bottom:453.253333pt;}
.y1f_c00227{bottom:472.186667pt;}
.y1e_c00227{bottom:490.720000pt;}
.y1d_c00227{bottom:491.053333pt;}
.y1c_c00227{bottom:510.586667pt;}
.y1b_c00227{bottom:529.786667pt;}
.y1a_c00227{bottom:549.253333pt;}
.y19_c00227{bottom:568.520000pt;}
.y18_c00227{bottom:587.720000pt;}
.y17_c00227{bottom:606.586667pt;}
.y16_c00227{bottom:625.786667pt;}
.y15_c00227{bottom:645.253333pt;}
.y14_c00227{bottom:664.786667pt;}
.y13_c00227{bottom:683.053333pt;}
.y12_c00227{bottom:702.853333pt;}
.y11_c00227{bottom:722.053333pt;}
.y10_c00227{bottom:740.333333pt;}
.yf_c00227{bottom:759.520000pt;}
.ye_c00227{bottom:778.133333pt;}
.yd_c00227{bottom:797.600000pt;}
.yc_c00227{bottom:816.186667pt;}
.yb_c00227{bottom:836.333333pt;}
.ya_c00227{bottom:849.133333pt;}
.y9_c00227{bottom:874.386667pt;}
.y8_c00227{bottom:893.333333pt;}
.y6_c00227{bottom:903.853333pt;}
.y7_c00227{bottom:913.133333pt;}
.y4_c00227{bottom:927.853333pt;}
.y5_c00227{bottom:934.266667pt;}
.y1_c00227{bottom:973.266667pt;}
.y3_c00227{bottom:981.933333pt;}
.y2_c00227{bottom:986.386667pt;}
.h2_c00227{height:52.343750pt;}
.h4_c00227{height:57.578125pt;}
.h3_c00227{height:59.125000pt;}
.h1_c00227{height:62.812500pt;}
.h0_c00227{height:1044.000000pt;}
.w0_c00227{width:650.646400pt;}
.w1_c00227{width:650.666667pt;}
.x0_c00227{left:0.000000pt;}
.x1c_c00227{left:30.369067pt;}
.x19_c00227{left:32.302400pt;}
.x16_c00227{left:33.569067pt;}
.x13_c00227{left:34.569067pt;}
.x11_c00227{left:35.835733pt;}
.xc_c00227{left:37.435733pt;}
.xd_c00227{left:38.702400pt;}
.x9_c00227{left:40.635733pt;}
.x8_c00227{left:41.902400pt;}
.x6_c00227{left:42.835733pt;}
.x4_c00227{left:44.769067pt;}
.x1a_c00227{left:54.035733pt;}
.x1_c00227{left:57.235733pt;}
.x15_c00227{left:63.635733pt;}
.xe_c00227{left:64.635733pt;}
.xb_c00227{left:67.155733pt;}
.xa_c00227{left:68.769067pt;}
.x1b_c00227{left:72.969067pt;}
.x2_c00227{left:82.822400pt;}
.x1d_c00227{left:87.969067pt;}
.x10_c00227{left:91.502400pt;}
.x14_c00227{left:104.635733pt;}
.x12_c00227{left:114.235733pt;}
.x7_c00227{left:125.769067pt;}
.x1e_c00227{left:143.969067pt;}
.x18_c00227{left:174.702400pt;}
.x1f_c00227{left:237.102400pt;}
.x3_c00227{left:239.035733pt;}
.x5_c00227{left:410.235733pt;}
.x17_c00227{left:574.702400pt;}
.xf_c00227{left:576.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3cce77da80e8c50e745e449a.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00228;src:url('chunks/assets/font_7f65bee4074d9626c56a6295.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00228;src:url('chunks/assets/font_96af91d6d46a78c23c61ac55.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c00228{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m1_c00228{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00228{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m5_c00228{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma_c00228{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m3_c00228{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c00228{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00228{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf_c00228{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00228{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m14_c00228{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c00228{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m19_c00228{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00228{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00228{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00228{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00228{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c00228{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00228{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00228{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00228{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m13_c00228{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7_c00228{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00228{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m15_c00228{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.me_c00228{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c00228{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c00228{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mb_c00228{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00228{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m6_c00228{transform:matrix(1.862500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.862500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.862500,0.000000,0.000000,0.250000,0,0);}
.m2_c00228{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.ls0_c00228{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00228{word-spacing:0.000000px;}
.fc0_c00228{color:transparent;}
.fs0_c00228{font-size:48.000000px;}
.fs2_c00228{font-size:60.000000px;}
.fs1_c00228{font-size:66.000000px;}
.fs3_c00228{font-size:84.000000px;}
.y0_c00228{bottom:0.000000px;}
.y3d_c00228{bottom:101.010000px;}
.y3c_c00228{bottom:121.185000px;}
.y3b_c00228{bottom:142.035000px;}
.y3a_c00228{bottom:162.510000px;}
.y39_c00228{bottom:183.060000px;}
.y38_c00228{bottom:203.535000px;}
.y37_c00228{bottom:223.710000px;}
.y36_c00228{bottom:243.885000px;}
.y35_c00228{bottom:265.500000px;}
.y34_c00228{bottom:286.035000px;}
.y33_c00228{bottom:306.525000px;}
.y32_c00228{bottom:327.810000px;}
.y31_c00228{bottom:348.660000px;}
.y30_c00228{bottom:369.525000px;}
.y2f_c00228{bottom:390.435000px;}
.y2e_c00228{bottom:411.285000px;}
.y2d_c00228{bottom:432.135000px;}
.y2c_c00228{bottom:453.060000px;}
.y2b_c00228{bottom:474.660000px;}
.y2a_c00228{bottom:495.885000px;}
.y29_c00228{bottom:517.185000px;}
.y26_c00228{bottom:538.335000px;}
.y27_c00228{bottom:539.085000px;}
.y28_c00228{bottom:539.460000px;}
.y25_c00228{bottom:559.935000px;}
.y24_c00228{bottom:580.500000px;}
.y23_c00228{bottom:601.710000px;}
.y22_c00228{bottom:624.060000px;}
.y21_c00228{bottom:643.875000px;}
.y20_c00228{bottom:665.085000px;}
.y1f_c00228{bottom:686.385000px;}
.y1e_c00228{bottom:707.250000px;}
.y1d_c00228{bottom:708.285000px;}
.y1c_c00228{bottom:709.335000px;}
.y1b_c00228{bottom:728.460000px;}
.y1a_c00228{bottom:751.785000px;}
.y19_c00228{bottom:770.625000px;}
.y18_c00228{bottom:791.460000px;}
.y17_c00228{bottom:792.585000px;}
.y16_c00228{bottom:813.810000px;}
.y15_c00228{bottom:834.675000px;}
.y14_c00228{bottom:856.275000px;}
.y13_c00228{bottom:878.250000px;}
.y12_c00228{bottom:898.710000px;}
.y11_c00228{bottom:919.650000px;}
.y10_c00228{bottom:940.500000px;}
.yf_c00228{bottom:960.300000px;}
.ye_c00228{bottom:960.675000px;}
.yd_c00228{bottom:962.085000px;}
.yc_c00228{bottom:982.650000px;}
.yb_c00228{bottom:984.810000px;}
.ya_c00228{bottom:985.875000px;}
.y9_c00228{bottom:986.175000px;}
.y8_c00228{bottom:1006.710000px;}
.y7_c00228{bottom:1025.085000px;}
.y5_c00228{bottom:1029.750000px;}
.y6_c00228{bottom:1029.810000px;}
.y4_c00228{bottom:1081.275000px;}
.y2_c00228{bottom:1084.125000px;}
.y1_c00228{bottom:1085.550000px;}
.y3_c00228{bottom:1096.800000px;}
.h1_c00228{height:47.109375px;}
.h4_c00228{height:60.468750px;}
.h2_c00228{height:64.775391px;}
.h3_c00228{height:66.515625px;}
.h5_c00228{height:82.400391px;}
.h0_c00228{height:1174.500000px;}
.w0_c00228{width:731.977200px;}
.w1_c00228{width:732.000000px;}
.x0_c00228{left:0.000000px;}
.x1b_c00228{left:64.765200px;}
.x13_c00228{left:66.190200px;}
.x10_c00228{left:67.315200px;}
.xf_c00228{left:68.740200px;}
.x9_c00228{left:69.790200px;}
.x5_c00228{left:90.715200px;}
.x1c_c00228{left:96.490200px;}
.x14_c00228{left:98.290200px;}
.xc_c00228{left:100.390200px;}
.x6_c00228{left:106.540200px;}
.x7_c00228{left:112.990200px;}
.x8_c00228{left:135.340200px;}
.x15_c00228{left:141.790200px;}
.xa_c00228{left:175.690200px;}
.x16_c00228{left:257.365200px;}
.xb_c00228{left:261.715200px;}
.x1_c00228{left:281.140200px;}
.x2_c00228{left:502.915200px;}
.x3_c00228{left:509.365200px;}
.xd_c00228{left:511.165200px;}
.x11_c00228{left:532.390200px;}
.xe_c00228{left:542.515200px;}
.x17_c00228{left:548.590200px;}
.x18_c00228{left:551.140200px;}
.x19_c00228{left:559.090200px;}
.x1a_c00228{left:563.740200px;}
.x12_c00228{left:578.890200px;}
.x4_c00228{left:636.115200px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls0_c00228{letter-spacing:0.000000pt;}
.ws0_c00228{word-spacing:0.000000pt;}
.fs0_c00228{font-size:42.666667pt;}
.fs2_c00228{font-size:53.333333pt;}
.fs1_c00228{font-size:58.666667pt;}
.fs3_c00228{font-size:74.666667pt;}
.y0_c00228{bottom:0.000000pt;}
.y3d_c00228{bottom:89.786667pt;}
.y3c_c00228{bottom:107.720000pt;}
.y3b_c00228{bottom:126.253333pt;}
.y3a_c00228{bottom:144.453333pt;}
.y39_c00228{bottom:162.720000pt;}
.y38_c00228{bottom:180.920000pt;}
.y37_c00228{bottom:198.853333pt;}
.y36_c00228{bottom:216.786667pt;}
.y35_c00228{bottom:236.000000pt;}
.y34_c00228{bottom:254.253333pt;}
.y33_c00228{bottom:272.466667pt;}
.y32_c00228{bottom:291.386667pt;}
.y31_c00228{bottom:309.920000pt;}
.y30_c00228{bottom:328.466667pt;}
.y2f_c00228{bottom:347.053333pt;}
.y2e_c00228{bottom:365.586667pt;}
.y2d_c00228{bottom:384.120000pt;}
.y2c_c00228{bottom:402.720000pt;}
.y2b_c00228{bottom:421.920000pt;}
.y2a_c00228{bottom:440.786667pt;}
.y29_c00228{bottom:459.720000pt;}
.y26_c00228{bottom:478.520000pt;}
.y27_c00228{bottom:479.186667pt;}
.y28_c00228{bottom:479.520000pt;}
.y25_c00228{bottom:497.720000pt;}
.y24_c00228{bottom:516.000000pt;}
.y23_c00228{bottom:534.853333pt;}
.y22_c00228{bottom:554.720000pt;}
.y21_c00228{bottom:572.333333pt;}
.y20_c00228{bottom:591.186667pt;}
.y1f_c00228{bottom:610.120000pt;}
.y1e_c00228{bottom:628.666667pt;}
.y1d_c00228{bottom:629.586667pt;}
.y1c_c00228{bottom:630.520000pt;}
.y1b_c00228{bottom:647.520000pt;}
.y1a_c00228{bottom:668.253333pt;}
.y19_c00228{bottom:685.000000pt;}
.y18_c00228{bottom:703.520000pt;}
.y17_c00228{bottom:704.520000pt;}
.y16_c00228{bottom:723.386667pt;}
.y15_c00228{bottom:741.933333pt;}
.y14_c00228{bottom:761.133333pt;}
.y13_c00228{bottom:780.666667pt;}
.y12_c00228{bottom:798.853333pt;}
.y11_c00228{bottom:817.466667pt;}
.y10_c00228{bottom:836.000000pt;}
.yf_c00228{bottom:853.600000pt;}
.ye_c00228{bottom:853.933333pt;}
.yd_c00228{bottom:855.186667pt;}
.yc_c00228{bottom:873.466667pt;}
.yb_c00228{bottom:875.386667pt;}
.ya_c00228{bottom:876.333333pt;}
.y9_c00228{bottom:876.600000pt;}
.y8_c00228{bottom:894.853333pt;}
.y7_c00228{bottom:911.186667pt;}
.y5_c00228{bottom:915.333333pt;}
.y6_c00228{bottom:915.386667pt;}
.y4_c00228{bottom:961.133333pt;}
.y2_c00228{bottom:963.666667pt;}
.y1_c00228{bottom:964.933333pt;}
.y3_c00228{bottom:974.933333pt;}
.h1_c00228{height:41.875000pt;}
.h4_c00228{height:53.750000pt;}
.h2_c00228{height:57.578125pt;}
.h3_c00228{height:59.125000pt;}
.h5_c00228{height:73.244792pt;}
.h0_c00228{height:1044.000000pt;}
.w0_c00228{width:650.646400pt;}
.w1_c00228{width:650.666667pt;}
.x0_c00228{left:0.000000pt;}
.x1b_c00228{left:57.569067pt;}
.x13_c00228{left:58.835733pt;}
.x10_c00228{left:59.835733pt;}
.xf_c00228{left:61.102400pt;}
.x9_c00228{left:62.035733pt;}
.x5_c00228{left:80.635733pt;}
.x1c_c00228{left:85.769067pt;}
.x14_c00228{left:87.369067pt;}
.xc_c00228{left:89.235733pt;}
.x6_c00228{left:94.702400pt;}
.x7_c00228{left:100.435733pt;}
.x8_c00228{left:120.302400pt;}
.x15_c00228{left:126.035733pt;}
.xa_c00228{left:156.169067pt;}
.x16_c00228{left:228.769067pt;}
.xb_c00228{left:232.635733pt;}
.x1_c00228{left:249.902400pt;}
.x2_c00228{left:447.035733pt;}
.x3_c00228{left:452.769067pt;}
.xd_c00228{left:454.369067pt;}
.x11_c00228{left:473.235733pt;}
.xe_c00228{left:482.235733pt;}
.x17_c00228{left:487.635733pt;}
.x18_c00228{left:489.902400pt;}
.x19_c00228{left:496.969067pt;}
.x1a_c00228{left:501.102400pt;}
.x12_c00228{left:514.569067pt;}
.x4_c00228{left:565.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c63a4ac1e5145444ebaa3ace.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.432129;font-style:normal;font-weight:normal;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_85047a756243a4539158057f.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00229;src:url('chunks/assets/font_838cc309680edb3b26b8f67f.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00229;src:url('chunks/assets/font_b7a19450d32e8ee14a7b9f49.woff2')format("woff");}.ff4_c00229{font-family:ff4_c00229;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00229;src:url('chunks/assets/font_4bbbca507f95ce6357ee3d64.woff2')format("woff");}.ff5_c00229{font-family:ff5_c00229;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19_c00229{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00229{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00229{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m21_c00229{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb_c00229{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m17_c00229{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma_c00229{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00229{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00229{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8_c00229{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0_c00229{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10_c00229{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m11_c00229{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m12_c00229{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c00229{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c00229{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m13_c00229{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.me_c00229{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c00229{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00229{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m18_c00229{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m16_c00229{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c00229{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c00229{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00229{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c00229{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m23_c00229{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m20_c00229{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c00229{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c00229{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00229{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00229{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m5_c00229{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c00229{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m1_c00229{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00229{color:transparent;}
.fs5_c00229{font-size:54.000000px;}
.fs1_c00229{font-size:60.000000px;}
.fs0_c00229{font-size:66.000000px;}
.fs4_c00229{font-size:72.000000px;}
.fs3_c00229{font-size:78.000000px;}
.fs2_c00229{font-size:84.000000px;}
.y0_c00229{bottom:0.000000px;}
.y52_c00229{bottom:96.000000px;}
.y51_c00229{bottom:117.510000px;}
.y50_c00229{bottom:122.535000px;}
.y4f_c00229{bottom:139.125000px;}
.y4e_c00229{bottom:140.250000px;}
.y4d_c00229{bottom:161.760000px;}
.y4c_c00229{bottom:191.010000px;}
.y4a_c00229{bottom:204.585000px;}
.y49_c00229{bottom:204.660000px;}
.y4b_c00229{bottom:204.960000px;}
.y48_c00229{bottom:207.885000px;}
.y47_c00229{bottom:212.250000px;}
.y46_c00229{bottom:261.525000px;}
.y45_c00229{bottom:318.060000px;}
.y43_c00229{bottom:320.160000px;}
.y44_c00229{bottom:320.250000px;}
.y42_c00229{bottom:321.285000px;}
.y41_c00229{bottom:335.400000px;}
.y40_c00229{bottom:336.060000px;}
.y3f_c00229{bottom:336.435000px;}
.y3d_c00229{bottom:338.160000px;}
.y3e_c00229{bottom:338.250000px;}
.y3c_c00229{bottom:340.035000px;}
.y3b_c00229{bottom:342.585000px;}
.y3a_c00229{bottom:391.875000px;}
.y39_c00229{bottom:445.875000px;}
.y38_c00229{bottom:447.000000px;}
.y37_c00229{bottom:468.210000px;}
.y36_c00229{bottom:489.810000px;}
.y35_c00229{bottom:509.910000px;}
.y34_c00229{bottom:510.285000px;}
.y33_c00229{bottom:511.710000px;}
.y31_c00229{bottom:531.510000px;}
.y32_c00229{bottom:531.885000px;}
.y30_c00229{bottom:532.635000px;}
.y2f_c00229{bottom:554.250000px;}
.y2e_c00229{bottom:576.135000px;}
.y2d_c00229{bottom:597.750000px;}
.y2c_c00229{bottom:598.500000px;}
.y2b_c00229{bottom:598.875000px;}
.y2a_c00229{bottom:619.335000px;}
.y29_c00229{bottom:619.710000px;}
.y28_c00229{bottom:641.685000px;}
.y27_c00229{bottom:663.000000px;}
.y26_c00229{bottom:684.885000px;}
.y25_c00229{bottom:706.500000px;}
.y24_c00229{bottom:728.085000px;}
.y21_c00229{bottom:747.885000px;}
.y22_c00229{bottom:748.260000px;}
.y23_c00229{bottom:749.700000px;}
.y1c_c00229{bottom:770.925000px;}
.y1d_c00229{bottom:771.300000px;}
.y1e_c00229{bottom:771.675000px;}
.y1f_c00229{bottom:772.050000px;}
.y20_c00229{bottom:772.335000px;}
.y1b_c00229{bottom:793.275000px;}
.y1a_c00229{bottom:814.500000px;}
.y19_c00229{bottom:835.425000px;}
.y16_c00229{bottom:853.425000px;}
.y17_c00229{bottom:855.900000px;}
.y18_c00229{bottom:858.435000px;}
.y15_c00229{bottom:878.925000px;}
.y14_c00229{bottom:896.550000px;}
.y13_c00229{bottom:921.435000px;}
.y10_c00229{bottom:942.300000px;}
.y12_c00229{bottom:945.900000px;}
.y11_c00229{bottom:946.275000px;}
.yd_c00229{bottom:957.810000px;}
.ye_c00229{bottom:958.500000px;}
.yf_c00229{bottom:965.400000px;}
.yc_c00229{bottom:986.550000px;}
.yb_c00229{bottom:1007.835000px;}
.y8_c00229{bottom:1027.650000px;}
.ya_c00229{bottom:1030.500000px;}
.y9_c00229{bottom:1030.875000px;}
.y5_c00229{bottom:1049.250000px;}
.y7_c00229{bottom:1051.710000px;}
.y6_c00229{bottom:1052.085000px;}
.y1_c00229{bottom:1098.525000px;}
.y3_c00229{bottom:1106.460000px;}
.y4_c00229{bottom:1108.275000px;}
.y2_c00229{bottom:1112.775000px;}
.hb_c00229{height:56.320312px;}
.h3_c00229{height:58.857422px;}
.h2_c00229{height:58.886719px;}
.h5_c00229{height:64.775391px;}
.h1_c00229{height:68.835938px;}
.ha_c00229{height:70.628906px;}
.h8_c00229{height:70.664062px;}
.h6_c00229{height:76.552734px;}
.h7_c00229{height:78.609375px;}
.h9_c00229{height:82.400391px;}
.h4_c00229{height:82.441406px;}
.h0_c00229{height:1174.500000px;}
.w0_c00229{width:731.977200px;}
.w1_c00229{width:732.000000px;}
.x0_c00229{left:0.000000px;}
.x1d_c00229{left:47.140200px;}
.x1c_c00229{left:48.565200px;}
.x19_c00229{left:49.990200px;}
.x14_c00229{left:51.490200px;}
.xd_c00229{left:53.290200px;}
.x5_c00229{left:54.340200px;}
.x1_c00229{left:73.090200px;}
.x1e_c00229{left:78.790200px;}
.x39_c00229{left:79.915200px;}
.x1b_c00229{left:80.965200px;}
.x27_c00229{left:82.090200px;}
.xb_c00229{left:85.300200px;}
.x1a_c00229{left:88.540200px;}
.xc_c00229{left:95.365200px;}
.x2_c00229{left:100.090200px;}
.x28_c00229{left:109.390200px;}
.x33_c00229{left:114.115200px;}
.x2f_c00229{left:141.115200px;}
.x30_c00229{left:148.990200px;}
.x20_c00229{left:156.190200px;}
.x31_c00229{left:160.915200px;}
.x12_c00229{left:227.890200px;}
.x32_c00229{left:249.490200px;}
.x26_c00229{left:261.715200px;}
.x3_c00229{left:276.490200px;}
.x29_c00229{left:289.390200px;}
.x2a_c00229{left:304.540200px;}
.x2b_c00229{left:311.365200px;}
.x2c_c00229{left:324.340200px;}
.x15_c00229{left:345.565200px;}
.x38_c00229{left:359.965200px;}
.x4_c00229{left:364.690200px;}
.x13_c00229{left:377.590200px;}
.x25_c00229{left:386.275200px;}
.x16_c00229{left:424.765200px;}
.x21_c00229{left:492.490200px;}
.x2d_c00229{left:517.315200px;}
.x2e_c00229{left:525.565200px;}
.x17_c00229{left:548.590200px;}
.x34_c00229{left:558.340200px;}
.x23_c00229{left:570.565200px;}
.x35_c00229{left:574.165200px;}
.x24_c00229{left:575.590200px;}
.xe_c00229{left:576.715200px;}
.x8_c00229{left:581.740200px;}
.x1f_c00229{left:584.590200px;}
.x36_c00229{left:598.690200px;}
.xf_c00229{left:605.890200px;}
.x9_c00229{left:606.940200px;}
.x6_c00229{left:613.390200px;}
.x37_c00229{left:625.690200px;}
.x10_c00229{left:627.115200px;}
.x7_c00229{left:630.340200px;}
.x22_c00229{left:641.515200px;}
.xa_c00229{left:648.715200px;}
.x11_c00229{left:650.140200px;}
.x18_c00229{left:659.515200px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls0_c00229{letter-spacing:0.000000pt;}
.ws0_c00229{word-spacing:0.000000pt;}
.fs5_c00229{font-size:48.000000pt;}
.fs1_c00229{font-size:53.333333pt;}
.fs0_c00229{font-size:58.666667pt;}
.fs4_c00229{font-size:64.000000pt;}
.fs3_c00229{font-size:69.333333pt;}
.fs2_c00229{font-size:74.666667pt;}
.y0_c00229{bottom:0.000000pt;}
.y52_c00229{bottom:85.333333pt;}
.y51_c00229{bottom:104.453333pt;}
.y50_c00229{bottom:108.920000pt;}
.y4f_c00229{bottom:123.666667pt;}
.y4e_c00229{bottom:124.666667pt;}
.y4d_c00229{bottom:143.786667pt;}
.y4c_c00229{bottom:169.786667pt;}
.y4a_c00229{bottom:181.853333pt;}
.y49_c00229{bottom:181.920000pt;}
.y4b_c00229{bottom:182.186667pt;}
.y48_c00229{bottom:184.786667pt;}
.y47_c00229{bottom:188.666667pt;}
.y46_c00229{bottom:232.466667pt;}
.y45_c00229{bottom:282.720000pt;}
.y43_c00229{bottom:284.586667pt;}
.y44_c00229{bottom:284.666667pt;}
.y42_c00229{bottom:285.586667pt;}
.y41_c00229{bottom:298.133333pt;}
.y40_c00229{bottom:298.720000pt;}
.y3f_c00229{bottom:299.053333pt;}
.y3d_c00229{bottom:300.586667pt;}
.y3e_c00229{bottom:300.666667pt;}
.y3c_c00229{bottom:302.253333pt;}
.y3b_c00229{bottom:304.520000pt;}
.y3a_c00229{bottom:348.333333pt;}
.y39_c00229{bottom:396.333333pt;}
.y38_c00229{bottom:397.333333pt;}
.y37_c00229{bottom:416.186667pt;}
.y36_c00229{bottom:435.386667pt;}
.y35_c00229{bottom:453.253333pt;}
.y34_c00229{bottom:453.586667pt;}
.y33_c00229{bottom:454.853333pt;}
.y31_c00229{bottom:472.453333pt;}
.y32_c00229{bottom:472.786667pt;}
.y30_c00229{bottom:473.453333pt;}
.y2f_c00229{bottom:492.666667pt;}
.y2e_c00229{bottom:512.120000pt;}
.y2d_c00229{bottom:531.333333pt;}
.y2c_c00229{bottom:532.000000pt;}
.y2b_c00229{bottom:532.333333pt;}
.y2a_c00229{bottom:550.520000pt;}
.y29_c00229{bottom:550.853333pt;}
.y28_c00229{bottom:570.386667pt;}
.y27_c00229{bottom:589.333333pt;}
.y26_c00229{bottom:608.786667pt;}
.y25_c00229{bottom:628.000000pt;}
.y24_c00229{bottom:647.186667pt;}
.y21_c00229{bottom:664.786667pt;}
.y22_c00229{bottom:665.120000pt;}
.y23_c00229{bottom:666.400000pt;}
.y1c_c00229{bottom:685.266667pt;}
.y1d_c00229{bottom:685.600000pt;}
.y1e_c00229{bottom:685.933333pt;}
.y1f_c00229{bottom:686.266667pt;}
.y20_c00229{bottom:686.520000pt;}
.y1b_c00229{bottom:705.133333pt;}
.y1a_c00229{bottom:724.000000pt;}
.y19_c00229{bottom:742.600000pt;}
.y16_c00229{bottom:758.600000pt;}
.y17_c00229{bottom:760.800000pt;}
.y18_c00229{bottom:763.053333pt;}
.y15_c00229{bottom:781.266667pt;}
.y14_c00229{bottom:796.933333pt;}
.y13_c00229{bottom:819.053333pt;}
.y10_c00229{bottom:837.600000pt;}
.y12_c00229{bottom:840.800000pt;}
.y11_c00229{bottom:841.133333pt;}
.yd_c00229{bottom:851.386667pt;}
.ye_c00229{bottom:852.000000pt;}
.yf_c00229{bottom:858.133333pt;}
.yc_c00229{bottom:876.933333pt;}
.yb_c00229{bottom:895.853333pt;}
.y8_c00229{bottom:913.466667pt;}
.ya_c00229{bottom:916.000000pt;}
.y9_c00229{bottom:916.333333pt;}
.y5_c00229{bottom:932.666667pt;}
.y7_c00229{bottom:934.853333pt;}
.y6_c00229{bottom:935.186667pt;}
.y1_c00229{bottom:976.466667pt;}
.y3_c00229{bottom:983.520000pt;}
.y4_c00229{bottom:985.133333pt;}
.y2_c00229{bottom:989.133333pt;}
.hb_c00229{height:50.062500pt;}
.h3_c00229{height:52.317708pt;}
.h2_c00229{height:52.343750pt;}
.h5_c00229{height:57.578125pt;}
.h1_c00229{height:61.187500pt;}
.ha_c00229{height:62.781250pt;}
.h8_c00229{height:62.812500pt;}
.h6_c00229{height:68.046875pt;}
.h7_c00229{height:69.875000pt;}
.h9_c00229{height:73.244792pt;}
.h4_c00229{height:73.281250pt;}
.h0_c00229{height:1044.000000pt;}
.w0_c00229{width:650.646400pt;}
.w1_c00229{width:650.666667pt;}
.x0_c00229{left:0.000000pt;}
.x1d_c00229{left:41.902400pt;}
.x1c_c00229{left:43.169067pt;}
.x19_c00229{left:44.435733pt;}
.x14_c00229{left:45.769067pt;}
.xd_c00229{left:47.369067pt;}
.x5_c00229{left:48.302400pt;}
.x1_c00229{left:64.969067pt;}
.x1e_c00229{left:70.035733pt;}
.x39_c00229{left:71.035733pt;}
.x1b_c00229{left:71.969067pt;}
.x27_c00229{left:72.969067pt;}
.xb_c00229{left:75.822400pt;}
.x1a_c00229{left:78.702400pt;}
.xc_c00229{left:84.769067pt;}
.x2_c00229{left:88.969067pt;}
.x28_c00229{left:97.235733pt;}
.x33_c00229{left:101.435733pt;}
.x2f_c00229{left:125.435733pt;}
.x30_c00229{left:132.435733pt;}
.x20_c00229{left:138.835733pt;}
.x31_c00229{left:143.035733pt;}
.x12_c00229{left:202.569067pt;}
.x32_c00229{left:221.769067pt;}
.x26_c00229{left:232.635733pt;}
.x3_c00229{left:245.769067pt;}
.x29_c00229{left:257.235733pt;}
.x2a_c00229{left:270.702400pt;}
.x2b_c00229{left:276.769067pt;}
.x2c_c00229{left:288.302400pt;}
.x15_c00229{left:307.169067pt;}
.x38_c00229{left:319.969067pt;}
.x4_c00229{left:324.169067pt;}
.x13_c00229{left:335.635733pt;}
.x25_c00229{left:343.355733pt;}
.x16_c00229{left:377.569067pt;}
.x21_c00229{left:437.769067pt;}
.x2d_c00229{left:459.835733pt;}
.x2e_c00229{left:467.169067pt;}
.x17_c00229{left:487.635733pt;}
.x34_c00229{left:496.302400pt;}
.x23_c00229{left:507.169067pt;}
.x35_c00229{left:510.369067pt;}
.x24_c00229{left:511.635733pt;}
.xe_c00229{left:512.635733pt;}
.x8_c00229{left:517.102400pt;}
.x1f_c00229{left:519.635733pt;}
.x36_c00229{left:532.169067pt;}
.xf_c00229{left:538.569067pt;}
.x9_c00229{left:539.502400pt;}
.x6_c00229{left:545.235733pt;}
.x37_c00229{left:556.169067pt;}
.x10_c00229{left:557.435733pt;}
.x7_c00229{left:560.302400pt;}
.x22_c00229{left:570.235733pt;}
.xa_c00229{left:576.635733pt;}
.x11_c00229{left:577.902400pt;}
.x18_c00229{left:586.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eca5fec595ce407bd1b959c7.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00230;src:url('chunks/assets/font_b1556241d553b6c370ad17fe.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00230;src:url('chunks/assets/font_535edbdab152b9a5e0708daf.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c00230{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m7_c00230{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1_c00230{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c00230{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m0_c00230{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c00230{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00230{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00230{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00230{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00230{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c00230{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00230{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00230{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c00230{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10_c00230{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8_c00230{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c00230{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c00230{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c00230{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00230{color:transparent;}
.fs0_c00230{font-size:60.000000px;}
.fs1_c00230{font-size:66.000000px;}
.fs3_c00230{font-size:72.000000px;}
.fs2_c00230{font-size:78.000000px;}
.y0_c00230{bottom:0.000000px;}
.y38_c00230{bottom:98.085000px;}
.y37_c00230{bottom:118.560000px;}
.y36_c00230{bottom:139.125000px;}
.y35_c00230{bottom:159.285000px;}
.y34_c00230{bottom:179.835000px;}
.y33_c00230{bottom:200.385000px;}
.y32_c00230{bottom:220.500000px;}
.y31_c00230{bottom:241.335000px;}
.y30_c00230{bottom:261.900000px;}
.y2f_c00230{bottom:282.810000px;}
.y2e_c00230{bottom:304.035000px;}
.y2c_c00230{bottom:324.210000px;}
.y2d_c00230{bottom:325.560000px;}
.y2b_c00230{bottom:345.810000px;}
.y2a_c00230{bottom:366.660000px;}
.y29_c00230{bottom:387.900000px;}
.y28_c00230{bottom:408.435000px;}
.y27_c00230{bottom:429.660000px;}
.y26_c00230{bottom:450.885000px;}
.y23_c00230{bottom:472.125000px;}
.y24_c00230{bottom:472.875000px;}
.y25_c00230{bottom:473.250000px;}
.y22_c00230{bottom:493.410000px;}
.y21_c00230{bottom:515.010000px;}
.y20_c00230{bottom:536.250000px;}
.y1f_c00230{bottom:557.085000px;}
.y1e_c00230{bottom:578.385000px;}
.y1d_c00230{bottom:599.535000px;}
.y1c_c00230{bottom:620.835000px;}
.y1b_c00230{bottom:641.310000px;}
.y1a_c00230{bottom:642.060000px;}
.y19_c00230{bottom:663.285000px;}
.y18_c00230{bottom:684.210000px;}
.y17_c00230{bottom:705.435000px;}
.y16_c00230{bottom:728.085000px;}
.y15_c00230{bottom:747.885000px;}
.y14_c00230{bottom:769.500000px;}
.y13_c00230{bottom:790.425000px;}
.y12_c00230{bottom:812.025000px;}
.y11_c00230{bottom:833.250000px;}
.y10_c00230{bottom:854.775000px;}
.yf_c00230{bottom:876.060000px;}
.ye_c00230{bottom:897.000000px;}
.yc_c00230{bottom:918.525000px;}
.yd_c00230{bottom:918.585000px;}
.yb_c00230{bottom:936.525000px;}
.ya_c00230{bottom:938.025000px;}
.y9_c00230{bottom:939.435000px;}
.y8_c00230{bottom:959.925000px;}
.y7_c00230{bottom:980.460000px;}
.y6_c00230{bottom:1002.375000px;}
.y5_c00230{bottom:1023.675000px;}
.y4_c00230{bottom:1079.085000px;}
.y3_c00230{bottom:1082.025000px;}
.y2_c00230{bottom:1082.685000px;}
.y1_c00230{bottom:1083.810000px;}
.h1_c00230{height:58.886719px;}
.h2_c00230{height:60.468750px;}
.h3_c00230{height:64.775391px;}
.h5_c00230{height:70.628906px;}
.h4_c00230{height:76.552734px;}
.h0_c00230{height:1174.500000px;}
.w0_c00230{width:731.977200px;}
.w1_c00230{width:732.000000px;}
.x0_c00230{left:0.000000px;}
.x5_c00230{left:66.190200px;}
.x8_c00230{left:67.690200px;}
.x11_c00230{left:68.740200px;}
.x12_c00230{left:70.165200px;}
.x9_c00230{left:87.115200px;}
.xa_c00230{left:99.340200px;}
.x10_c00230{left:100.390200px;}
.xf_c00230{left:192.190200px;}
.x1_c00230{left:276.115200px;}
.x2_c00230{left:303.115200px;}
.x6_c00230{left:466.915200px;}
.x3_c00230{left:471.190200px;}
.x7_c00230{left:474.790200px;}
.xd_c00230{left:537.790200px;}
.xb_c00230{left:583.540200px;}
.xc_c00230{left:585.715200px;}
.xe_c00230{left:619.540200px;}
.x4_c00230{left:633.565200px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls0_c00230{letter-spacing:0.000000pt;}
.ws0_c00230{word-spacing:0.000000pt;}
.fs0_c00230{font-size:53.333333pt;}
.fs1_c00230{font-size:58.666667pt;}
.fs3_c00230{font-size:64.000000pt;}
.fs2_c00230{font-size:69.333333pt;}
.y0_c00230{bottom:0.000000pt;}
.y38_c00230{bottom:87.186667pt;}
.y37_c00230{bottom:105.386667pt;}
.y36_c00230{bottom:123.666667pt;}
.y35_c00230{bottom:141.586667pt;}
.y34_c00230{bottom:159.853333pt;}
.y33_c00230{bottom:178.120000pt;}
.y32_c00230{bottom:196.000000pt;}
.y31_c00230{bottom:214.520000pt;}
.y30_c00230{bottom:232.800000pt;}
.y2f_c00230{bottom:251.386667pt;}
.y2e_c00230{bottom:270.253333pt;}
.y2c_c00230{bottom:288.186667pt;}
.y2d_c00230{bottom:289.386667pt;}
.y2b_c00230{bottom:307.386667pt;}
.y2a_c00230{bottom:325.920000pt;}
.y29_c00230{bottom:344.800000pt;}
.y28_c00230{bottom:363.053333pt;}
.y27_c00230{bottom:381.920000pt;}
.y26_c00230{bottom:400.786667pt;}
.y23_c00230{bottom:419.666667pt;}
.y24_c00230{bottom:420.333333pt;}
.y25_c00230{bottom:420.666667pt;}
.y22_c00230{bottom:438.586667pt;}
.y21_c00230{bottom:457.786667pt;}
.y20_c00230{bottom:476.666667pt;}
.y1f_c00230{bottom:495.186667pt;}
.y1e_c00230{bottom:514.120000pt;}
.y1d_c00230{bottom:532.920000pt;}
.y1c_c00230{bottom:551.853333pt;}
.y1b_c00230{bottom:570.053333pt;}
.y1a_c00230{bottom:570.720000pt;}
.y19_c00230{bottom:589.586667pt;}
.y18_c00230{bottom:608.186667pt;}
.y17_c00230{bottom:627.053333pt;}
.y16_c00230{bottom:647.186667pt;}
.y15_c00230{bottom:664.786667pt;}
.y14_c00230{bottom:684.000000pt;}
.y13_c00230{bottom:702.600000pt;}
.y12_c00230{bottom:721.800000pt;}
.y11_c00230{bottom:740.666667pt;}
.y10_c00230{bottom:759.800000pt;}
.yf_c00230{bottom:778.720000pt;}
.ye_c00230{bottom:797.333333pt;}
.yc_c00230{bottom:816.466667pt;}
.yd_c00230{bottom:816.520000pt;}
.yb_c00230{bottom:832.466667pt;}
.ya_c00230{bottom:833.800000pt;}
.y9_c00230{bottom:835.053333pt;}
.y8_c00230{bottom:853.266667pt;}
.y7_c00230{bottom:871.520000pt;}
.y6_c00230{bottom:891.000000pt;}
.y5_c00230{bottom:909.933333pt;}
.y4_c00230{bottom:959.186667pt;}
.y3_c00230{bottom:961.800000pt;}
.y2_c00230{bottom:962.386667pt;}
.y1_c00230{bottom:963.386667pt;}
.h1_c00230{height:52.343750pt;}
.h2_c00230{height:53.750000pt;}
.h3_c00230{height:57.578125pt;}
.h5_c00230{height:62.781250pt;}
.h4_c00230{height:68.046875pt;}
.h0_c00230{height:1044.000000pt;}
.w0_c00230{width:650.646400pt;}
.w1_c00230{width:650.666667pt;}
.x0_c00230{left:0.000000pt;}
.x5_c00230{left:58.835733pt;}
.x8_c00230{left:60.169067pt;}
.x11_c00230{left:61.102400pt;}
.x12_c00230{left:62.369067pt;}
.x9_c00230{left:77.435733pt;}
.xa_c00230{left:88.302400pt;}
.x10_c00230{left:89.235733pt;}
.xf_c00230{left:170.835733pt;}
.x1_c00230{left:245.435733pt;}
.x2_c00230{left:269.435733pt;}
.x6_c00230{left:415.035733pt;}
.x3_c00230{left:418.835733pt;}
.x7_c00230{left:422.035733pt;}
.xd_c00230{left:478.035733pt;}
.xb_c00230{left:518.702400pt;}
.xc_c00230{left:520.635733pt;}
.xe_c00230{left:550.702400pt;}
.x4_c00230{left:563.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_99e35e1543833a75d2bbff6e.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00231;src:url('chunks/assets/font_973a0875235933886c035d43.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00231;src:url('chunks/assets/font_62945aed2263c9c1abd7f97f.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00231;src:url('chunks/assets/font_31d5c584a40f260f48eedd0f.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00231{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00231{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00231{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c00231{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c00231{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17_c00231{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00231{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5_c00231{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c00231{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c00231{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m14_c00231{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c00231{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00231{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m12_c00231{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00231{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00231{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c00231{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00231{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00231{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c00231{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c00231{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00231{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c00231{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00231{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m19_c00231{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m7_c00231{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m16_c00231{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1_c00231{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00231{color:transparent;}
.fs1_c00231{font-size:60.000000px;}
.fs0_c00231{font-size:66.000000px;}
.fs2_c00231{font-size:72.000000px;}
.fs3_c00231{font-size:78.000000px;}
.y0_c00231{bottom:0.000000px;}
.y46_c00231{bottom:95.535000px;}
.y47_c00231{bottom:96.285000px;}
.y45_c00231{bottom:97.035000px;}
.y44_c00231{bottom:98.085000px;}
.y43_c00231{bottom:103.875000px;}
.y42_c00231{bottom:130.500000px;}
.y41_c00231{bottom:138.810000px;}
.y40_c00231{bottom:139.125000px;}
.y3f_c00231{bottom:140.910000px;}
.y3e_c00231{bottom:146.010000px;}
.y3d_c00231{bottom:163.635000px;}
.y3c_c00231{bottom:185.535000px;}
.y3b_c00231{bottom:206.835000px;}
.y3a_c00231{bottom:234.510000px;}
.y39_c00231{bottom:235.935000px;}
.y38_c00231{bottom:248.535000px;}
.y37_c00231{bottom:251.085000px;}
.y36_c00231{bottom:258.285000px;}
.y35_c00231{bottom:270.210000px;}
.y34_c00231{bottom:274.125000px;}
.y33_c00231{bottom:279.900000px;}
.y32_c00231{bottom:291.750000px;}
.y31_c00231{bottom:296.460000px;}
.y30_c00231{bottom:315.900000px;}
.y2f_c00231{bottom:322.410000px;}
.y2e_c00231{bottom:342.525000px;}
.y2d_c00231{bottom:359.460000px;}
.y2c_c00231{bottom:384.660000px;}
.y2b_c00231{bottom:403.710000px;}
.y2a_c00231{bottom:425.010000px;}
.y29_c00231{bottom:447.285000px;}
.y28_c00231{bottom:468.585000px;}
.y27_c00231{bottom:491.250000px;}
.y26_c00231{bottom:512.085000px;}
.y25_c00231{bottom:532.260000px;}
.y24_c00231{bottom:534.060000px;}
.y23_c00231{bottom:555.285000px;}
.y22_c00231{bottom:576.585000px;}
.y21_c00231{bottom:599.535000px;}
.y20_c00231{bottom:620.460000px;}
.y1f_c00231{bottom:642.435000px;}
.y1e_c00231{bottom:664.035000px;}
.y1d_c00231{bottom:685.635000px;}
.y1c_c00231{bottom:707.250000px;}
.y1b_c00231{bottom:729.135000px;}
.y1a_c00231{bottom:749.325000px;}
.y18_c00231{bottom:771.300000px;}
.y19_c00231{bottom:772.710000px;}
.y17_c00231{bottom:794.310000px;}
.y16_c00231{bottom:815.925000px;}
.y15_c00231{bottom:836.835000px;}
.y14_c00231{bottom:852.675000px;}
.y12_c00231{bottom:878.625000px;}
.y13_c00231{bottom:880.710000px;}
.y11_c00231{bottom:900.900000px;}
.ye_c00231{bottom:921.060000px;}
.yf_c00231{bottom:924.585000px;}
.y10_c00231{bottom:924.675000px;}
.yb_c00231{bottom:941.250000px;}
.yc_c00231{bottom:944.460000px;}
.yd_c00231{bottom:946.275000px;}
.y8_c00231{bottom:964.560000px;}
.ya_c00231{bottom:967.875000px;}
.y9_c00231{bottom:968.250000px;}
.y7_c00231{bottom:984.060000px;}
.y6_c00231{bottom:1008.900000px;}
.y5_c00231{bottom:1030.125000px;}
.y4_c00231{bottom:1051.050000px;}
.y1_c00231{bottom:1099.935000px;}
.y3_c00231{bottom:1108.185000px;}
.y2_c00231{bottom:1114.425000px;}
.h2_c00231{height:58.886719px;}
.h1_c00231{height:66.515625px;}
.h3_c00231{height:70.664062px;}
.h4_c00231{height:76.514648px;}
.h5_c00231{height:76.552734px;}
.h6_c00231{height:78.609375px;}
.h0_c00231{height:1174.500000px;}
.w0_c00231{width:731.977200px;}
.w1_c00231{width:732.000000px;}
.x0_c00231{left:0.000000px;}
.x1e_c00231{left:45.340200px;}
.x1c_c00231{left:46.390200px;}
.x13_c00231{left:47.515200px;}
.x18_c00231{left:48.565200px;}
.xf_c00231{left:49.690200px;}
.xe_c00231{left:51.115200px;}
.x8_c00231{left:53.290200px;}
.x4_c00231{left:55.390200px;}
.x16_c00231{left:67.690200px;}
.x1_c00231{left:74.890200px;}
.x14_c00231{left:79.165200px;}
.x12_c00231{left:81.340200px;}
.xd_c00231{left:83.515200px;}
.x5_c00231{left:84.925200px;}
.x2_c00231{left:102.940200px;}
.x17_c00231{left:112.315200px;}
.x1d_c00231{left:117.715200px;}
.x3_c00231{left:279.715200px;}
.x10_c00231{left:334.765200px;}
.x22_c00231{left:354.565200px;}
.x9_c00231{left:357.790200px;}
.x11_c00231{left:362.140200px;}
.x23_c00231{left:397.390200px;}
.x1f_c00231{left:414.715200px;}
.x19_c00231{left:429.775200px;}
.xa_c00231{left:441.340200px;}
.x20_c00231{left:472.990200px;}
.xb_c00231{left:478.090200px;}
.x6_c00231{left:504.715200px;}
.x7_c00231{left:527.365200px;}
.x1a_c00231{left:553.690200px;}
.x24_c00231{left:586.765200px;}
.x1b_c00231{left:601.915200px;}
.xc_c00231{left:623.890200px;}
.x15_c00231{left:655.165200px;}
.x21_c00231{left:658.765200px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ws0_c00231{word-spacing:0.000000pt;}
.fs1_c00231{font-size:53.333333pt;}
.fs0_c00231{font-size:58.666667pt;}
.fs2_c00231{font-size:64.000000pt;}
.fs3_c00231{font-size:69.333333pt;}
.y0_c00231{bottom:0.000000pt;}
.y46_c00231{bottom:84.920000pt;}
.y47_c00231{bottom:85.586667pt;}
.y45_c00231{bottom:86.253333pt;}
.y44_c00231{bottom:87.186667pt;}
.y43_c00231{bottom:92.333333pt;}
.y42_c00231{bottom:116.000000pt;}
.y41_c00231{bottom:123.386667pt;}
.y40_c00231{bottom:123.666667pt;}
.y3f_c00231{bottom:125.253333pt;}
.y3e_c00231{bottom:129.786667pt;}
.y3d_c00231{bottom:145.453333pt;}
.y3c_c00231{bottom:164.920000pt;}
.y3b_c00231{bottom:183.853333pt;}
.y3a_c00231{bottom:208.453333pt;}
.y39_c00231{bottom:209.720000pt;}
.y38_c00231{bottom:220.920000pt;}
.y37_c00231{bottom:223.186667pt;}
.y36_c00231{bottom:229.586667pt;}
.y35_c00231{bottom:240.186667pt;}
.y34_c00231{bottom:243.666667pt;}
.y33_c00231{bottom:248.800000pt;}
.y32_c00231{bottom:259.333333pt;}
.y31_c00231{bottom:263.520000pt;}
.y30_c00231{bottom:280.800000pt;}
.y2f_c00231{bottom:286.586667pt;}
.y2e_c00231{bottom:304.466667pt;}
.y2d_c00231{bottom:319.520000pt;}
.y2c_c00231{bottom:341.920000pt;}
.y2b_c00231{bottom:358.853333pt;}
.y2a_c00231{bottom:377.786667pt;}
.y29_c00231{bottom:397.586667pt;}
.y28_c00231{bottom:416.520000pt;}
.y27_c00231{bottom:436.666667pt;}
.y26_c00231{bottom:455.186667pt;}
.y25_c00231{bottom:473.120000pt;}
.y24_c00231{bottom:474.720000pt;}
.y23_c00231{bottom:493.586667pt;}
.y22_c00231{bottom:512.520000pt;}
.y21_c00231{bottom:532.920000pt;}
.y20_c00231{bottom:551.520000pt;}
.y1f_c00231{bottom:571.053333pt;}
.y1e_c00231{bottom:590.253333pt;}
.y1d_c00231{bottom:609.453333pt;}
.y1c_c00231{bottom:628.666667pt;}
.y1b_c00231{bottom:648.120000pt;}
.y1a_c00231{bottom:666.066667pt;}
.y18_c00231{bottom:685.600000pt;}
.y19_c00231{bottom:686.853333pt;}
.y17_c00231{bottom:706.053333pt;}
.y16_c00231{bottom:725.266667pt;}
.y15_c00231{bottom:743.853333pt;}
.y14_c00231{bottom:757.933333pt;}
.y12_c00231{bottom:781.000000pt;}
.y13_c00231{bottom:782.853333pt;}
.y11_c00231{bottom:800.800000pt;}
.ye_c00231{bottom:818.720000pt;}
.yf_c00231{bottom:821.853333pt;}
.y10_c00231{bottom:821.933333pt;}
.yb_c00231{bottom:836.666667pt;}
.yc_c00231{bottom:839.520000pt;}
.yd_c00231{bottom:841.133333pt;}
.y8_c00231{bottom:857.386667pt;}
.ya_c00231{bottom:860.333333pt;}
.y9_c00231{bottom:860.666667pt;}
.y7_c00231{bottom:874.720000pt;}
.y6_c00231{bottom:896.800000pt;}
.y5_c00231{bottom:915.666667pt;}
.y4_c00231{bottom:934.266667pt;}
.y1_c00231{bottom:977.720000pt;}
.y3_c00231{bottom:985.053333pt;}
.y2_c00231{bottom:990.600000pt;}
.h2_c00231{height:52.343750pt;}
.h1_c00231{height:59.125000pt;}
.h3_c00231{height:62.812500pt;}
.h4_c00231{height:68.013021pt;}
.h5_c00231{height:68.046875pt;}
.h6_c00231{height:69.875000pt;}
.h0_c00231{height:1044.000000pt;}
.w0_c00231{width:650.646400pt;}
.w1_c00231{width:650.666667pt;}
.x0_c00231{left:0.000000pt;}
.x1e_c00231{left:40.302400pt;}
.x1c_c00231{left:41.235733pt;}
.x13_c00231{left:42.235733pt;}
.x18_c00231{left:43.169067pt;}
.xf_c00231{left:44.169067pt;}
.xe_c00231{left:45.435733pt;}
.x8_c00231{left:47.369067pt;}
.x4_c00231{left:49.235733pt;}
.x16_c00231{left:60.169067pt;}
.x1_c00231{left:66.569067pt;}
.x14_c00231{left:70.369067pt;}
.x12_c00231{left:72.302400pt;}
.xd_c00231{left:74.235733pt;}
.x5_c00231{left:75.489067pt;}
.x2_c00231{left:91.502400pt;}
.x17_c00231{left:99.835733pt;}
.x1d_c00231{left:104.635733pt;}
.x3_c00231{left:248.635733pt;}
.x10_c00231{left:297.569067pt;}
.x22_c00231{left:315.169067pt;}
.x9_c00231{left:318.035733pt;}
.x11_c00231{left:321.902400pt;}
.x23_c00231{left:353.235733pt;}
.x1f_c00231{left:368.635733pt;}
.x19_c00231{left:382.022400pt;}
.xa_c00231{left:392.302400pt;}
.x20_c00231{left:420.435733pt;}
.xb_c00231{left:424.969067pt;}
.x6_c00231{left:448.635733pt;}
.x7_c00231{left:468.769067pt;}
.x1a_c00231{left:492.169067pt;}
.x24_c00231{left:521.569067pt;}
.x1b_c00231{left:535.035733pt;}
.xc_c00231{left:554.569067pt;}
.x15_c00231{left:582.369067pt;}
.x21_c00231{left:585.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8dabb51ecab290c0359ac548.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00232;src:url('chunks/assets/font_8c17c7bde080688d230b8ab1.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00232;src:url('chunks/assets/font_1a7a693abb29a461a1ee2ca4.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00232{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m3_c00232{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_c00232{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c00232{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c00232{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c00232{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00232{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00232{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c00232{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00232{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00232{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00232{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c00232{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.ls0_c00232{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00232{color:transparent;}
.fs4_c00232{font-size:54.000000px;}
.fs0_c00232{font-size:60.000000px;}
.fs1_c00232{font-size:72.000000px;}
.fs2_c00232{font-size:78.000000px;}
.fs3_c00232{font-size:96.000000px;}
.y0_c00232{bottom:0.000000px;}
.yc_c00232{bottom:797.925000px;}
.yb_c00232{bottom:827.085000px;}
.ya_c00232{bottom:871.335000px;}
.y9_c00232{bottom:916.050000px;}
.y8_c00232{bottom:936.900000px;}
.y7_c00232{bottom:958.125000px;}
.y6_c00232{bottom:979.050000px;}
.y5_c00232{bottom:979.710000px;}
.y4_c00232{bottom:1001.025000px;}
.y3_c00232{bottom:1022.250000px;}
.y2_c00232{bottom:1079.775000px;}
.y1_c00232{bottom:1082.310000px;}
.h6_c00232{height:52.998047px;}
.h1_c00232{height:58.886719px;}
.h2_c00232{height:60.468750px;}
.h3_c00232{height:70.664062px;}
.h4_c00232{height:76.514648px;}
.h5_c00232{height:94.218750px;}
.h0_c00232{height:1174.500000px;}
.w0_c00232{width:731.977200px;}
.w1_c00232{width:732.000000px;}
.x0_c00232{left:0.000000px;}
.x5_c00232{left:52.540200px;}
.x6_c00232{left:74.890200px;}
.x8_c00232{left:86.740200px;}
.x9_c00232{left:90.340200px;}
.x1_c00232{left:264.940200px;}
.x2_c00232{left:291.565200px;}
.xc_c00232{left:352.090200px;}
.xa_c00232{left:386.275200px;}
.xb_c00232{left:415.765200px;}
.x7_c00232{left:425.515200px;}
.x3_c00232{left:459.340200px;}
.xd_c00232{left:514.390200px;}
.x4_c00232{left:622.090200px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls0_c00232{letter-spacing:0.000000pt;}
.ws0_c00232{word-spacing:0.000000pt;}
.fs4_c00232{font-size:48.000000pt;}
.fs0_c00232{font-size:53.333333pt;}
.fs1_c00232{font-size:64.000000pt;}
.fs2_c00232{font-size:69.333333pt;}
.fs3_c00232{font-size:85.333333pt;}
.y0_c00232{bottom:0.000000pt;}
.yc_c00232{bottom:709.266667pt;}
.yb_c00232{bottom:735.186667pt;}
.ya_c00232{bottom:774.520000pt;}
.y9_c00232{bottom:814.266667pt;}
.y8_c00232{bottom:832.800000pt;}
.y7_c00232{bottom:851.666667pt;}
.y6_c00232{bottom:870.266667pt;}
.y5_c00232{bottom:870.853333pt;}
.y4_c00232{bottom:889.800000pt;}
.y3_c00232{bottom:908.666667pt;}
.y2_c00232{bottom:959.800000pt;}
.y1_c00232{bottom:962.053333pt;}
.h6_c00232{height:47.109375pt;}
.h1_c00232{height:52.343750pt;}
.h2_c00232{height:53.750000pt;}
.h3_c00232{height:62.812500pt;}
.h4_c00232{height:68.013021pt;}
.h5_c00232{height:83.750000pt;}
.h0_c00232{height:1044.000000pt;}
.w0_c00232{width:650.646400pt;}
.w1_c00232{width:650.666667pt;}
.x0_c00232{left:0.000000pt;}
.x5_c00232{left:46.702400pt;}
.x6_c00232{left:66.569067pt;}
.x8_c00232{left:77.102400pt;}
.x9_c00232{left:80.302400pt;}
.x1_c00232{left:235.502400pt;}
.x2_c00232{left:259.169067pt;}
.xc_c00232{left:312.969067pt;}
.xa_c00232{left:343.355733pt;}
.xb_c00232{left:369.569067pt;}
.x7_c00232{left:378.235733pt;}
.x3_c00232{left:408.302400pt;}
.xd_c00232{left:457.235733pt;}
.x4_c00232{left:552.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4669b0f3b1a8e89c72e2bd78.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00233;src:url('chunks/assets/font_526928cd73278c78359d842c.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00233;src:url('chunks/assets/font_1f3a8b8a7497aaa7950d65fe.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00233;src:url('chunks/assets/font_d488adc09fefa21522b4e0dc.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00233{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m4_c00233{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00233{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00233{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m14_c00233{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c00233{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c00233{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00233{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00233{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mc_c00233{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17_c00233{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c00233{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m16_c00233{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00233{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00233{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m18_c00233{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00233{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00233{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c00233{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00233{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00233{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00233{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00233{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c00233{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c00233{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6_c00233{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1_c00233{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.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;}
}
.ws0_c00233{word-spacing:0.000000px;}
.fc0_c00233{color:transparent;}
.fs1_c00233{font-size:60.000000px;}
.fs0_c00233{font-size:66.000000px;}
.fs4_c00233{font-size:72.000000px;}
.fs3_c00233{font-size:78.000000px;}
.fs2_c00233{font-size:192.000000px;}
.y0_c00233{bottom:0.000000px;}
.y37_c00233{bottom:103.500000px;}
.y36_c00233{bottom:116.085000px;}
.y35_c00233{bottom:120.060000px;}
.y34_c00233{bottom:125.085000px;}
.y33_c00233{bottom:138.435000px;}
.y32_c00233{bottom:139.125000px;}
.y31_c00233{bottom:161.085000px;}
.y30_c00233{bottom:182.685000px;}
.y2f_c00233{bottom:204.285000px;}
.y2e_c00233{bottom:226.260000px;}
.y2d_c00233{bottom:248.250000px;}
.y2c_c00233{bottom:269.085000px;}
.y2b_c00233{bottom:272.400000px;}
.y2a_c00233{bottom:291.810000px;}
.y29_c00233{bottom:296.085000px;}
.y28_c00233{bottom:314.085000px;}
.y27_c00233{bottom:316.935000px;}
.y26_c00233{bottom:335.310000px;}
.y25_c00233{bottom:357.285000px;}
.y24_c00233{bottom:379.275000px;}
.y23_c00233{bottom:400.500000px;}
.y22_c00233{bottom:401.250000px;}
.y21_c00233{bottom:422.835000px;}
.y20_c00233{bottom:423.210000px;}
.y1f_c00233{bottom:423.510000px;}
.y1e_c00233{bottom:445.125000px;}
.y1d_c00233{bottom:466.710000px;}
.y1c_c00233{bottom:488.310000px;}
.y1b_c00233{bottom:509.910000px;}
.y1a_c00233{bottom:531.510000px;}
.y19_c00233{bottom:553.125000px;}
.y18_c00233{bottom:574.710000px;}
.y17_c00233{bottom:596.385000px;}
.y16_c00233{bottom:618.660000px;}
.y15_c00233{bottom:641.010000px;}
.y14_c00233{bottom:662.250000px;}
.y13_c00233{bottom:683.835000px;}
.y12_c00233{bottom:705.750000px;}
.y11_c00233{bottom:727.710000px;}
.y10_c00233{bottom:749.700000px;}
.yf_c00233{bottom:807.300000px;}
.yc_c00233{bottom:820.185000px;}
.yd_c00233{bottom:822.375000px;}
.ye_c00233{bottom:826.050000px;}
.y9_c00233{bottom:839.025000px;}
.ya_c00233{bottom:843.960000px;}
.yb_c00233{bottom:844.425000px;}
.y4_c00233{bottom:904.875000px;}
.y5_c00233{bottom:907.710000px;}
.y7_c00233{bottom:911.685000px;}
.y6_c00233{bottom:912.435000px;}
.y8_c00233{bottom:912.750000px;}
.y1_c00233{bottom:1095.675000px;}
.y3_c00233{bottom:1107.150000px;}
.y2_c00233{bottom:1111.185000px;}
.h2_c00233{height:58.886719px;}
.h1_c00233{height:64.775391px;}
.h5_c00233{height:70.664062px;}
.h6_c00233{height:76.514648px;}
.h4_c00233{height:76.552734px;}
.h7_c00233{height:78.609375px;}
.h3_c00233{height:188.437500px;}
.h0_c00233{height:1174.500000px;}
.w0_c00233{width:731.977200px;}
.w1_c00233{width:732.000000px;}
.x0_c00233{left:0.000000px;}
.x11_c00233{left:49.690200px;}
.x10_c00233{left:50.740200px;}
.x9_c00233{left:51.790200px;}
.x12_c00233{left:52.915200px;}
.xc_c00233{left:70.540200px;}
.x1_c00233{left:72.715200px;}
.x16_c00233{left:74.890200px;}
.xf_c00233{left:82.390200px;}
.x14_c00233{left:83.890200px;}
.x2_c00233{left:100.390200px;}
.x15_c00233{left:110.890200px;}
.x1a_c00233{left:117.340200px;}
.x4_c00233{left:183.565200px;}
.xd_c00233{left:213.790200px;}
.xe_c00233{left:254.140200px;}
.x5_c00233{left:270.715200px;}
.x3_c00233{left:277.165200px;}
.x1b_c00233{left:340.915200px;}
.x17_c00233{left:390.190200px;}
.x6_c00233{left:445.315200px;}
.xa_c00233{left:450.715200px;}
.x18_c00233{left:483.115200px;}
.x13_c00233{left:493.915200px;}
.x7_c00233{left:539.590200px;}
.x8_c00233{left:556.915200px;}
.xb_c00233{left:627.490200px;}
.x19_c00233{left:632.890200px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls0_c00233{letter-spacing:0.000000pt;}
.ws0_c00233{word-spacing:0.000000pt;}
.fs1_c00233{font-size:53.333333pt;}
.fs0_c00233{font-size:58.666667pt;}
.fs4_c00233{font-size:64.000000pt;}
.fs3_c00233{font-size:69.333333pt;}
.fs2_c00233{font-size:170.666667pt;}
.y0_c00233{bottom:0.000000pt;}
.y37_c00233{bottom:92.000000pt;}
.y36_c00233{bottom:103.186667pt;}
.y35_c00233{bottom:106.720000pt;}
.y34_c00233{bottom:111.186667pt;}
.y33_c00233{bottom:123.053333pt;}
.y32_c00233{bottom:123.666667pt;}
.y31_c00233{bottom:143.186667pt;}
.y30_c00233{bottom:162.386667pt;}
.y2f_c00233{bottom:181.586667pt;}
.y2e_c00233{bottom:201.120000pt;}
.y2d_c00233{bottom:220.666667pt;}
.y2c_c00233{bottom:239.186667pt;}
.y2b_c00233{bottom:242.133333pt;}
.y2a_c00233{bottom:259.386667pt;}
.y29_c00233{bottom:263.186667pt;}
.y28_c00233{bottom:279.186667pt;}
.y27_c00233{bottom:281.720000pt;}
.y26_c00233{bottom:298.053333pt;}
.y25_c00233{bottom:317.586667pt;}
.y24_c00233{bottom:337.133333pt;}
.y23_c00233{bottom:356.000000pt;}
.y22_c00233{bottom:356.666667pt;}
.y21_c00233{bottom:375.853333pt;}
.y20_c00233{bottom:376.186667pt;}
.y1f_c00233{bottom:376.453333pt;}
.y1e_c00233{bottom:395.666667pt;}
.y1d_c00233{bottom:414.853333pt;}
.y1c_c00233{bottom:434.053333pt;}
.y1b_c00233{bottom:453.253333pt;}
.y1a_c00233{bottom:472.453333pt;}
.y19_c00233{bottom:491.666667pt;}
.y18_c00233{bottom:510.853333pt;}
.y17_c00233{bottom:530.120000pt;}
.y16_c00233{bottom:549.920000pt;}
.y15_c00233{bottom:569.786667pt;}
.y14_c00233{bottom:588.666667pt;}
.y13_c00233{bottom:607.853333pt;}
.y12_c00233{bottom:627.333333pt;}
.y11_c00233{bottom:646.853333pt;}
.y10_c00233{bottom:666.400000pt;}
.yf_c00233{bottom:717.600000pt;}
.yc_c00233{bottom:729.053333pt;}
.yd_c00233{bottom:731.000000pt;}
.ye_c00233{bottom:734.266667pt;}
.y9_c00233{bottom:745.800000pt;}
.ya_c00233{bottom:750.186667pt;}
.yb_c00233{bottom:750.600000pt;}
.y4_c00233{bottom:804.333333pt;}
.y5_c00233{bottom:806.853333pt;}
.y7_c00233{bottom:810.386667pt;}
.y6_c00233{bottom:811.053333pt;}
.y8_c00233{bottom:811.333333pt;}
.y1_c00233{bottom:973.933333pt;}
.y3_c00233{bottom:984.133333pt;}
.y2_c00233{bottom:987.720000pt;}
.h2_c00233{height:52.343750pt;}
.h1_c00233{height:57.578125pt;}
.h5_c00233{height:62.812500pt;}
.h6_c00233{height:68.013021pt;}
.h4_c00233{height:68.046875pt;}
.h7_c00233{height:69.875000pt;}
.h3_c00233{height:167.500000pt;}
.h0_c00233{height:1044.000000pt;}
.w0_c00233{width:650.646400pt;}
.w1_c00233{width:650.666667pt;}
.x0_c00233{left:0.000000pt;}
.x11_c00233{left:44.169067pt;}
.x10_c00233{left:45.102400pt;}
.x9_c00233{left:46.035733pt;}
.x12_c00233{left:47.035733pt;}
.xc_c00233{left:62.702400pt;}
.x1_c00233{left:64.635733pt;}
.x16_c00233{left:66.569067pt;}
.xf_c00233{left:73.235733pt;}
.x14_c00233{left:74.569067pt;}
.x2_c00233{left:89.235733pt;}
.x15_c00233{left:98.569067pt;}
.x1a_c00233{left:104.302400pt;}
.x4_c00233{left:163.169067pt;}
.xd_c00233{left:190.035733pt;}
.xe_c00233{left:225.902400pt;}
.x5_c00233{left:240.635733pt;}
.x3_c00233{left:246.369067pt;}
.x1b_c00233{left:303.035733pt;}
.x17_c00233{left:346.835733pt;}
.x6_c00233{left:395.835733pt;}
.xa_c00233{left:400.635733pt;}
.x18_c00233{left:429.435733pt;}
.x13_c00233{left:439.035733pt;}
.x7_c00233{left:479.635733pt;}
.x8_c00233{left:495.035733pt;}
.xb_c00233{left:557.769067pt;}
.x19_c00233{left:562.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be2a91f03bbe73bd99842f59.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00234{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c00234{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00234{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00234{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c00234{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00234{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00234{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00234{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c00234{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c00234{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5_c00234{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c00234{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c00234{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6_c00234{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me_c00234{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf_c00234{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c00234{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.ls0_c00234{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00234{color:transparent;}
.fs0_c00234{font-size:54.000000px;}
.fs1_c00234{font-size:66.000000px;}
.y0_c00234{bottom:0.000000px;}
.y30_c00234{bottom:94.500000px;}
.y2f_c00234{bottom:117.585000px;}
.y2e_c00234{bottom:137.685000px;}
.y2d_c00234{bottom:157.185000px;}
.y2c_c00234{bottom:178.035000px;}
.y2b_c00234{bottom:197.085000px;}
.y2a_c00234{bottom:218.310000px;}
.y29_c00234{bottom:238.875000px;}
.y28_c00234{bottom:260.085000px;}
.y27_c00234{bottom:281.025000px;}
.y26_c00234{bottom:301.875000px;}
.y25_c00234{bottom:322.785000px;}
.y24_c00234{bottom:344.025000px;}
.y23_c00234{bottom:365.250000px;}
.y22_c00234{bottom:386.085000px;}
.y21_c00234{bottom:407.310000px;}
.y20_c00234{bottom:427.500000px;}
.y1f_c00234{bottom:449.460000px;}
.y1e_c00234{bottom:470.385000px;}
.y1d_c00234{bottom:492.000000px;}
.y1c_c00234{bottom:513.210000px;}
.y1b_c00234{bottom:534.435000px;}
.y1a_c00234{bottom:555.285000px;}
.y19_c00234{bottom:576.510000px;}
.y18_c00234{bottom:597.810000px;}
.y17_c00234{bottom:618.660000px;}
.y16_c00234{bottom:639.885000px;}
.y15_c00234{bottom:661.125000px;}
.y14_c00234{bottom:682.710000px;}
.y13_c00234{bottom:703.635000px;}
.y12_c00234{bottom:724.875000px;}
.y11_c00234{bottom:746.085000px;}
.y10_c00234{bottom:767.010000px;}
.yf_c00234{bottom:788.625000px;}
.ye_c00234{bottom:810.150000px;}
.yd_c00234{bottom:831.375000px;}
.yc_c00234{bottom:852.675000px;}
.yb_c00234{bottom:873.525000px;}
.ya_c00234{bottom:894.435000px;}
.y9_c00234{bottom:915.960000px;}
.y8_c00234{bottom:936.900000px;}
.y7_c00234{bottom:958.125000px;}
.y6_c00234{bottom:979.335000px;}
.y5_c00234{bottom:1000.935000px;}
.y4_c00234{bottom:1022.250000px;}
.y3_c00234{bottom:1077.675000px;}
.y2_c00234{bottom:1079.835000px;}
.y1_c00234{bottom:1080.900000px;}
.h1_c00234{height:52.998047px;}
.h2_c00234{height:64.775391px;}
.h0_c00234{height:1174.500000px;}
.w0_c00234{width:731.977200px;}
.w1_c00234{width:732.000000px;}
.x0_c00234{left:0.000000px;}
.x5_c00234{left:55.765200px;}
.x6_c00234{left:56.890200px;}
.x7_c00234{left:58.315200px;}
.x8_c00234{left:59.740200px;}
.xb_c00234{left:61.165200px;}
.xc_c00234{left:62.590200px;}
.xe_c00234{left:64.390200px;}
.x4_c00234{left:87.115200px;}
.xa_c00234{left:90.340200px;}
.x9_c00234{left:91.390200px;}
.xd_c00234{left:94.315200px;}
.x1_c00234{left:265.690200px;}
.x2_c00234{left:461.140200px;}
.x3_c00234{left:624.565200px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls0_c00234{letter-spacing:0.000000pt;}
.ws0_c00234{word-spacing:0.000000pt;}
.fs0_c00234{font-size:48.000000pt;}
.fs1_c00234{font-size:58.666667pt;}
.y0_c00234{bottom:0.000000pt;}
.y30_c00234{bottom:84.000000pt;}
.y2f_c00234{bottom:104.520000pt;}
.y2e_c00234{bottom:122.386667pt;}
.y2d_c00234{bottom:139.720000pt;}
.y2c_c00234{bottom:158.253333pt;}
.y2b_c00234{bottom:175.186667pt;}
.y2a_c00234{bottom:194.053333pt;}
.y29_c00234{bottom:212.333333pt;}
.y28_c00234{bottom:231.186667pt;}
.y27_c00234{bottom:249.800000pt;}
.y26_c00234{bottom:268.333333pt;}
.y25_c00234{bottom:286.920000pt;}
.y24_c00234{bottom:305.800000pt;}
.y23_c00234{bottom:324.666667pt;}
.y22_c00234{bottom:343.186667pt;}
.y21_c00234{bottom:362.053333pt;}
.y20_c00234{bottom:380.000000pt;}
.y1f_c00234{bottom:399.520000pt;}
.y1e_c00234{bottom:418.120000pt;}
.y1d_c00234{bottom:437.333333pt;}
.y1c_c00234{bottom:456.186667pt;}
.y1b_c00234{bottom:475.053333pt;}
.y1a_c00234{bottom:493.586667pt;}
.y19_c00234{bottom:512.453333pt;}
.y18_c00234{bottom:531.386667pt;}
.y17_c00234{bottom:549.920000pt;}
.y16_c00234{bottom:568.786667pt;}
.y15_c00234{bottom:587.666667pt;}
.y14_c00234{bottom:606.853333pt;}
.y13_c00234{bottom:625.453333pt;}
.y12_c00234{bottom:644.333333pt;}
.y11_c00234{bottom:663.186667pt;}
.y10_c00234{bottom:681.786667pt;}
.yf_c00234{bottom:701.000000pt;}
.ye_c00234{bottom:720.133333pt;}
.yd_c00234{bottom:739.000000pt;}
.yc_c00234{bottom:757.933333pt;}
.yb_c00234{bottom:776.466667pt;}
.ya_c00234{bottom:795.053333pt;}
.y9_c00234{bottom:814.186667pt;}
.y8_c00234{bottom:832.800000pt;}
.y7_c00234{bottom:851.666667pt;}
.y6_c00234{bottom:870.520000pt;}
.y5_c00234{bottom:889.720000pt;}
.y4_c00234{bottom:908.666667pt;}
.y3_c00234{bottom:957.933333pt;}
.y2_c00234{bottom:959.853333pt;}
.y1_c00234{bottom:960.800000pt;}
.h1_c00234{height:47.109375pt;}
.h2_c00234{height:57.578125pt;}
.h0_c00234{height:1044.000000pt;}
.w0_c00234{width:650.646400pt;}
.w1_c00234{width:650.666667pt;}
.x0_c00234{left:0.000000pt;}
.x5_c00234{left:49.569067pt;}
.x6_c00234{left:50.569067pt;}
.x7_c00234{left:51.835733pt;}
.x8_c00234{left:53.102400pt;}
.xb_c00234{left:54.369067pt;}
.xc_c00234{left:55.635733pt;}
.xe_c00234{left:57.235733pt;}
.x4_c00234{left:77.435733pt;}
.xa_c00234{left:80.302400pt;}
.x9_c00234{left:81.235733pt;}
.xd_c00234{left:83.835733pt;}
.x1_c00234{left:236.169067pt;}
.x2_c00234{left:409.902400pt;}
.x3_c00234{left:555.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d73a5721182176dea98c1f1.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.284668;font-style:normal;font-weight:normal;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_963015e66501d6060ffba960.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00235;src:url('chunks/assets/font_2a364554255fd88cf0be0b46.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00235;src:url('chunks/assets/font_44abb532a554c8bbb0fbf46b.woff2')format("woff");}.ff4_c00235{font-family:ff4_c00235;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00235{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m14_c00235{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m13_c00235{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m16_c00235{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_c00235{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00235{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00235{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00235{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00235{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00235{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00235{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00235{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00235{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00235{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00235{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3_c00235{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00235{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00235{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00235{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c00235{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c00235{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.md_c00235{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m17_c00235{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1_c00235{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.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;}
}
.ws0_c00235{word-spacing:0.000000px;}
.fc0_c00235{color:transparent;}
.fs0_c00235{font-size:60.000000px;}
.fs3_c00235{font-size:66.000000px;}
.fs1_c00235{font-size:72.000000px;}
.fs4_c00235{font-size:78.000000px;}
.fs2_c00235{font-size:84.000000px;}
.y0_c00235{bottom:0.000000px;}
.y3c_c00235{bottom:90.885000px;}
.y3d_c00235{bottom:91.260000px;}
.y3b_c00235{bottom:95.535000px;}
.y3a_c00235{bottom:115.335000px;}
.y39_c00235{bottom:141.660000px;}
.y38_c00235{bottom:158.535000px;}
.y37_c00235{bottom:180.210000px;}
.y36_c00235{bottom:202.500000px;}
.y34_c00235{bottom:222.960000px;}
.y35_c00235{bottom:223.335000px;}
.y33_c00235{bottom:226.935000px;}
.y32_c00235{bottom:246.750000px;}
.y31_c00235{bottom:268.335000px;}
.y30_c00235{bottom:290.685000px;}
.y2f_c00235{bottom:312.285000px;}
.y2e_c00235{bottom:333.900000px;}
.y2d_c00235{bottom:355.500000px;}
.y2c_c00235{bottom:377.835000px;}
.y2b_c00235{bottom:399.435000px;}
.y2a_c00235{bottom:421.335000px;}
.y29_c00235{bottom:444.435000px;}
.y28_c00235{bottom:464.250000px;}
.y27_c00235{bottom:464.910000px;}
.y26_c00235{bottom:465.285000px;}
.y25_c00235{bottom:465.660000px;}
.y24_c00235{bottom:466.710000px;}
.y23_c00235{bottom:485.835000px;}
.y22_c00235{bottom:486.135000px;}
.y21_c00235{bottom:486.885000px;}
.y20_c00235{bottom:487.260000px;}
.y1f_c00235{bottom:488.010000px;}
.y1e_c00235{bottom:508.500000px;}
.y1d_c00235{bottom:638.085000px;}
.y1c_c00235{bottom:660.060000px;}
.y1b_c00235{bottom:681.285000px;}
.y18_c00235{bottom:702.885000px;}
.y19_c00235{bottom:703.935000px;}
.y1a_c00235{bottom:704.010000px;}
.y15_c00235{bottom:724.500000px;}
.y16_c00235{bottom:725.625000px;}
.y17_c00235{bottom:725.910000px;}
.y14_c00235{bottom:747.135000px;}
.y11_c00235{bottom:766.635000px;}
.y12_c00235{bottom:768.060000px;}
.y13_c00235{bottom:769.875000px;}
.y10_c00235{bottom:791.085000px;}
.yf_c00235{bottom:810.900000px;}
.ye_c00235{bottom:833.250000px;}
.yd_c00235{bottom:854.835000px;}
.yc_c00235{bottom:876.375000px;}
.yb_c00235{bottom:897.675000px;}
.ya_c00235{bottom:919.650000px;}
.y9_c00235{bottom:941.550000px;}
.y8_c00235{bottom:963.525000px;}
.y7_c00235{bottom:982.650000px;}
.y6_c00235{bottom:1006.800000px;}
.y5_c00235{bottom:1028.310000px;}
.y4_c00235{bottom:1049.625000px;}
.y1_c00235{bottom:1098.525000px;}
.y3_c00235{bottom:1108.275000px;}
.y2_c00235{bottom:1113.150000px;}
.h1_c00235{height:58.886719px;}
.h4_c00235{height:64.775391px;}
.h6_c00235{height:66.515625px;}
.h2_c00235{height:70.664062px;}
.h5_c00235{height:76.514648px;}
.h3_c00235{height:82.400391px;}
.h0_c00235{height:1174.500000px;}
.w0_c00235{width:731.977200px;}
.w1_c00235{width:732.000000px;}
.x0_c00235{left:0.000000px;}
.x1c_c00235{left:47.140200px;}
.x19_c00235{left:48.565200px;}
.x11_c00235{left:51.115200px;}
.xc_c00235{left:52.165200px;}
.x8_c00235{left:53.590200px;}
.x6_c00235{left:55.090200px;}
.x5_c00235{left:56.515200px;}
.x1_c00235{left:76.990200px;}
.x1d_c00235{left:79.915200px;}
.x12_c00235{left:82.090200px;}
.x9_c00235{left:84.550200px;}
.x7_c00235{left:86.740200px;}
.x4_c00235{left:89.290200px;}
.x2_c00235{left:103.690200px;}
.x15_c00235{left:186.115200px;}
.xa_c00235{left:243.715200px;}
.x3_c00235{left:281.515200px;}
.x16_c00235{left:304.165200px;}
.x17_c00235{left:332.290200px;}
.xb_c00235{left:352.390200px;}
.xd_c00235{left:381.190200px;}
.xe_c00235{left:391.315200px;}
.x18_c00235{left:404.965200px;}
.xf_c00235{left:425.890200px;}
.x10_c00235{left:443.515200px;}
.x1a_c00235{left:472.315200px;}
.x1e_c00235{left:510.490200px;}
.x13_c00235{left:533.140200px;}
.x1f_c00235{left:535.315200px;}
.x14_c00235{left:609.115200px;}
.x1b_c00235{left:646.165200px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls0_c00235{letter-spacing:0.000000pt;}
.ws0_c00235{word-spacing:0.000000pt;}
.fs0_c00235{font-size:53.333333pt;}
.fs3_c00235{font-size:58.666667pt;}
.fs1_c00235{font-size:64.000000pt;}
.fs4_c00235{font-size:69.333333pt;}
.fs2_c00235{font-size:74.666667pt;}
.y0_c00235{bottom:0.000000pt;}
.y3c_c00235{bottom:80.786667pt;}
.y3d_c00235{bottom:81.120000pt;}
.y3b_c00235{bottom:84.920000pt;}
.y3a_c00235{bottom:102.520000pt;}
.y39_c00235{bottom:125.920000pt;}
.y38_c00235{bottom:140.920000pt;}
.y37_c00235{bottom:160.186667pt;}
.y36_c00235{bottom:180.000000pt;}
.y34_c00235{bottom:198.186667pt;}
.y35_c00235{bottom:198.520000pt;}
.y33_c00235{bottom:201.720000pt;}
.y32_c00235{bottom:219.333333pt;}
.y31_c00235{bottom:238.520000pt;}
.y30_c00235{bottom:258.386667pt;}
.y2f_c00235{bottom:277.586667pt;}
.y2e_c00235{bottom:296.800000pt;}
.y2d_c00235{bottom:316.000000pt;}
.y2c_c00235{bottom:335.853333pt;}
.y2b_c00235{bottom:355.053333pt;}
.y2a_c00235{bottom:374.520000pt;}
.y29_c00235{bottom:395.053333pt;}
.y28_c00235{bottom:412.666667pt;}
.y27_c00235{bottom:413.253333pt;}
.y26_c00235{bottom:413.586667pt;}
.y25_c00235{bottom:413.920000pt;}
.y24_c00235{bottom:414.853333pt;}
.y23_c00235{bottom:431.853333pt;}
.y22_c00235{bottom:432.120000pt;}
.y21_c00235{bottom:432.786667pt;}
.y20_c00235{bottom:433.120000pt;}
.y1f_c00235{bottom:433.786667pt;}
.y1e_c00235{bottom:452.000000pt;}
.y1d_c00235{bottom:567.186667pt;}
.y1c_c00235{bottom:586.720000pt;}
.y1b_c00235{bottom:605.586667pt;}
.y18_c00235{bottom:624.786667pt;}
.y19_c00235{bottom:625.720000pt;}
.y1a_c00235{bottom:625.786667pt;}
.y15_c00235{bottom:644.000000pt;}
.y16_c00235{bottom:645.000000pt;}
.y17_c00235{bottom:645.253333pt;}
.y14_c00235{bottom:664.120000pt;}
.y11_c00235{bottom:681.453333pt;}
.y12_c00235{bottom:682.720000pt;}
.y13_c00235{bottom:684.333333pt;}
.y10_c00235{bottom:703.186667pt;}
.yf_c00235{bottom:720.800000pt;}
.ye_c00235{bottom:740.666667pt;}
.yd_c00235{bottom:759.853333pt;}
.yc_c00235{bottom:779.000000pt;}
.yb_c00235{bottom:797.933333pt;}
.ya_c00235{bottom:817.466667pt;}
.y9_c00235{bottom:836.933333pt;}
.y8_c00235{bottom:856.466667pt;}
.y7_c00235{bottom:873.466667pt;}
.y6_c00235{bottom:894.933333pt;}
.y5_c00235{bottom:914.053333pt;}
.y4_c00235{bottom:933.000000pt;}
.y1_c00235{bottom:976.466667pt;}
.y3_c00235{bottom:985.133333pt;}
.y2_c00235{bottom:989.466667pt;}
.h1_c00235{height:52.343750pt;}
.h4_c00235{height:57.578125pt;}
.h6_c00235{height:59.125000pt;}
.h2_c00235{height:62.812500pt;}
.h5_c00235{height:68.013021pt;}
.h3_c00235{height:73.244792pt;}
.h0_c00235{height:1044.000000pt;}
.w0_c00235{width:650.646400pt;}
.w1_c00235{width:650.666667pt;}
.x0_c00235{left:0.000000pt;}
.x1c_c00235{left:41.902400pt;}
.x19_c00235{left:43.169067pt;}
.x11_c00235{left:45.435733pt;}
.xc_c00235{left:46.369067pt;}
.x8_c00235{left:47.635733pt;}
.x6_c00235{left:48.969067pt;}
.x5_c00235{left:50.235733pt;}
.x1_c00235{left:68.435733pt;}
.x1d_c00235{left:71.035733pt;}
.x12_c00235{left:72.969067pt;}
.x9_c00235{left:75.155733pt;}
.x7_c00235{left:77.102400pt;}
.x4_c00235{left:79.369067pt;}
.x2_c00235{left:92.169067pt;}
.x15_c00235{left:165.435733pt;}
.xa_c00235{left:216.635733pt;}
.x3_c00235{left:250.235733pt;}
.x16_c00235{left:270.369067pt;}
.x17_c00235{left:295.369067pt;}
.xb_c00235{left:313.235733pt;}
.xd_c00235{left:338.835733pt;}
.xe_c00235{left:347.835733pt;}
.x18_c00235{left:359.969067pt;}
.xf_c00235{left:378.569067pt;}
.x10_c00235{left:394.235733pt;}
.x1a_c00235{left:419.835733pt;}
.x1e_c00235{left:453.769067pt;}
.x13_c00235{left:473.902400pt;}
.x1f_c00235{left:475.835733pt;}
.x14_c00235{left:541.435733pt;}
.x1b_c00235{left:574.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bea2d0984b778cf38bc3d429.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00236;src:url('chunks/assets/font_6366c6220bab3e4da53ced37.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00236{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mf_c00236{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00236{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00236{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c00236{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c00236{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1_c00236{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00236{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c00236{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00236{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00236{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00236{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00236{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00236{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c00236{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00236{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,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;}
}
.ws0_c00236{word-spacing:0.000000px;}
.fc0_c00236{color:transparent;}
.fs2_c00236{font-size:54.000000px;}
.fs1_c00236{font-size:60.000000px;}
.fs0_c00236{font-size:72.000000px;}
.y0_c00236{bottom:0.000000px;}
.y2e_c00236{bottom:79.335000px;}
.y2d_c00236{bottom:103.875000px;}
.y2c_c00236{bottom:124.710000px;}
.y2b_c00236{bottom:145.260000px;}
.y2a_c00236{bottom:165.435000px;}
.y29_c00236{bottom:185.910000px;}
.y28_c00236{bottom:206.385000px;}
.y27_c00236{bottom:226.935000px;}
.y26_c00236{bottom:247.125000px;}
.y25_c00236{bottom:268.035000px;}
.y24_c00236{bottom:288.525000px;}
.y23_c00236{bottom:309.435000px;}
.y22_c00236{bottom:330.285000px;}
.y21_c00236{bottom:351.525000px;}
.y20_c00236{bottom:372.060000px;}
.y1f_c00236{bottom:393.000000px;}
.y1e_c00236{bottom:413.835000px;}
.y1d_c00236{bottom:434.685000px;}
.y1c_c00236{bottom:455.910000px;}
.y1b_c00236{bottom:477.135000px;}
.y1a_c00236{bottom:498.060000px;}
.y19_c00236{bottom:519.285000px;}
.y18_c00236{bottom:540.210000px;}
.y17_c00236{bottom:561.435000px;}
.y16_c00236{bottom:582.285000px;}
.y15_c00236{bottom:603.585000px;}
.y14_c00236{bottom:624.750000px;}
.y13_c00236{bottom:646.035000px;}
.y12_c00236{bottom:666.885000px;}
.y11_c00236{bottom:687.750000px;}
.y10_c00236{bottom:709.335000px;}
.yf_c00236{bottom:730.635000px;}
.ye_c00236{bottom:751.125000px;}
.yd_c00236{bottom:772.710000px;}
.yc_c00236{bottom:794.025000px;}
.yb_c00236{bottom:814.875000px;}
.ya_c00236{bottom:836.460000px;}
.y9_c00236{bottom:857.400000px;}
.y8_c00236{bottom:878.625000px;}
.y7_c00236{bottom:899.460000px;}
.y5_c00236{bottom:920.685000px;}
.y6_c00236{bottom:941.250000px;}
.y4_c00236{bottom:962.460000px;}
.y3_c00236{bottom:983.685000px;}
.y2_c00236{bottom:1006.710000px;}
.y1_c00236{bottom:1026.150000px;}
.h3_c00236{height:54.421875px;}
.h2_c00236{height:58.886719px;}
.h1_c00236{height:70.664062px;}
.h0_c00236{height:1174.500000px;}
.w0_c00236{width:731.977200px;}
.w1_c00236{width:732.000000px;}
.x0_c00236{left:0.000000px;}
.x1_c00236{left:59.740200px;}
.x2_c00236{left:61.540200px;}
.x6_c00236{left:62.590200px;}
.x5_c00236{left:63.715200px;}
.x7_c00236{left:65.515200px;}
.x4_c00236{left:67.315200px;}
.x9_c00236{left:68.365200px;}
.x3_c00236{left:94.690200px;}
.x8_c00236{left:96.790200px;}
.xa_c00236{left:592.165200px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls0_c00236{letter-spacing:0.000000pt;}
.ws0_c00236{word-spacing:0.000000pt;}
.fs2_c00236{font-size:48.000000pt;}
.fs1_c00236{font-size:53.333333pt;}
.fs0_c00236{font-size:64.000000pt;}
.y0_c00236{bottom:0.000000pt;}
.y2e_c00236{bottom:70.520000pt;}
.y2d_c00236{bottom:92.333333pt;}
.y2c_c00236{bottom:110.853333pt;}
.y2b_c00236{bottom:129.120000pt;}
.y2a_c00236{bottom:147.053333pt;}
.y29_c00236{bottom:165.253333pt;}
.y28_c00236{bottom:183.453333pt;}
.y27_c00236{bottom:201.720000pt;}
.y26_c00236{bottom:219.666667pt;}
.y25_c00236{bottom:238.253333pt;}
.y24_c00236{bottom:256.466667pt;}
.y23_c00236{bottom:275.053333pt;}
.y22_c00236{bottom:293.586667pt;}
.y21_c00236{bottom:312.466667pt;}
.y20_c00236{bottom:330.720000pt;}
.y1f_c00236{bottom:349.333333pt;}
.y1e_c00236{bottom:367.853333pt;}
.y1d_c00236{bottom:386.386667pt;}
.y1c_c00236{bottom:405.253333pt;}
.y1b_c00236{bottom:424.120000pt;}
.y1a_c00236{bottom:442.720000pt;}
.y19_c00236{bottom:461.586667pt;}
.y18_c00236{bottom:480.186667pt;}
.y17_c00236{bottom:499.053333pt;}
.y16_c00236{bottom:517.586667pt;}
.y15_c00236{bottom:536.520000pt;}
.y14_c00236{bottom:555.333333pt;}
.y13_c00236{bottom:574.253333pt;}
.y12_c00236{bottom:592.786667pt;}
.y11_c00236{bottom:611.333333pt;}
.y10_c00236{bottom:630.520000pt;}
.yf_c00236{bottom:649.453333pt;}
.ye_c00236{bottom:667.666667pt;}
.yd_c00236{bottom:686.853333pt;}
.yc_c00236{bottom:705.800000pt;}
.yb_c00236{bottom:724.333333pt;}
.ya_c00236{bottom:743.520000pt;}
.y9_c00236{bottom:762.133333pt;}
.y8_c00236{bottom:781.000000pt;}
.y7_c00236{bottom:799.520000pt;}
.y5_c00236{bottom:818.386667pt;}
.y6_c00236{bottom:836.666667pt;}
.y4_c00236{bottom:855.520000pt;}
.y3_c00236{bottom:874.386667pt;}
.y2_c00236{bottom:894.853333pt;}
.y1_c00236{bottom:912.133333pt;}
.h3_c00236{height:48.375000pt;}
.h2_c00236{height:52.343750pt;}
.h1_c00236{height:62.812500pt;}
.h0_c00236{height:1044.000000pt;}
.w0_c00236{width:650.646400pt;}
.w1_c00236{width:650.666667pt;}
.x0_c00236{left:0.000000pt;}
.x1_c00236{left:53.102400pt;}
.x2_c00236{left:54.702400pt;}
.x6_c00236{left:55.635733pt;}
.x5_c00236{left:56.635733pt;}
.x7_c00236{left:58.235733pt;}
.x4_c00236{left:59.835733pt;}
.x9_c00236{left:60.769067pt;}
.x3_c00236{left:84.169067pt;}
.x8_c00236{left:86.035733pt;}
.xa_c00236{left:526.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_070418ba0f1a505da552bd04.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00237;src:url('chunks/assets/font_1cf24ec4121c4f2f37659ee3.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00237;src:url('chunks/assets/font_8a945832b56a2fab2cb36381.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m26_c00237{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00237{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00237{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m28_c00237{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00237{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m27_c00237{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m29_c00237{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00237{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00237{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m22_c00237{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m21_c00237{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00237{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4_c00237{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c00237{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m20_c00237{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc_c00237{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00237{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00237{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c00237{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00237{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c00237{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c00237{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00237{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00237{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00237{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00237{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00237{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00237{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c00237{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00237{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00237{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00237{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00237{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c00237{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00237{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c00237{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m11_c00237{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00237{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12_c00237{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m19_c00237{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m25_c00237{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m23_c00237{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00237{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00237{transform:matrix(2.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.287500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00237{transform:matrix(2.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.700000,0.000000,0.000000,0.250000,0,0);}
.m24_c00237{transform:matrix(2.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.875000,0.000000,0.000000,0.250000,0,0);}
.m1_c00237{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.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;}
}
.ws0_c00237{word-spacing:0.000000px;}
.fc0_c00237{color:transparent;}
.fs5_c00237{font-size:30.000000px;}
.fs4_c00237{font-size:36.000000px;}
.fs0_c00237{font-size:60.000000px;}
.fs3_c00237{font-size:66.000000px;}
.fs1_c00237{font-size:72.000000px;}
.fs2_c00237{font-size:78.000000px;}
.y0_c00237{bottom:0.000000px;}
.y63_c00237{bottom:97.035000px;}
.y62_c00237{bottom:98.085000px;}
.y61_c00237{bottom:102.750000px;}
.y60_c00237{bottom:106.035000px;}
.y5f_c00237{bottom:122.250000px;}
.y5e_c00237{bottom:124.785000px;}
.y5d_c00237{bottom:129.060000px;}
.y5c_c00237{bottom:132.285000px;}
.y5b_c00237{bottom:140.625000px;}
.y5a_c00237{bottom:141.585000px;}
.y59_c00237{bottom:149.910000px;}
.y58_c00237{bottom:224.460000px;}
.y57_c00237{bottom:232.335000px;}
.y56_c00237{bottom:232.710000px;}
.y53_c00237{bottom:240.585000px;}
.y54_c00237{bottom:240.660000px;}
.y55_c00237{bottom:241.710000px;}
.y52_c00237{bottom:253.650000px;}
.y51_c00237{bottom:254.310000px;}
.y4f_c00237{bottom:269.835000px;}
.y4e_c00237{bottom:271.275000px;}
.y50_c00237{bottom:275.910000px;}
.y46_c00237{bottom:284.250000px;}
.y48_c00237{bottom:284.535000px;}
.y47_c00237{bottom:284.625000px;}
.y4b_c00237{bottom:284.910000px;}
.y4d_c00237{bottom:285.960000px;}
.y4a_c00237{bottom:286.035000px;}
.y4c_c00237{bottom:293.625000px;}
.y3a_c00237{bottom:316.935000px;}
.y39_c00237{bottom:317.685000px;}
.y45_c00237{bottom:328.875000px;}
.y38_c00237{bottom:334.275000px;}
.y37_c00237{bottom:335.400000px;}
.y44_c00237{bottom:336.060000px;}
.y43_c00237{bottom:345.060000px;}
.y42_c00237{bottom:345.375000px;}
.y41_c00237{bottom:346.500000px;}
.y40_c00237{bottom:348.660000px;}
.y3f_c00237{bottom:349.035000px;}
.y36_c00237{bottom:355.500000px;}
.y3d_c00237{bottom:357.585000px;}
.y35_c00237{bottom:362.310000px;}
.y3c_c00237{bottom:374.910000px;}
.y34_c00237{bottom:375.585000px;}
.y3b_c00237{bottom:376.035000px;}
.y3e_c00237{bottom:381.435000px;}
.y30_c00237{bottom:390.810000px;}
.y31_c00237{bottom:391.125000px;}
.y33_c00237{bottom:398.310000px;}
.y32_c00237{bottom:399.435000px;}
.y2f_c00237{bottom:435.060000px;}
.y2e_c00237{bottom:446.910000px;}
.y2d_c00237{bottom:463.785000px;}
.y2c_c00237{bottom:469.935000px;}
.y2b_c00237{bottom:504.510000px;}
.y2a_c00237{bottom:523.935000px;}
.y29_c00237{bottom:524.010000px;}
.y28_c00237{bottom:538.035000px;}
.y27_c00237{bottom:538.710000px;}
.y26_c00237{bottom:540.510000px;}
.y25_c00237{bottom:540.885000px;}
.y23_c00237{bottom:548.085000px;}
.y22_c00237{bottom:554.910000px;}
.y24_c00237{bottom:556.035000px;}
.y21_c00237{bottom:556.335000px;}
.y20_c00237{bottom:556.410000px;}
.y1f_c00237{bottom:591.285000px;}
.y1e_c00237{bottom:591.960000px;}
.y1d_c00237{bottom:610.035000px;}
.y1c_c00237{bottom:626.625000px;}
.y1b_c00237{bottom:684.885000px;}
.y19_c00237{bottom:706.125000px;}
.y1a_c00237{bottom:706.500000px;}
.y18_c00237{bottom:728.085000px;}
.y15_c00237{bottom:747.885000px;}
.y16_c00237{bottom:750.075000px;}
.y17_c00237{bottom:750.450000px;}
.y14_c00237{bottom:772.050000px;}
.y13_c00237{bottom:793.650000px;}
.y12_c00237{bottom:814.875000px;}
.y10_c00237{bottom:832.500000px;}
.y11_c00237{bottom:833.250000px;}
.ye_c00237{bottom:857.025000px;}
.yf_c00237{bottom:859.500000px;}
.yd_c00237{bottom:878.925000px;}
.yc_c00237{bottom:899.835000px;}
.yb_c00237{bottom:922.125000px;}
.ya_c00237{bottom:943.710000px;}
.y9_c00237{bottom:966.060000px;}
.y8_c00237{bottom:987.300000px;}
.y6_c00237{bottom:1001.310000px;}
.y7_c00237{bottom:1009.275000px;}
.y5_c00237{bottom:1030.500000px;}
.y4_c00237{bottom:1050.960000px;}
.y1_c00237{bottom:1099.935000px;}
.y3_c00237{bottom:1107.900000px;}
.y2_c00237{bottom:1114.710000px;}
.y49_c00237{bottom:1174.500000px;}
.h9_c00237{height:29.443359px;}
.h8_c00237{height:30.234375px;}
.h7_c00237{height:36.281250px;}
.h2_c00237{height:58.886719px;}
.h1_c00237{height:60.468750px;}
.h5_c00237{height:64.775391px;}
.h6_c00237{height:70.628906px;}
.h3_c00237{height:70.664062px;}
.h4_c00237{height:78.609375px;}
.h0_c00237{height:1174.500000px;}
.w0_c00237{width:731.977200px;}
.w1_c00237{width:732.000000px;}
.x3e_c00237{left:-21.259800px;}
.x0_c00237{left:0.000000px;}
.x4b_c00237{left:54.715200px;}
.x49_c00237{left:55.765200px;}
.x2a_c00237{left:57.190200px;}
.x29_c00237{left:61.165200px;}
.xe_c00237{left:64.090200px;}
.xb_c00237{left:65.140200px;}
.x7_c00237{left:66.565200px;}
.x6_c00237{left:67.690200px;}
.x4_c00237{left:69.490200px;}
.x48_c00237{left:71.590200px;}
.x23_c00237{left:80.290200px;}
.x4c_c00237{left:88.165200px;}
.x1_c00237{left:89.290200px;}
.xc_c00237{left:95.365200px;}
.xa_c00237{left:100.390200px;}
.x2b_c00237{left:112.315200px;}
.x1f_c00237{left:116.590200px;}
.x2_c00237{left:118.090200px;}
.x18_c00237{left:120.190200px;}
.x20_c00237{left:127.090200px;}
.x9_c00237{left:128.140200px;}
.x2c_c00237{left:130.690200px;}
.x1c_c00237{left:133.540200px;}
.x4d_c00237{left:154.390200px;}
.x5_c00237{left:168.115200px;}
.x21_c00237{left:186.790200px;}
.x2d_c00237{left:191.500200px;}
.x2e_c00237{left:253.390200px;}
.x44_c00237{left:269.590200px;}
.x1e_c00237{left:272.140200px;}
.x16_c00237{left:283.690200px;}
.x2f_c00237{left:287.290200px;}
.x22_c00237{left:290.515200px;}
.x19_c00237{left:291.940200px;}
.x3_c00237{left:294.490200px;}
.x11_c00237{left:303.490200px;}
.x30_c00237{left:304.540200px;}
.x1d_c00237{left:305.590200px;}
.xf_c00237{left:312.115200px;}
.x45_c00237{left:342.715200px;}
.x10_c00237{left:381.190200px;}
.x42_c00237{left:400.990200px;}
.x46_c00237{left:413.590200px;}
.x12_c00237{left:415.765200px;}
.x24_c00237{left:418.315200px;}
.x3f_c00237{left:426.940200px;}
.x1a_c00237{left:435.190200px;}
.x13_c00237{left:445.990200px;}
.x14_c00237{left:452.140200px;}
.x17_c00237{left:453.940200px;}
.x32_c00237{left:456.490200px;}
.x33_c00237{left:472.990200px;}
.x40_c00237{left:481.990200px;}
.x3d_c00237{left:484.915200px;}
.x34_c00237{left:486.715200px;}
.x35_c00237{left:488.890200px;}
.x3c_c00237{left:491.365200px;}
.x47_c00237{left:497.140200px;}
.x3b_c00237{left:500.740200px;}
.x37_c00237{left:504.340200px;}
.x3a_c00237{left:510.115200px;}
.x25_c00237{left:514.090200px;}
.x38_c00237{left:515.140200px;}
.x39_c00237{left:516.940200px;}
.x41_c00237{left:528.790200px;}
.x26_c00237{left:530.290200px;}
.x1b_c00237{left:538.915200px;}
.x43_c00237{left:546.115200px;}
.x31_c00237{left:547.915200px;}
.x27_c00237{left:552.565200px;}
.x28_c00237{left:566.290200px;}
.x4a_c00237{left:608.740200px;}
.x36_c00237{left:645.115200px;}
.x15_c00237{left:652.315200px;}
.x8_c00237{left:661.315200px;}
.xd_c00237{left:663.490200px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls0_c00237{letter-spacing:0.000000pt;}
.ws0_c00237{word-spacing:0.000000pt;}
.fs5_c00237{font-size:26.666667pt;}
.fs4_c00237{font-size:32.000000pt;}
.fs0_c00237{font-size:53.333333pt;}
.fs3_c00237{font-size:58.666667pt;}
.fs1_c00237{font-size:64.000000pt;}
.fs2_c00237{font-size:69.333333pt;}
.y0_c00237{bottom:0.000000pt;}
.y63_c00237{bottom:86.253333pt;}
.y62_c00237{bottom:87.186667pt;}
.y61_c00237{bottom:91.333333pt;}
.y60_c00237{bottom:94.253333pt;}
.y5f_c00237{bottom:108.666667pt;}
.y5e_c00237{bottom:110.920000pt;}
.y5d_c00237{bottom:114.720000pt;}
.y5c_c00237{bottom:117.586667pt;}
.y5b_c00237{bottom:125.000000pt;}
.y5a_c00237{bottom:125.853333pt;}
.y59_c00237{bottom:133.253333pt;}
.y58_c00237{bottom:199.520000pt;}
.y57_c00237{bottom:206.520000pt;}
.y56_c00237{bottom:206.853333pt;}
.y53_c00237{bottom:213.853333pt;}
.y54_c00237{bottom:213.920000pt;}
.y55_c00237{bottom:214.853333pt;}
.y52_c00237{bottom:225.466667pt;}
.y51_c00237{bottom:226.053333pt;}
.y4f_c00237{bottom:239.853333pt;}
.y4e_c00237{bottom:241.133333pt;}
.y50_c00237{bottom:245.253333pt;}
.y46_c00237{bottom:252.666667pt;}
.y48_c00237{bottom:252.920000pt;}
.y47_c00237{bottom:253.000000pt;}
.y4b_c00237{bottom:253.253333pt;}
.y4d_c00237{bottom:254.186667pt;}
.y4a_c00237{bottom:254.253333pt;}
.y4c_c00237{bottom:261.000000pt;}
.y3a_c00237{bottom:281.720000pt;}
.y39_c00237{bottom:282.386667pt;}
.y45_c00237{bottom:292.333333pt;}
.y38_c00237{bottom:297.133333pt;}
.y37_c00237{bottom:298.133333pt;}
.y44_c00237{bottom:298.720000pt;}
.y43_c00237{bottom:306.720000pt;}
.y42_c00237{bottom:307.000000pt;}
.y41_c00237{bottom:308.000000pt;}
.y40_c00237{bottom:309.920000pt;}
.y3f_c00237{bottom:310.253333pt;}
.y36_c00237{bottom:316.000000pt;}
.y3d_c00237{bottom:317.853333pt;}
.y35_c00237{bottom:322.053333pt;}
.y3c_c00237{bottom:333.253333pt;}
.y34_c00237{bottom:333.853333pt;}
.y3b_c00237{bottom:334.253333pt;}
.y3e_c00237{bottom:339.053333pt;}
.y30_c00237{bottom:347.386667pt;}
.y31_c00237{bottom:347.666667pt;}
.y33_c00237{bottom:354.053333pt;}
.y32_c00237{bottom:355.053333pt;}
.y2f_c00237{bottom:386.720000pt;}
.y2e_c00237{bottom:397.253333pt;}
.y2d_c00237{bottom:412.253333pt;}
.y2c_c00237{bottom:417.720000pt;}
.y2b_c00237{bottom:448.453333pt;}
.y2a_c00237{bottom:465.720000pt;}
.y29_c00237{bottom:465.786667pt;}
.y28_c00237{bottom:478.253333pt;}
.y27_c00237{bottom:478.853333pt;}
.y26_c00237{bottom:480.453333pt;}
.y25_c00237{bottom:480.786667pt;}
.y23_c00237{bottom:487.186667pt;}
.y22_c00237{bottom:493.253333pt;}
.y24_c00237{bottom:494.253333pt;}
.y21_c00237{bottom:494.520000pt;}
.y20_c00237{bottom:494.586667pt;}
.y1f_c00237{bottom:525.586667pt;}
.y1e_c00237{bottom:526.186667pt;}
.y1d_c00237{bottom:542.253333pt;}
.y1c_c00237{bottom:557.000000pt;}
.y1b_c00237{bottom:608.786667pt;}
.y19_c00237{bottom:627.666667pt;}
.y1a_c00237{bottom:628.000000pt;}
.y18_c00237{bottom:647.186667pt;}
.y15_c00237{bottom:664.786667pt;}
.y16_c00237{bottom:666.733333pt;}
.y17_c00237{bottom:667.066667pt;}
.y14_c00237{bottom:686.266667pt;}
.y13_c00237{bottom:705.466667pt;}
.y12_c00237{bottom:724.333333pt;}
.y10_c00237{bottom:740.000000pt;}
.y11_c00237{bottom:740.666667pt;}
.ye_c00237{bottom:761.800000pt;}
.yf_c00237{bottom:764.000000pt;}
.yd_c00237{bottom:781.266667pt;}
.yc_c00237{bottom:799.853333pt;}
.yb_c00237{bottom:819.666667pt;}
.ya_c00237{bottom:838.853333pt;}
.y9_c00237{bottom:858.720000pt;}
.y8_c00237{bottom:877.600000pt;}
.y6_c00237{bottom:890.053333pt;}
.y7_c00237{bottom:897.133333pt;}
.y5_c00237{bottom:916.000000pt;}
.y4_c00237{bottom:934.186667pt;}
.y1_c00237{bottom:977.720000pt;}
.y3_c00237{bottom:984.800000pt;}
.y2_c00237{bottom:990.853333pt;}
.y49_c00237{bottom:1044.000000pt;}
.h9_c00237{height:26.171875pt;}
.h8_c00237{height:26.875000pt;}
.h7_c00237{height:32.250000pt;}
.h2_c00237{height:52.343750pt;}
.h1_c00237{height:53.750000pt;}
.h5_c00237{height:57.578125pt;}
.h6_c00237{height:62.781250pt;}
.h3_c00237{height:62.812500pt;}
.h4_c00237{height:69.875000pt;}
.h0_c00237{height:1044.000000pt;}
.w0_c00237{width:650.646400pt;}
.w1_c00237{width:650.666667pt;}
.x3e_c00237{left:-18.897600pt;}
.x0_c00237{left:0.000000pt;}
.x4b_c00237{left:48.635733pt;}
.x49_c00237{left:49.569067pt;}
.x2a_c00237{left:50.835733pt;}
.x29_c00237{left:54.369067pt;}
.xe_c00237{left:56.969067pt;}
.xb_c00237{left:57.902400pt;}
.x7_c00237{left:59.169067pt;}
.x6_c00237{left:60.169067pt;}
.x4_c00237{left:61.769067pt;}
.x48_c00237{left:63.635733pt;}
.x23_c00237{left:71.369067pt;}
.x4c_c00237{left:78.369067pt;}
.x1_c00237{left:79.369067pt;}
.xc_c00237{left:84.769067pt;}
.xa_c00237{left:89.235733pt;}
.x2b_c00237{left:99.835733pt;}
.x1f_c00237{left:103.635733pt;}
.x2_c00237{left:104.969067pt;}
.x18_c00237{left:106.835733pt;}
.x20_c00237{left:112.969067pt;}
.x9_c00237{left:113.902400pt;}
.x2c_c00237{left:116.169067pt;}
.x1c_c00237{left:118.702400pt;}
.x4d_c00237{left:137.235733pt;}
.x5_c00237{left:149.435733pt;}
.x21_c00237{left:166.035733pt;}
.x2d_c00237{left:170.222400pt;}
.x2e_c00237{left:225.235733pt;}
.x44_c00237{left:239.635733pt;}
.x1e_c00237{left:241.902400pt;}
.x16_c00237{left:252.169067pt;}
.x2f_c00237{left:255.369067pt;}
.x22_c00237{left:258.235733pt;}
.x19_c00237{left:259.502400pt;}
.x3_c00237{left:261.769067pt;}
.x11_c00237{left:269.769067pt;}
.x30_c00237{left:270.702400pt;}
.x1d_c00237{left:271.635733pt;}
.xf_c00237{left:277.435733pt;}
.x45_c00237{left:304.635733pt;}
.x10_c00237{left:338.835733pt;}
.x42_c00237{left:356.435733pt;}
.x46_c00237{left:367.635733pt;}
.x12_c00237{left:369.569067pt;}
.x24_c00237{left:371.835733pt;}
.x3f_c00237{left:379.502400pt;}
.x1a_c00237{left:386.835733pt;}
.x13_c00237{left:396.435733pt;}
.x14_c00237{left:401.902400pt;}
.x17_c00237{left:403.502400pt;}
.x32_c00237{left:405.769067pt;}
.x33_c00237{left:420.435733pt;}
.x40_c00237{left:428.435733pt;}
.x3d_c00237{left:431.035733pt;}
.x34_c00237{left:432.635733pt;}
.x35_c00237{left:434.569067pt;}
.x3c_c00237{left:436.769067pt;}
.x47_c00237{left:441.902400pt;}
.x3b_c00237{left:445.102400pt;}
.x37_c00237{left:448.302400pt;}
.x3a_c00237{left:453.435733pt;}
.x25_c00237{left:456.969067pt;}
.x38_c00237{left:457.902400pt;}
.x39_c00237{left:459.502400pt;}
.x41_c00237{left:470.035733pt;}
.x26_c00237{left:471.369067pt;}
.x1b_c00237{left:479.035733pt;}
.x43_c00237{left:485.435733pt;}
.x31_c00237{left:487.035733pt;}
.x27_c00237{left:491.169067pt;}
.x28_c00237{left:503.369067pt;}
.x4a_c00237{left:541.102400pt;}
.x36_c00237{left:573.435733pt;}
.x15_c00237{left:579.835733pt;}
.x8_c00237{left:587.835733pt;}
.xd_c00237{left:589.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3306065349107d176fc10fd8.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00238;src:url('chunks/assets/font_3eb04d1bc7d5e05c6f5ca03a.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00238{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mf_c00238{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m0_c00238{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c00238{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c00238{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c00238{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00238{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00238{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00238{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00238{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00238{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00238{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00238{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00238{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00238{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00238{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00238{color:transparent;}
.fs0_c00238{font-size:60.000000px;}
.fs2_c00238{font-size:66.000000px;}
.fs1_c00238{font-size:72.000000px;}
.y0_c00238{bottom:0.000000px;}
.y32_c00238{bottom:89.460000px;}
.y31_c00238{bottom:107.085000px;}
.y30_c00238{bottom:123.585000px;}
.y2f_c00238{bottom:139.500000px;}
.y2e_c00238{bottom:156.435000px;}
.y2d_c00238{bottom:171.585000px;}
.y2c_c00238{bottom:173.310000px;}
.y2a_c00238{bottom:189.135000px;}
.y2b_c00238{bottom:192.435000px;}
.y29_c00238{bottom:205.410000px;}
.y28_c00238{bottom:256.185000px;}
.y27_c00238{bottom:276.660000px;}
.y26_c00238{bottom:297.525000px;}
.y25_c00238{bottom:318.435000px;}
.y24_c00238{bottom:339.285000px;}
.y23_c00238{bottom:360.210000px;}
.y22_c00238{bottom:380.025000px;}
.y21_c00238{bottom:401.250000px;}
.y20_c00238{bottom:422.085000px;}
.y1f_c00238{bottom:443.010000px;}
.y1e_c00238{bottom:464.250000px;}
.y1d_c00238{bottom:485.760000px;}
.y1c_c00238{bottom:506.685000px;}
.y1b_c00238{bottom:527.910000px;}
.y1a_c00238{bottom:548.835000px;}
.y19_c00238{bottom:570.060000px;}
.y18_c00238{bottom:591.285000px;}
.y17_c00238{bottom:612.510000px;}
.y16_c00238{bottom:633.435000px;}
.y15_c00238{bottom:654.660000px;}
.y14_c00238{bottom:676.260000px;}
.y13_c00238{bottom:697.185000px;}
.y12_c00238{bottom:718.410000px;}
.y11_c00238{bottom:740.010000px;}
.y10_c00238{bottom:760.500000px;}
.yf_c00238{bottom:782.085000px;}
.ye_c00238{bottom:803.310000px;}
.yd_c00238{bottom:824.550000px;}
.yc_c00238{bottom:845.835000px;}
.yb_c00238{bottom:866.685000px;}
.ya_c00238{bottom:887.925000px;}
.y9_c00238{bottom:909.525000px;}
.y8_c00238{bottom:929.685000px;}
.y7_c00238{bottom:950.550000px;}
.y6_c00238{bottom:972.900000px;}
.y5_c00238{bottom:993.435000px;}
.y4_c00238{bottom:1014.300000px;}
.y3_c00238{bottom:1068.675000px;}
.y2_c00238{bottom:1071.900000px;}
.y1_c00238{bottom:1072.650000px;}
.h1_c00238{height:58.886719px;}
.h3_c00238{height:64.775391px;}
.h4_c00238{height:66.515625px;}
.h2_c00238{height:70.664062px;}
.h0_c00238{height:1174.500000px;}
.w0_c00238{width:731.977200px;}
.w1_c00238{width:732.000000px;}
.x0_c00238{left:0.000000px;}
.x5_c00238{left:50.365200px;}
.x6_c00238{left:51.490200px;}
.x8_c00238{left:52.540200px;}
.x9_c00238{left:53.965200px;}
.xa_c00238{left:55.765200px;}
.xd_c00238{left:57.190200px;}
.xc_c00238{left:58.315200px;}
.xe_c00238{left:59.365200px;}
.x10_c00238{left:60.490200px;}
.x12_c00238{left:62.290200px;}
.x18_c00238{left:63.715200px;}
.x16_c00238{left:65.515200px;}
.x14_c00238{left:72.715200px;}
.x13_c00238{left:79.915200px;}
.x4_c00238{left:83.515200px;}
.x7_c00238{left:84.925200px;}
.xb_c00238{left:88.915200px;}
.xf_c00238{left:92.890200px;}
.x11_c00238{left:94.690200px;}
.x17_c00238{left:97.915200px;}
.x1_c00238{left:265.990200px;}
.x2_c00238{left:461.140200px;}
.x3_c00238{left:614.890200px;}
.x15_c00238{left:660.565200px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls0_c00238{letter-spacing:0.000000pt;}
.ws0_c00238{word-spacing:0.000000pt;}
.fs0_c00238{font-size:53.333333pt;}
.fs2_c00238{font-size:58.666667pt;}
.fs1_c00238{font-size:64.000000pt;}
.y0_c00238{bottom:0.000000pt;}
.y32_c00238{bottom:79.520000pt;}
.y31_c00238{bottom:95.186667pt;}
.y30_c00238{bottom:109.853333pt;}
.y2f_c00238{bottom:124.000000pt;}
.y2e_c00238{bottom:139.053333pt;}
.y2d_c00238{bottom:152.520000pt;}
.y2c_c00238{bottom:154.053333pt;}
.y2a_c00238{bottom:168.120000pt;}
.y2b_c00238{bottom:171.053333pt;}
.y29_c00238{bottom:182.586667pt;}
.y28_c00238{bottom:227.720000pt;}
.y27_c00238{bottom:245.920000pt;}
.y26_c00238{bottom:264.466667pt;}
.y25_c00238{bottom:283.053333pt;}
.y24_c00238{bottom:301.586667pt;}
.y23_c00238{bottom:320.186667pt;}
.y22_c00238{bottom:337.800000pt;}
.y21_c00238{bottom:356.666667pt;}
.y20_c00238{bottom:375.186667pt;}
.y1f_c00238{bottom:393.786667pt;}
.y1e_c00238{bottom:412.666667pt;}
.y1d_c00238{bottom:431.786667pt;}
.y1c_c00238{bottom:450.386667pt;}
.y1b_c00238{bottom:469.253333pt;}
.y1a_c00238{bottom:487.853333pt;}
.y19_c00238{bottom:506.720000pt;}
.y18_c00238{bottom:525.586667pt;}
.y17_c00238{bottom:544.453333pt;}
.y16_c00238{bottom:563.053333pt;}
.y15_c00238{bottom:581.920000pt;}
.y14_c00238{bottom:601.120000pt;}
.y13_c00238{bottom:619.720000pt;}
.y12_c00238{bottom:638.586667pt;}
.y11_c00238{bottom:657.786667pt;}
.y10_c00238{bottom:676.000000pt;}
.yf_c00238{bottom:695.186667pt;}
.ye_c00238{bottom:714.053333pt;}
.yd_c00238{bottom:732.933333pt;}
.yc_c00238{bottom:751.853333pt;}
.yb_c00238{bottom:770.386667pt;}
.ya_c00238{bottom:789.266667pt;}
.y9_c00238{bottom:808.466667pt;}
.y8_c00238{bottom:826.386667pt;}
.y7_c00238{bottom:844.933333pt;}
.y6_c00238{bottom:864.800000pt;}
.y5_c00238{bottom:883.053333pt;}
.y4_c00238{bottom:901.600000pt;}
.y3_c00238{bottom:949.933333pt;}
.y2_c00238{bottom:952.800000pt;}
.y1_c00238{bottom:953.466667pt;}
.h1_c00238{height:52.343750pt;}
.h3_c00238{height:57.578125pt;}
.h4_c00238{height:59.125000pt;}
.h2_c00238{height:62.812500pt;}
.h0_c00238{height:1044.000000pt;}
.w0_c00238{width:650.646400pt;}
.w1_c00238{width:650.666667pt;}
.x0_c00238{left:0.000000pt;}
.x5_c00238{left:44.769067pt;}
.x6_c00238{left:45.769067pt;}
.x8_c00238{left:46.702400pt;}
.x9_c00238{left:47.969067pt;}
.xa_c00238{left:49.569067pt;}
.xd_c00238{left:50.835733pt;}
.xc_c00238{left:51.835733pt;}
.xe_c00238{left:52.769067pt;}
.x10_c00238{left:53.769067pt;}
.x12_c00238{left:55.369067pt;}
.x18_c00238{left:56.635733pt;}
.x16_c00238{left:58.235733pt;}
.x14_c00238{left:64.635733pt;}
.x13_c00238{left:71.035733pt;}
.x4_c00238{left:74.235733pt;}
.x7_c00238{left:75.489067pt;}
.xb_c00238{left:79.035733pt;}
.xf_c00238{left:82.569067pt;}
.x11_c00238{left:84.169067pt;}
.x17_c00238{left:87.035733pt;}
.x1_c00238{left:236.435733pt;}
.x2_c00238{left:409.902400pt;}
.x3_c00238{left:546.569067pt;}
.x15_c00238{left:587.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_caaa11f85894500eb6204d84.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00239;src:url('chunks/assets/font_d6cf8d1f0475c5fae7da90c6.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00239;src:url('chunks/assets/font_676d42c346eb5cb46e2a28d9.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00239{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m0_c00239{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m4_c00239{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00239{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00239{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c00239{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c00239{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c00239{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00239{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00239{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00239{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma_c00239{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00239{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m13_c00239{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00239{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00239{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00239{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00239{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00239{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00239{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m16_c00239{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m14_c00239{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc_c00239{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1_c00239{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.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;}
}
.ws0_c00239{word-spacing:0.000000px;}
.fc0_c00239{color:transparent;}
.fs1_c00239{font-size:60.000000px;}
.fs2_c00239{font-size:72.000000px;}
.fs0_c00239{font-size:78.000000px;}
.y0_c00239{bottom:0.000000px;}
.y36_c00239{bottom:174.000000px;}
.y35_c00239{bottom:189.510000px;}
.y34_c00239{bottom:211.875000px;}
.y33_c00239{bottom:230.535000px;}
.y32_c00239{bottom:230.910000px;}
.y31_c00239{bottom:234.510000px;}
.y30_c00239{bottom:256.125000px;}
.y2f_c00239{bottom:278.085000px;}
.y2e_c00239{bottom:299.685000px;}
.y2d_c00239{bottom:321.660000px;}
.y2c_c00239{bottom:342.900000px;}
.y2b_c00239{bottom:365.250000px;}
.y2a_c00239{bottom:387.210000px;}
.y29_c00239{bottom:409.125000px;}
.y28_c00239{bottom:431.085000px;}
.y27_c00239{bottom:452.685000px;}
.y26_c00239{bottom:474.660000px;}
.y25_c00239{bottom:496.260000px;}
.y24_c00239{bottom:517.500000px;}
.y23_c00239{bottom:539.085000px;}
.y22_c00239{bottom:560.310000px;}
.y21_c00239{bottom:582.285000px;}
.y20_c00239{bottom:604.260000px;}
.y1f_c00239{bottom:626.250000px;}
.y1e_c00239{bottom:647.835000px;}
.y1d_c00239{bottom:669.810000px;}
.y1c_c00239{bottom:691.710000px;}
.y1b_c00239{bottom:713.310000px;}
.y1a_c00239{bottom:734.910000px;}
.y19_c00239{bottom:757.260000px;}
.y18_c00239{bottom:778.875000px;}
.y16_c00239{bottom:795.750000px;}
.y17_c00239{bottom:795.810000px;}
.y15_c00239{bottom:800.835000px;}
.y14_c00239{bottom:821.310000px;}
.y13_c00239{bottom:842.925000px;}
.y12_c00239{bottom:863.835000px;}
.yf_c00239{bottom:882.900000px;}
.y10_c00239{bottom:886.125000px;}
.y11_c00239{bottom:887.925000px;}
.ye_c00239{bottom:907.710000px;}
.yd_c00239{bottom:929.310000px;}
.ya_c00239{bottom:947.685000px;}
.yb_c00239{bottom:952.050000px;}
.yc_c00239{bottom:953.460000px;}
.y9_c00239{bottom:965.310000px;}
.y8_c00239{bottom:994.125000px;}
.y7_c00239{bottom:1006.050000px;}
.y4_c00239{bottom:1027.275000px;}
.y5_c00239{bottom:1030.125000px;}
.y6_c00239{bottom:1037.310000px;}
.y1_c00239{bottom:1084.875000px;}
.y3_c00239{bottom:1094.250000px;}
.y2_c00239{bottom:1099.275000px;}
.h2_c00239{height:58.886719px;}
.h4_c00239{height:70.628906px;}
.h3_c00239{height:70.664062px;}
.h6_c00239{height:72.562500px;}
.h5_c00239{height:76.552734px;}
.h1_c00239{height:78.609375px;}
.h0_c00239{height:1174.500000px;}
.w0_c00239{width:731.977200px;}
.w1_c00239{width:732.000000px;}
.x0_c00239{left:0.000000px;}
.x17_c00239{left:65.890200px;}
.x15_c00239{left:66.940200px;}
.x14_c00239{left:67.990200px;}
.x13_c00239{left:69.490200px;}
.x10_c00239{left:70.915200px;}
.xe_c00239{left:71.965200px;}
.xd_c00239{left:73.090200px;}
.xb_c00239{left:74.140200px;}
.x4_c00239{left:76.675200px;}
.x11_c00239{left:90.340200px;}
.x1_c00239{left:97.915200px;}
.x16_c00239{left:99.715200px;}
.x8_c00239{left:106.165200px;}
.x7_c00239{left:107.590200px;}
.x2_c00239{left:124.540200px;}
.x12_c00239{left:133.165200px;}
.xf_c00239{left:144.715200px;}
.x5_c00239{left:199.375200px;}
.x6_c00239{left:213.790200px;}
.x3_c00239{left:301.990200px;}
.x9_c00239{left:407.890200px;}
.xc_c00239{left:428.740200px;}
.xa_c00239{left:469.765200px;}
.x18_c00239{left:651.565200px;}
.x19_c00239{left:670.315200px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls0_c00239{letter-spacing:0.000000pt;}
.ws0_c00239{word-spacing:0.000000pt;}
.fs1_c00239{font-size:53.333333pt;}
.fs2_c00239{font-size:64.000000pt;}
.fs0_c00239{font-size:69.333333pt;}
.y0_c00239{bottom:0.000000pt;}
.y36_c00239{bottom:154.666667pt;}
.y35_c00239{bottom:168.453333pt;}
.y34_c00239{bottom:188.333333pt;}
.y33_c00239{bottom:204.920000pt;}
.y32_c00239{bottom:205.253333pt;}
.y31_c00239{bottom:208.453333pt;}
.y30_c00239{bottom:227.666667pt;}
.y2f_c00239{bottom:247.186667pt;}
.y2e_c00239{bottom:266.386667pt;}
.y2d_c00239{bottom:285.920000pt;}
.y2c_c00239{bottom:304.800000pt;}
.y2b_c00239{bottom:324.666667pt;}
.y2a_c00239{bottom:344.186667pt;}
.y29_c00239{bottom:363.666667pt;}
.y28_c00239{bottom:383.186667pt;}
.y27_c00239{bottom:402.386667pt;}
.y26_c00239{bottom:421.920000pt;}
.y25_c00239{bottom:441.120000pt;}
.y24_c00239{bottom:460.000000pt;}
.y23_c00239{bottom:479.186667pt;}
.y22_c00239{bottom:498.053333pt;}
.y21_c00239{bottom:517.586667pt;}
.y20_c00239{bottom:537.120000pt;}
.y1f_c00239{bottom:556.666667pt;}
.y1e_c00239{bottom:575.853333pt;}
.y1d_c00239{bottom:595.386667pt;}
.y1c_c00239{bottom:614.853333pt;}
.y1b_c00239{bottom:634.053333pt;}
.y1a_c00239{bottom:653.253333pt;}
.y19_c00239{bottom:673.120000pt;}
.y18_c00239{bottom:692.333333pt;}
.y16_c00239{bottom:707.333333pt;}
.y17_c00239{bottom:707.386667pt;}
.y15_c00239{bottom:711.853333pt;}
.y14_c00239{bottom:730.053333pt;}
.y13_c00239{bottom:749.266667pt;}
.y12_c00239{bottom:767.853333pt;}
.yf_c00239{bottom:784.800000pt;}
.y10_c00239{bottom:787.666667pt;}
.y11_c00239{bottom:789.266667pt;}
.ye_c00239{bottom:806.853333pt;}
.yd_c00239{bottom:826.053333pt;}
.ya_c00239{bottom:842.386667pt;}
.yb_c00239{bottom:846.266667pt;}
.yc_c00239{bottom:847.520000pt;}
.y9_c00239{bottom:858.053333pt;}
.y8_c00239{bottom:883.666667pt;}
.y7_c00239{bottom:894.266667pt;}
.y4_c00239{bottom:913.133333pt;}
.y5_c00239{bottom:915.666667pt;}
.y6_c00239{bottom:922.053333pt;}
.y1_c00239{bottom:964.333333pt;}
.y3_c00239{bottom:972.666667pt;}
.y2_c00239{bottom:977.133333pt;}
.h2_c00239{height:52.343750pt;}
.h4_c00239{height:62.781250pt;}
.h3_c00239{height:62.812500pt;}
.h6_c00239{height:64.500000pt;}
.h5_c00239{height:68.046875pt;}
.h1_c00239{height:69.875000pt;}
.h0_c00239{height:1044.000000pt;}
.w0_c00239{width:650.646400pt;}
.w1_c00239{width:650.666667pt;}
.x0_c00239{left:0.000000pt;}
.x17_c00239{left:58.569067pt;}
.x15_c00239{left:59.502400pt;}
.x14_c00239{left:60.435733pt;}
.x13_c00239{left:61.769067pt;}
.x10_c00239{left:63.035733pt;}
.xe_c00239{left:63.969067pt;}
.xd_c00239{left:64.969067pt;}
.xb_c00239{left:65.902400pt;}
.x4_c00239{left:68.155733pt;}
.x11_c00239{left:80.302400pt;}
.x1_c00239{left:87.035733pt;}
.x16_c00239{left:88.635733pt;}
.x8_c00239{left:94.369067pt;}
.x7_c00239{left:95.635733pt;}
.x2_c00239{left:110.702400pt;}
.x12_c00239{left:118.369067pt;}
.xf_c00239{left:128.635733pt;}
.x5_c00239{left:177.222400pt;}
.x6_c00239{left:190.035733pt;}
.x3_c00239{left:268.435733pt;}
.x9_c00239{left:362.569067pt;}
.xc_c00239{left:381.102400pt;}
.xa_c00239{left:417.569067pt;}
.x18_c00239{left:579.169067pt;}
.x19_c00239{left:595.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_71d45dcc7868182524bb8419.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00240;src:url('chunks/assets/font_9efd54f13370767b30ea023d.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00240{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00240{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00240{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00240{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7_c00240{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c00240{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00240{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00240{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c00240{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6_c00240{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c00240{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
._0_c00240{margin-left:-24.189366px;}
.fc0_c00240{color:transparent;}
.fs0_c00240{font-size:60.000000px;}
.fs1_c00240{font-size:66.000000px;}
.fs2_c00240{font-size:78.000000px;}
.y0_c00240{bottom:0.000000px;}
.yd_c00240{bottom:868.125000px;}
.ya_c00240{bottom:888.300000px;}
.yb_c00240{bottom:888.675000px;}
.yc_c00240{bottom:890.085000px;}
.y9_c00240{bottom:910.935000px;}
.y8_c00240{bottom:931.875000px;}
.y7_c00240{bottom:952.710000px;}
.y6_c00240{bottom:974.310000px;}
.y5_c00240{bottom:995.550000px;}
.y4_c00240{bottom:1016.835000px;}
.y3_c00240{bottom:1074.435000px;}
.y1_c00240{bottom:1075.800000px;}
.y2_c00240{bottom:1075.875000px;}
.h1_c00240{height:58.886719px;}
.h2_c00240{height:64.775391px;}
.h3_c00240{height:66.515625px;}
.h4_c00240{height:78.609375px;}
.h0_c00240{height:1174.500000px;}
.w0_c00240{width:731.977200px;}
.w1_c00240{width:732.000000px;}
.x0_c00240{left:0.000000px;}
.x5_c00240{left:56.515200px;}
.x4_c00240{left:88.165200px;}
.x6_c00240{left:89.590200px;}
.x7_c00240{left:116.290200px;}
.x8_c00240{left:144.340200px;}
.x1_c00240{left:267.490200px;}
.x2_c00240{left:458.965200px;}
.x3_c00240{left:621.340200px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls0_c00240{letter-spacing:0.000000pt;}
.ws0_c00240{word-spacing:0.000000pt;}
._0_c00240{margin-left:-21.501659pt;}
.fs0_c00240{font-size:53.333333pt;}
.fs1_c00240{font-size:58.666667pt;}
.fs2_c00240{font-size:69.333333pt;}
.y0_c00240{bottom:0.000000pt;}
.yd_c00240{bottom:771.666667pt;}
.ya_c00240{bottom:789.600000pt;}
.yb_c00240{bottom:789.933333pt;}
.yc_c00240{bottom:791.186667pt;}
.y9_c00240{bottom:809.720000pt;}
.y8_c00240{bottom:828.333333pt;}
.y7_c00240{bottom:846.853333pt;}
.y6_c00240{bottom:866.053333pt;}
.y5_c00240{bottom:884.933333pt;}
.y4_c00240{bottom:903.853333pt;}
.y3_c00240{bottom:955.053333pt;}
.y1_c00240{bottom:956.266667pt;}
.y2_c00240{bottom:956.333333pt;}
.h1_c00240{height:52.343750pt;}
.h2_c00240{height:57.578125pt;}
.h3_c00240{height:59.125000pt;}
.h4_c00240{height:69.875000pt;}
.h0_c00240{height:1044.000000pt;}
.w0_c00240{width:650.646400pt;}
.w1_c00240{width:650.666667pt;}
.x0_c00240{left:0.000000pt;}
.x5_c00240{left:50.235733pt;}
.x4_c00240{left:78.369067pt;}
.x6_c00240{left:79.635733pt;}
.x7_c00240{left:103.369067pt;}
.x8_c00240{left:128.302400pt;}
.x1_c00240{left:237.769067pt;}
.x2_c00240{left:407.969067pt;}
.x3_c00240{left:552.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab4435504dc052b384a4c584.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00241;src:url('chunks/assets/font_6098160ae9656ce0d5a766f2.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00241;src:url('chunks/assets/font_0cc2913a88a754d789bdd163.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00241{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4_c00241{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m1_c00241{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c00241{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00241{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.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;}
}
.ws0_c00241{word-spacing:0.000000px;}
.fc0_c00241{color:transparent;}
.fs2_c00241{font-size:90.000000px;}
.fs1_c00241{font-size:96.000000px;}
.fs0_c00241{font-size:168.000000px;}
.y0_c00241{bottom:0.000000px;}
.y6_c00241{bottom:525.435000px;}
.y5_c00241{bottom:527.625000px;}
.y3_c00241{bottom:682.335000px;}
.y4_c00241{bottom:682.710000px;}
.y2_c00241{bottom:683.085000px;}
.y1_c00241{bottom:866.310000px;}
.h4_c00241{height:88.330078px;}
.h2_c00241{height:94.171875px;}
.h3_c00241{height:94.218750px;}
.h1_c00241{height:169.312500px;}
.h0_c00241{height:1174.500000px;}
.w0_c00241{width:731.977200px;}
.w1_c00241{width:732.000000px;}
.x0_c00241{left:0.000000px;}
.x5_c00241{left:53.290200px;}
.x2_c00241{left:54.715200px;}
.x1_c00241{left:90.715200px;}
.x6_c00241{left:263.515200px;}
.x3_c00241{left:345.565200px;}
.x4_c00241{left:397.090200px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls0_c00241{letter-spacing:0.000000pt;}
.ws0_c00241{word-spacing:0.000000pt;}
.fs2_c00241{font-size:80.000000pt;}
.fs1_c00241{font-size:85.333333pt;}
.fs0_c00241{font-size:149.333333pt;}
.y0_c00241{bottom:0.000000pt;}
.y6_c00241{bottom:467.053333pt;}
.y5_c00241{bottom:469.000000pt;}
.y3_c00241{bottom:606.520000pt;}
.y4_c00241{bottom:606.853333pt;}
.y2_c00241{bottom:607.186667pt;}
.y1_c00241{bottom:770.053333pt;}
.h4_c00241{height:78.515625pt;}
.h2_c00241{height:83.708333pt;}
.h3_c00241{height:83.750000pt;}
.h1_c00241{height:150.500000pt;}
.h0_c00241{height:1044.000000pt;}
.w0_c00241{width:650.646400pt;}
.w1_c00241{width:650.666667pt;}
.x0_c00241{left:0.000000pt;}
.x5_c00241{left:47.369067pt;}
.x2_c00241{left:48.635733pt;}
.x1_c00241{left:80.635733pt;}
.x6_c00241{left:234.235733pt;}
.x3_c00241{left:307.169067pt;}
.x4_c00241{left:352.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e131747666849a30fc4e9ce6.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00242;src:url('chunks/assets/font_0c357156ec8dc7e6fde6ce34.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00242;src:url('chunks/assets/font_823688b305cad216ed75d1f2.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00242{transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);}
.m6_c00242{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m19_c00242{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m7_c00242{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m14_c00242{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m1b_c00242{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00242{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c00242{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00242{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00242{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1_c00242{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m0_c00242{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m18_c00242{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00242{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00242{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00242{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8_c00242{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00242{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c00242{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m11_c00242{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c00242{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c00242{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m15_c00242{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m17_c00242{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m12_c00242{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m13_c00242{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m9_c00242{transform:matrix(3.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.775000,0.000000,0.000000,0.250000,0,0);}
.m4_c00242{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00242{color:transparent;}
.fs1_c00242{font-size:54.000000px;}
.fs2_c00242{font-size:66.000000px;}
.fs0_c00242{font-size:72.000000px;}
.fs5_c00242{font-size:78.000000px;}
.fs4_c00242{font-size:126.000000px;}
.fs3_c00242{font-size:198.000000px;}
.y0_c00242{bottom:0.000000px;}
.y34_c00242{bottom:87.660000px;}
.y32_c00242{bottom:108.885000px;}
.y33_c00242{bottom:111.435000px;}
.y30_c00242{bottom:129.435000px;}
.y31_c00242{bottom:130.875000px;}
.y2e_c00242{bottom:149.625000px;}
.y2d_c00242{bottom:150.285000px;}
.y2f_c00242{bottom:152.835000px;}
.y2c_c00242{bottom:170.835000px;}
.y2a_c00242{bottom:191.010000px;}
.y2b_c00242{bottom:194.535000px;}
.y29_c00242{bottom:211.500000px;}
.y28_c00242{bottom:232.410000px;}
.y27_c00242{bottom:252.885000px;}
.y26_c00242{bottom:273.750000px;}
.y25_c00242{bottom:294.285000px;}
.y24_c00242{bottom:315.150000px;}
.y23_c00242{bottom:335.685000px;}
.y21_c00242{bottom:337.500000px;}
.y20_c00242{bottom:356.625000px;}
.y22_c00242{bottom:358.785000px;}
.y1e_c00242{bottom:377.085000px;}
.y1f_c00242{bottom:379.275000px;}
.y1d_c00242{bottom:398.310000px;}
.y1c_c00242{bottom:418.875000px;}
.y1b_c00242{bottom:439.785000px;}
.y1a_c00242{bottom:440.085000px;}
.y19_c00242{bottom:440.835000px;}
.y17_c00242{bottom:461.010000px;}
.y18_c00242{bottom:461.685000px;}
.y16_c00242{bottom:482.535000px;}
.y15_c00242{bottom:503.460000px;}
.y14_c00242{bottom:525.060000px;}
.y13_c00242{bottom:546.000000px;}
.y12_c00242{bottom:567.210000px;}
.y11_c00242{bottom:588.435000px;}
.y10_c00242{bottom:609.285000px;}
.yf_c00242{bottom:630.510000px;}
.ye_c00242{bottom:651.435000px;}
.yd_c00242{bottom:672.660000px;}
.yc_c00242{bottom:693.885000px;}
.yb_c00242{bottom:714.750000px;}
.ya_c00242{bottom:715.200000px;}
.y9_c00242{bottom:716.250000px;}
.y8_c00242{bottom:764.835000px;}
.y7_c00242{bottom:864.150000px;}
.y6_c00242{bottom:1068.300000px;}
.y5_c00242{bottom:1071.210000px;}
.y4_c00242{bottom:1071.525000px;}
.y3_c00242{bottom:1071.585000px;}
.y2_c00242{bottom:1072.560000px;}
.y1_c00242{bottom:1072.935000px;}
.h2_c00242{height:52.998047px;}
.h3_c00242{height:64.775391px;}
.h7_c00242{height:70.628906px;}
.h1_c00242{height:70.664062px;}
.h6_c00242{height:78.609375px;}
.h5_c00242{height:126.984375px;}
.h4_c00242{height:194.326172px;}
.h0_c00242{height:1174.500000px;}
.w0_c00242{width:731.977200px;}
.w1_c00242{width:732.000000px;}
.x0_c00242{left:0.000000px;}
.xc_c00242{left:61.915200px;}
.xd_c00242{left:62.965200px;}
.x16_c00242{left:64.090200px;}
.x7_c00242{left:65.140200px;}
.x18_c00242{left:66.565200px;}
.x11_c00242{left:91.390200px;}
.xe_c00242{left:94.990200px;}
.x9_c00242{left:96.490200px;}
.x1e_c00242{left:97.915200px;}
.x19_c00242{left:158.365200px;}
.x12_c00242{left:163.765200px;}
.x1a_c00242{left:182.125200px;}
.x8_c00242{left:258.790200px;}
.x1_c00242{left:273.565200px;}
.x2_c00242{left:301.315200px;}
.xa_c00242{left:355.690200px;}
.xb_c00242{left:378.340200px;}
.x1c_c00242{left:385.525200px;}
.x3_c00242{left:416.890200px;}
.x4_c00242{left:418.690200px;}
.x5_c00242{left:468.715200px;}
.x1d_c00242{left:495.340200px;}
.xf_c00242{left:512.965200px;}
.x10_c00242{left:543.190200px;}
.x1b_c00242{left:598.990200px;}
.x15_c00242{left:607.990200px;}
.x14_c00242{left:617.365200px;}
.x6_c00242{left:630.715200px;}
.x13_c00242{left:638.590200px;}
.x17_c00242{left:649.765200px;}
.x1f_c00242{left:655.915200px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls0_c00242{letter-spacing:0.000000pt;}
.ws0_c00242{word-spacing:0.000000pt;}
.fs1_c00242{font-size:48.000000pt;}
.fs2_c00242{font-size:58.666667pt;}
.fs0_c00242{font-size:64.000000pt;}
.fs5_c00242{font-size:69.333333pt;}
.fs4_c00242{font-size:112.000000pt;}
.fs3_c00242{font-size:176.000000pt;}
.y0_c00242{bottom:0.000000pt;}
.y34_c00242{bottom:77.920000pt;}
.y32_c00242{bottom:96.786667pt;}
.y33_c00242{bottom:99.053333pt;}
.y30_c00242{bottom:115.053333pt;}
.y31_c00242{bottom:116.333333pt;}
.y2e_c00242{bottom:133.000000pt;}
.y2d_c00242{bottom:133.586667pt;}
.y2f_c00242{bottom:135.853333pt;}
.y2c_c00242{bottom:151.853333pt;}
.y2a_c00242{bottom:169.786667pt;}
.y2b_c00242{bottom:172.920000pt;}
.y29_c00242{bottom:188.000000pt;}
.y28_c00242{bottom:206.586667pt;}
.y27_c00242{bottom:224.786667pt;}
.y26_c00242{bottom:243.333333pt;}
.y25_c00242{bottom:261.586667pt;}
.y24_c00242{bottom:280.133333pt;}
.y23_c00242{bottom:298.386667pt;}
.y21_c00242{bottom:300.000000pt;}
.y20_c00242{bottom:317.000000pt;}
.y22_c00242{bottom:318.920000pt;}
.y1e_c00242{bottom:335.186667pt;}
.y1f_c00242{bottom:337.133333pt;}
.y1d_c00242{bottom:354.053333pt;}
.y1c_c00242{bottom:372.333333pt;}
.y1b_c00242{bottom:390.920000pt;}
.y1a_c00242{bottom:391.186667pt;}
.y19_c00242{bottom:391.853333pt;}
.y17_c00242{bottom:409.786667pt;}
.y18_c00242{bottom:410.386667pt;}
.y16_c00242{bottom:428.920000pt;}
.y15_c00242{bottom:447.520000pt;}
.y14_c00242{bottom:466.720000pt;}
.y13_c00242{bottom:485.333333pt;}
.y12_c00242{bottom:504.186667pt;}
.y11_c00242{bottom:523.053333pt;}
.y10_c00242{bottom:541.586667pt;}
.yf_c00242{bottom:560.453333pt;}
.ye_c00242{bottom:579.053333pt;}
.yd_c00242{bottom:597.920000pt;}
.yc_c00242{bottom:616.786667pt;}
.yb_c00242{bottom:635.333333pt;}
.ya_c00242{bottom:635.733333pt;}
.y9_c00242{bottom:636.666667pt;}
.y8_c00242{bottom:679.853333pt;}
.y7_c00242{bottom:768.133333pt;}
.y6_c00242{bottom:949.600000pt;}
.y5_c00242{bottom:952.186667pt;}
.y4_c00242{bottom:952.466667pt;}
.y3_c00242{bottom:952.520000pt;}
.y2_c00242{bottom:953.386667pt;}
.y1_c00242{bottom:953.720000pt;}
.h2_c00242{height:47.109375pt;}
.h3_c00242{height:57.578125pt;}
.h7_c00242{height:62.781250pt;}
.h1_c00242{height:62.812500pt;}
.h6_c00242{height:69.875000pt;}
.h5_c00242{height:112.875000pt;}
.h4_c00242{height:172.734375pt;}
.h0_c00242{height:1044.000000pt;}
.w0_c00242{width:650.646400pt;}
.w1_c00242{width:650.666667pt;}
.x0_c00242{left:0.000000pt;}
.xc_c00242{left:55.035733pt;}
.xd_c00242{left:55.969067pt;}
.x16_c00242{left:56.969067pt;}
.x7_c00242{left:57.902400pt;}
.x18_c00242{left:59.169067pt;}
.x11_c00242{left:81.235733pt;}
.xe_c00242{left:84.435733pt;}
.x9_c00242{left:85.769067pt;}
.x1e_c00242{left:87.035733pt;}
.x19_c00242{left:140.769067pt;}
.x12_c00242{left:145.569067pt;}
.x1a_c00242{left:161.889067pt;}
.x8_c00242{left:230.035733pt;}
.x1_c00242{left:243.169067pt;}
.x2_c00242{left:267.835733pt;}
.xa_c00242{left:316.169067pt;}
.xb_c00242{left:336.302400pt;}
.x1c_c00242{left:342.689067pt;}
.x3_c00242{left:370.569067pt;}
.x4_c00242{left:372.169067pt;}
.x5_c00242{left:416.635733pt;}
.x1d_c00242{left:440.302400pt;}
.xf_c00242{left:455.969067pt;}
.x10_c00242{left:482.835733pt;}
.x1b_c00242{left:532.435733pt;}
.x15_c00242{left:540.435733pt;}
.x14_c00242{left:548.769067pt;}
.x6_c00242{left:560.635733pt;}
.x13_c00242{left:567.635733pt;}
.x17_c00242{left:577.569067pt;}
.x1f_c00242{left:583.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c468ddc830ed045c90813677.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00243;src:url('chunks/assets/font_eefc1146ae4ba06fcb435cfa.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00243;src:url('chunks/assets/font_4cec7fca0d16d9eaf19bf853.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00243{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc_c00243{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6_c00243{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c00243{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00243{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00243{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00243{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00243{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00243{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00243{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00243{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00243{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00243{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00243{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c00243{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c00243{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m12_c00243{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m11_c00243{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1_c00243{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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.000000px;}
.fc0_c00243{color:transparent;}
.fs1_c00243{font-size:54.000000px;}
.fs3_c00243{font-size:66.000000px;}
.fs0_c00243{font-size:72.000000px;}
.fs2_c00243{font-size:90.000000px;}
.y0_c00243{bottom:0.000000px;}
.y34_c00243{bottom:79.710000px;}
.y33_c00243{bottom:92.010000px;}
.y32_c00243{bottom:101.310000px;}
.y31_c00243{bottom:125.760000px;}
.y30_c00243{bottom:143.460000px;}
.y2f_c00243{bottom:144.885000px;}
.y2e_c00243{bottom:150.285000px;}
.y2d_c00243{bottom:166.500000px;}
.y2c_c00243{bottom:195.660000px;}
.y2b_c00243{bottom:210.375000px;}
.y2a_c00243{bottom:233.085000px;}
.y29_c00243{bottom:254.310000px;}
.y28_c00243{bottom:276.660000px;}
.y27_c00243{bottom:298.275000px;}
.y26_c00243{bottom:319.875000px;}
.y25_c00243{bottom:341.835000px;}
.y24_c00243{bottom:363.060000px;}
.y23_c00243{bottom:385.335000px;}
.y22_c00243{bottom:407.310000px;}
.y21_c00243{bottom:428.910000px;}
.y20_c00243{bottom:450.885000px;}
.y1f_c00243{bottom:472.500000px;}
.y1e_c00243{bottom:494.460000px;}
.y1d_c00243{bottom:515.685000px;}
.y1c_c00243{bottom:537.285000px;}
.y1b_c00243{bottom:558.885000px;}
.y1a_c00243{bottom:581.160000px;}
.y19_c00243{bottom:602.835000px;}
.y17_c00243{bottom:624.810000px;}
.y18_c00243{bottom:625.185000px;}
.y16_c00243{bottom:646.410000px;}
.y15_c00243{bottom:668.010000px;}
.y14_c00243{bottom:689.625000px;}
.y13_c00243{bottom:711.210000px;}
.y12_c00243{bottom:732.825000px;}
.y11_c00243{bottom:754.410000px;}
.y10_c00243{bottom:776.310000px;}
.yf_c00243{bottom:797.925000px;}
.ye_c00243{bottom:818.835000px;}
.yd_c00243{bottom:840.375000px;}
.yc_c00243{bottom:861.675000px;}
.yb_c00243{bottom:883.650000px;}
.ya_c00243{bottom:905.250000px;}
.y9_c00243{bottom:923.925000px;}
.y8_c00243{bottom:948.810000px;}
.y7_c00243{bottom:970.800000px;}
.y6_c00243{bottom:992.400000px;}
.y5_c00243{bottom:1013.625000px;}
.y4_c00243{bottom:1035.150000px;}
.y1_c00243{bottom:1083.435000px;}
.y3_c00243{bottom:1092.060000px;}
.y2_c00243{bottom:1098.000000px;}
.h2_c00243{height:52.998047px;}
.h4_c00243{height:66.515625px;}
.h1_c00243{height:70.664062px;}
.h3_c00243{height:88.286133px;}
.h0_c00243{height:1174.500000px;}
.w0_c00243{width:731.977200px;}
.w1_c00243{width:732.000000px;}
.x0_c00243{left:0.000000px;}
.x6_c00243{left:47.890200px;}
.x8_c00243{left:49.990200px;}
.x5_c00243{left:51.115200px;}
.xa_c00243{left:52.165200px;}
.xb_c00243{left:53.290200px;}
.xc_c00243{left:54.340200px;}
.xe_c00243{left:55.390200px;}
.x1_c00243{left:68.365200px;}
.x13_c00243{left:77.740200px;}
.x7_c00243{left:79.915200px;}
.x4_c00243{left:82.090200px;}
.xf_c00243{left:84.550200px;}
.xd_c00243{left:85.990200px;}
.x12_c00243{left:87.790200px;}
.x2_c00243{left:95.740200px;}
.x3_c00243{left:271.090200px;}
.x10_c00243{left:344.890200px;}
.x11_c00243{left:384.490200px;}
.x9_c00243{left:662.365200px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls0_c00243{letter-spacing:0.000000pt;}
.ws0_c00243{word-spacing:0.000000pt;}
.fs1_c00243{font-size:48.000000pt;}
.fs3_c00243{font-size:58.666667pt;}
.fs0_c00243{font-size:64.000000pt;}
.fs2_c00243{font-size:80.000000pt;}
.y0_c00243{bottom:0.000000pt;}
.y34_c00243{bottom:70.853333pt;}
.y33_c00243{bottom:81.786667pt;}
.y32_c00243{bottom:90.053333pt;}
.y31_c00243{bottom:111.786667pt;}
.y30_c00243{bottom:127.520000pt;}
.y2f_c00243{bottom:128.786667pt;}
.y2e_c00243{bottom:133.586667pt;}
.y2d_c00243{bottom:148.000000pt;}
.y2c_c00243{bottom:173.920000pt;}
.y2b_c00243{bottom:187.000000pt;}
.y2a_c00243{bottom:207.186667pt;}
.y29_c00243{bottom:226.053333pt;}
.y28_c00243{bottom:245.920000pt;}
.y27_c00243{bottom:265.133333pt;}
.y26_c00243{bottom:284.333333pt;}
.y25_c00243{bottom:303.853333pt;}
.y24_c00243{bottom:322.720000pt;}
.y23_c00243{bottom:342.520000pt;}
.y22_c00243{bottom:362.053333pt;}
.y21_c00243{bottom:381.253333pt;}
.y20_c00243{bottom:400.786667pt;}
.y1f_c00243{bottom:420.000000pt;}
.y1e_c00243{bottom:439.520000pt;}
.y1d_c00243{bottom:458.386667pt;}
.y1c_c00243{bottom:477.586667pt;}
.y1b_c00243{bottom:496.786667pt;}
.y1a_c00243{bottom:516.586667pt;}
.y19_c00243{bottom:535.853333pt;}
.y17_c00243{bottom:555.386667pt;}
.y18_c00243{bottom:555.720000pt;}
.y16_c00243{bottom:574.586667pt;}
.y15_c00243{bottom:593.786667pt;}
.y14_c00243{bottom:613.000000pt;}
.y13_c00243{bottom:632.186667pt;}
.y12_c00243{bottom:651.400000pt;}
.y11_c00243{bottom:670.586667pt;}
.y10_c00243{bottom:690.053333pt;}
.yf_c00243{bottom:709.266667pt;}
.ye_c00243{bottom:727.853333pt;}
.yd_c00243{bottom:747.000000pt;}
.yc_c00243{bottom:765.933333pt;}
.yb_c00243{bottom:785.466667pt;}
.ya_c00243{bottom:804.666667pt;}
.y9_c00243{bottom:821.266667pt;}
.y8_c00243{bottom:843.386667pt;}
.y7_c00243{bottom:862.933333pt;}
.y6_c00243{bottom:882.133333pt;}
.y5_c00243{bottom:901.000000pt;}
.y4_c00243{bottom:920.133333pt;}
.y1_c00243{bottom:963.053333pt;}
.y3_c00243{bottom:970.720000pt;}
.y2_c00243{bottom:976.000000pt;}
.h2_c00243{height:47.109375pt;}
.h4_c00243{height:59.125000pt;}
.h1_c00243{height:62.812500pt;}
.h3_c00243{height:78.476562pt;}
.h0_c00243{height:1044.000000pt;}
.w0_c00243{width:650.646400pt;}
.w1_c00243{width:650.666667pt;}
.x0_c00243{left:0.000000pt;}
.x6_c00243{left:42.569067pt;}
.x8_c00243{left:44.435733pt;}
.x5_c00243{left:45.435733pt;}
.xa_c00243{left:46.369067pt;}
.xb_c00243{left:47.369067pt;}
.xc_c00243{left:48.302400pt;}
.xe_c00243{left:49.235733pt;}
.x1_c00243{left:60.769067pt;}
.x13_c00243{left:69.102400pt;}
.x7_c00243{left:71.035733pt;}
.x4_c00243{left:72.969067pt;}
.xf_c00243{left:75.155733pt;}
.xd_c00243{left:76.435733pt;}
.x12_c00243{left:78.035733pt;}
.x2_c00243{left:85.102400pt;}
.x3_c00243{left:240.969067pt;}
.x10_c00243{left:306.569067pt;}
.x11_c00243{left:341.769067pt;}
.x9_c00243{left:588.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f08d19f881678a20d32be4b.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00244;src:url('chunks/assets/font_558b10efac69d5de09244297.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00244;src:url('chunks/assets/font_0b1e6c9e0664f5b2cf238414.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00244{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m10_c00244{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00244{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00244{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00244{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00244{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00244{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c00244{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00244{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4_c00244{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00244{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00244{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c00244{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00244{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c00244{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00244{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00244{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c00244{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c00244{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00244{vertical-align:0.000000px;}
.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;}
}
.ws0_c00244{word-spacing:0.000000px;}
.fc0_c00244{color:transparent;}
.fs2_c00244{font-size:54.000000px;}
.fs0_c00244{font-size:60.000000px;}
.fs1_c00244{font-size:72.000000px;}
.y0_c00244{bottom:0.000000px;}
.y18_c00244{bottom:559.560000px;}
.y16_c00244{bottom:587.310000px;}
.y17_c00244{bottom:588.000000px;}
.y15_c00244{bottom:631.185000px;}
.y14_c00244{bottom:674.835000px;}
.y13_c00244{bottom:696.435000px;}
.y12_c00244{bottom:717.660000px;}
.y11_c00244{bottom:738.885000px;}
.y10_c00244{bottom:759.825000px;}
.yf_c00244{bottom:780.675000px;}
.ye_c00244{bottom:801.900000px;}
.yd_c00244{bottom:823.500000px;}
.yc_c00244{bottom:844.710000px;}
.yb_c00244{bottom:865.650000px;}
.ya_c00244{bottom:885.750000px;}
.y9_c00244{bottom:907.050000px;}
.y8_c00244{bottom:928.275000px;}
.y7_c00244{bottom:949.125000px;}
.y6_c00244{bottom:970.710000px;}
.y5_c00244{bottom:991.935000px;}
.y4_c00244{bottom:1012.875000px;}
.y3_c00244{bottom:1067.175000px;}
.y1_c00244{bottom:1070.085000px;}
.y2_c00244{bottom:1080.210000px;}
.h5_c00244{height:52.998047px;}
.h6_c00244{height:54.421875px;}
.h4_c00244{height:58.886719px;}
.h1_c00244{height:60.468750px;}
.h3_c00244{height:70.628906px;}
.h2_c00244{height:70.664062px;}
.h0_c00244{height:1174.500000px;}
.w0_c00244{width:731.977200px;}
.w1_c00244{width:732.000000px;}
.x0_c00244{left:0.000000px;}
.x4_c00244{left:72.715200px;}
.x7_c00244{left:73.765200px;}
.x8_c00244{left:95.365200px;}
.x6_c00244{left:96.490200px;}
.x9_c00244{left:100.090200px;}
.x5_c00244{left:105.115200px;}
.x1_c00244{left:282.940200px;}
.xc_c00244{left:375.115200px;}
.xa_c00244{left:423.340200px;}
.x2_c00244{left:477.340200px;}
.xb_c00244{left:481.990200px;}
.x3_c00244{left:637.165200px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls0_c00244{letter-spacing:0.000000pt;}
.ws0_c00244{word-spacing:0.000000pt;}
.fs2_c00244{font-size:48.000000pt;}
.fs0_c00244{font-size:53.333333pt;}
.fs1_c00244{font-size:64.000000pt;}
.y0_c00244{bottom:0.000000pt;}
.y18_c00244{bottom:497.386667pt;}
.y16_c00244{bottom:522.053333pt;}
.y17_c00244{bottom:522.666667pt;}
.y15_c00244{bottom:561.053333pt;}
.y14_c00244{bottom:599.853333pt;}
.y13_c00244{bottom:619.053333pt;}
.y12_c00244{bottom:637.920000pt;}
.y11_c00244{bottom:656.786667pt;}
.y10_c00244{bottom:675.400000pt;}
.yf_c00244{bottom:693.933333pt;}
.ye_c00244{bottom:712.800000pt;}
.yd_c00244{bottom:732.000000pt;}
.yc_c00244{bottom:750.853333pt;}
.yb_c00244{bottom:769.466667pt;}
.ya_c00244{bottom:787.333333pt;}
.y9_c00244{bottom:806.266667pt;}
.y8_c00244{bottom:825.133333pt;}
.y7_c00244{bottom:843.666667pt;}
.y6_c00244{bottom:862.853333pt;}
.y5_c00244{bottom:881.720000pt;}
.y4_c00244{bottom:900.333333pt;}
.y3_c00244{bottom:948.600000pt;}
.y1_c00244{bottom:951.186667pt;}
.y2_c00244{bottom:960.186667pt;}
.h5_c00244{height:47.109375pt;}
.h6_c00244{height:48.375000pt;}
.h4_c00244{height:52.343750pt;}
.h1_c00244{height:53.750000pt;}
.h3_c00244{height:62.781250pt;}
.h2_c00244{height:62.812500pt;}
.h0_c00244{height:1044.000000pt;}
.w0_c00244{width:650.646400pt;}
.w1_c00244{width:650.666667pt;}
.x0_c00244{left:0.000000pt;}
.x4_c00244{left:64.635733pt;}
.x7_c00244{left:65.569067pt;}
.x8_c00244{left:84.769067pt;}
.x6_c00244{left:85.769067pt;}
.x9_c00244{left:88.969067pt;}
.x5_c00244{left:93.435733pt;}
.x1_c00244{left:251.502400pt;}
.xc_c00244{left:333.435733pt;}
.xa_c00244{left:376.302400pt;}
.x2_c00244{left:424.302400pt;}
.xb_c00244{left:428.435733pt;}
.x3_c00244{left:566.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66b7b25e322bdce2949a1985.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00245;src:url('chunks/assets/font_a78ea5d72e13505e774fda62.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00245{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m3_c00245{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m0_c00245{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c00245{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00245{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00245{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00245{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00245{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma_c00245{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c00245{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00245{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00245{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00245{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00245{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00245{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00245{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m11_c00245{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c00245{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c00245{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00245{color:transparent;}
.fs1_c00245{font-size:60.000000px;}
.fs3_c00245{font-size:66.000000px;}
.fs0_c00245{font-size:72.000000px;}
.fs2_c00245{font-size:156.000000px;}
.y0_c00245{bottom:0.000000px;}
.y29_c00245{bottom:76.500000px;}
.y2a_c00245{bottom:76.875000px;}
.y28_c00245{bottom:78.285000px;}
.y27_c00245{bottom:84.060000px;}
.y26_c00245{bottom:99.885000px;}
.y25_c00245{bottom:121.125000px;}
.y24_c00245{bottom:142.710000px;}
.y23_c00245{bottom:164.685000px;}
.y22_c00245{bottom:186.960000px;}
.y21_c00245{bottom:208.560000px;}
.y20_c00245{bottom:230.250000px;}
.y1f_c00245{bottom:252.510000px;}
.y1e_c00245{bottom:274.875000px;}
.y1d_c00245{bottom:296.085000px;}
.y1c_c00245{bottom:318.750000px;}
.y1b_c00245{bottom:339.660000px;}
.y1a_c00245{bottom:361.275000px;}
.y19_c00245{bottom:383.535000px;}
.y18_c00245{bottom:405.150000px;}
.y17_c00245{bottom:426.810000px;}
.y16_c00245{bottom:448.710000px;}
.y15_c00245{bottom:470.010000px;}
.y14_c00245{bottom:491.910000px;}
.y13_c00245{bottom:513.135000px;}
.y12_c00245{bottom:535.125000px;}
.y11_c00245{bottom:556.410000px;}
.y10_c00245{bottom:578.310000px;}
.yf_c00245{bottom:599.910000px;}
.ye_c00245{bottom:622.260000px;}
.yd_c00245{bottom:644.250000px;}
.yc_c00245{bottom:664.035000px;}
.yb_c00245{bottom:687.435000px;}
.ya_c00245{bottom:708.960000px;}
.y9_c00245{bottom:727.710000px;}
.y8_c00245{bottom:752.250000px;}
.y7_c00245{bottom:774.510000px;}
.y4_c00245{bottom:875.310000px;}
.y5_c00245{bottom:878.925000px;}
.y6_c00245{bottom:885.060000px;}
.y1_c00245{bottom:1078.710000px;}
.y3_c00245{bottom:1090.275000px;}
.y2_c00245{bottom:1094.400000px;}
.h2_c00245{height:58.886719px;}
.h4_c00245{height:64.775391px;}
.h1_c00245{height:70.664062px;}
.h3_c00245{height:162.703125px;}
.h0_c00245{height:1174.500000px;}
.w0_c00245{width:731.977200px;}
.w1_c00245{width:732.000000px;}
.x0_c00245{left:0.000000px;}
.x9_c00245{left:33.490200px;}
.xb_c00245{left:34.540200px;}
.x8_c00245{left:35.950200px;}
.x4_c00245{left:37.090200px;}
.xc_c00245{left:38.515200px;}
.xf_c00245{left:39.565200px;}
.x10_c00245{left:40.990200px;}
.x1_c00245{left:57.940200px;}
.xa_c00245{left:66.565200px;}
.x7_c00245{left:67.990200px;}
.xd_c00245{left:69.790200px;}
.xe_c00245{left:72.340200px;}
.x2_c00245{left:85.675200px;}
.x11_c00245{left:234.340200px;}
.x3_c00245{left:266.740200px;}
.x5_c00245{left:316.090200px;}
.x12_c00245{left:497.140200px;}
.x6_c00245{left:534.565200px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls0_c00245{letter-spacing:0.000000pt;}
.ws0_c00245{word-spacing:0.000000pt;}
.fs1_c00245{font-size:53.333333pt;}
.fs3_c00245{font-size:58.666667pt;}
.fs0_c00245{font-size:64.000000pt;}
.fs2_c00245{font-size:138.666667pt;}
.y0_c00245{bottom:0.000000pt;}
.y29_c00245{bottom:68.000000pt;}
.y2a_c00245{bottom:68.333333pt;}
.y28_c00245{bottom:69.586667pt;}
.y27_c00245{bottom:74.720000pt;}
.y26_c00245{bottom:88.786667pt;}
.y25_c00245{bottom:107.666667pt;}
.y24_c00245{bottom:126.853333pt;}
.y23_c00245{bottom:146.386667pt;}
.y22_c00245{bottom:166.186667pt;}
.y21_c00245{bottom:185.386667pt;}
.y20_c00245{bottom:204.666667pt;}
.y1f_c00245{bottom:224.453333pt;}
.y1e_c00245{bottom:244.333333pt;}
.y1d_c00245{bottom:263.186667pt;}
.y1c_c00245{bottom:283.333333pt;}
.y1b_c00245{bottom:301.920000pt;}
.y1a_c00245{bottom:321.133333pt;}
.y19_c00245{bottom:340.920000pt;}
.y18_c00245{bottom:360.133333pt;}
.y17_c00245{bottom:379.386667pt;}
.y16_c00245{bottom:398.853333pt;}
.y15_c00245{bottom:417.786667pt;}
.y14_c00245{bottom:437.253333pt;}
.y13_c00245{bottom:456.120000pt;}
.y12_c00245{bottom:475.666667pt;}
.y11_c00245{bottom:494.586667pt;}
.y10_c00245{bottom:514.053333pt;}
.yf_c00245{bottom:533.253333pt;}
.ye_c00245{bottom:553.120000pt;}
.yd_c00245{bottom:572.666667pt;}
.yc_c00245{bottom:590.253333pt;}
.yb_c00245{bottom:611.053333pt;}
.ya_c00245{bottom:630.186667pt;}
.y9_c00245{bottom:646.853333pt;}
.y8_c00245{bottom:668.666667pt;}
.y7_c00245{bottom:688.453333pt;}
.y4_c00245{bottom:778.053333pt;}
.y5_c00245{bottom:781.266667pt;}
.y6_c00245{bottom:786.720000pt;}
.y1_c00245{bottom:958.853333pt;}
.y3_c00245{bottom:969.133333pt;}
.y2_c00245{bottom:972.800000pt;}
.h2_c00245{height:52.343750pt;}
.h4_c00245{height:57.578125pt;}
.h1_c00245{height:62.812500pt;}
.h3_c00245{height:144.625000pt;}
.h0_c00245{height:1044.000000pt;}
.w0_c00245{width:650.646400pt;}
.w1_c00245{width:650.666667pt;}
.x0_c00245{left:0.000000pt;}
.x9_c00245{left:29.769067pt;}
.xb_c00245{left:30.702400pt;}
.x8_c00245{left:31.955733pt;}
.x4_c00245{left:32.969067pt;}
.xc_c00245{left:34.235733pt;}
.xf_c00245{left:35.169067pt;}
.x10_c00245{left:36.435733pt;}
.x1_c00245{left:51.502400pt;}
.xa_c00245{left:59.169067pt;}
.x7_c00245{left:60.435733pt;}
.xd_c00245{left:62.035733pt;}
.xe_c00245{left:64.302400pt;}
.x2_c00245{left:76.155733pt;}
.x11_c00245{left:208.302400pt;}
.x3_c00245{left:237.102400pt;}
.x5_c00245{left:280.969067pt;}
.x12_c00245{left:441.902400pt;}
.x6_c00245{left:475.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a35bbaf53b75a4aaa91f8907.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00246;src:url('chunks/assets/font_832f1b668a76b3812659f5dc.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00246;src:url('chunks/assets/font_b57443b3fff339aa48a968e4.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00246;src:url('chunks/assets/font_f346c5d6690e043803716e9b.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00246;src:url('chunks/assets/font_73839b17af02a762cc9f9b1b.woff2')format("woff");}.ff5_c00246{font-family:ff5_c00246;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00246{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2_c00246{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m17_c00246{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7_c00246{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3_c00246{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00246{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00246{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8_c00246{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c00246{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00246{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00246{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c00246{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00246{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c00246{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c00246{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00246{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00246{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c00246{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c00246{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c00246{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00246{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c00246{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m12_c00246{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00246{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c00246{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c00246{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m13_c00246{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m19_c00246{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m18_c00246{transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00246{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.m1_c00246{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.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;}
}
.ws0_c00246{word-spacing:0.000000px;}
.fc0_c00246{color:transparent;}
.fs3_c00246{font-size:48.000000px;}
.fs4_c00246{font-size:60.000000px;}
.fs2_c00246{font-size:66.000000px;}
.fs1_c00246{font-size:72.000000px;}
.fs0_c00246{font-size:78.000000px;}
.y0_c00246{bottom:0.000000px;}
.y38_c00246{bottom:117.585000px;}
.y39_c00246{bottom:118.635000px;}
.y3a_c00246{bottom:119.010000px;}
.y37_c00246{bottom:145.935000px;}
.y36_c00246{bottom:186.285000px;}
.y34_c00246{bottom:228.435000px;}
.y35_c00246{bottom:228.810000px;}
.y33_c00246{bottom:229.875000px;}
.y32_c00246{bottom:250.785000px;}
.y31_c00246{bottom:271.275000px;}
.y30_c00246{bottom:272.685000px;}
.y2f_c00246{bottom:292.185000px;}
.y2e_c00246{bottom:313.035000px;}
.y2c_c00246{bottom:314.775000px;}
.y2d_c00246{bottom:314.835000px;}
.y2b_c00246{bottom:335.310000px;}
.y2a_c00246{bottom:354.810000px;}
.y29_c00246{bottom:375.660000px;}
.y28_c00246{bottom:396.585000px;}
.y27_c00246{bottom:417.810000px;}
.y26_c00246{bottom:438.960000px;}
.y25_c00246{bottom:459.885000px;}
.y24_c00246{bottom:481.500000px;}
.y23_c00246{bottom:502.410000px;}
.y22_c00246{bottom:523.635000px;}
.y21_c00246{bottom:544.500000px;}
.y20_c00246{bottom:566.085000px;}
.y1f_c00246{bottom:587.010000px;}
.y1e_c00246{bottom:607.875000px;}
.y1d_c00246{bottom:629.085000px;}
.y1c_c00246{bottom:650.010000px;}
.y1b_c00246{bottom:671.250000px;}
.y1a_c00246{bottom:692.085000px;}
.y19_c00246{bottom:713.685000px;}
.y18_c00246{bottom:734.625000px;}
.y17_c00246{bottom:755.385000px;}
.y16_c00246{bottom:776.010000px;}
.y15_c00246{bottom:776.685000px;}
.y14_c00246{bottom:797.925000px;}
.y13_c00246{bottom:819.525000px;}
.y12_c00246{bottom:840.435000px;}
.y11_c00246{bottom:862.050000px;}
.y10_c00246{bottom:880.335000px;}
.yf_c00246{bottom:882.900000px;}
.ye_c00246{bottom:903.750000px;}
.yd_c00246{bottom:923.625000px;}
.yc_c00246{bottom:924.675000px;}
.yb_c00246{bottom:924.960000px;}
.ya_c00246{bottom:925.425000px;}
.y9_c00246{bottom:945.210000px;}
.y8_c00246{bottom:966.060000px;}
.y7_c00246{bottom:968.175000px;}
.y6_c00246{bottom:986.925000px;}
.y5_c00246{bottom:989.085000px;}
.y4_c00246{bottom:1008.525000px;}
.y3_c00246{bottom:1065.060000px;}
.y1_c00246{bottom:1067.625000px;}
.y2_c00246{bottom:1077.900000px;}
.h7_c00246{height:47.109375px;}
.h8_c00246{height:58.857422px;}
.h9_c00246{height:58.886719px;}
.ha_c00246{height:60.468750px;}
.h3_c00246{height:64.775391px;}
.h5_c00246{height:70.664062px;}
.h2_c00246{height:75.093750px;}
.h4_c00246{height:76.514648px;}
.h6_c00246{height:76.552734px;}
.h1_c00246{height:78.609375px;}
.h0_c00246{height:1174.500000px;}
.w0_c00246{width:731.977200px;}
.w1_c00246{width:732.000000px;}
.x0_c00246{left:0.000000px;}
.xc_c00246{left:69.490200px;}
.x4_c00246{left:70.915200px;}
.xe_c00246{left:71.965200px;}
.x5_c00246{left:73.090200px;}
.x16_c00246{left:74.140200px;}
.x15_c00246{left:93.940200px;}
.x11_c00246{left:95.740200px;}
.x19_c00246{left:99.715200px;}
.x10_c00246{left:104.365200px;}
.xd_c00246{left:105.490200px;}
.x12_c00246{left:110.140200px;}
.x13_c00246{left:115.915200px;}
.x7_c00246{left:135.340200px;}
.x14_c00246{left:137.890200px;}
.x8_c00246{left:139.315200px;}
.x9_c00246{left:202.690200px;}
.x6_c00246{left:287.290200px;}
.x17_c00246{left:301.690200px;}
.xa_c00246{left:310.315200px;}
.x1_c00246{left:311.740200px;}
.x18_c00246{left:325.765200px;}
.x1b_c00246{left:408.940200px;}
.x1a_c00246{left:437.365200px;}
.x2_c00246{left:478.090200px;}
.x1c_c00246{left:588.940200px;}
.x1d_c00246{left:604.090200px;}
.x3_c00246{left:639.340200px;}
.xb_c00246{left:645.490200px;}
.xf_c00246{left:671.365200px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls0_c00246{letter-spacing:0.000000pt;}
.ws0_c00246{word-spacing:0.000000pt;}
.fs3_c00246{font-size:42.666667pt;}
.fs4_c00246{font-size:53.333333pt;}
.fs2_c00246{font-size:58.666667pt;}
.fs1_c00246{font-size:64.000000pt;}
.fs0_c00246{font-size:69.333333pt;}
.y0_c00246{bottom:0.000000pt;}
.y38_c00246{bottom:104.520000pt;}
.y39_c00246{bottom:105.453333pt;}
.y3a_c00246{bottom:105.786667pt;}
.y37_c00246{bottom:129.720000pt;}
.y36_c00246{bottom:165.586667pt;}
.y34_c00246{bottom:203.053333pt;}
.y35_c00246{bottom:203.386667pt;}
.y33_c00246{bottom:204.333333pt;}
.y32_c00246{bottom:222.920000pt;}
.y31_c00246{bottom:241.133333pt;}
.y30_c00246{bottom:242.386667pt;}
.y2f_c00246{bottom:259.720000pt;}
.y2e_c00246{bottom:278.253333pt;}
.y2c_c00246{bottom:279.800000pt;}
.y2d_c00246{bottom:279.853333pt;}
.y2b_c00246{bottom:298.053333pt;}
.y2a_c00246{bottom:315.386667pt;}
.y29_c00246{bottom:333.920000pt;}
.y28_c00246{bottom:352.520000pt;}
.y27_c00246{bottom:371.386667pt;}
.y26_c00246{bottom:390.186667pt;}
.y25_c00246{bottom:408.786667pt;}
.y24_c00246{bottom:428.000000pt;}
.y23_c00246{bottom:446.586667pt;}
.y22_c00246{bottom:465.453333pt;}
.y21_c00246{bottom:484.000000pt;}
.y20_c00246{bottom:503.186667pt;}
.y1f_c00246{bottom:521.786667pt;}
.y1e_c00246{bottom:540.333333pt;}
.y1d_c00246{bottom:559.186667pt;}
.y1c_c00246{bottom:577.786667pt;}
.y1b_c00246{bottom:596.666667pt;}
.y1a_c00246{bottom:615.186667pt;}
.y19_c00246{bottom:634.386667pt;}
.y18_c00246{bottom:653.000000pt;}
.y17_c00246{bottom:671.453333pt;}
.y16_c00246{bottom:689.786667pt;}
.y15_c00246{bottom:690.386667pt;}
.y14_c00246{bottom:709.266667pt;}
.y13_c00246{bottom:728.466667pt;}
.y12_c00246{bottom:747.053333pt;}
.y11_c00246{bottom:766.266667pt;}
.y10_c00246{bottom:782.520000pt;}
.yf_c00246{bottom:784.800000pt;}
.ye_c00246{bottom:803.333333pt;}
.yd_c00246{bottom:821.000000pt;}
.yc_c00246{bottom:821.933333pt;}
.yb_c00246{bottom:822.186667pt;}
.ya_c00246{bottom:822.600000pt;}
.y9_c00246{bottom:840.186667pt;}
.y8_c00246{bottom:858.720000pt;}
.y7_c00246{bottom:860.600000pt;}
.y6_c00246{bottom:877.266667pt;}
.y5_c00246{bottom:879.186667pt;}
.y4_c00246{bottom:896.466667pt;}
.y3_c00246{bottom:946.720000pt;}
.y1_c00246{bottom:949.000000pt;}
.y2_c00246{bottom:958.133333pt;}
.h7_c00246{height:41.875000pt;}
.h8_c00246{height:52.317708pt;}
.h9_c00246{height:52.343750pt;}
.ha_c00246{height:53.750000pt;}
.h3_c00246{height:57.578125pt;}
.h5_c00246{height:62.812500pt;}
.h2_c00246{height:66.750000pt;}
.h4_c00246{height:68.013021pt;}
.h6_c00246{height:68.046875pt;}
.h1_c00246{height:69.875000pt;}
.h0_c00246{height:1044.000000pt;}
.w0_c00246{width:650.646400pt;}
.w1_c00246{width:650.666667pt;}
.x0_c00246{left:0.000000pt;}
.xc_c00246{left:61.769067pt;}
.x4_c00246{left:63.035733pt;}
.xe_c00246{left:63.969067pt;}
.x5_c00246{left:64.969067pt;}
.x16_c00246{left:65.902400pt;}
.x15_c00246{left:83.502400pt;}
.x11_c00246{left:85.102400pt;}
.x19_c00246{left:88.635733pt;}
.x10_c00246{left:92.769067pt;}
.xd_c00246{left:93.769067pt;}
.x12_c00246{left:97.902400pt;}
.x13_c00246{left:103.035733pt;}
.x7_c00246{left:120.302400pt;}
.x14_c00246{left:122.569067pt;}
.x8_c00246{left:123.835733pt;}
.x9_c00246{left:180.169067pt;}
.x6_c00246{left:255.369067pt;}
.x17_c00246{left:268.169067pt;}
.xa_c00246{left:275.835733pt;}
.x1_c00246{left:277.102400pt;}
.x18_c00246{left:289.569067pt;}
.x1b_c00246{left:363.502400pt;}
.x1a_c00246{left:388.769067pt;}
.x2_c00246{left:424.969067pt;}
.x1c_c00246{left:523.502400pt;}
.x1d_c00246{left:536.969067pt;}
.x3_c00246{left:568.302400pt;}
.xb_c00246{left:573.769067pt;}
.xf_c00246{left:596.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e6d745d4ede4e512964a4bc5.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00247;src:url('chunks/assets/font_8a3744a7ec6b05bbb51b0886.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m18_c00247{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m3_c00247{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00247{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m0_c00247{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00247{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c00247{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c00247{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c00247{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00247{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00247{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c00247{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00247{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00247{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00247{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00247{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00247{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00247{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c00247{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c00247{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c00247{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00247{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.md_c00247{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c00247{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mf_c00247{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00247{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00247{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m11_c00247{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m19_c00247{transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);}
.m16_c00247{transform:matrix(2.035000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.035000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.035000,0.000000,0.000000,0.250000,0,0);}
.m1_c00247{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00247{word-spacing:0.000000px;}
.fc0_c00247{color:transparent;}
.fs1_c00247{font-size:60.000000px;}
.fs0_c00247{font-size:66.000000px;}
.fs3_c00247{font-size:72.000000px;}
.fs4_c00247{font-size:78.000000px;}
.fs2_c00247{font-size:168.000000px;}
.y0_c00247{bottom:0.000000px;}
.y34_c00247{bottom:72.510000px;}
.y33_c00247{bottom:85.785000px;}
.y32_c00247{bottom:86.625000px;}
.y31_c00247{bottom:90.510000px;}
.y30_c00247{bottom:131.910000px;}
.y2f_c00247{bottom:149.535000px;}
.y2d_c00247{bottom:151.710000px;}
.y2b_c00247{bottom:152.460000px;}
.y2a_c00247{bottom:155.385000px;}
.y2e_c00247{bottom:167.250000px;}
.y2c_c00247{bottom:167.625000px;}
.y29_c00247{bottom:193.500000px;}
.y28_c00247{bottom:194.535000px;}
.y27_c00247{bottom:197.760000px;}
.y26_c00247{bottom:243.510000px;}
.y25_c00247{bottom:261.900000px;}
.y24_c00247{bottom:262.935000px;}
.y23_c00247{bottom:266.625000px;}
.y21_c00247{bottom:282.375000px;}
.y22_c00247{bottom:282.810000px;}
.y20_c00247{bottom:283.875000px;}
.y1f_c00247{bottom:286.035000px;}
.y1e_c00247{bottom:288.210000px;}
.y1d_c00247{bottom:307.275000px;}
.y1c_c00247{bottom:310.875000px;}
.y1b_c00247{bottom:328.500000px;}
.y1a_c00247{bottom:349.710000px;}
.y19_c00247{bottom:351.210000px;}
.y18_c00247{bottom:352.275000px;}
.y17_c00247{bottom:481.875000px;}
.y16_c00247{bottom:503.760000px;}
.y15_c00247{bottom:503.835000px;}
.y14_c00247{bottom:525.435000px;}
.y12_c00247{bottom:547.035000px;}
.y11_c00247{bottom:547.335000px;}
.y13_c00247{bottom:547.710000px;}
.y10_c00247{bottom:568.635000px;}
.yf_c00247{bottom:590.535000px;}
.ye_c00247{bottom:612.510000px;}
.yd_c00247{bottom:634.875000px;}
.yc_c00247{bottom:656.385000px;}
.yb_c00247{bottom:703.935000px;}
.ya_c00247{bottom:723.075000px;}
.y9_c00247{bottom:740.700000px;}
.y8_c00247{bottom:758.010000px;}
.y7_c00247{bottom:775.635000px;}
.y6_c00247{bottom:792.900000px;}
.y5_c00247{bottom:809.835000px;}
.y4_c00247{bottom:876.750000px;}
.y1_c00247{bottom:1086.675000px;}
.y3_c00247{bottom:1096.800000px;}
.y2_c00247{bottom:1101.585000px;}
.h2_c00247{height:58.886719px;}
.h1_c00247{height:64.775391px;}
.h6_c00247{height:70.628906px;}
.h4_c00247{height:70.664062px;}
.h5_c00247{height:76.514648px;}
.h3_c00247{height:164.882812px;}
.h0_c00247{height:1174.500000px;}
.w0_c00247{width:731.977200px;}
.w1_c00247{width:732.000000px;}
.x0_c00247{left:0.000000px;}
.x8_c00247{left:32.365200px;}
.x4_c00247{left:34.165200px;}
.xd_c00247{left:35.950200px;}
.x6_c00247{left:49.315200px;}
.x5_c00247{left:50.740200px;}
.x1_c00247{left:55.090200px;}
.x9_c00247{left:60.790200px;}
.x7_c00247{left:64.090200px;}
.xe_c00247{left:65.515200px;}
.x19_c00247{left:66.565200px;}
.x12_c00247{left:67.990200px;}
.x2_c00247{left:82.390200px;}
.x11_c00247{left:91.090200px;}
.xf_c00247{left:166.690200px;}
.x13_c00247{left:218.515200px;}
.x10_c00247{left:243.340200px;}
.x1e_c00247{left:258.115200px;}
.x1f_c00247{left:260.590200px;}
.x1c_c00247{left:265.690200px;}
.x3_c00247{left:266.740200px;}
.x17_c00247{left:274.990200px;}
.xb_c00247{left:316.390200px;}
.xc_c00247{left:333.340200px;}
.x14_c00247{left:339.490200px;}
.x1a_c00247{left:354.940200px;}
.x1d_c00247{left:367.150200px;}
.x18_c00247{left:372.190200px;}
.x1b_c00247{left:376.525200px;}
.x21_c00247{left:412.150200px;}
.x20_c00247{left:429.775200px;}
.x22_c00247{left:448.165200px;}
.x15_c00247{left:467.590200px;}
.x16_c00247{left:564.115200px;}
.xa_c00247{left:639.340200px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ws0_c00247{word-spacing:0.000000pt;}
.fs1_c00247{font-size:53.333333pt;}
.fs0_c00247{font-size:58.666667pt;}
.fs3_c00247{font-size:64.000000pt;}
.fs4_c00247{font-size:69.333333pt;}
.fs2_c00247{font-size:149.333333pt;}
.y0_c00247{bottom:0.000000pt;}
.y34_c00247{bottom:64.453333pt;}
.y33_c00247{bottom:76.253333pt;}
.y32_c00247{bottom:77.000000pt;}
.y31_c00247{bottom:80.453333pt;}
.y30_c00247{bottom:117.253333pt;}
.y2f_c00247{bottom:132.920000pt;}
.y2d_c00247{bottom:134.853333pt;}
.y2b_c00247{bottom:135.520000pt;}
.y2a_c00247{bottom:138.120000pt;}
.y2e_c00247{bottom:148.666667pt;}
.y2c_c00247{bottom:149.000000pt;}
.y29_c00247{bottom:172.000000pt;}
.y28_c00247{bottom:172.920000pt;}
.y27_c00247{bottom:175.786667pt;}
.y26_c00247{bottom:216.453333pt;}
.y25_c00247{bottom:232.800000pt;}
.y24_c00247{bottom:233.720000pt;}
.y23_c00247{bottom:237.000000pt;}
.y21_c00247{bottom:251.000000pt;}
.y22_c00247{bottom:251.386667pt;}
.y20_c00247{bottom:252.333333pt;}
.y1f_c00247{bottom:254.253333pt;}
.y1e_c00247{bottom:256.186667pt;}
.y1d_c00247{bottom:273.133333pt;}
.y1c_c00247{bottom:276.333333pt;}
.y1b_c00247{bottom:292.000000pt;}
.y1a_c00247{bottom:310.853333pt;}
.y19_c00247{bottom:312.186667pt;}
.y18_c00247{bottom:313.133333pt;}
.y17_c00247{bottom:428.333333pt;}
.y16_c00247{bottom:447.786667pt;}
.y15_c00247{bottom:447.853333pt;}
.y14_c00247{bottom:467.053333pt;}
.y12_c00247{bottom:486.253333pt;}
.y11_c00247{bottom:486.520000pt;}
.y13_c00247{bottom:486.853333pt;}
.y10_c00247{bottom:505.453333pt;}
.yf_c00247{bottom:524.920000pt;}
.ye_c00247{bottom:544.453333pt;}
.yd_c00247{bottom:564.333333pt;}
.yc_c00247{bottom:583.453333pt;}
.yb_c00247{bottom:625.720000pt;}
.ya_c00247{bottom:642.733333pt;}
.y9_c00247{bottom:658.400000pt;}
.y8_c00247{bottom:673.786667pt;}
.y7_c00247{bottom:689.453333pt;}
.y6_c00247{bottom:704.800000pt;}
.y5_c00247{bottom:719.853333pt;}
.y4_c00247{bottom:779.333333pt;}
.y1_c00247{bottom:965.933333pt;}
.y3_c00247{bottom:974.933333pt;}
.y2_c00247{bottom:979.186667pt;}
.h2_c00247{height:52.343750pt;}
.h1_c00247{height:57.578125pt;}
.h6_c00247{height:62.781250pt;}
.h4_c00247{height:62.812500pt;}
.h5_c00247{height:68.013021pt;}
.h3_c00247{height:146.562500pt;}
.h0_c00247{height:1044.000000pt;}
.w0_c00247{width:650.646400pt;}
.w1_c00247{width:650.666667pt;}
.x0_c00247{left:0.000000pt;}
.x8_c00247{left:28.769067pt;}
.x4_c00247{left:30.369067pt;}
.xd_c00247{left:31.955733pt;}
.x6_c00247{left:43.835733pt;}
.x5_c00247{left:45.102400pt;}
.x1_c00247{left:48.969067pt;}
.x9_c00247{left:54.035733pt;}
.x7_c00247{left:56.969067pt;}
.xe_c00247{left:58.235733pt;}
.x19_c00247{left:59.169067pt;}
.x12_c00247{left:60.435733pt;}
.x2_c00247{left:73.235733pt;}
.x11_c00247{left:80.969067pt;}
.xf_c00247{left:148.169067pt;}
.x13_c00247{left:194.235733pt;}
.x10_c00247{left:216.302400pt;}
.x1e_c00247{left:229.435733pt;}
.x1f_c00247{left:231.635733pt;}
.x1c_c00247{left:236.169067pt;}
.x3_c00247{left:237.102400pt;}
.x17_c00247{left:244.435733pt;}
.xb_c00247{left:281.235733pt;}
.xc_c00247{left:296.302400pt;}
.x14_c00247{left:301.769067pt;}
.x1a_c00247{left:315.502400pt;}
.x1d_c00247{left:326.355733pt;}
.x18_c00247{left:330.835733pt;}
.x1b_c00247{left:334.689067pt;}
.x21_c00247{left:366.355733pt;}
.x20_c00247{left:382.022400pt;}
.x22_c00247{left:398.369067pt;}
.x15_c00247{left:415.635733pt;}
.x16_c00247{left:501.435733pt;}
.xa_c00247{left:568.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5885dc09c3fb65a1aa9a6ec.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00248;src:url('chunks/assets/font_cc7f98b21eeb758752e9b8d4.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00248{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0_c00248{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00248{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00248{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c00248{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2_c00248{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4_c00248{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00248{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00248{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00248{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00248{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00248{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1_c00248{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00248{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00248{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md_c00248{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10_c00248{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf_c00248{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc_c00248{transform:matrix(1.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.490000,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;}
.fc0_c00248{color:transparent;}
.fs2_c00248{font-size:54.000000px;}
.fs0_c00248{font-size:60.000000px;}
.fs3_c00248{font-size:66.000000px;}
.fs1_c00248{font-size:72.000000px;}
.y0_c00248{bottom:0.000000px;}
.y32_c00248{bottom:102.750000px;}
.y31_c00248{bottom:103.500000px;}
.y33_c00248{bottom:103.875000px;}
.y34_c00248{bottom:104.910000px;}
.y35_c00248{bottom:105.660000px;}
.y30_c00248{bottom:124.410000px;}
.y2f_c00248{bottom:144.585000px;}
.y2e_c00248{bottom:165.435000px;}
.y2c_c00248{bottom:185.250000px;}
.y2d_c00248{bottom:185.625000px;}
.y2b_c00248{bottom:206.085000px;}
.y2a_c00248{bottom:226.635000px;}
.y28_c00248{bottom:247.500000px;}
.y29_c00248{bottom:250.035000px;}
.y27_c00248{bottom:268.710000px;}
.y26_c00248{bottom:289.650000px;}
.y25_c00248{bottom:310.500000px;}
.y24_c00248{bottom:331.410000px;}
.y22_c00248{bottom:352.275000px;}
.y23_c00248{bottom:352.560000px;}
.y21_c00248{bottom:373.500000px;}
.y20_c00248{bottom:393.960000px;}
.y1f_c00248{bottom:394.035000px;}
.y1e_c00248{bottom:414.210000px;}
.y1c_c00248{bottom:435.060000px;}
.y1d_c00248{bottom:435.435000px;}
.y1b_c00248{bottom:456.285000px;}
.y1a_c00248{bottom:477.510000px;}
.y19_c00248{bottom:498.810000px;}
.y18_c00248{bottom:520.035000px;}
.y17_c00248{bottom:540.885000px;}
.y16_c00248{bottom:541.185000px;}
.y15_c00248{bottom:541.260000px;}
.y14_c00248{bottom:562.125000px;}
.y13_c00248{bottom:582.660000px;}
.y12_c00248{bottom:583.410000px;}
.y11_c00248{bottom:604.260000px;}
.y10_c00248{bottom:625.125000px;}
.yf_c00248{bottom:646.035000px;}
.ye_c00248{bottom:667.560000px;}
.yd_c00248{bottom:688.500000px;}
.yc_c00248{bottom:815.925000px;}
.yb_c00248{bottom:835.335000px;}
.ya_c00248{bottom:856.275000px;}
.y9_c00248{bottom:877.800000px;}
.y8_c00248{bottom:898.425000px;}
.y7_c00248{bottom:918.900000px;}
.y6_c00248{bottom:939.750000px;}
.y5_c00248{bottom:962.085000px;}
.y4_c00248{bottom:981.525000px;}
.y3_c00248{bottom:1004.550000px;}
.y2_c00248{bottom:1024.710000px;}
.y1_c00248{bottom:1083.375000px;}
.h3_c00248{height:52.998047px;}
.h1_c00248{height:58.886719px;}
.h5_c00248{height:64.775391px;}
.h4_c00248{height:70.628906px;}
.h2_c00248{height:70.664062px;}
.h0_c00248{height:1174.500000px;}
.w0_c00248{width:731.977200px;}
.w1_c00248{width:732.000000px;}
.x0_c00248{left:0.000000px;}
.x9_c00248{left:78.115200px;}
.xe_c00248{left:79.915200px;}
.x8_c00248{left:81.340200px;}
.x3_c00248{left:82.390200px;}
.x5_c00248{left:83.515200px;}
.x2_c00248{left:84.550200px;}
.x10_c00248{left:102.565200px;}
.xf_c00248{left:103.690200px;}
.xa_c00248{left:105.490200px;}
.x13_c00248{left:107.965200px;}
.x7_c00248{left:112.990200px;}
.x14_c00248{left:114.490200px;}
.x6_c00248{left:116.590200px;}
.x4_c00248{left:117.715200px;}
.xb_c00248{left:119.515200px;}
.xc_c00248{left:125.965200px;}
.xd_c00248{left:148.315200px;}
.x11_c00248{left:195.790200px;}
.x16_c00248{left:253.390200px;}
.x1_c00248{left:296.290200px;}
.x17_c00248{left:377.590200px;}
.x18_c00248{left:434.890200px;}
.x19_c00248{left:462.940200px;}
.x15_c00248{left:667.765200px;}
.x12_c00248{left:676.765200px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls0_c00248{letter-spacing:0.000000pt;}
.ws0_c00248{word-spacing:0.000000pt;}
.fs2_c00248{font-size:48.000000pt;}
.fs0_c00248{font-size:53.333333pt;}
.fs3_c00248{font-size:58.666667pt;}
.fs1_c00248{font-size:64.000000pt;}
.y0_c00248{bottom:0.000000pt;}
.y32_c00248{bottom:91.333333pt;}
.y31_c00248{bottom:92.000000pt;}
.y33_c00248{bottom:92.333333pt;}
.y34_c00248{bottom:93.253333pt;}
.y35_c00248{bottom:93.920000pt;}
.y30_c00248{bottom:110.586667pt;}
.y2f_c00248{bottom:128.520000pt;}
.y2e_c00248{bottom:147.053333pt;}
.y2c_c00248{bottom:164.666667pt;}
.y2d_c00248{bottom:165.000000pt;}
.y2b_c00248{bottom:183.186667pt;}
.y2a_c00248{bottom:201.453333pt;}
.y28_c00248{bottom:220.000000pt;}
.y29_c00248{bottom:222.253333pt;}
.y27_c00248{bottom:238.853333pt;}
.y26_c00248{bottom:257.466667pt;}
.y25_c00248{bottom:276.000000pt;}
.y24_c00248{bottom:294.586667pt;}
.y22_c00248{bottom:313.133333pt;}
.y23_c00248{bottom:313.386667pt;}
.y21_c00248{bottom:332.000000pt;}
.y20_c00248{bottom:350.186667pt;}
.y1f_c00248{bottom:350.253333pt;}
.y1e_c00248{bottom:368.186667pt;}
.y1c_c00248{bottom:386.720000pt;}
.y1d_c00248{bottom:387.053333pt;}
.y1b_c00248{bottom:405.586667pt;}
.y1a_c00248{bottom:424.453333pt;}
.y19_c00248{bottom:443.386667pt;}
.y18_c00248{bottom:462.253333pt;}
.y17_c00248{bottom:480.786667pt;}
.y16_c00248{bottom:481.053333pt;}
.y15_c00248{bottom:481.120000pt;}
.y14_c00248{bottom:499.666667pt;}
.y13_c00248{bottom:517.920000pt;}
.y12_c00248{bottom:518.586667pt;}
.y11_c00248{bottom:537.120000pt;}
.y10_c00248{bottom:555.666667pt;}
.yf_c00248{bottom:574.253333pt;}
.ye_c00248{bottom:593.386667pt;}
.yd_c00248{bottom:612.000000pt;}
.yc_c00248{bottom:725.266667pt;}
.yb_c00248{bottom:742.520000pt;}
.ya_c00248{bottom:761.133333pt;}
.y9_c00248{bottom:780.266667pt;}
.y8_c00248{bottom:798.600000pt;}
.y7_c00248{bottom:816.800000pt;}
.y6_c00248{bottom:835.333333pt;}
.y5_c00248{bottom:855.186667pt;}
.y4_c00248{bottom:872.466667pt;}
.y3_c00248{bottom:892.933333pt;}
.y2_c00248{bottom:910.853333pt;}
.y1_c00248{bottom:963.000000pt;}
.h3_c00248{height:47.109375pt;}
.h1_c00248{height:52.343750pt;}
.h5_c00248{height:57.578125pt;}
.h4_c00248{height:62.781250pt;}
.h2_c00248{height:62.812500pt;}
.h0_c00248{height:1044.000000pt;}
.w0_c00248{width:650.646400pt;}
.w1_c00248{width:650.666667pt;}
.x0_c00248{left:0.000000pt;}
.x9_c00248{left:69.435733pt;}
.xe_c00248{left:71.035733pt;}
.x8_c00248{left:72.302400pt;}
.x3_c00248{left:73.235733pt;}
.x5_c00248{left:74.235733pt;}
.x2_c00248{left:75.155733pt;}
.x10_c00248{left:91.169067pt;}
.xf_c00248{left:92.169067pt;}
.xa_c00248{left:93.769067pt;}
.x13_c00248{left:95.969067pt;}
.x7_c00248{left:100.435733pt;}
.x14_c00248{left:101.769067pt;}
.x6_c00248{left:103.635733pt;}
.x4_c00248{left:104.635733pt;}
.xb_c00248{left:106.235733pt;}
.xc_c00248{left:111.969067pt;}
.xd_c00248{left:131.835733pt;}
.x11_c00248{left:174.035733pt;}
.x16_c00248{left:225.235733pt;}
.x1_c00248{left:263.369067pt;}
.x17_c00248{left:335.635733pt;}
.x18_c00248{left:386.569067pt;}
.x19_c00248{left:411.502400pt;}
.x15_c00248{left:593.569067pt;}
.x12_c00248{left:601.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ee0bbfc7cd3be5787e9ab3db.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00249;src:url('chunks/assets/font_16c80453bcbcf570071556e0.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00249;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00249{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m11_c00249{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m0_c00249{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m13_c00249{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3_c00249{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00249{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c00249{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c00249{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00249{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00249{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00249{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c00249{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00249{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00249{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c00249{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00249{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00249{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00249{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00249{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c00249{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00249{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c00249{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00249{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.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;}
}
.ws0_c00249{word-spacing:0.000000px;}
.fc0_c00249{color:transparent;}
.fs1_c00249{font-size:60.000000px;}
.fs0_c00249{font-size:72.000000px;}
.fs2_c00249{font-size:78.000000px;}
.y0_c00249{bottom:0.000000px;}
.y3e_c00249{bottom:111.060000px;}
.y3d_c00249{bottom:115.035000px;}
.y3c_c00249{bottom:122.535000px;}
.y3b_c00249{bottom:125.835000px;}
.y3a_c00249{bottom:134.760000px;}
.y39_c00249{bottom:135.510000px;}
.y38_c00249{bottom:147.750000px;}
.y37_c00249{bottom:169.710000px;}
.y36_c00249{bottom:191.310000px;}
.y35_c00249{bottom:218.310000px;}
.y34_c00249{bottom:235.635000px;}
.y33_c00249{bottom:257.910000px;}
.y32_c00249{bottom:279.525000px;}
.y31_c00249{bottom:301.875000px;}
.y30_c00249{bottom:323.085000px;}
.y2f_c00249{bottom:348.660000px;}
.y2e_c00249{bottom:367.410000px;}
.y2d_c00249{bottom:386.835000px;}
.y2c_c00249{bottom:388.275000px;}
.y2b_c00249{bottom:390.810000px;}
.y2a_c00249{bottom:410.910000px;}
.y29_c00249{bottom:432.885000px;}
.y28_c00249{bottom:454.500000px;}
.y27_c00249{bottom:478.560000px;}
.y26_c00249{bottom:498.060000px;}
.y25_c00249{bottom:519.660000px;}
.y24_c00249{bottom:541.635000px;}
.y23_c00249{bottom:563.250000px;}
.y22_c00249{bottom:584.835000px;}
.y21_c00249{bottom:606.810000px;}
.y20_c00249{bottom:628.710000px;}
.y1f_c00249{bottom:650.310000px;}
.y1e_c00249{bottom:672.285000px;}
.y1d_c00249{bottom:694.260000px;}
.y1c_c00249{bottom:715.875000px;}
.y1b_c00249{bottom:737.460000px;}
.y1a_c00249{bottom:759.450000px;}
.y19_c00249{bottom:781.050000px;}
.y18_c00249{bottom:802.935000px;}
.y17_c00249{bottom:824.550000px;}
.y16_c00249{bottom:845.085000px;}
.y15_c00249{bottom:866.310000px;}
.y14_c00249{bottom:887.925000px;}
.y13_c00249{bottom:909.900000px;}
.y12_c00249{bottom:931.875000px;}
.y11_c00249{bottom:953.460000px;}
.yd_c00249{bottom:968.625000px;}
.y10_c00249{bottom:976.125000px;}
.yc_c00249{bottom:987.300000px;}
.yf_c00249{bottom:987.585000px;}
.ye_c00249{bottom:997.425000px;}
.y7_c00249{bottom:1008.525000px;}
.y8_c00249{bottom:1010.310000px;}
.y9_c00249{bottom:1018.275000px;}
.yb_c00249{bottom:1020.060000px;}
.ya_c00249{bottom:1021.125000px;}
.y6_c00249{bottom:1039.500000px;}
.y4_c00249{bottom:1050.300000px;}
.y5_c00249{bottom:1062.150000px;}
.y1_c00249{bottom:1107.900000px;}
.y2_c00249{bottom:1108.275000px;}
.y3_c00249{bottom:1118.400000px;}
.h2_c00249{height:58.886719px;}
.h4_c00249{height:70.628906px;}
.h1_c00249{height:70.664062px;}
.h3_c00249{height:78.609375px;}
.h0_c00249{height:1174.500000px;}
.w0_c00249{width:731.977200px;}
.w1_c00249{width:732.000000px;}
.x0_c00249{left:0.000000px;}
.x1c_c00249{left:21.190200px;}
.x14_c00249{left:22.690200px;}
.x18_c00249{left:23.740200px;}
.x12_c00249{left:24.790200px;}
.x11_c00249{left:26.290200px;}
.x10_c00249{left:27.325200px;}
.xf_c00249{left:28.765200px;}
.xe_c00249{left:29.890200px;}
.xd_c00249{left:30.940200px;}
.x4_c00249{left:31.990200px;}
.x1d_c00249{left:45.715200px;}
.x1_c00249{left:52.915200px;}
.x13_c00249{left:54.715200px;}
.x15_c00249{left:56.515200px;}
.xc_c00249{left:62.290200px;}
.x19_c00249{left:72.715200px;}
.x2_c00249{left:80.290200px;}
.x1a_c00249{left:82.390200px;}
.xa_c00249{left:88.540200px;}
.xb_c00249{left:91.090200px;}
.x6_c00249{left:103.315200px;}
.x7_c00249{left:121.315200px;}
.x5_c00249{left:138.565200px;}
.x3_c00249{left:254.140200px;}
.x16_c00249{left:354.940200px;}
.x17_c00249{left:467.590200px;}
.x8_c00249{left:538.165200px;}
.x9_c00249{left:575.590200px;}
.x1b_c00249{left:598.690200px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls0_c00249{letter-spacing:0.000000pt;}
.ws0_c00249{word-spacing:0.000000pt;}
.fs1_c00249{font-size:53.333333pt;}
.fs0_c00249{font-size:64.000000pt;}
.fs2_c00249{font-size:69.333333pt;}
.y0_c00249{bottom:0.000000pt;}
.y3e_c00249{bottom:98.720000pt;}
.y3d_c00249{bottom:102.253333pt;}
.y3c_c00249{bottom:108.920000pt;}
.y3b_c00249{bottom:111.853333pt;}
.y3a_c00249{bottom:119.786667pt;}
.y39_c00249{bottom:120.453333pt;}
.y38_c00249{bottom:131.333333pt;}
.y37_c00249{bottom:150.853333pt;}
.y36_c00249{bottom:170.053333pt;}
.y35_c00249{bottom:194.053333pt;}
.y34_c00249{bottom:209.453333pt;}
.y33_c00249{bottom:229.253333pt;}
.y32_c00249{bottom:248.466667pt;}
.y31_c00249{bottom:268.333333pt;}
.y30_c00249{bottom:287.186667pt;}
.y2f_c00249{bottom:309.920000pt;}
.y2e_c00249{bottom:326.586667pt;}
.y2d_c00249{bottom:343.853333pt;}
.y2c_c00249{bottom:345.133333pt;}
.y2b_c00249{bottom:347.386667pt;}
.y2a_c00249{bottom:365.253333pt;}
.y29_c00249{bottom:384.786667pt;}
.y28_c00249{bottom:404.000000pt;}
.y27_c00249{bottom:425.386667pt;}
.y26_c00249{bottom:442.720000pt;}
.y25_c00249{bottom:461.920000pt;}
.y24_c00249{bottom:481.453333pt;}
.y23_c00249{bottom:500.666667pt;}
.y22_c00249{bottom:519.853333pt;}
.y21_c00249{bottom:539.386667pt;}
.y20_c00249{bottom:558.853333pt;}
.y1f_c00249{bottom:578.053333pt;}
.y1e_c00249{bottom:597.586667pt;}
.y1d_c00249{bottom:617.120000pt;}
.y1c_c00249{bottom:636.333333pt;}
.y1b_c00249{bottom:655.520000pt;}
.y1a_c00249{bottom:675.066667pt;}
.y19_c00249{bottom:694.266667pt;}
.y18_c00249{bottom:713.720000pt;}
.y17_c00249{bottom:732.933333pt;}
.y16_c00249{bottom:751.186667pt;}
.y15_c00249{bottom:770.053333pt;}
.y14_c00249{bottom:789.266667pt;}
.y13_c00249{bottom:808.800000pt;}
.y12_c00249{bottom:828.333333pt;}
.y11_c00249{bottom:847.520000pt;}
.yd_c00249{bottom:861.000000pt;}
.y10_c00249{bottom:867.666667pt;}
.yc_c00249{bottom:877.600000pt;}
.yf_c00249{bottom:877.853333pt;}
.ye_c00249{bottom:886.600000pt;}
.y7_c00249{bottom:896.466667pt;}
.y8_c00249{bottom:898.053333pt;}
.y9_c00249{bottom:905.133333pt;}
.yb_c00249{bottom:906.720000pt;}
.ya_c00249{bottom:907.666667pt;}
.y6_c00249{bottom:924.000000pt;}
.y4_c00249{bottom:933.600000pt;}
.y5_c00249{bottom:944.133333pt;}
.y1_c00249{bottom:984.800000pt;}
.y2_c00249{bottom:985.133333pt;}
.y3_c00249{bottom:994.133333pt;}
.h2_c00249{height:52.343750pt;}
.h4_c00249{height:62.781250pt;}
.h1_c00249{height:62.812500pt;}
.h3_c00249{height:69.875000pt;}
.h0_c00249{height:1044.000000pt;}
.w0_c00249{width:650.646400pt;}
.w1_c00249{width:650.666667pt;}
.x0_c00249{left:0.000000pt;}
.x1c_c00249{left:18.835733pt;}
.x14_c00249{left:20.169067pt;}
.x18_c00249{left:21.102400pt;}
.x12_c00249{left:22.035733pt;}
.x11_c00249{left:23.369067pt;}
.x10_c00249{left:24.289067pt;}
.xf_c00249{left:25.569067pt;}
.xe_c00249{left:26.569067pt;}
.xd_c00249{left:27.502400pt;}
.x4_c00249{left:28.435733pt;}
.x1d_c00249{left:40.635733pt;}
.x1_c00249{left:47.035733pt;}
.x13_c00249{left:48.635733pt;}
.x15_c00249{left:50.235733pt;}
.xc_c00249{left:55.369067pt;}
.x19_c00249{left:64.635733pt;}
.x2_c00249{left:71.369067pt;}
.x1a_c00249{left:73.235733pt;}
.xa_c00249{left:78.702400pt;}
.xb_c00249{left:80.969067pt;}
.x6_c00249{left:91.835733pt;}
.x7_c00249{left:107.835733pt;}
.x5_c00249{left:123.169067pt;}
.x3_c00249{left:225.902400pt;}
.x16_c00249{left:315.502400pt;}
.x17_c00249{left:415.635733pt;}
.x8_c00249{left:478.369067pt;}
.x9_c00249{left:511.635733pt;}
.x1b_c00249{left:532.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d0872965d970b1c127ae2a7.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00250;src:url('chunks/assets/font_937afbe7ec28bdd45c561c70.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00250;src:url('chunks/assets/font_922cd956dd85068e1b577098.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00250;src:url('chunks/assets/font_b3d19931d702e09e2fcd2c34.woff2')format("woff");}.ff4_c00250{font-family:ff4_c00250;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19_c00250{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m2_c00250{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mf_c00250{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5_c00250{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m17_c00250{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00250{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md_c00250{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb_c00250{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6_c00250{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc_c00250{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c00250{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00250{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c00250{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m14_c00250{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c00250{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c00250{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00250{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00250{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c00250{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00250{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00250{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c00250{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00250{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m11_c00250{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00250{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00250{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00250{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m16_c00250{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m10_c00250{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m3_c00250{transform:matrix(1.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.817500,0.000000,0.000000,0.250000,0,0);}
.m1_c00250{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00250{word-spacing:0.000000px;}
.fc0_c00250{color:transparent;}
.fs0_c00250{font-size:54.000000px;}
.fs3_c00250{font-size:66.000000px;}
.fs1_c00250{font-size:78.000000px;}
.fs2_c00250{font-size:84.000000px;}
.y0_c00250{bottom:0.000000px;}
.y3e_c00250{bottom:109.260000px;}
.y3d_c00250{bottom:172.635000px;}
.y3a_c00250{bottom:192.000000px;}
.y3b_c00250{bottom:195.285000px;}
.y3c_c00250{bottom:197.760000px;}
.y39_c00250{bottom:213.285000px;}
.y38_c00250{bottom:233.835000px;}
.y37_c00250{bottom:254.310000px;}
.y36_c00250{bottom:275.535000px;}
.y35_c00250{bottom:296.085000px;}
.y34_c00250{bottom:317.310000px;}
.y33_c00250{bottom:337.875000px;}
.y32_c00250{bottom:359.085000px;}
.y31_c00250{bottom:380.025000px;}
.y30_c00250{bottom:400.875000px;}
.y2f_c00250{bottom:421.785000px;}
.y2e_c00250{bottom:442.935000px;}
.y2d_c00250{bottom:463.875000px;}
.y2c_c00250{bottom:485.460000px;}
.y2a_c00250{bottom:505.635000px;}
.y2b_c00250{bottom:506.685000px;}
.y28_c00250{bottom:526.500000px;}
.y29_c00250{bottom:526.875000px;}
.y27_c00250{bottom:548.085000px;}
.y26_c00250{bottom:569.385000px;}
.y24_c00250{bottom:590.535000px;}
.y25_c00250{bottom:590.625000px;}
.y23_c00250{bottom:611.460000px;}
.y22_c00250{bottom:632.685000px;}
.y21_c00250{bottom:653.625000px;}
.y20_c00250{bottom:674.835000px;}
.y1f_c00250{bottom:696.060000px;}
.y1e_c00250{bottom:717.000000px;}
.y1d_c00250{bottom:717.660000px;}
.y1c_c00250{bottom:738.510000px;}
.y1b_c00250{bottom:759.450000px;}
.y1a_c00250{bottom:780.300000px;}
.y19_c00250{bottom:801.525000px;}
.y18_c00250{bottom:823.125000px;}
.y17_c00250{bottom:844.335000px;}
.y16_c00250{bottom:865.650000px;}
.y15_c00250{bottom:886.125000px;}
.y14_c00250{bottom:907.050000px;}
.y13_c00250{bottom:924.675000px;}
.y12_c00250{bottom:925.800000px;}
.y11_c00250{bottom:927.900000px;}
.yf_c00250{bottom:928.275000px;}
.y10_c00250{bottom:928.650000px;}
.ye_c00250{bottom:949.875000px;}
.yd_c00250{bottom:970.710000px;}
.yc_c00250{bottom:988.710000px;}
.yb_c00250{bottom:990.900000px;}
.ya_c00250{bottom:992.025000px;}
.y9_c00250{bottom:992.685000px;}
.y8_c00250{bottom:1012.500000px;}
.y7_c00250{bottom:1014.675000px;}
.y6_c00250{bottom:1032.585000px;}
.y5_c00250{bottom:1034.835000px;}
.y4_c00250{bottom:1036.275000px;}
.y3_c00250{bottom:1087.335000px;}
.y1_c00250{bottom:1092.750000px;}
.y2_c00250{bottom:1101.300000px;}
.h1_c00250{height:54.421875px;}
.h6_c00250{height:64.775391px;}
.h4_c00250{height:76.514648px;}
.h3_c00250{height:76.552734px;}
.h2_c00250{height:78.609375px;}
.h5_c00250{height:82.400391px;}
.h0_c00250{height:1174.500000px;}
.w0_c00250{width:731.977200px;}
.w1_c00250{width:732.000000px;}
.x0_c00250{left:0.000000px;}
.x4_c00250{left:46.765200px;}
.x15_c00250{left:69.115200px;}
.x12_c00250{left:71.290200px;}
.x7_c00250{left:72.715200px;}
.x11_c00250{left:73.765200px;}
.x1e_c00250{left:87.790200px;}
.x13_c00250{left:101.140200px;}
.x1b_c00250{left:102.565200px;}
.x5_c00250{left:104.740200px;}
.x18_c00250{left:169.165200px;}
.x8_c00250{left:188.290200px;}
.x14_c00250{left:221.365200px;}
.x19_c00250{left:260.965200px;}
.x9_c00250{left:276.490200px;}
.x1_c00250{left:284.365200px;}
.xc_c00250{left:298.090200px;}
.xa_c00250{left:303.790200px;}
.xd_c00250{left:318.565200px;}
.xe_c00250{left:330.115200px;}
.x1c_c00250{left:418.690200px;}
.x1a_c00250{left:422.275200px;}
.x6_c00250{left:427.315200px;}
.x2_c00250{left:475.165200px;}
.x1d_c00250{left:587.890200px;}
.xf_c00250{left:590.365200px;}
.xb_c00250{left:600.790200px;}
.x10_c00250{left:615.565200px;}
.x3_c00250{left:636.490200px;}
.x16_c00250{left:644.365200px;}
.x17_c00250{left:660.190200px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls0_c00250{letter-spacing:0.000000pt;}
.ws0_c00250{word-spacing:0.000000pt;}
.fs0_c00250{font-size:48.000000pt;}
.fs3_c00250{font-size:58.666667pt;}
.fs1_c00250{font-size:69.333333pt;}
.fs2_c00250{font-size:74.666667pt;}
.y0_c00250{bottom:0.000000pt;}
.y3e_c00250{bottom:97.120000pt;}
.y3d_c00250{bottom:153.453333pt;}
.y3a_c00250{bottom:170.666667pt;}
.y3b_c00250{bottom:173.586667pt;}
.y3c_c00250{bottom:175.786667pt;}
.y39_c00250{bottom:189.586667pt;}
.y38_c00250{bottom:207.853333pt;}
.y37_c00250{bottom:226.053333pt;}
.y36_c00250{bottom:244.920000pt;}
.y35_c00250{bottom:263.186667pt;}
.y34_c00250{bottom:282.053333pt;}
.y33_c00250{bottom:300.333333pt;}
.y32_c00250{bottom:319.186667pt;}
.y31_c00250{bottom:337.800000pt;}
.y30_c00250{bottom:356.333333pt;}
.y2f_c00250{bottom:374.920000pt;}
.y2e_c00250{bottom:393.720000pt;}
.y2d_c00250{bottom:412.333333pt;}
.y2c_c00250{bottom:431.520000pt;}
.y2a_c00250{bottom:449.453333pt;}
.y2b_c00250{bottom:450.386667pt;}
.y28_c00250{bottom:468.000000pt;}
.y29_c00250{bottom:468.333333pt;}
.y27_c00250{bottom:487.186667pt;}
.y26_c00250{bottom:506.120000pt;}
.y24_c00250{bottom:524.920000pt;}
.y25_c00250{bottom:525.000000pt;}
.y23_c00250{bottom:543.520000pt;}
.y22_c00250{bottom:562.386667pt;}
.y21_c00250{bottom:581.000000pt;}
.y20_c00250{bottom:599.853333pt;}
.y1f_c00250{bottom:618.720000pt;}
.y1e_c00250{bottom:637.333333pt;}
.y1d_c00250{bottom:637.920000pt;}
.y1c_c00250{bottom:656.453333pt;}
.y1b_c00250{bottom:675.066667pt;}
.y1a_c00250{bottom:693.600000pt;}
.y19_c00250{bottom:712.466667pt;}
.y18_c00250{bottom:731.666667pt;}
.y17_c00250{bottom:750.520000pt;}
.y16_c00250{bottom:769.466667pt;}
.y15_c00250{bottom:787.666667pt;}
.y14_c00250{bottom:806.266667pt;}
.y13_c00250{bottom:821.933333pt;}
.y12_c00250{bottom:822.933333pt;}
.y11_c00250{bottom:824.800000pt;}
.yf_c00250{bottom:825.133333pt;}
.y10_c00250{bottom:825.466667pt;}
.ye_c00250{bottom:844.333333pt;}
.yd_c00250{bottom:862.853333pt;}
.yc_c00250{bottom:878.853333pt;}
.yb_c00250{bottom:880.800000pt;}
.ya_c00250{bottom:881.800000pt;}
.y9_c00250{bottom:882.386667pt;}
.y8_c00250{bottom:900.000000pt;}
.y7_c00250{bottom:901.933333pt;}
.y6_c00250{bottom:917.853333pt;}
.y5_c00250{bottom:919.853333pt;}
.y4_c00250{bottom:921.133333pt;}
.y3_c00250{bottom:966.520000pt;}
.y1_c00250{bottom:971.333333pt;}
.y2_c00250{bottom:978.933333pt;}
.h1_c00250{height:48.375000pt;}
.h6_c00250{height:57.578125pt;}
.h4_c00250{height:68.013021pt;}
.h3_c00250{height:68.046875pt;}
.h2_c00250{height:69.875000pt;}
.h5_c00250{height:73.244792pt;}
.h0_c00250{height:1044.000000pt;}
.w0_c00250{width:650.646400pt;}
.w1_c00250{width:650.666667pt;}
.x0_c00250{left:0.000000pt;}
.x4_c00250{left:41.569067pt;}
.x15_c00250{left:61.435733pt;}
.x12_c00250{left:63.369067pt;}
.x7_c00250{left:64.635733pt;}
.x11_c00250{left:65.569067pt;}
.x1e_c00250{left:78.035733pt;}
.x13_c00250{left:89.902400pt;}
.x1b_c00250{left:91.169067pt;}
.x5_c00250{left:93.102400pt;}
.x18_c00250{left:150.369067pt;}
.x8_c00250{left:167.369067pt;}
.x14_c00250{left:196.769067pt;}
.x19_c00250{left:231.969067pt;}
.x9_c00250{left:245.769067pt;}
.x1_c00250{left:252.769067pt;}
.xc_c00250{left:264.969067pt;}
.xa_c00250{left:270.035733pt;}
.xd_c00250{left:283.169067pt;}
.xe_c00250{left:293.435733pt;}
.x1c_c00250{left:372.169067pt;}
.x1a_c00250{left:375.355733pt;}
.x6_c00250{left:379.835733pt;}
.x2_c00250{left:422.369067pt;}
.x1d_c00250{left:522.569067pt;}
.xf_c00250{left:524.769067pt;}
.xb_c00250{left:534.035733pt;}
.x10_c00250{left:547.169067pt;}
.x3_c00250{left:565.769067pt;}
.x16_c00250{left:572.769067pt;}
.x17_c00250{left:586.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_258c6176541a247a5950641d.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00251;src:url('chunks/assets/font_ea5ad7c4c9221e12b6ac6713.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00251;src:url('chunks/assets/font_9279ccfee2423d5300a7cbb3.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00251;src:url('chunks/assets/font_931abe58e1945911c198545a.woff2')format("woff");}.ff4_c00251{font-family:ff4_c00251;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00251{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m13_c00251{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11_c00251{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m16_c00251{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m18_c00251{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m15_c00251{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c00251{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00251{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m19_c00251{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m14_c00251{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c00251{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c00251{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c00251{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00251{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00251{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00251{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00251{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00251{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00251{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00251{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00251{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00251{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c00251{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00251{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00251{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c00251{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00251{color:transparent;}
.fs1_c00251{font-size:60.000000px;}
.fs0_c00251{font-size:66.000000px;}
.fs2_c00251{font-size:72.000000px;}
.y0_c00251{bottom:0.000000px;}
.y3a_c00251{bottom:102.750000px;}
.y39_c00251{bottom:113.250000px;}
.y38_c00251{bottom:124.710000px;}
.y37_c00251{bottom:129.435000px;}
.y36_c00251{bottom:130.500000px;}
.y35_c00251{bottom:142.410000px;}
.y34_c00251{bottom:147.810000px;}
.y33_c00251{bottom:152.835000px;}
.y32_c00251{bottom:159.285000px;}
.y31_c00251{bottom:164.685000px;}
.y30_c00251{bottom:182.385000px;}
.y2f_c00251{bottom:189.885000px;}
.y2e_c00251{bottom:196.035000px;}
.y2d_c00251{bottom:199.260000px;}
.y2c_c00251{bottom:261.525000px;}
.y2b_c00251{bottom:283.875000px;}
.y2a_c00251{bottom:305.835000px;}
.y29_c00251{bottom:328.125000px;}
.y28_c00251{bottom:349.335000px;}
.y27_c00251{bottom:371.685000px;}
.y26_c00251{bottom:393.660000px;}
.y25_c00251{bottom:415.935000px;}
.y24_c00251{bottom:438.285000px;}
.y23_c00251{bottom:459.885000px;}
.y22_c00251{bottom:481.500000px;}
.y21_c00251{bottom:504.210000px;}
.y20_c00251{bottom:525.435000px;}
.y1f_c00251{bottom:547.335000px;}
.y1e_c00251{bottom:568.935000px;}
.y1d_c00251{bottom:590.910000px;}
.y1c_c00251{bottom:613.260000px;}
.y1b_c00251{bottom:635.535000px;}
.y1a_c00251{bottom:657.135000px;}
.y19_c00251{bottom:679.185000px;}
.y18_c00251{bottom:701.085000px;}
.y17_c00251{bottom:722.325000px;}
.y16_c00251{bottom:743.910000px;}
.y15_c00251{bottom:766.200000px;}
.y14_c00251{bottom:787.875000px;}
.y13_c00251{bottom:809.085000px;}
.y12_c00251{bottom:831.060000px;}
.y11_c00251{bottom:852.300000px;}
.yf_c00251{bottom:870.960000px;}
.y10_c00251{bottom:876.060000px;}
.ye_c00251{bottom:894.810000px;}
.yc_c00251{bottom:912.435000px;}
.yd_c00251{bottom:919.275000px;}
.yb_c00251{bottom:938.310000px;}
.ya_c00251{bottom:959.550000px;}
.y9_c00251{bottom:981.585000px;}
.y7_c00251{bottom:997.710000px;}
.y8_c00251{bottom:1005.300000px;}
.y6_c00251{bottom:1020.435000px;}
.y5_c00251{bottom:1046.025000px;}
.y4_c00251{bottom:1066.875000px;}
.y1_c00251{bottom:1112.625000px;}
.y3_c00251{bottom:1123.335000px;}
.y2_c00251{bottom:1127.835000px;}
.h2_c00251{height:58.886719px;}
.h6_c00251{height:66.515625px;}
.h1_c00251{height:68.835938px;}
.h4_c00251{height:70.628906px;}
.h3_c00251{height:70.664062px;}
.h5_c00251{height:72.562500px;}
.h0_c00251{height:1174.500000px;}
.w0_c00251{width:731.977200px;}
.w1_c00251{width:732.000000px;}
.x0_c00251{left:0.000000px;}
.x10_c00251{left:44.590200px;}
.xe_c00251{left:46.090200px;}
.xd_c00251{left:48.190200px;}
.x9_c00251{left:51.115200px;}
.x8_c00251{left:52.540200px;}
.x5_c00251{left:53.590200px;}
.x11_c00251{left:59.740200px;}
.x14_c00251{left:60.790200px;}
.x17_c00251{left:61.915200px;}
.x1_c00251{left:74.140200px;}
.xf_c00251{left:79.165200px;}
.xc_c00251{left:80.590200px;}
.x4_c00251{left:84.550200px;}
.x6_c00251{left:85.675200px;}
.x12_c00251{left:96.490200px;}
.x16_c00251{left:97.540200px;}
.x18_c00251{left:99.340200px;}
.x2_c00251{left:101.515200px;}
.x15_c00251{left:110.140200px;}
.x19_c00251{left:133.165200px;}
.x3_c00251{left:276.490200px;}
.x13_c00251{left:315.340200px;}
.x7_c00251{left:327.565200px;}
.xa_c00251{left:372.190200px;}
.xb_c00251{left:471.190200px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls0_c00251{letter-spacing:0.000000pt;}
.ws0_c00251{word-spacing:0.000000pt;}
.fs1_c00251{font-size:53.333333pt;}
.fs0_c00251{font-size:58.666667pt;}
.fs2_c00251{font-size:64.000000pt;}
.y0_c00251{bottom:0.000000pt;}
.y3a_c00251{bottom:91.333333pt;}
.y39_c00251{bottom:100.666667pt;}
.y38_c00251{bottom:110.853333pt;}
.y37_c00251{bottom:115.053333pt;}
.y36_c00251{bottom:116.000000pt;}
.y35_c00251{bottom:126.586667pt;}
.y34_c00251{bottom:131.386667pt;}
.y33_c00251{bottom:135.853333pt;}
.y32_c00251{bottom:141.586667pt;}
.y31_c00251{bottom:146.386667pt;}
.y30_c00251{bottom:162.120000pt;}
.y2f_c00251{bottom:168.786667pt;}
.y2e_c00251{bottom:174.253333pt;}
.y2d_c00251{bottom:177.120000pt;}
.y2c_c00251{bottom:232.466667pt;}
.y2b_c00251{bottom:252.333333pt;}
.y2a_c00251{bottom:271.853333pt;}
.y29_c00251{bottom:291.666667pt;}
.y28_c00251{bottom:310.520000pt;}
.y27_c00251{bottom:330.386667pt;}
.y26_c00251{bottom:349.920000pt;}
.y25_c00251{bottom:369.720000pt;}
.y24_c00251{bottom:389.586667pt;}
.y23_c00251{bottom:408.786667pt;}
.y22_c00251{bottom:428.000000pt;}
.y21_c00251{bottom:448.186667pt;}
.y20_c00251{bottom:467.053333pt;}
.y1f_c00251{bottom:486.520000pt;}
.y1e_c00251{bottom:505.720000pt;}
.y1d_c00251{bottom:525.253333pt;}
.y1c_c00251{bottom:545.120000pt;}
.y1b_c00251{bottom:564.920000pt;}
.y1a_c00251{bottom:584.120000pt;}
.y19_c00251{bottom:603.720000pt;}
.y18_c00251{bottom:623.186667pt;}
.y17_c00251{bottom:642.066667pt;}
.y16_c00251{bottom:661.253333pt;}
.y15_c00251{bottom:681.066667pt;}
.y14_c00251{bottom:700.333333pt;}
.y13_c00251{bottom:719.186667pt;}
.y12_c00251{bottom:738.720000pt;}
.y11_c00251{bottom:757.600000pt;}
.yf_c00251{bottom:774.186667pt;}
.y10_c00251{bottom:778.720000pt;}
.ye_c00251{bottom:795.386667pt;}
.yc_c00251{bottom:811.053333pt;}
.yd_c00251{bottom:817.133333pt;}
.yb_c00251{bottom:834.053333pt;}
.ya_c00251{bottom:852.933333pt;}
.y9_c00251{bottom:872.520000pt;}
.y7_c00251{bottom:886.853333pt;}
.y8_c00251{bottom:893.600000pt;}
.y6_c00251{bottom:907.053333pt;}
.y5_c00251{bottom:929.800000pt;}
.y4_c00251{bottom:948.333333pt;}
.y1_c00251{bottom:989.000000pt;}
.y3_c00251{bottom:998.520000pt;}
.y2_c00251{bottom:1002.520000pt;}
.h2_c00251{height:52.343750pt;}
.h6_c00251{height:59.125000pt;}
.h1_c00251{height:61.187500pt;}
.h4_c00251{height:62.781250pt;}
.h3_c00251{height:62.812500pt;}
.h5_c00251{height:64.500000pt;}
.h0_c00251{height:1044.000000pt;}
.w0_c00251{width:650.646400pt;}
.w1_c00251{width:650.666667pt;}
.x0_c00251{left:0.000000pt;}
.x10_c00251{left:39.635733pt;}
.xe_c00251{left:40.969067pt;}
.xd_c00251{left:42.835733pt;}
.x9_c00251{left:45.435733pt;}
.x8_c00251{left:46.702400pt;}
.x5_c00251{left:47.635733pt;}
.x11_c00251{left:53.102400pt;}
.x14_c00251{left:54.035733pt;}
.x17_c00251{left:55.035733pt;}
.x1_c00251{left:65.902400pt;}
.xf_c00251{left:70.369067pt;}
.xc_c00251{left:71.635733pt;}
.x4_c00251{left:75.155733pt;}
.x6_c00251{left:76.155733pt;}
.x12_c00251{left:85.769067pt;}
.x16_c00251{left:86.702400pt;}
.x18_c00251{left:88.302400pt;}
.x2_c00251{left:90.235733pt;}
.x15_c00251{left:97.902400pt;}
.x19_c00251{left:118.369067pt;}
.x3_c00251{left:245.769067pt;}
.x13_c00251{left:280.302400pt;}
.x7_c00251{left:291.169067pt;}
.xa_c00251{left:330.835733pt;}
.xb_c00251{left:418.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5206189bf10f662c35d9ac34.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00252;src:url('chunks/assets/font_094efb2c74e00fca6b34da79.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00252;src:url('chunks/assets/font_b21a487295ff1218aac4549b.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00252;src:url('chunks/assets/font_2c6379720eb4af1e7a571903.woff2')format("woff");}.ff4_c00252{font-family:ff4_c00252;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00252;src:url('chunks/assets/font_03b508512a0d2c267f0db2b7.woff2')format("woff");}.ff5_c00252{font-family:ff5_c00252;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00252{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00252{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m2_c00252{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00252{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00252{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m0_c00252{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m19_c00252{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00252{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00252{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c00252{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c00252{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00252{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c00252{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c00252{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m17_c00252{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c00252{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m16_c00252{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c00252{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00252{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m14_c00252{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00252{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00252{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00252{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00252{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00252{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00252{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6_c00252{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.md_c00252{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c00252{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c00252{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c00252{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c00252{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.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;}
}
.ws0_c00252{word-spacing:0.000000px;}
.fc0_c00252{color:transparent;}
.fs3_c00252{font-size:48.000000px;}
.fs4_c00252{font-size:54.000000px;}
.fs0_c00252{font-size:66.000000px;}
.fs1_c00252{font-size:72.000000px;}
.fs2_c00252{font-size:78.000000px;}
.y0_c00252{bottom:0.000000px;}
.y3e_c00252{bottom:49.500000px;}
.y3a_c00252{bottom:70.710000px;}
.y3b_c00252{bottom:72.510000px;}
.y3c_c00252{bottom:72.885000px;}
.y3d_c00252{bottom:73.260000px;}
.y38_c00252{bottom:89.460000px;}
.y36_c00252{bottom:89.760000px;}
.y37_c00252{bottom:89.835000px;}
.y39_c00252{bottom:90.510000px;}
.y35_c00252{bottom:107.085000px;}
.y34_c00252{bottom:123.660000px;}
.y31_c00252{bottom:139.500000px;}
.y32_c00252{bottom:140.910000px;}
.y33_c00252{bottom:141.660000px;}
.y30_c00252{bottom:157.125000px;}
.y2f_c00252{bottom:173.310000px;}
.y2e_c00252{bottom:189.510000px;}
.y2d_c00252{bottom:206.085000px;}
.y2c_c00252{bottom:222.285000px;}
.y2b_c00252{bottom:239.160000px;}
.y2a_c00252{bottom:303.960000px;}
.y29_c00252{bottom:324.900000px;}
.y28_c00252{bottom:345.810000px;}
.y27_c00252{bottom:367.410000px;}
.y26_c00252{bottom:387.900000px;}
.y25_c00252{bottom:409.500000px;}
.y22_c00252{bottom:430.410000px;}
.y23_c00252{bottom:430.710000px;}
.y24_c00252{bottom:430.785000px;}
.y21_c00252{bottom:451.635000px;}
.y20_c00252{bottom:472.875000px;}
.y1f_c00252{bottom:494.460000px;}
.y1e_c00252{bottom:515.685000px;}
.y1d_c00252{bottom:536.250000px;}
.y1c_c00252{bottom:536.625000px;}
.y1b_c00252{bottom:557.835000px;}
.y1a_c00252{bottom:579.375000px;}
.y19_c00252{bottom:600.285000px;}
.y18_c00252{bottom:621.510000px;}
.y17_c00252{bottom:642.810000px;}
.y16_c00252{bottom:664.335000px;}
.y15_c00252{bottom:685.560000px;}
.y14_c00252{bottom:706.875000px;}
.y13_c00252{bottom:728.085000px;}
.y12_c00252{bottom:748.950000px;}
.y11_c00252{bottom:770.550000px;}
.y10_c00252{bottom:791.835000px;}
.yf_c00252{bottom:813.435000px;}
.ye_c00252{bottom:834.675000px;}
.yd_c00252{bottom:855.900000px;}
.yc_c00252{bottom:876.750000px;}
.yb_c00252{bottom:898.335000px;}
.ya_c00252{bottom:918.900000px;}
.y9_c00252{bottom:940.185000px;}
.y8_c00252{bottom:960.675000px;}
.y7_c00252{bottom:982.275000px;}
.y6_c00252{bottom:1002.060000px;}
.y5_c00252{bottom:1004.250000px;}
.y4_c00252{bottom:1005.300000px;}
.y3_c00252{bottom:1059.300000px;}
.y1_c00252{bottom:1062.900000px;}
.y2_c00252{bottom:1072.650000px;}
.h9_c00252{height:50.062500px;}
.ha_c00252{height:56.320312px;}
.h1_c00252{height:64.775391px;}
.h3_c00252{height:66.515625px;}
.h7_c00252{height:68.835938px;}
.h5_c00252{height:70.628906px;}
.h4_c00252{height:70.664062px;}
.h2_c00252{height:72.562500px;}
.h8_c00252{height:76.514648px;}
.h6_c00252{height:76.552734px;}
.h0_c00252{height:1174.500000px;}
.w0_c00252{width:731.977200px;}
.w1_c00252{width:732.000000px;}
.x0_c00252{left:0.000000px;}
.x4_c00252{left:47.515200px;}
.x8_c00252{left:48.940200px;}
.x9_c00252{left:49.990200px;}
.xa_c00252{left:51.115200px;}
.xb_c00252{left:52.540200px;}
.xc_c00252{left:53.590200px;}
.x12_c00252{left:55.090200px;}
.x15_c00252{left:56.140200px;}
.xf_c00252{left:57.565200px;}
.x17_c00252{left:58.990200px;}
.x1a_c00252{left:61.540200px;}
.x1b_c00252{left:62.965200px;}
.x1e_c00252{left:64.390200px;}
.x22_c00252{left:65.515200px;}
.x23_c00252{left:70.540200px;}
.x19_c00252{left:77.365200px;}
.x24_c00252{left:78.790200px;}
.x10_c00252{left:85.990200px;}
.x16_c00252{left:88.540200px;}
.x18_c00252{left:89.965200px;}
.x5_c00252{left:102.940200px;}
.x25_c00252{left:190.750200px;}
.xd_c00252{left:208.750200px;}
.x11_c00252{left:228.940200px;}
.x26_c00252{left:242.590200px;}
.x1_c00252{left:261.715200px;}
.x6_c00252{left:271.090200px;}
.x7_c00252{left:275.365200px;}
.x1f_c00252{left:369.715200px;}
.x20_c00252{left:422.590200px;}
.x13_c00252{left:432.340200px;}
.xe_c00252{left:447.790200px;}
.x14_c00252{left:451.390200px;}
.x2_c00252{left:452.890200px;}
.x1c_c00252{left:482.365200px;}
.x1d_c00252{left:497.515200px;}
.x21_c00252{left:529.540200px;}
.x27_c00252{left:592.165200px;}
.x3_c00252{left:613.390200px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls0_c00252{letter-spacing:0.000000pt;}
.ws0_c00252{word-spacing:0.000000pt;}
.fs3_c00252{font-size:42.666667pt;}
.fs4_c00252{font-size:48.000000pt;}
.fs0_c00252{font-size:58.666667pt;}
.fs1_c00252{font-size:64.000000pt;}
.fs2_c00252{font-size:69.333333pt;}
.y0_c00252{bottom:0.000000pt;}
.y3e_c00252{bottom:44.000000pt;}
.y3a_c00252{bottom:62.853333pt;}
.y3b_c00252{bottom:64.453333pt;}
.y3c_c00252{bottom:64.786667pt;}
.y3d_c00252{bottom:65.120000pt;}
.y38_c00252{bottom:79.520000pt;}
.y36_c00252{bottom:79.786667pt;}
.y37_c00252{bottom:79.853333pt;}
.y39_c00252{bottom:80.453333pt;}
.y35_c00252{bottom:95.186667pt;}
.y34_c00252{bottom:109.920000pt;}
.y31_c00252{bottom:124.000000pt;}
.y32_c00252{bottom:125.253333pt;}
.y33_c00252{bottom:125.920000pt;}
.y30_c00252{bottom:139.666667pt;}
.y2f_c00252{bottom:154.053333pt;}
.y2e_c00252{bottom:168.453333pt;}
.y2d_c00252{bottom:183.186667pt;}
.y2c_c00252{bottom:197.586667pt;}
.y2b_c00252{bottom:212.586667pt;}
.y2a_c00252{bottom:270.186667pt;}
.y29_c00252{bottom:288.800000pt;}
.y28_c00252{bottom:307.386667pt;}
.y27_c00252{bottom:326.586667pt;}
.y26_c00252{bottom:344.800000pt;}
.y25_c00252{bottom:364.000000pt;}
.y22_c00252{bottom:382.586667pt;}
.y23_c00252{bottom:382.853333pt;}
.y24_c00252{bottom:382.920000pt;}
.y21_c00252{bottom:401.453333pt;}
.y20_c00252{bottom:420.333333pt;}
.y1f_c00252{bottom:439.520000pt;}
.y1e_c00252{bottom:458.386667pt;}
.y1d_c00252{bottom:476.666667pt;}
.y1c_c00252{bottom:477.000000pt;}
.y1b_c00252{bottom:495.853333pt;}
.y1a_c00252{bottom:515.000000pt;}
.y19_c00252{bottom:533.586667pt;}
.y18_c00252{bottom:552.453333pt;}
.y17_c00252{bottom:571.386667pt;}
.y16_c00252{bottom:590.520000pt;}
.y15_c00252{bottom:609.386667pt;}
.y14_c00252{bottom:628.333333pt;}
.y13_c00252{bottom:647.186667pt;}
.y12_c00252{bottom:665.733333pt;}
.y11_c00252{bottom:684.933333pt;}
.y10_c00252{bottom:703.853333pt;}
.yf_c00252{bottom:723.053333pt;}
.ye_c00252{bottom:741.933333pt;}
.yd_c00252{bottom:760.800000pt;}
.yc_c00252{bottom:779.333333pt;}
.yb_c00252{bottom:798.520000pt;}
.ya_c00252{bottom:816.800000pt;}
.y9_c00252{bottom:835.720000pt;}
.y8_c00252{bottom:853.933333pt;}
.y7_c00252{bottom:873.133333pt;}
.y6_c00252{bottom:890.720000pt;}
.y5_c00252{bottom:892.666667pt;}
.y4_c00252{bottom:893.600000pt;}
.y3_c00252{bottom:941.600000pt;}
.y1_c00252{bottom:944.800000pt;}
.y2_c00252{bottom:953.466667pt;}
.h9_c00252{height:44.500000pt;}
.ha_c00252{height:50.062500pt;}
.h1_c00252{height:57.578125pt;}
.h3_c00252{height:59.125000pt;}
.h7_c00252{height:61.187500pt;}
.h5_c00252{height:62.781250pt;}
.h4_c00252{height:62.812500pt;}
.h2_c00252{height:64.500000pt;}
.h8_c00252{height:68.013021pt;}
.h6_c00252{height:68.046875pt;}
.h0_c00252{height:1044.000000pt;}
.w0_c00252{width:650.646400pt;}
.w1_c00252{width:650.666667pt;}
.x0_c00252{left:0.000000pt;}
.x4_c00252{left:42.235733pt;}
.x8_c00252{left:43.502400pt;}
.x9_c00252{left:44.435733pt;}
.xa_c00252{left:45.435733pt;}
.xb_c00252{left:46.702400pt;}
.xc_c00252{left:47.635733pt;}
.x12_c00252{left:48.969067pt;}
.x15_c00252{left:49.902400pt;}
.xf_c00252{left:51.169067pt;}
.x17_c00252{left:52.435733pt;}
.x1a_c00252{left:54.702400pt;}
.x1b_c00252{left:55.969067pt;}
.x1e_c00252{left:57.235733pt;}
.x22_c00252{left:58.235733pt;}
.x23_c00252{left:62.702400pt;}
.x19_c00252{left:68.769067pt;}
.x24_c00252{left:70.035733pt;}
.x10_c00252{left:76.435733pt;}
.x16_c00252{left:78.702400pt;}
.x18_c00252{left:79.969067pt;}
.x5_c00252{left:91.502400pt;}
.x25_c00252{left:169.555733pt;}
.xd_c00252{left:185.555733pt;}
.x11_c00252{left:203.502400pt;}
.x26_c00252{left:215.635733pt;}
.x1_c00252{left:232.635733pt;}
.x6_c00252{left:240.969067pt;}
.x7_c00252{left:244.769067pt;}
.x1f_c00252{left:328.635733pt;}
.x20_c00252{left:375.635733pt;}
.x13_c00252{left:384.302400pt;}
.xe_c00252{left:398.035733pt;}
.x14_c00252{left:401.235733pt;}
.x2_c00252{left:402.569067pt;}
.x1c_c00252{left:428.769067pt;}
.x1d_c00252{left:442.235733pt;}
.x21_c00252{left:470.702400pt;}
.x27_c00252{left:526.369067pt;}
.x3_c00252{left:545.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d4923ee598e5a01299a445f.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00253;src:url('chunks/assets/font_e0d32e21926f1d3ce2cbcbc3.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00253;src:url('chunks/assets/font_508e411fbb1d328fcc829191.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00253;src:url('chunks/assets/font_e25093da386cfdbb68b1d8c4.woff2')format("woff");}.ff4_c00253{font-family:ff4_c00253;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1b_c00253{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m19_c00253{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m21_c00253{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m24_c00253{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m22_c00253{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c00253{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00253{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c00253{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c00253{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00253{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16_c00253{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c00253{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00253{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00253{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00253{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00253{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00253{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2_c00253{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m17_c00253{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m15_c00253{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c00253{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c00253{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3_c00253{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c00253{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c00253{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m10_c00253{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7_c00253{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00253{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c00253{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf_c00253{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m14_c00253{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00253{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m11_c00253{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00253{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m20_c00253{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00253{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.ma_c00253{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls0_c00253{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00253{color:transparent;}
.fs0_c00253{font-size:60.000000px;}
.fs1_c00253{font-size:66.000000px;}
.fs2_c00253{font-size:72.000000px;}
.fs3_c00253{font-size:78.000000px;}
.fs4_c00253{font-size:84.000000px;}
.y0_c00253{bottom:0.000000px;}
.y50_c00253{bottom:81.135000px;}
.y4f_c00253{bottom:83.310000px;}
.y4e_c00253{bottom:89.760000px;}
.y4d_c00253{bottom:117.510000px;}
.y4c_c00253{bottom:137.310000px;}
.y4b_c00253{bottom:157.125000px;}
.y4a_c00253{bottom:160.035000px;}
.y49_c00253{bottom:179.085000px;}
.y48_c00253{bottom:180.135000px;}
.y47_c00253{bottom:185.250000px;}
.y46_c00253{bottom:202.125000px;}
.y45_c00253{bottom:204.285000px;}
.y44_c00253{bottom:208.260000px;}
.y43_c00253{bottom:224.085000px;}
.y42_c00253{bottom:228.435000px;}
.y41_c00253{bottom:250.710000px;}
.y40_c00253{bottom:272.025000px;}
.y3f_c00253{bottom:277.785000px;}
.y3e_c00253{bottom:279.150000px;}
.y3d_c00253{bottom:295.335000px;}
.y3c_c00253{bottom:300.060000px;}
.y3b_c00253{bottom:320.910000px;}
.y37_c00253{bottom:334.935000px;}
.y36_c00253{bottom:335.025000px;}
.y3a_c00253{bottom:336.750000px;}
.y39_c00253{bottom:337.125000px;}
.y38_c00253{bottom:338.160000px;}
.y35_c00253{bottom:338.910000px;}
.y34_c00253{bottom:342.150000px;}
.y33_c00253{bottom:363.060000px;}
.y32_c00253{bottom:385.710000px;}
.y31_c00253{bottom:408.060000px;}
.y30_c00253{bottom:430.035000px;}
.y2f_c00253{bottom:452.685000px;}
.y2e_c00253{bottom:475.035000px;}
.y2d_c00253{bottom:496.635000px;}
.y2c_c00253{bottom:497.685000px;}
.y2b_c00253{bottom:516.375000px;}
.y2a_c00253{bottom:517.875000px;}
.y29_c00253{bottom:519.285000px;}
.y28_c00253{bottom:541.635000px;}
.y27_c00253{bottom:562.875000px;}
.y26_c00253{bottom:585.135000px;}
.y25_c00253{bottom:607.125000px;}
.y24_c00253{bottom:629.460000px;}
.y23_c00253{bottom:651.810000px;}
.y21_c00253{bottom:672.285000px;}
.y22_c00253{bottom:674.085000px;}
.y20_c00253{bottom:696.375000px;}
.y1f_c00253{bottom:718.035000px;}
.y1d_c00253{bottom:736.710000px;}
.y1e_c00253{bottom:740.325000px;}
.y1c_c00253{bottom:762.285000px;}
.y1a_c00253{bottom:782.835000px;}
.y1b_c00253{bottom:785.310000px;}
.y19_c00253{bottom:806.250000px;}
.y15_c00253{bottom:823.500000px;}
.y16_c00253{bottom:825.000000px;}
.y17_c00253{bottom:825.300000px;}
.y18_c00253{bottom:828.900000px;}
.y14_c00253{bottom:849.375000px;}
.y13_c00253{bottom:870.300000px;}
.y12_c00253{bottom:892.185000px;}
.y11_c00253{bottom:913.500000px;}
.yd_c00253{bottom:931.500000px;}
.ye_c00253{bottom:935.460000px;}
.yf_c00253{bottom:935.835000px;}
.y10_c00253{bottom:938.310000px;}
.yc_c00253{bottom:952.050000px;}
.ya_c00253{bottom:971.835000px;}
.yb_c00253{bottom:980.460000px;}
.y8_c00253{bottom:997.425000px;}
.y9_c00253{bottom:1003.875000px;}
.y6_c00253{bottom:1020.000000px;}
.y7_c00253{bottom:1025.835000px;}
.y4_c00253{bottom:1033.335000px;}
.y5_c00253{bottom:1038.810000px;}
.y2_c00253{bottom:1059.675000px;}
.y3_c00253{bottom:1068.300000px;}
.y51_c00253{bottom:1112.925000px;}
.y1_c00253{bottom:1122.675000px;}
.h1_c00253{height:58.886719px;}
.h5_c00253{height:60.468750px;}
.h2_c00253{height:64.775391px;}
.h7_c00253{height:66.515625px;}
.h4_c00253{height:70.628906px;}
.h3_c00253{height:70.664062px;}
.h6_c00253{height:76.514648px;}
.h9_c00253{height:78.609375px;}
.h8_c00253{height:82.400391px;}
.h0_c00253{height:1174.500000px;}
.w0_c00253{width:731.977200px;}
.w1_c00253{width:732.000000px;}
.x0_c00253{left:0.000000px;}
.x2e_c00253{left:40.690200px;}
.x2a_c00253{left:41.740200px;}
.x27_c00253{left:43.540200px;}
.x1e_c00253{left:44.965200px;}
.x17_c00253{left:46.390200px;}
.x1d_c00253{left:47.515200px;}
.x14_c00253{left:48.565200px;}
.x7_c00253{left:49.690200px;}
.x2_c00253{left:51.115200px;}
.xf_c00253{left:52.165200px;}
.xa_c00253{left:65.515200px;}
.x34_c00253{left:69.790200px;}
.x32_c00253{left:70.915200px;}
.x4_c00253{left:74.890200px;}
.x25_c00253{left:75.925200px;}
.x1a_c00253{left:78.115200px;}
.xb_c00253{left:80.590200px;}
.x5_c00253{left:81.715200px;}
.x18_c00253{left:101.515200px;}
.x28_c00253{left:116.965200px;}
.x15_c00253{left:127.765200px;}
.x9_c00253{left:129.190200px;}
.x26_c00253{left:157.315200px;}
.x10_c00253{left:165.565200px;}
.x11_c00253{left:182.875200px;}
.x29_c00253{left:193.315200px;}
.x12_c00253{left:205.915200px;}
.x1_c00253{left:271.390200px;}
.x33_c00253{left:339.115200px;}
.xc_c00253{left:341.965200px;}
.x8_c00253{left:346.690200px;}
.x3_c00253{left:356.365200px;}
.xd_c00253{left:372.190200px;}
.xe_c00253{left:380.890200px;}
.x2c_c00253{left:403.900200px;}
.x13_c00253{left:410.365200px;}
.x6_c00253{left:424.390200px;}
.x2d_c00253{left:432.715200px;}
.x16_c00253{left:492.790200px;}
.x1f_c00253{left:494.590200px;}
.x2f_c00253{left:496.390200px;}
.x20_c00253{left:497.890200px;}
.x21_c00253{left:506.140200px;}
.x22_c00253{left:511.915200px;}
.x1b_c00253{left:513.340200px;}
.x30_c00253{left:525.940200px;}
.x23_c00253{left:539.965200px;}
.x19_c00253{left:567.340200px;}
.x24_c00253{left:601.915200px;}
.x1c_c00253{left:610.915200px;}
.x2b_c00253{left:634.315200px;}
.x31_c00253{left:646.540200px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls0_c00253{letter-spacing:0.000000pt;}
.ws0_c00253{word-spacing:0.000000pt;}
.fs0_c00253{font-size:53.333333pt;}
.fs1_c00253{font-size:58.666667pt;}
.fs2_c00253{font-size:64.000000pt;}
.fs3_c00253{font-size:69.333333pt;}
.fs4_c00253{font-size:74.666667pt;}
.y0_c00253{bottom:0.000000pt;}
.y50_c00253{bottom:72.120000pt;}
.y4f_c00253{bottom:74.053333pt;}
.y4e_c00253{bottom:79.786667pt;}
.y4d_c00253{bottom:104.453333pt;}
.y4c_c00253{bottom:122.053333pt;}
.y4b_c00253{bottom:139.666667pt;}
.y4a_c00253{bottom:142.253333pt;}
.y49_c00253{bottom:159.186667pt;}
.y48_c00253{bottom:160.120000pt;}
.y47_c00253{bottom:164.666667pt;}
.y46_c00253{bottom:179.666667pt;}
.y45_c00253{bottom:181.586667pt;}
.y44_c00253{bottom:185.120000pt;}
.y43_c00253{bottom:199.186667pt;}
.y42_c00253{bottom:203.053333pt;}
.y41_c00253{bottom:222.853333pt;}
.y40_c00253{bottom:241.800000pt;}
.y3f_c00253{bottom:246.920000pt;}
.y3e_c00253{bottom:248.133333pt;}
.y3d_c00253{bottom:262.520000pt;}
.y3c_c00253{bottom:266.720000pt;}
.y3b_c00253{bottom:285.253333pt;}
.y37_c00253{bottom:297.720000pt;}
.y36_c00253{bottom:297.800000pt;}
.y3a_c00253{bottom:299.333333pt;}
.y39_c00253{bottom:299.666667pt;}
.y38_c00253{bottom:300.586667pt;}
.y35_c00253{bottom:301.253333pt;}
.y34_c00253{bottom:304.133333pt;}
.y33_c00253{bottom:322.720000pt;}
.y32_c00253{bottom:342.853333pt;}
.y31_c00253{bottom:362.720000pt;}
.y30_c00253{bottom:382.253333pt;}
.y2f_c00253{bottom:402.386667pt;}
.y2e_c00253{bottom:422.253333pt;}
.y2d_c00253{bottom:441.453333pt;}
.y2c_c00253{bottom:442.386667pt;}
.y2b_c00253{bottom:459.000000pt;}
.y2a_c00253{bottom:460.333333pt;}
.y29_c00253{bottom:461.586667pt;}
.y28_c00253{bottom:481.453333pt;}
.y27_c00253{bottom:500.333333pt;}
.y26_c00253{bottom:520.120000pt;}
.y25_c00253{bottom:539.666667pt;}
.y24_c00253{bottom:559.520000pt;}
.y23_c00253{bottom:579.386667pt;}
.y21_c00253{bottom:597.586667pt;}
.y22_c00253{bottom:599.186667pt;}
.y20_c00253{bottom:619.000000pt;}
.y1f_c00253{bottom:638.253333pt;}
.y1d_c00253{bottom:654.853333pt;}
.y1e_c00253{bottom:658.066667pt;}
.y1c_c00253{bottom:677.586667pt;}
.y1a_c00253{bottom:695.853333pt;}
.y1b_c00253{bottom:698.053333pt;}
.y19_c00253{bottom:716.666667pt;}
.y15_c00253{bottom:732.000000pt;}
.y16_c00253{bottom:733.333333pt;}
.y17_c00253{bottom:733.600000pt;}
.y18_c00253{bottom:736.800000pt;}
.y14_c00253{bottom:755.000000pt;}
.y13_c00253{bottom:773.600000pt;}
.y12_c00253{bottom:793.053333pt;}
.y11_c00253{bottom:812.000000pt;}
.yd_c00253{bottom:828.000000pt;}
.ye_c00253{bottom:831.520000pt;}
.yf_c00253{bottom:831.853333pt;}
.y10_c00253{bottom:834.053333pt;}
.yc_c00253{bottom:846.266667pt;}
.ya_c00253{bottom:863.853333pt;}
.yb_c00253{bottom:871.520000pt;}
.y8_c00253{bottom:886.600000pt;}
.y9_c00253{bottom:892.333333pt;}
.y6_c00253{bottom:906.666667pt;}
.y7_c00253{bottom:911.853333pt;}
.y4_c00253{bottom:918.520000pt;}
.y5_c00253{bottom:923.386667pt;}
.y2_c00253{bottom:941.933333pt;}
.y3_c00253{bottom:949.600000pt;}
.y51_c00253{bottom:989.266667pt;}
.y1_c00253{bottom:997.933333pt;}
.h1_c00253{height:52.343750pt;}
.h5_c00253{height:53.750000pt;}
.h2_c00253{height:57.578125pt;}
.h7_c00253{height:59.125000pt;}
.h4_c00253{height:62.781250pt;}
.h3_c00253{height:62.812500pt;}
.h6_c00253{height:68.013021pt;}
.h9_c00253{height:69.875000pt;}
.h8_c00253{height:73.244792pt;}
.h0_c00253{height:1044.000000pt;}
.w0_c00253{width:650.646400pt;}
.w1_c00253{width:650.666667pt;}
.x0_c00253{left:0.000000pt;}
.x2e_c00253{left:36.169067pt;}
.x2a_c00253{left:37.102400pt;}
.x27_c00253{left:38.702400pt;}
.x1e_c00253{left:39.969067pt;}
.x17_c00253{left:41.235733pt;}
.x1d_c00253{left:42.235733pt;}
.x14_c00253{left:43.169067pt;}
.x7_c00253{left:44.169067pt;}
.x2_c00253{left:45.435733pt;}
.xf_c00253{left:46.369067pt;}
.xa_c00253{left:58.235733pt;}
.x34_c00253{left:62.035733pt;}
.x32_c00253{left:63.035733pt;}
.x4_c00253{left:66.569067pt;}
.x25_c00253{left:67.489067pt;}
.x1a_c00253{left:69.435733pt;}
.xb_c00253{left:71.635733pt;}
.x5_c00253{left:72.635733pt;}
.x18_c00253{left:90.235733pt;}
.x28_c00253{left:103.969067pt;}
.x15_c00253{left:113.569067pt;}
.x9_c00253{left:114.835733pt;}
.x26_c00253{left:139.835733pt;}
.x10_c00253{left:147.169067pt;}
.x11_c00253{left:162.555733pt;}
.x29_c00253{left:171.835733pt;}
.x12_c00253{left:183.035733pt;}
.x1_c00253{left:241.235733pt;}
.x33_c00253{left:301.435733pt;}
.xc_c00253{left:303.969067pt;}
.x8_c00253{left:308.169067pt;}
.x3_c00253{left:316.769067pt;}
.xd_c00253{left:330.835733pt;}
.xe_c00253{left:338.569067pt;}
.x2c_c00253{left:359.022400pt;}
.x13_c00253{left:364.769067pt;}
.x6_c00253{left:377.235733pt;}
.x2d_c00253{left:384.635733pt;}
.x16_c00253{left:438.035733pt;}
.x1f_c00253{left:439.635733pt;}
.x2f_c00253{left:441.235733pt;}
.x20_c00253{left:442.569067pt;}
.x21_c00253{left:449.902400pt;}
.x22_c00253{left:455.035733pt;}
.x1b_c00253{left:456.302400pt;}
.x30_c00253{left:467.502400pt;}
.x23_c00253{left:479.969067pt;}
.x19_c00253{left:504.302400pt;}
.x24_c00253{left:535.035733pt;}
.x1c_c00253{left:543.035733pt;}
.x2b_c00253{left:563.835733pt;}
.x31_c00253{left:574.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f89c88fe9aa37a3ff96358ba.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00254;src:url('chunks/assets/font_e908f823a0c60953db93d877.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00254;src:url('chunks/assets/font_13861134ddfe57b8ddf48ff0.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00254{transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);}
.m2_c00254{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m14_c00254{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m10_c00254{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00254{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.md_c00254{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4_c00254{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8_c00254{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c00254{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c00254{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00254{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00254{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c00254{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7_c00254{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00254{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c00254{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c00254{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00254{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00254{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c00254{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00254{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c00254{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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.000000px;}
.fc0_c00254{color:transparent;}
.fs0_c00254{font-size:60.000000px;}
.fs2_c00254{font-size:66.000000px;}
.fs1_c00254{font-size:78.000000px;}
.y0_c00254{bottom:0.000000px;}
.y38_c00254{bottom:80.760000px;}
.y37_c00254{bottom:101.685000px;}
.y35_c00254{bottom:122.535000px;}
.y36_c00254{bottom:122.910000px;}
.y34_c00254{bottom:143.460000px;}
.y33_c00254{bottom:164.310000px;}
.y32_c00254{bottom:184.500000px;}
.y2e_c00254{bottom:204.660000px;}
.y2f_c00254{bottom:205.035000px;}
.y30_c00254{bottom:206.460000px;}
.y31_c00254{bottom:206.760000px;}
.y2d_c00254{bottom:225.510000px;}
.y2b_c00254{bottom:245.385000px;}
.y2c_c00254{bottom:246.435000px;}
.y2a_c00254{bottom:246.750000px;}
.y29_c00254{bottom:266.910000px;}
.y28_c00254{bottom:287.400000px;}
.y27_c00254{bottom:308.400000px;}
.y26_c00254{bottom:329.625000px;}
.y25_c00254{bottom:351.150000px;}
.y24_c00254{bottom:372.060000px;}
.y23_c00254{bottom:392.910000px;}
.y22_c00254{bottom:413.835000px;}
.y21_c00254{bottom:434.685000px;}
.y20_c00254{bottom:456.285000px;}
.y1f_c00254{bottom:477.510000px;}
.y1e_c00254{bottom:498.810000px;}
.y1d_c00254{bottom:519.660000px;}
.y1c_c00254{bottom:540.885000px;}
.y1b_c00254{bottom:562.125000px;}
.y1a_c00254{bottom:583.335000px;}
.y19_c00254{bottom:604.260000px;}
.y18_c00254{bottom:625.785000px;}
.y17_c00254{bottom:646.710000px;}
.y16_c00254{bottom:667.560000px;}
.y15_c00254{bottom:668.310000px;}
.y14_c00254{bottom:688.875000px;}
.y13_c00254{bottom:710.085000px;}
.y12_c00254{bottom:731.010000px;}
.y11_c00254{bottom:752.625000px;}
.y10_c00254{bottom:773.835000px;}
.yf_c00254{bottom:795.000000px;}
.ye_c00254{bottom:816.300000px;}
.yd_c00254{bottom:837.525000px;}
.yc_c00254{bottom:858.810000px;}
.yb_c00254{bottom:879.960000px;}
.ya_c00254{bottom:900.900000px;}
.y9_c00254{bottom:921.810000px;}
.y8_c00254{bottom:942.675000px;}
.y7_c00254{bottom:962.460000px;}
.y6_c00254{bottom:964.650000px;}
.y5_c00254{bottom:985.500000px;}
.y4_c00254{bottom:1006.710000px;}
.y3_c00254{bottom:1063.560000px;}
.y2_c00254{bottom:1065.435000px;}
.y1_c00254{bottom:1065.810000px;}
.h1_c00254{height:58.886719px;}
.h5_c00254{height:64.775391px;}
.h4_c00254{height:76.514648px;}
.h2_c00254{height:76.552734px;}
.h3_c00254{height:78.609375px;}
.h0_c00254{height:1174.500000px;}
.w0_c00254{width:731.977200px;}
.w1_c00254{width:732.000000px;}
.x0_c00254{left:0.000000px;}
.x4_c00254{left:53.590200px;}
.x7_c00254{left:55.090200px;}
.x8_c00254{left:56.140200px;}
.xd_c00254{left:57.565200px;}
.xe_c00254{left:58.690200px;}
.x10_c00254{left:60.115200px;}
.x11_c00254{left:61.165200px;}
.x12_c00254{left:62.965200px;}
.x13_c00254{left:64.765200px;}
.x16_c00254{left:66.565200px;}
.x1a_c00254{left:67.690200px;}
.x1b_c00254{left:68.740200px;}
.x1e_c00254{left:70.540200px;}
.xa_c00254{left:76.990200px;}
.x5_c00254{left:84.550200px;}
.x9_c00254{left:86.365200px;}
.xc_c00254{left:88.165200px;}
.x17_c00254{left:138.940200px;}
.xb_c00254{left:174.190200px;}
.x1c_c00254{left:224.965200px;}
.x1_c00254{left:262.090200px;}
.x1d_c00254{left:287.290200px;}
.x6_c00254{left:304.165200px;}
.x14_c00254{left:312.115200px;}
.x2_c00254{left:454.315200px;}
.xf_c00254{left:476.590200px;}
.x15_c00254{left:571.315200px;}
.x3_c00254{left:613.765200px;}
.x18_c00254{left:621.715200px;}
.x19_c00254{left:648.340200px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls0_c00254{letter-spacing:0.000000pt;}
.ws0_c00254{word-spacing:0.000000pt;}
.fs0_c00254{font-size:53.333333pt;}
.fs2_c00254{font-size:58.666667pt;}
.fs1_c00254{font-size:69.333333pt;}
.y0_c00254{bottom:0.000000pt;}
.y38_c00254{bottom:71.786667pt;}
.y37_c00254{bottom:90.386667pt;}
.y35_c00254{bottom:108.920000pt;}
.y36_c00254{bottom:109.253333pt;}
.y34_c00254{bottom:127.520000pt;}
.y33_c00254{bottom:146.053333pt;}
.y32_c00254{bottom:164.000000pt;}
.y2e_c00254{bottom:181.920000pt;}
.y2f_c00254{bottom:182.253333pt;}
.y30_c00254{bottom:183.520000pt;}
.y31_c00254{bottom:183.786667pt;}
.y2d_c00254{bottom:200.453333pt;}
.y2b_c00254{bottom:218.120000pt;}
.y2c_c00254{bottom:219.053333pt;}
.y2a_c00254{bottom:219.333333pt;}
.y29_c00254{bottom:237.253333pt;}
.y28_c00254{bottom:255.466667pt;}
.y27_c00254{bottom:274.133333pt;}
.y26_c00254{bottom:293.000000pt;}
.y25_c00254{bottom:312.133333pt;}
.y24_c00254{bottom:330.720000pt;}
.y23_c00254{bottom:349.253333pt;}
.y22_c00254{bottom:367.853333pt;}
.y21_c00254{bottom:386.386667pt;}
.y20_c00254{bottom:405.586667pt;}
.y1f_c00254{bottom:424.453333pt;}
.y1e_c00254{bottom:443.386667pt;}
.y1d_c00254{bottom:461.920000pt;}
.y1c_c00254{bottom:480.786667pt;}
.y1b_c00254{bottom:499.666667pt;}
.y1a_c00254{bottom:518.520000pt;}
.y19_c00254{bottom:537.120000pt;}
.y18_c00254{bottom:556.253333pt;}
.y17_c00254{bottom:574.853333pt;}
.y16_c00254{bottom:593.386667pt;}
.y15_c00254{bottom:594.053333pt;}
.y14_c00254{bottom:612.333333pt;}
.y13_c00254{bottom:631.186667pt;}
.y12_c00254{bottom:649.786667pt;}
.y11_c00254{bottom:669.000000pt;}
.y10_c00254{bottom:687.853333pt;}
.yf_c00254{bottom:706.666667pt;}
.ye_c00254{bottom:725.600000pt;}
.yd_c00254{bottom:744.466667pt;}
.yc_c00254{bottom:763.386667pt;}
.yb_c00254{bottom:782.186667pt;}
.ya_c00254{bottom:800.800000pt;}
.y9_c00254{bottom:819.386667pt;}
.y8_c00254{bottom:837.933333pt;}
.y7_c00254{bottom:855.520000pt;}
.y6_c00254{bottom:857.466667pt;}
.y5_c00254{bottom:876.000000pt;}
.y4_c00254{bottom:894.853333pt;}
.y3_c00254{bottom:945.386667pt;}
.y2_c00254{bottom:947.053333pt;}
.y1_c00254{bottom:947.386667pt;}
.h1_c00254{height:52.343750pt;}
.h5_c00254{height:57.578125pt;}
.h4_c00254{height:68.013021pt;}
.h2_c00254{height:68.046875pt;}
.h3_c00254{height:69.875000pt;}
.h0_c00254{height:1044.000000pt;}
.w0_c00254{width:650.646400pt;}
.w1_c00254{width:650.666667pt;}
.x0_c00254{left:0.000000pt;}
.x4_c00254{left:47.635733pt;}
.x7_c00254{left:48.969067pt;}
.x8_c00254{left:49.902400pt;}
.xd_c00254{left:51.169067pt;}
.xe_c00254{left:52.169067pt;}
.x10_c00254{left:53.435733pt;}
.x11_c00254{left:54.369067pt;}
.x12_c00254{left:55.969067pt;}
.x13_c00254{left:57.569067pt;}
.x16_c00254{left:59.169067pt;}
.x1a_c00254{left:60.169067pt;}
.x1b_c00254{left:61.102400pt;}
.x1e_c00254{left:62.702400pt;}
.xa_c00254{left:68.435733pt;}
.x5_c00254{left:75.155733pt;}
.x9_c00254{left:76.769067pt;}
.xc_c00254{left:78.369067pt;}
.x17_c00254{left:123.502400pt;}
.xb_c00254{left:154.835733pt;}
.x1c_c00254{left:199.969067pt;}
.x1_c00254{left:232.969067pt;}
.x1d_c00254{left:255.369067pt;}
.x6_c00254{left:270.369067pt;}
.x14_c00254{left:277.435733pt;}
.x2_c00254{left:403.835733pt;}
.xf_c00254{left:423.635733pt;}
.x15_c00254{left:507.835733pt;}
.x3_c00254{left:545.569067pt;}
.x18_c00254{left:552.635733pt;}
.x19_c00254{left:576.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9a437b3500f6f83e07698823.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00255;src:url('chunks/assets/font_54d81dbd8dc5a4d201e8f719.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00255;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c00255{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m11_c00255{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0_c00255{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m16_c00255{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00255{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00255{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m12_c00255{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m15_c00255{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00255{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00255{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00255{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00255{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00255{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00255{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00255{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00255{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m10_c00255{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m9_c00255{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c00255{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m14_c00255{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m7_c00255{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m13_c00255{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00255{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.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;}
}
.ws0_c00255{word-spacing:0.000000px;}
.fc0_c00255{color:transparent;}
.fs1_c00255{font-size:54.000000px;}
.fs0_c00255{font-size:66.000000px;}
.fs3_c00255{font-size:72.000000px;}
.fs2_c00255{font-size:78.000000px;}
.y0_c00255{bottom:0.000000px;}
.y37_c00255{bottom:84.435000px;}
.y36_c00255{bottom:143.835000px;}
.y35_c00255{bottom:164.385000px;}
.y34_c00255{bottom:186.660000px;}
.y33_c00255{bottom:207.510000px;}
.y32_c00255{bottom:228.750000px;}
.y31_c00255{bottom:255.810000px;}
.y30_c00255{bottom:272.685000px;}
.y2f_c00255{bottom:294.660000px;}
.y2e_c00255{bottom:315.525000px;}
.y2d_c00255{bottom:336.435000px;}
.y2c_c00255{bottom:355.875000px;}
.y2b_c00255{bottom:356.625000px;}
.y2a_c00255{bottom:358.785000px;}
.y29_c00255{bottom:378.210000px;}
.y28_c00255{bottom:379.275000px;}
.y27_c00255{bottom:380.685000px;}
.y26_c00255{bottom:381.375000px;}
.y25_c00255{bottom:382.125000px;}
.y24_c00255{bottom:401.250000px;}
.y23_c00255{bottom:422.460000px;}
.y22_c00255{bottom:446.250000px;}
.y21_c00255{bottom:465.285000px;}
.y20_c00255{bottom:487.260000px;}
.y1f_c00255{bottom:508.500000px;}
.y1e_c00255{bottom:529.710000px;}
.y1d_c00255{bottom:551.685000px;}
.y1c_c00255{bottom:572.535000px;}
.y1b_c00255{bottom:594.135000px;}
.y1a_c00255{bottom:615.750000px;}
.y18_c00255{bottom:637.035000px;}
.y19_c00255{bottom:637.410000px;}
.y17_c00255{bottom:658.935000px;}
.y16_c00255{bottom:680.250000px;}
.y15_c00255{bottom:701.460000px;}
.y14_c00255{bottom:723.075000px;}
.y13_c00255{bottom:744.660000px;}
.y11_c00255{bottom:763.035000px;}
.y12_c00255{bottom:766.260000px;}
.y10_c00255{bottom:787.875000px;}
.yf_c00255{bottom:806.175000px;}
.ye_c00255{bottom:829.650000px;}
.yd_c00255{bottom:850.500000px;}
.yc_c00255{bottom:872.460000px;}
.yb_c00255{bottom:890.835000px;}
.y9_c00255{bottom:909.525000px;}
.ya_c00255{bottom:914.925000px;}
.y8_c00255{bottom:932.550000px;}
.y7_c00255{bottom:957.375000px;}
.y6_c00255{bottom:978.300000px;}
.y5_c00255{bottom:999.585000px;}
.y4_c00255{bottom:1020.750000px;}
.y1_c00255{bottom:1068.300000px;}
.y3_c00255{bottom:1076.925000px;}
.y2_c00255{bottom:1082.925000px;}
.h2_c00255{height:52.998047px;}
.h1_c00255{height:64.775391px;}
.h5_c00255{height:70.628906px;}
.h4_c00255{height:70.664062px;}
.h3_c00255{height:78.609375px;}
.h0_c00255{height:1174.500000px;}
.w0_c00255{width:731.977200px;}
.w1_c00255{width:732.000000px;}
.x0_c00255{left:0.000000px;}
.x1b_c00255{left:53.590200px;}
.x12_c00255{left:54.715200px;}
.x13_c00255{left:56.140200px;}
.xa_c00255{left:60.490200px;}
.x6_c00255{left:61.915200px;}
.x5_c00255{left:62.965200px;}
.x4_c00255{left:64.090200px;}
.x1c_c00255{left:69.490200px;}
.x7_c00255{left:79.165200px;}
.x1_c00255{left:83.515200px;}
.x1a_c00255{left:84.550200px;}
.xf_c00255{left:85.675200px;}
.xe_c00255{left:87.115200px;}
.xc_c00255{left:88.540200px;}
.xb_c00255{left:90.340200px;}
.x9_c00255{left:92.140200px;}
.x2_c00255{left:109.765200px;}
.xd_c00255{left:111.565200px;}
.x10_c00255{left:163.390200px;}
.x11_c00255{left:169.540200px;}
.x8_c00255{left:173.125200px;}
.x14_c00255{left:189.715200px;}
.x15_c00255{left:212.740200px;}
.x3_c00255{left:282.565200px;}
.x16_c00255{left:345.940200px;}
.x17_c00255{left:364.315200px;}
.x18_c00255{left:525.190200px;}
.x19_c00255{left:544.315200px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls0_c00255{letter-spacing:0.000000pt;}
.ws0_c00255{word-spacing:0.000000pt;}
.fs1_c00255{font-size:48.000000pt;}
.fs0_c00255{font-size:58.666667pt;}
.fs3_c00255{font-size:64.000000pt;}
.fs2_c00255{font-size:69.333333pt;}
.y0_c00255{bottom:0.000000pt;}
.y37_c00255{bottom:75.053333pt;}
.y36_c00255{bottom:127.853333pt;}
.y35_c00255{bottom:146.120000pt;}
.y34_c00255{bottom:165.920000pt;}
.y33_c00255{bottom:184.453333pt;}
.y32_c00255{bottom:203.333333pt;}
.y31_c00255{bottom:227.386667pt;}
.y30_c00255{bottom:242.386667pt;}
.y2f_c00255{bottom:261.920000pt;}
.y2e_c00255{bottom:280.466667pt;}
.y2d_c00255{bottom:299.053333pt;}
.y2c_c00255{bottom:316.333333pt;}
.y2b_c00255{bottom:317.000000pt;}
.y2a_c00255{bottom:318.920000pt;}
.y29_c00255{bottom:336.186667pt;}
.y28_c00255{bottom:337.133333pt;}
.y27_c00255{bottom:338.386667pt;}
.y26_c00255{bottom:339.000000pt;}
.y25_c00255{bottom:339.666667pt;}
.y24_c00255{bottom:356.666667pt;}
.y23_c00255{bottom:375.520000pt;}
.y22_c00255{bottom:396.666667pt;}
.y21_c00255{bottom:413.586667pt;}
.y20_c00255{bottom:433.120000pt;}
.y1f_c00255{bottom:452.000000pt;}
.y1e_c00255{bottom:470.853333pt;}
.y1d_c00255{bottom:490.386667pt;}
.y1c_c00255{bottom:508.920000pt;}
.y1b_c00255{bottom:528.120000pt;}
.y1a_c00255{bottom:547.333333pt;}
.y18_c00255{bottom:566.253333pt;}
.y19_c00255{bottom:566.586667pt;}
.y17_c00255{bottom:585.720000pt;}
.y16_c00255{bottom:604.666667pt;}
.y15_c00255{bottom:623.520000pt;}
.y14_c00255{bottom:642.733333pt;}
.y13_c00255{bottom:661.920000pt;}
.y11_c00255{bottom:678.253333pt;}
.y12_c00255{bottom:681.120000pt;}
.y10_c00255{bottom:700.333333pt;}
.yf_c00255{bottom:716.600000pt;}
.ye_c00255{bottom:737.466667pt;}
.yd_c00255{bottom:756.000000pt;}
.yc_c00255{bottom:775.520000pt;}
.yb_c00255{bottom:791.853333pt;}
.y9_c00255{bottom:808.466667pt;}
.ya_c00255{bottom:813.266667pt;}
.y8_c00255{bottom:828.933333pt;}
.y7_c00255{bottom:851.000000pt;}
.y6_c00255{bottom:869.600000pt;}
.y5_c00255{bottom:888.520000pt;}
.y4_c00255{bottom:907.333333pt;}
.y1_c00255{bottom:949.600000pt;}
.y3_c00255{bottom:957.266667pt;}
.y2_c00255{bottom:962.600000pt;}
.h2_c00255{height:47.109375pt;}
.h1_c00255{height:57.578125pt;}
.h5_c00255{height:62.781250pt;}
.h4_c00255{height:62.812500pt;}
.h3_c00255{height:69.875000pt;}
.h0_c00255{height:1044.000000pt;}
.w0_c00255{width:650.646400pt;}
.w1_c00255{width:650.666667pt;}
.x0_c00255{left:0.000000pt;}
.x1b_c00255{left:47.635733pt;}
.x12_c00255{left:48.635733pt;}
.x13_c00255{left:49.902400pt;}
.xa_c00255{left:53.769067pt;}
.x6_c00255{left:55.035733pt;}
.x5_c00255{left:55.969067pt;}
.x4_c00255{left:56.969067pt;}
.x1c_c00255{left:61.769067pt;}
.x7_c00255{left:70.369067pt;}
.x1_c00255{left:74.235733pt;}
.x1a_c00255{left:75.155733pt;}
.xf_c00255{left:76.155733pt;}
.xe_c00255{left:77.435733pt;}
.xc_c00255{left:78.702400pt;}
.xb_c00255{left:80.302400pt;}
.x9_c00255{left:81.902400pt;}
.x2_c00255{left:97.569067pt;}
.xd_c00255{left:99.169067pt;}
.x10_c00255{left:145.235733pt;}
.x11_c00255{left:150.702400pt;}
.x8_c00255{left:153.889067pt;}
.x14_c00255{left:168.635733pt;}
.x15_c00255{left:189.102400pt;}
.x3_c00255{left:251.169067pt;}
.x16_c00255{left:307.502400pt;}
.x17_c00255{left:323.835733pt;}
.x18_c00255{left:466.835733pt;}
.x19_c00255{left:483.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aae6ac4b98b164a5d6e56de2.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00256;src:url('chunks/assets/font_77ac0dc91269c367e039af3a.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00256;src:url('chunks/assets/font_db3a662644411953cf19d846.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00256{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m19_c00256{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m0_c00256{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c00256{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10_c00256{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c00256{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c00256{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9_c00256{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me_c00256{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c00256{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c00256{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00256{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00256{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00256{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c00256{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4_c00256{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00256{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c00256{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c00256{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c00256{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c00256{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c00256{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m17_c00256{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c00256{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c00256{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2_c00256{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00256{color:transparent;}
.fs1_c00256{font-size:36.000000px;}
.fs0_c00256{font-size:60.000000px;}
.fs4_c00256{font-size:66.000000px;}
.fs5_c00256{font-size:72.000000px;}
.fs2_c00256{font-size:78.000000px;}
.fs3_c00256{font-size:84.000000px;}
.y0_c00256{bottom:0.000000px;}
.y3f_c00256{bottom:93.435000px;}
.y40_c00256{bottom:98.085000px;}
.y3d_c00256{bottom:115.035000px;}
.y3e_c00256{bottom:118.560000px;}
.y3b_c00256{bottom:135.510000px;}
.y3c_c00256{bottom:138.435000px;}
.y3a_c00256{bottom:156.810000px;}
.y39_c00256{bottom:177.285000px;}
.y35_c00256{bottom:196.785000px;}
.y36_c00256{bottom:197.460000px;}
.y34_c00256{bottom:197.835000px;}
.y37_c00256{bottom:199.635000px;}
.y38_c00256{bottom:201.810000px;}
.y33_c00256{bottom:218.310000px;}
.y32_c00256{bottom:238.875000px;}
.y30_c00256{bottom:259.335000px;}
.y2f_c00256{bottom:259.710000px;}
.y31_c00256{bottom:260.460000px;}
.y2e_c00256{bottom:280.650000px;}
.y2d_c00256{bottom:301.500000px;}
.y2c_c00256{bottom:322.410000px;}
.y2b_c00256{bottom:343.275000px;}
.y2a_c00256{bottom:364.125000px;}
.y29_c00256{bottom:384.660000px;}
.y28_c00256{bottom:405.525000px;}
.y25_c00256{bottom:426.375000px;}
.y26_c00256{bottom:427.500000px;}
.y27_c00256{bottom:428.250000px;}
.y24_c00256{bottom:447.660000px;}
.y23_c00256{bottom:468.885000px;}
.y22_c00256{bottom:490.125000px;}
.y21_c00256{bottom:511.335000px;}
.y20_c00256{bottom:532.635000px;}
.y1f_c00256{bottom:553.875000px;}
.y1e_c00256{bottom:574.785000px;}
.y1d_c00256{bottom:595.935000px;}
.y1c_c00256{bottom:617.250000px;}
.y1b_c00256{bottom:638.460000px;}
.y1a_c00256{bottom:659.685000px;}
.y19_c00256{bottom:680.910000px;}
.y18_c00256{bottom:702.135000px;}
.y17_c00256{bottom:723.450000px;}
.y16_c00256{bottom:744.285000px;}
.y15_c00256{bottom:765.510000px;}
.y14_c00256{bottom:787.185000px;}
.y13_c00256{bottom:808.425000px;}
.y12_c00256{bottom:829.650000px;}
.y11_c00256{bottom:850.875000px;}
.y10_c00256{bottom:851.250000px;}
.yf_c00256{bottom:851.925000px;}
.ye_c00256{bottom:872.460000px;}
.yd_c00256{bottom:893.685000px;}
.yc_c00256{bottom:914.925000px;}
.yb_c00256{bottom:935.835000px;}
.ya_c00256{bottom:957.060000px;}
.y9_c00256{bottom:978.300000px;}
.y8_c00256{bottom:999.210000px;}
.y7_c00256{bottom:1000.650000px;}
.y5_c00256{bottom:1020.810000px;}
.y6_c00256{bottom:1021.125000px;}
.y4_c00256{bottom:1023.000000px;}
.y3_c00256{bottom:1064.400000px;}
.y2_c00256{bottom:1065.060000px;}
.y41_c00256{bottom:1078.050000px;}
.y1_c00256{bottom:1083.060000px;}
.h2_c00256{height:37.546875px;}
.h1_c00256{height:60.468750px;}
.h6_c00256{height:64.775391px;}
.h7_c00256{height:70.664062px;}
.h3_c00256{height:76.552734px;}
.h4_c00256{height:78.609375px;}
.h5_c00256{height:82.441406px;}
.h0_c00256{height:1174.500000px;}
.w0_c00256{width:731.977200px;}
.w1_c00256{width:732.000000px;}
.x0_c00256{left:0.000000px;}
.x12_c00256{left:58.315200px;}
.x10_c00256{left:60.115200px;}
.xf_c00256{left:61.165200px;}
.xe_c00256{left:63.340200px;}
.xd_c00256{left:64.765200px;}
.x5_c00256{left:66.190200px;}
.x1b_c00256{left:78.115200px;}
.x1c_c00256{left:83.515200px;}
.x11_c00256{left:91.090200px;}
.xa_c00256{left:97.915200px;}
.x17_c00256{left:102.190200px;}
.x18_c00256{left:194.365200px;}
.x15_c00256{left:291.565200px;}
.x1_c00256{left:303.790200px;}
.x16_c00256{left:353.890200px;}
.x6_c00256{left:362.515200px;}
.x7_c00256{left:387.340200px;}
.x1d_c00256{left:413.965200px;}
.x8_c00256{left:416.140200px;}
.x9_c00256{left:437.365200px;}
.x19_c00256{left:453.190200px;}
.xb_c00256{left:483.490200px;}
.xc_c00256{left:524.140200px;}
.x2_c00256{left:528.115200px;}
.x3_c00256{left:530.965200px;}
.x13_c00256{left:535.690200px;}
.x14_c00256{left:559.090200px;}
.x4_c00256{left:577.390200px;}
.x1a_c00256{left:626.365200px;}
.x1f_c00256{left:628.540200px;}
.x1e_c00256{left:637.915200px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls0_c00256{letter-spacing:0.000000pt;}
.ws0_c00256{word-spacing:0.000000pt;}
.fs1_c00256{font-size:32.000000pt;}
.fs0_c00256{font-size:53.333333pt;}
.fs4_c00256{font-size:58.666667pt;}
.fs5_c00256{font-size:64.000000pt;}
.fs2_c00256{font-size:69.333333pt;}
.fs3_c00256{font-size:74.666667pt;}
.y0_c00256{bottom:0.000000pt;}
.y3f_c00256{bottom:83.053333pt;}
.y40_c00256{bottom:87.186667pt;}
.y3d_c00256{bottom:102.253333pt;}
.y3e_c00256{bottom:105.386667pt;}
.y3b_c00256{bottom:120.453333pt;}
.y3c_c00256{bottom:123.053333pt;}
.y3a_c00256{bottom:139.386667pt;}
.y39_c00256{bottom:157.586667pt;}
.y35_c00256{bottom:174.920000pt;}
.y36_c00256{bottom:175.520000pt;}
.y34_c00256{bottom:175.853333pt;}
.y37_c00256{bottom:177.453333pt;}
.y38_c00256{bottom:179.386667pt;}
.y33_c00256{bottom:194.053333pt;}
.y32_c00256{bottom:212.333333pt;}
.y30_c00256{bottom:230.520000pt;}
.y2f_c00256{bottom:230.853333pt;}
.y31_c00256{bottom:231.520000pt;}
.y2e_c00256{bottom:249.466667pt;}
.y2d_c00256{bottom:268.000000pt;}
.y2c_c00256{bottom:286.586667pt;}
.y2b_c00256{bottom:305.133333pt;}
.y2a_c00256{bottom:323.666667pt;}
.y29_c00256{bottom:341.920000pt;}
.y28_c00256{bottom:360.466667pt;}
.y25_c00256{bottom:379.000000pt;}
.y26_c00256{bottom:380.000000pt;}
.y27_c00256{bottom:380.666667pt;}
.y24_c00256{bottom:397.920000pt;}
.y23_c00256{bottom:416.786667pt;}
.y22_c00256{bottom:435.666667pt;}
.y21_c00256{bottom:454.520000pt;}
.y20_c00256{bottom:473.453333pt;}
.y1f_c00256{bottom:492.333333pt;}
.y1e_c00256{bottom:510.920000pt;}
.y1d_c00256{bottom:529.720000pt;}
.y1c_c00256{bottom:548.666667pt;}
.y1b_c00256{bottom:567.520000pt;}
.y1a_c00256{bottom:586.386667pt;}
.y19_c00256{bottom:605.253333pt;}
.y18_c00256{bottom:624.120000pt;}
.y17_c00256{bottom:643.066667pt;}
.y16_c00256{bottom:661.586667pt;}
.y15_c00256{bottom:680.453333pt;}
.y14_c00256{bottom:699.720000pt;}
.y13_c00256{bottom:718.600000pt;}
.y12_c00256{bottom:737.466667pt;}
.y11_c00256{bottom:756.333333pt;}
.y10_c00256{bottom:756.666667pt;}
.yf_c00256{bottom:757.266667pt;}
.ye_c00256{bottom:775.520000pt;}
.yd_c00256{bottom:794.386667pt;}
.yc_c00256{bottom:813.266667pt;}
.yb_c00256{bottom:831.853333pt;}
.ya_c00256{bottom:850.720000pt;}
.y9_c00256{bottom:869.600000pt;}
.y8_c00256{bottom:888.186667pt;}
.y7_c00256{bottom:889.466667pt;}
.y5_c00256{bottom:907.386667pt;}
.y6_c00256{bottom:907.666667pt;}
.y4_c00256{bottom:909.333333pt;}
.y3_c00256{bottom:946.133333pt;}
.y2_c00256{bottom:946.720000pt;}
.y41_c00256{bottom:958.266667pt;}
.y1_c00256{bottom:962.720000pt;}
.h2_c00256{height:33.375000pt;}
.h1_c00256{height:53.750000pt;}
.h6_c00256{height:57.578125pt;}
.h7_c00256{height:62.812500pt;}
.h3_c00256{height:68.046875pt;}
.h4_c00256{height:69.875000pt;}
.h5_c00256{height:73.281250pt;}
.h0_c00256{height:1044.000000pt;}
.w0_c00256{width:650.646400pt;}
.w1_c00256{width:650.666667pt;}
.x0_c00256{left:0.000000pt;}
.x12_c00256{left:51.835733pt;}
.x10_c00256{left:53.435733pt;}
.xf_c00256{left:54.369067pt;}
.xe_c00256{left:56.302400pt;}
.xd_c00256{left:57.569067pt;}
.x5_c00256{left:58.835733pt;}
.x1b_c00256{left:69.435733pt;}
.x1c_c00256{left:74.235733pt;}
.x11_c00256{left:80.969067pt;}
.xa_c00256{left:87.035733pt;}
.x17_c00256{left:90.835733pt;}
.x18_c00256{left:172.769067pt;}
.x15_c00256{left:259.169067pt;}
.x1_c00256{left:270.035733pt;}
.x16_c00256{left:314.569067pt;}
.x6_c00256{left:322.235733pt;}
.x7_c00256{left:344.302400pt;}
.x1d_c00256{left:367.969067pt;}
.x8_c00256{left:369.902400pt;}
.x9_c00256{left:388.769067pt;}
.x19_c00256{left:402.835733pt;}
.xb_c00256{left:429.769067pt;}
.xc_c00256{left:465.902400pt;}
.x2_c00256{left:469.435733pt;}
.x3_c00256{left:471.969067pt;}
.x13_c00256{left:476.169067pt;}
.x14_c00256{left:496.969067pt;}
.x4_c00256{left:513.235733pt;}
.x1a_c00256{left:556.769067pt;}
.x1f_c00256{left:558.702400pt;}
.x1e_c00256{left:567.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_94ebc2547c0c8877a3cc1562.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00257;src:url('chunks/assets/font_c4d8917e8d71eeff43ed7286.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c00257{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00257{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00257{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00257{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00257{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00257{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00257{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00257{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00257{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8_c00257{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00257{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00257{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c00257{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c00257{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3_c00257{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c00257{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00257{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00257{word-spacing:0.000000px;}
.fc0_c00257{color:transparent;}
.fs1_c00257{font-size:54.000000px;}
.fs0_c00257{font-size:60.000000px;}
.fs2_c00257{font-size:66.000000px;}
.fs3_c00257{font-size:78.000000px;}
.y0_c00257{bottom:0.000000px;}
.y32_c00257{bottom:97.410000px;}
.y31_c00257{bottom:119.010000px;}
.y30_c00257{bottom:144.510000px;}
.y2f_c00257{bottom:162.510000px;}
.y2e_c00257{bottom:183.060000px;}
.y2d_c00257{bottom:210.060000px;}
.y2c_c00257{bottom:227.310000px;}
.y2b_c00257{bottom:249.285000px;}
.y2a_c00257{bottom:269.460000px;}
.y29_c00257{bottom:293.250000px;}
.y28_c00257{bottom:313.710000px;}
.y27_c00257{bottom:334.650000px;}
.y26_c00257{bottom:356.250000px;}
.y25_c00257{bottom:379.275000px;}
.y24_c00257{bottom:399.435000px;}
.y23_c00257{bottom:420.660000px;}
.y22_c00257{bottom:444.060000px;}
.y21_c00257{bottom:463.875000px;}
.y20_c00257{bottom:485.460000px;}
.y1f_c00257{bottom:506.310000px;}
.y1e_c00257{bottom:528.000000px;}
.y1d_c00257{bottom:549.135000px;}
.y1c_c00257{bottom:570.435000px;}
.y1b_c00257{bottom:591.660000px;}
.y1a_c00257{bottom:613.635000px;}
.y19_c00257{bottom:635.250000px;}
.y18_c00257{bottom:656.835000px;}
.y17_c00257{bottom:678.060000px;}
.y14_c00257{bottom:696.750000px;}
.y15_c00257{bottom:698.250000px;}
.y16_c00257{bottom:699.660000px;}
.y13_c00257{bottom:720.510000px;}
.y12_c00257{bottom:742.200000px;}
.y11_c00257{bottom:763.335000px;}
.y10_c00257{bottom:784.935000px;}
.yf_c00257{bottom:805.875000px;}
.ye_c00257{bottom:827.400000px;}
.yd_c00257{bottom:842.925000px;}
.yc_c00257{bottom:868.125000px;}
.yb_c00257{bottom:890.085000px;}
.ya_c00257{bottom:906.300000px;}
.y9_c00257{bottom:932.550000px;}
.y8_c00257{bottom:954.525000px;}
.y7_c00257{bottom:969.675000px;}
.y6_c00257{bottom:996.675000px;}
.y5_c00257{bottom:1017.900000px;}
.y4_c00257{bottom:1038.375000px;}
.y1_c00257{bottom:1086.000000px;}
.y3_c00257{bottom:1094.175000px;}
.y2_c00257{bottom:1100.175000px;}
.h2_c00257{height:52.998047px;}
.h1_c00257{height:58.886719px;}
.h3_c00257{height:64.775391px;}
.h4_c00257{height:76.514648px;}
.h0_c00257{height:1174.500000px;}
.w0_c00257{width:731.977200px;}
.w1_c00257{width:732.000000px;}
.x0_c00257{left:0.000000px;}
.x6_c00257{left:60.790200px;}
.x4_c00257{left:61.915200px;}
.xa_c00257{left:63.340200px;}
.xb_c00257{left:64.390200px;}
.xd_c00257{left:65.890200px;}
.xf_c00257{left:67.690200px;}
.x1_c00257{left:80.290200px;}
.x5_c00257{left:91.090200px;}
.x9_c00257{left:93.550200px;}
.xc_c00257{left:94.690200px;}
.xe_c00257{left:98.965200px;}
.x2_c00257{left:107.290200px;}
.x7_c00257{left:124.165200px;}
.x8_c00257{left:250.915200px;}
.x3_c00257{left:277.915200px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls0_c00257{letter-spacing:0.000000pt;}
.ws0_c00257{word-spacing:0.000000pt;}
.fs1_c00257{font-size:48.000000pt;}
.fs0_c00257{font-size:53.333333pt;}
.fs2_c00257{font-size:58.666667pt;}
.fs3_c00257{font-size:69.333333pt;}
.y0_c00257{bottom:0.000000pt;}
.y32_c00257{bottom:86.586667pt;}
.y31_c00257{bottom:105.786667pt;}
.y30_c00257{bottom:128.453333pt;}
.y2f_c00257{bottom:144.453333pt;}
.y2e_c00257{bottom:162.720000pt;}
.y2d_c00257{bottom:186.720000pt;}
.y2c_c00257{bottom:202.053333pt;}
.y2b_c00257{bottom:221.586667pt;}
.y2a_c00257{bottom:239.520000pt;}
.y29_c00257{bottom:260.666667pt;}
.y28_c00257{bottom:278.853333pt;}
.y27_c00257{bottom:297.466667pt;}
.y26_c00257{bottom:316.666667pt;}
.y25_c00257{bottom:337.133333pt;}
.y24_c00257{bottom:355.053333pt;}
.y23_c00257{bottom:373.920000pt;}
.y22_c00257{bottom:394.720000pt;}
.y21_c00257{bottom:412.333333pt;}
.y20_c00257{bottom:431.520000pt;}
.y1f_c00257{bottom:450.053333pt;}
.y1e_c00257{bottom:469.333333pt;}
.y1d_c00257{bottom:488.120000pt;}
.y1c_c00257{bottom:507.053333pt;}
.y1b_c00257{bottom:525.920000pt;}
.y1a_c00257{bottom:545.453333pt;}
.y19_c00257{bottom:564.666667pt;}
.y18_c00257{bottom:583.853333pt;}
.y17_c00257{bottom:602.720000pt;}
.y14_c00257{bottom:619.333333pt;}
.y15_c00257{bottom:620.666667pt;}
.y16_c00257{bottom:621.920000pt;}
.y13_c00257{bottom:640.453333pt;}
.y12_c00257{bottom:659.733333pt;}
.y11_c00257{bottom:678.520000pt;}
.y10_c00257{bottom:697.720000pt;}
.yf_c00257{bottom:716.333333pt;}
.ye_c00257{bottom:735.466667pt;}
.yd_c00257{bottom:749.266667pt;}
.yc_c00257{bottom:771.666667pt;}
.yb_c00257{bottom:791.186667pt;}
.ya_c00257{bottom:805.600000pt;}
.y9_c00257{bottom:828.933333pt;}
.y8_c00257{bottom:848.466667pt;}
.y7_c00257{bottom:861.933333pt;}
.y6_c00257{bottom:885.933333pt;}
.y5_c00257{bottom:904.800000pt;}
.y4_c00257{bottom:923.000000pt;}
.y1_c00257{bottom:965.333333pt;}
.y3_c00257{bottom:972.600000pt;}
.y2_c00257{bottom:977.933333pt;}
.h2_c00257{height:47.109375pt;}
.h1_c00257{height:52.343750pt;}
.h3_c00257{height:57.578125pt;}
.h4_c00257{height:68.013021pt;}
.h0_c00257{height:1044.000000pt;}
.w0_c00257{width:650.646400pt;}
.w1_c00257{width:650.666667pt;}
.x0_c00257{left:0.000000pt;}
.x6_c00257{left:54.035733pt;}
.x4_c00257{left:55.035733pt;}
.xa_c00257{left:56.302400pt;}
.xb_c00257{left:57.235733pt;}
.xd_c00257{left:58.569067pt;}
.xf_c00257{left:60.169067pt;}
.x1_c00257{left:71.369067pt;}
.x5_c00257{left:80.969067pt;}
.x9_c00257{left:83.155733pt;}
.xc_c00257{left:84.169067pt;}
.xe_c00257{left:87.969067pt;}
.x2_c00257{left:95.369067pt;}
.x7_c00257{left:110.369067pt;}
.x8_c00257{left:223.035733pt;}
.x3_c00257{left:247.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e314886940899a311aea1d57.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00258;src:url('chunks/assets/font_c924a8bd5150e709c9fd9de7.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00258{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10_c00258{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2_c00258{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00258{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00258{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8_c00258{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5_c00258{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00258{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00258{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00258{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c00258{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00258{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00258{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00258{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00258{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00258{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00258{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00258{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c00258{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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.000000px;}
.fc0_c00258{color:transparent;}
.fs0_c00258{font-size:60.000000px;}
.fs1_c00258{font-size:66.000000px;}
.fs2_c00258{font-size:72.000000px;}
.fs3_c00258{font-size:84.000000px;}
.y0_c00258{bottom:0.000000px;}
.y35_c00258{bottom:87.285000px;}
.y34_c00258{bottom:102.750000px;}
.y32_c00258{bottom:119.310000px;}
.y33_c00258{bottom:126.210000px;}
.y31_c00258{bottom:135.885000px;}
.y30_c00258{bottom:150.285000px;}
.y2f_c00258{bottom:168.960000px;}
.y2e_c00258{bottom:185.160000px;}
.y2d_c00258{bottom:201.375000px;}
.y2b_c00258{bottom:217.935000px;}
.y2c_c00258{bottom:224.085000px;}
.y2a_c00258{bottom:234.585000px;}
.y29_c00258{bottom:251.085000px;}
.y28_c00258{bottom:267.285000px;}
.y27_c00258{bottom:284.910000px;}
.y26_c00258{bottom:301.875000px;}
.y25_c00258{bottom:318.810000px;}
.y24_c00258{bottom:336.000000px;}
.y23_c00258{bottom:352.560000px;}
.y22_c00258{bottom:369.150000px;}
.y21_c00258{bottom:386.085000px;}
.y20_c00258{bottom:402.660000px;}
.y1f_c00258{bottom:419.625000px;}
.y1e_c00258{bottom:436.500000px;}
.y1d_c00258{bottom:453.810000px;}
.y1c_c00258{bottom:470.685000px;}
.y1b_c00258{bottom:487.635000px;}
.y1a_c00258{bottom:504.510000px;}
.y19_c00258{bottom:504.885000px;}
.y18_c00258{bottom:521.460000px;}
.y17_c00258{bottom:538.785000px;}
.y16_c00258{bottom:555.285000px;}
.y15_c00258{bottom:572.250000px;}
.y14_c00258{bottom:589.185000px;}
.y13_c00258{bottom:606.060000px;}
.y12_c00258{bottom:623.310000px;}
.y11_c00258{bottom:639.510000px;}
.y10_c00258{bottom:640.560000px;}
.yf_c00258{bottom:698.625000px;}
.ye_c00258{bottom:719.835000px;}
.yd_c00258{bottom:741.375000px;}
.yc_c00258{bottom:762.000000px;}
.yb_c00258{bottom:783.885000px;}
.ya_c00258{bottom:804.810000px;}
.y9_c00258{bottom:910.935000px;}
.y8_c00258{bottom:932.175000px;}
.y7_c00258{bottom:952.710000px;}
.y6_c00258{bottom:975.435000px;}
.y5_c00258{bottom:995.250000px;}
.y4_c00258{bottom:1016.775000px;}
.y3_c00258{bottom:1072.935000px;}
.y1_c00258{bottom:1075.500000px;}
.y2_c00258{bottom:1085.250000px;}
.h1_c00258{height:58.886719px;}
.h2_c00258{height:64.775391px;}
.h4_c00258{height:66.515625px;}
.h3_c00258{height:70.664062px;}
.h5_c00258{height:82.441406px;}
.h0_c00258{height:1174.500000px;}
.w0_c00258{width:731.977200px;}
.w1_c00258{width:732.000000px;}
.x0_c00258{left:0.000000px;}
.x4_c00258{left:69.115200px;}
.x6_c00258{left:70.915200px;}
.x9_c00258{left:72.715200px;}
.xe_c00258{left:73.765200px;}
.xd_c00258{left:74.890200px;}
.x10_c00258{left:76.675200px;}
.x13_c00258{left:78.115200px;}
.x7_c00258{left:89.290200px;}
.xa_c00258{left:97.915200px;}
.xf_c00258{left:99.340200px;}
.x5_c00258{left:101.515200px;}
.x14_c00258{left:103.690200px;}
.xb_c00258{left:227.515200px;}
.xc_c00258{left:247.690200px;}
.x1_c00258{left:277.165200px;}
.x8_c00258{left:452.515200px;}
.x2_c00258{left:469.765200px;}
.x3_c00258{left:631.765200px;}
.x12_c00258{left:660.190200px;}
.x11_c00258{left:663.490200px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls0_c00258{letter-spacing:0.000000pt;}
.ws0_c00258{word-spacing:0.000000pt;}
.fs0_c00258{font-size:53.333333pt;}
.fs1_c00258{font-size:58.666667pt;}
.fs2_c00258{font-size:64.000000pt;}
.fs3_c00258{font-size:74.666667pt;}
.y0_c00258{bottom:0.000000pt;}
.y35_c00258{bottom:77.586667pt;}
.y34_c00258{bottom:91.333333pt;}
.y32_c00258{bottom:106.053333pt;}
.y33_c00258{bottom:112.186667pt;}
.y31_c00258{bottom:120.786667pt;}
.y30_c00258{bottom:133.586667pt;}
.y2f_c00258{bottom:150.186667pt;}
.y2e_c00258{bottom:164.586667pt;}
.y2d_c00258{bottom:179.000000pt;}
.y2b_c00258{bottom:193.720000pt;}
.y2c_c00258{bottom:199.186667pt;}
.y2a_c00258{bottom:208.520000pt;}
.y29_c00258{bottom:223.186667pt;}
.y28_c00258{bottom:237.586667pt;}
.y27_c00258{bottom:253.253333pt;}
.y26_c00258{bottom:268.333333pt;}
.y25_c00258{bottom:283.386667pt;}
.y24_c00258{bottom:298.666667pt;}
.y23_c00258{bottom:313.386667pt;}
.y22_c00258{bottom:328.133333pt;}
.y21_c00258{bottom:343.186667pt;}
.y20_c00258{bottom:357.920000pt;}
.y1f_c00258{bottom:373.000000pt;}
.y1e_c00258{bottom:388.000000pt;}
.y1d_c00258{bottom:403.386667pt;}
.y1c_c00258{bottom:418.386667pt;}
.y1b_c00258{bottom:433.453333pt;}
.y1a_c00258{bottom:448.453333pt;}
.y19_c00258{bottom:448.786667pt;}
.y18_c00258{bottom:463.520000pt;}
.y17_c00258{bottom:478.920000pt;}
.y16_c00258{bottom:493.586667pt;}
.y15_c00258{bottom:508.666667pt;}
.y14_c00258{bottom:523.720000pt;}
.y13_c00258{bottom:538.720000pt;}
.y12_c00258{bottom:554.053333pt;}
.y11_c00258{bottom:568.453333pt;}
.y10_c00258{bottom:569.386667pt;}
.yf_c00258{bottom:621.000000pt;}
.ye_c00258{bottom:639.853333pt;}
.yd_c00258{bottom:659.000000pt;}
.yc_c00258{bottom:677.333333pt;}
.yb_c00258{bottom:696.786667pt;}
.ya_c00258{bottom:715.386667pt;}
.y9_c00258{bottom:809.720000pt;}
.y8_c00258{bottom:828.600000pt;}
.y7_c00258{bottom:846.853333pt;}
.y6_c00258{bottom:867.053333pt;}
.y5_c00258{bottom:884.666667pt;}
.y4_c00258{bottom:903.800000pt;}
.y3_c00258{bottom:953.720000pt;}
.y1_c00258{bottom:956.000000pt;}
.y2_c00258{bottom:964.666667pt;}
.h1_c00258{height:52.343750pt;}
.h2_c00258{height:57.578125pt;}
.h4_c00258{height:59.125000pt;}
.h3_c00258{height:62.812500pt;}
.h5_c00258{height:73.281250pt;}
.h0_c00258{height:1044.000000pt;}
.w0_c00258{width:650.646400pt;}
.w1_c00258{width:650.666667pt;}
.x0_c00258{left:0.000000pt;}
.x4_c00258{left:61.435733pt;}
.x6_c00258{left:63.035733pt;}
.x9_c00258{left:64.635733pt;}
.xe_c00258{left:65.569067pt;}
.xd_c00258{left:66.569067pt;}
.x10_c00258{left:68.155733pt;}
.x13_c00258{left:69.435733pt;}
.x7_c00258{left:79.369067pt;}
.xa_c00258{left:87.035733pt;}
.xf_c00258{left:88.302400pt;}
.x5_c00258{left:90.235733pt;}
.x14_c00258{left:92.169067pt;}
.xb_c00258{left:202.235733pt;}
.xc_c00258{left:220.169067pt;}
.x1_c00258{left:246.369067pt;}
.x8_c00258{left:402.235733pt;}
.x2_c00258{left:417.569067pt;}
.x3_c00258{left:561.569067pt;}
.x12_c00258{left:586.835733pt;}
.x11_c00258{left:589.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d704aa28a628a1d83f79e74.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00259;src:url('chunks/assets/font_413caed927b1e437730afbe0.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c00259{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00259{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00259{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m15_c00259{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00259{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00259{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00259{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c00259{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00259{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19_c00259{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00259{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10_c00259{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00259{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3_c00259{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00259{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c00259{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00259{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5_c00259{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00259{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c00259{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c00259{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m17_c00259{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma_c00259{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc_c00259{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m8_c00259{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m11_c00259{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m12_c00259{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m14_c00259{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m13_c00259{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m18_c00259{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m1_c00259{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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.000000px;}
.fc0_c00259{color:transparent;}
.fs4_c00259{font-size:30.000000px;}
.fs3_c00259{font-size:36.000000px;}
.fs0_c00259{font-size:54.000000px;}
.fs2_c00259{font-size:60.000000px;}
.fs1_c00259{font-size:66.000000px;}
.y0_c00259{bottom:0.000000px;}
.y3d_c00259{bottom:101.010000px;}
.y3c_c00259{bottom:103.875000px;}
.y3b_c00259{bottom:107.835000px;}
.y3a_c00259{bottom:112.125000px;}
.y39_c00259{bottom:117.885000px;}
.y38_c00259{bottom:124.335000px;}
.y37_c00259{bottom:137.385000px;}
.y36_c00259{bottom:145.935000px;}
.y35_c00259{bottom:153.885000px;}
.y34_c00259{bottom:157.125000px;}
.y33_c00259{bottom:160.710000px;}
.y32_c00259{bottom:171.885000px;}
.y31_c00259{bottom:189.210000px;}
.y30_c00259{bottom:206.460000px;}
.y2f_c00259{bottom:223.710000px;}
.y2e_c00259{bottom:240.660000px;}
.y2d_c00259{bottom:256.500000px;}
.y2c_c00259{bottom:262.650000px;}
.y2b_c00259{bottom:263.400000px;}
.y2a_c00259{bottom:275.535000px;}
.y29_c00259{bottom:289.650000px;}
.y28_c00259{bottom:292.875000px;}
.y27_c00259{bottom:295.710000px;}
.y26_c00259{bottom:309.750000px;}
.y25_c00259{bottom:326.310000px;}
.y40_c00259{bottom:327.750000px;}
.y24_c00259{bottom:343.560000px;}
.y3f_c00259{bottom:370.275000px;}
.y23_c00259{bottom:425.310000px;}
.y22_c00259{bottom:447.000000px;}
.y21_c00259{bottom:468.510000px;}
.y20_c00259{bottom:490.185000px;}
.y1f_c00259{bottom:511.335000px;}
.y1e_c00259{bottom:532.260000px;}
.y1d_c00259{bottom:553.500000px;}
.y1c_c00259{bottom:574.785000px;}
.y1b_c00259{bottom:596.310000px;}
.y1a_c00259{bottom:617.625000px;}
.y19_c00259{bottom:639.210000px;}
.y18_c00259{bottom:660.750000px;}
.y17_c00259{bottom:682.335000px;}
.y3e_c00259{bottom:694.635000px;}
.y16_c00259{bottom:703.635000px;}
.y15_c00259{bottom:724.875000px;}
.y14_c00259{bottom:746.085000px;}
.y13_c00259{bottom:767.700000px;}
.y12_c00259{bottom:789.000000px;}
.y11_c00259{bottom:809.835000px;}
.y10_c00259{bottom:830.685000px;}
.yf_c00259{bottom:851.925000px;}
.ye_c00259{bottom:872.460000px;}
.yd_c00259{bottom:894.435000px;}
.yc_c00259{bottom:915.675000px;}
.yb_c00259{bottom:936.525000px;}
.ya_c00259{bottom:958.125000px;}
.y8_c00259{bottom:970.335000px;}
.y9_c00259{bottom:979.800000px;}
.y7_c00259{bottom:1000.650000px;}
.y6_c00259{bottom:1021.875000px;}
.y5_c00259{bottom:1035.525000px;}
.y4_c00259{bottom:1044.525000px;}
.y1_c00259{bottom:1090.275000px;}
.y2_c00259{bottom:1090.650000px;}
.y3_c00259{bottom:1098.900000px;}
.h6_c00259{height:29.443359px;}
.h5_c00259{height:36.281250px;}
.h1_c00259{height:52.998047px;}
.h3_c00259{height:58.886719px;}
.h4_c00259{height:60.468750px;}
.h2_c00259{height:64.775391px;}
.h0_c00259{height:1174.500000px;}
.w0_c00259{width:731.977200px;}
.w1_c00259{width:732.000000px;}
.x0_c00259{left:0.000000px;}
.x8_c00259{left:42.790200px;}
.x6_c00259{left:43.915200px;}
.x5_c00259{left:45.340200px;}
.x9_c00259{left:46.390200px;}
.xa_c00259{left:48.190200px;}
.xb_c00259{left:49.690200px;}
.xf_c00259{left:50.740200px;}
.x14_c00259{left:52.165200px;}
.x1_c00259{left:65.140200px;}
.x12_c00259{left:75.550200px;}
.x7_c00259{left:82.390200px;}
.x2_c00259{left:91.390200px;}
.x17_c00259{left:110.890200px;}
.x13_c00259{left:128.515200px;}
.xe_c00259{left:144.715200px;}
.x10_c00259{left:256.990200px;}
.x3_c00259{left:261.715200px;}
.x4_c00259{left:264.190200px;}
.x11_c00259{left:282.940200px;}
.xc_c00259{left:330.490200px;}
.x18_c00259{left:335.890200px;}
.x19_c00259{left:354.565200px;}
.xd_c00259{left:355.690200px;}
.x15_c00259{left:447.115200px;}
.x16_c00259{left:567.715200px;}
.x1b_c00259{left:746.950200px;}
.x1c_c00259{left:750.190200px;}
.x1a_c00259{left:756.325200px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls0_c00259{letter-spacing:0.000000pt;}
.ws0_c00259{word-spacing:0.000000pt;}
.fs4_c00259{font-size:26.666667pt;}
.fs3_c00259{font-size:32.000000pt;}
.fs0_c00259{font-size:48.000000pt;}
.fs2_c00259{font-size:53.333333pt;}
.fs1_c00259{font-size:58.666667pt;}
.y0_c00259{bottom:0.000000pt;}
.y3d_c00259{bottom:89.786667pt;}
.y3c_c00259{bottom:92.333333pt;}
.y3b_c00259{bottom:95.853333pt;}
.y3a_c00259{bottom:99.666667pt;}
.y39_c00259{bottom:104.786667pt;}
.y38_c00259{bottom:110.520000pt;}
.y37_c00259{bottom:122.120000pt;}
.y36_c00259{bottom:129.720000pt;}
.y35_c00259{bottom:136.786667pt;}
.y34_c00259{bottom:139.666667pt;}
.y33_c00259{bottom:142.853333pt;}
.y32_c00259{bottom:152.786667pt;}
.y31_c00259{bottom:168.186667pt;}
.y30_c00259{bottom:183.520000pt;}
.y2f_c00259{bottom:198.853333pt;}
.y2e_c00259{bottom:213.920000pt;}
.y2d_c00259{bottom:228.000000pt;}
.y2c_c00259{bottom:233.466667pt;}
.y2b_c00259{bottom:234.133333pt;}
.y2a_c00259{bottom:244.920000pt;}
.y29_c00259{bottom:257.466667pt;}
.y28_c00259{bottom:260.333333pt;}
.y27_c00259{bottom:262.853333pt;}
.y26_c00259{bottom:275.333333pt;}
.y25_c00259{bottom:290.053333pt;}
.y40_c00259{bottom:291.333333pt;}
.y24_c00259{bottom:305.386667pt;}
.y3f_c00259{bottom:329.133333pt;}
.y23_c00259{bottom:378.053333pt;}
.y22_c00259{bottom:397.333333pt;}
.y21_c00259{bottom:416.453333pt;}
.y20_c00259{bottom:435.720000pt;}
.y1f_c00259{bottom:454.520000pt;}
.y1e_c00259{bottom:473.120000pt;}
.y1d_c00259{bottom:492.000000pt;}
.y1c_c00259{bottom:510.920000pt;}
.y1b_c00259{bottom:530.053333pt;}
.y1a_c00259{bottom:549.000000pt;}
.y19_c00259{bottom:568.186667pt;}
.y18_c00259{bottom:587.333333pt;}
.y17_c00259{bottom:606.520000pt;}
.y3e_c00259{bottom:617.453333pt;}
.y16_c00259{bottom:625.453333pt;}
.y15_c00259{bottom:644.333333pt;}
.y14_c00259{bottom:663.186667pt;}
.y13_c00259{bottom:682.400000pt;}
.y12_c00259{bottom:701.333333pt;}
.y11_c00259{bottom:719.853333pt;}
.y10_c00259{bottom:738.386667pt;}
.yf_c00259{bottom:757.266667pt;}
.ye_c00259{bottom:775.520000pt;}
.yd_c00259{bottom:795.053333pt;}
.yc_c00259{bottom:813.933333pt;}
.yb_c00259{bottom:832.466667pt;}
.ya_c00259{bottom:851.666667pt;}
.y8_c00259{bottom:862.520000pt;}
.y9_c00259{bottom:870.933333pt;}
.y7_c00259{bottom:889.466667pt;}
.y6_c00259{bottom:908.333333pt;}
.y5_c00259{bottom:920.466667pt;}
.y4_c00259{bottom:928.466667pt;}
.y1_c00259{bottom:969.133333pt;}
.y2_c00259{bottom:969.466667pt;}
.y3_c00259{bottom:976.800000pt;}
.h6_c00259{height:26.171875pt;}
.h5_c00259{height:32.250000pt;}
.h1_c00259{height:47.109375pt;}
.h3_c00259{height:52.343750pt;}
.h4_c00259{height:53.750000pt;}
.h2_c00259{height:57.578125pt;}
.h0_c00259{height:1044.000000pt;}
.w0_c00259{width:650.646400pt;}
.w1_c00259{width:650.666667pt;}
.x0_c00259{left:0.000000pt;}
.x8_c00259{left:38.035733pt;}
.x6_c00259{left:39.035733pt;}
.x5_c00259{left:40.302400pt;}
.x9_c00259{left:41.235733pt;}
.xa_c00259{left:42.835733pt;}
.xb_c00259{left:44.169067pt;}
.xf_c00259{left:45.102400pt;}
.x14_c00259{left:46.369067pt;}
.x1_c00259{left:57.902400pt;}
.x12_c00259{left:67.155733pt;}
.x7_c00259{left:73.235733pt;}
.x2_c00259{left:81.235733pt;}
.x17_c00259{left:98.569067pt;}
.x13_c00259{left:114.235733pt;}
.xe_c00259{left:128.635733pt;}
.x10_c00259{left:228.435733pt;}
.x3_c00259{left:232.635733pt;}
.x4_c00259{left:234.835733pt;}
.x11_c00259{left:251.502400pt;}
.xc_c00259{left:293.769067pt;}
.x18_c00259{left:298.569067pt;}
.x19_c00259{left:315.169067pt;}
.xd_c00259{left:316.169067pt;}
.x15_c00259{left:397.435733pt;}
.x16_c00259{left:504.635733pt;}
.x1b_c00259{left:663.955733pt;}
.x1c_c00259{left:666.835733pt;}
.x1a_c00259{left:672.289067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_edf9192992f3874291320342.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00260;src:url('chunks/assets/font_28e47b584c61311cafbd7dd7.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00260;src:url('chunks/assets/font_8faedd309b8b7e391ef1c053.woff2')format("woff");}.ff3_c00260{font-family:ff3_c00260;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00260{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0_c00260{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m13_c00260{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.me_c00260{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf_c00260{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00260{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00260{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00260{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2_c00260{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c00260{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00260{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c00260{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00260{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00260{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00260{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c00260{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m11_c00260{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c00260{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m8_c00260{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m14_c00260{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.ma_c00260{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls0_c00260{letter-spacing:0.000000px;}
.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.000000px;}
.fc0_c00260{color:transparent;}
.fs3_c00260{font-size:54.000000px;}
.fs0_c00260{font-size:60.000000px;}
.fs2_c00260{font-size:66.000000px;}
.fs1_c00260{font-size:78.000000px;}
.fs4_c00260{font-size:84.000000px;}
.y0_c00260{bottom:0.000000px;}
.y3c_c00260{bottom:81.510000px;}
.y3b_c00260{bottom:103.185000px;}
.y3a_c00260{bottom:124.335000px;}
.y39_c00260{bottom:144.585000px;}
.y38_c00260{bottom:165.060000px;}
.y37_c00260{bottom:185.160000px;}
.y36_c00260{bottom:205.410000px;}
.y35_c00260{bottom:225.885000px;}
.y34_c00260{bottom:246.435000px;}
.y33_c00260{bottom:267.660000px;}
.y32_c00260{bottom:288.525000px;}
.y31_c00260{bottom:309.435000px;}
.y30_c00260{bottom:330.660000px;}
.y2f_c00260{bottom:351.900000px;}
.y2e_c00260{bottom:373.125000px;}
.y2d_c00260{bottom:393.960000px;}
.y2c_c00260{bottom:415.260000px;}
.y2b_c00260{bottom:436.500000px;}
.y2a_c00260{bottom:457.785000px;}
.y28_c00260{bottom:478.635000px;}
.y29_c00260{bottom:479.010000px;}
.y27_c00260{bottom:479.685000px;}
.y26_c00260{bottom:500.250000px;}
.y25_c00260{bottom:521.460000px;}
.y24_c00260{bottom:542.685000px;}
.y23_c00260{bottom:563.625000px;}
.y22_c00260{bottom:584.835000px;}
.y21_c00260{bottom:606.060000px;}
.y20_c00260{bottom:627.285000px;}
.y1f_c00260{bottom:648.510000px;}
.y1e_c00260{bottom:669.810000px;}
.y1d_c00260{bottom:691.785000px;}
.y1c_c00260{bottom:712.260000px;}
.y1b_c00260{bottom:733.500000px;}
.y1a_c00260{bottom:755.085000px;}
.y19_c00260{bottom:776.310000px;}
.y18_c00260{bottom:777.375000px;}
.y17_c00260{bottom:797.550000px;}
.y16_c00260{bottom:818.835000px;}
.y15_c00260{bottom:840.810000px;}
.y14_c00260{bottom:841.125000px;}
.y13_c00260{bottom:860.250000px;}
.y12_c00260{bottom:860.550000px;}
.y11_c00260{bottom:860.925000px;}
.y10_c00260{bottom:862.425000px;}
.ye_c00260{bottom:862.710000px;}
.yf_c00260{bottom:863.085000px;}
.yd_c00260{bottom:881.085000px;}
.yc_c00260{bottom:883.275000px;}
.yb_c00260{bottom:904.500000px;}
.ya_c00260{bottom:924.960000px;}
.y9_c00260{bottom:925.710000px;}
.y8_c00260{bottom:944.460000px;}
.y7_c00260{bottom:946.650000px;}
.y6_c00260{bottom:968.175000px;}
.y5_c00260{bottom:986.925000px;}
.y4_c00260{bottom:988.710000px;}
.y3_c00260{bottom:1010.025000px;}
.y2_c00260{bottom:1067.925000px;}
.y1_c00260{bottom:1070.775000px;}
.h5_c00260{height:54.421875px;}
.h1_c00260{height:60.468750px;}
.h4_c00260{height:64.775391px;}
.h3_c00260{height:66.515625px;}
.h7_c00260{height:76.514648px;}
.h2_c00260{height:78.609375px;}
.h6_c00260{height:84.656250px;}
.h0_c00260{height:1174.500000px;}
.w0_c00260{width:731.977200px;}
.w1_c00260{width:732.000000px;}
.x0_c00260{left:0.000000px;}
.x4_c00260{left:54.715200px;}
.x15_c00260{left:56.515200px;}
.x16_c00260{left:57.565200px;}
.x19_c00260{left:58.690200px;}
.x1a_c00260{left:59.740200px;}
.x1b_c00260{left:61.540200px;}
.x1c_c00260{left:62.590200px;}
.x13_c00260{left:76.300200px;}
.x6_c00260{left:84.925200px;}
.x3_c00260{left:86.365200px;}
.x14_c00260{left:88.165200px;}
.x12_c00260{left:91.090200px;}
.x8_c00260{left:118.090200px;}
.xb_c00260{left:167.740200px;}
.xc_c00260{left:211.315200px;}
.x1_c00260{left:287.590200px;}
.x17_c00260{left:288.715200px;}
.x18_c00260{left:420.775200px;}
.xd_c00260{left:459.340200px;}
.xe_c00260{left:485.965200px;}
.x7_c00260{left:494.290200px;}
.xf_c00260{left:526.690200px;}
.x10_c00260{left:568.090200px;}
.x11_c00260{left:585.340200px;}
.x9_c00260{left:602.290200px;}
.xa_c00260{left:606.940200px;}
.x2_c00260{left:615.190200px;}
.x5_c00260{left:629.965200px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls0_c00260{letter-spacing:0.000000pt;}
.ws0_c00260{word-spacing:0.000000pt;}
.fs3_c00260{font-size:48.000000pt;}
.fs0_c00260{font-size:53.333333pt;}
.fs2_c00260{font-size:58.666667pt;}
.fs1_c00260{font-size:69.333333pt;}
.fs4_c00260{font-size:74.666667pt;}
.y0_c00260{bottom:0.000000pt;}
.y3c_c00260{bottom:72.453333pt;}
.y3b_c00260{bottom:91.720000pt;}
.y3a_c00260{bottom:110.520000pt;}
.y39_c00260{bottom:128.520000pt;}
.y38_c00260{bottom:146.720000pt;}
.y37_c00260{bottom:164.586667pt;}
.y36_c00260{bottom:182.586667pt;}
.y35_c00260{bottom:200.786667pt;}
.y34_c00260{bottom:219.053333pt;}
.y33_c00260{bottom:237.920000pt;}
.y32_c00260{bottom:256.466667pt;}
.y31_c00260{bottom:275.053333pt;}
.y30_c00260{bottom:293.920000pt;}
.y2f_c00260{bottom:312.800000pt;}
.y2e_c00260{bottom:331.666667pt;}
.y2d_c00260{bottom:350.186667pt;}
.y2c_c00260{bottom:369.120000pt;}
.y2b_c00260{bottom:388.000000pt;}
.y2a_c00260{bottom:406.920000pt;}
.y28_c00260{bottom:425.453333pt;}
.y29_c00260{bottom:425.786667pt;}
.y27_c00260{bottom:426.386667pt;}
.y26_c00260{bottom:444.666667pt;}
.y25_c00260{bottom:463.520000pt;}
.y24_c00260{bottom:482.386667pt;}
.y23_c00260{bottom:501.000000pt;}
.y22_c00260{bottom:519.853333pt;}
.y21_c00260{bottom:538.720000pt;}
.y20_c00260{bottom:557.586667pt;}
.y1f_c00260{bottom:576.453333pt;}
.y1e_c00260{bottom:595.386667pt;}
.y1d_c00260{bottom:614.920000pt;}
.y1c_c00260{bottom:633.120000pt;}
.y1b_c00260{bottom:652.000000pt;}
.y1a_c00260{bottom:671.186667pt;}
.y19_c00260{bottom:690.053333pt;}
.y18_c00260{bottom:691.000000pt;}
.y17_c00260{bottom:708.933333pt;}
.y16_c00260{bottom:727.853333pt;}
.y15_c00260{bottom:747.386667pt;}
.y14_c00260{bottom:747.666667pt;}
.y13_c00260{bottom:764.666667pt;}
.y12_c00260{bottom:764.933333pt;}
.y11_c00260{bottom:765.266667pt;}
.y10_c00260{bottom:766.600000pt;}
.ye_c00260{bottom:766.853333pt;}
.yf_c00260{bottom:767.186667pt;}
.yd_c00260{bottom:783.186667pt;}
.yc_c00260{bottom:785.133333pt;}
.yb_c00260{bottom:804.000000pt;}
.ya_c00260{bottom:822.186667pt;}
.y9_c00260{bottom:822.853333pt;}
.y8_c00260{bottom:839.520000pt;}
.y7_c00260{bottom:841.466667pt;}
.y6_c00260{bottom:860.600000pt;}
.y5_c00260{bottom:877.266667pt;}
.y4_c00260{bottom:878.853333pt;}
.y3_c00260{bottom:897.800000pt;}
.y2_c00260{bottom:949.266667pt;}
.y1_c00260{bottom:951.800000pt;}
.h5_c00260{height:48.375000pt;}
.h1_c00260{height:53.750000pt;}
.h4_c00260{height:57.578125pt;}
.h3_c00260{height:59.125000pt;}
.h7_c00260{height:68.013021pt;}
.h2_c00260{height:69.875000pt;}
.h6_c00260{height:75.250000pt;}
.h0_c00260{height:1044.000000pt;}
.w0_c00260{width:650.646400pt;}
.w1_c00260{width:650.666667pt;}
.x0_c00260{left:0.000000pt;}
.x4_c00260{left:48.635733pt;}
.x15_c00260{left:50.235733pt;}
.x16_c00260{left:51.169067pt;}
.x19_c00260{left:52.169067pt;}
.x1a_c00260{left:53.102400pt;}
.x1b_c00260{left:54.702400pt;}
.x1c_c00260{left:55.635733pt;}
.x13_c00260{left:67.822400pt;}
.x6_c00260{left:75.489067pt;}
.x3_c00260{left:76.769067pt;}
.x14_c00260{left:78.369067pt;}
.x12_c00260{left:80.969067pt;}
.x8_c00260{left:104.969067pt;}
.xb_c00260{left:149.102400pt;}
.xc_c00260{left:187.835733pt;}
.x1_c00260{left:255.635733pt;}
.x17_c00260{left:256.635733pt;}
.x18_c00260{left:374.022400pt;}
.xd_c00260{left:408.302400pt;}
.xe_c00260{left:431.969067pt;}
.x7_c00260{left:439.369067pt;}
.xf_c00260{left:468.169067pt;}
.x10_c00260{left:504.969067pt;}
.x11_c00260{left:520.302400pt;}
.x9_c00260{left:535.369067pt;}
.xa_c00260{left:539.502400pt;}
.x2_c00260{left:546.835733pt;}
.x5_c00260{left:559.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5217b7ca7827986802029538.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00261;src:url('chunks/assets/font_60c4ad9fd7da91121c88525e.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00261{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m0_c00261{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2_c00261{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c00261{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00261{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c00261{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8_c00261{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c00261{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00261{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c00261{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c00261{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c00261{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc_c00261{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m11_c00261{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.ma_c00261{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mf_c00261{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.md_c00261{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1_c00261{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0_c00261{color:transparent;}
.fs1_c00261{font-size:54.000000px;}
.fs3_c00261{font-size:60.000000px;}
.fs2_c00261{font-size:66.000000px;}
.fs0_c00261{font-size:78.000000px;}
.y0_c00261{bottom:0.000000px;}
.y1a_c00261{bottom:655.335000px;}
.y19_c00261{bottom:675.510000px;}
.y18_c00261{bottom:696.810000px;}
.y17_c00261{bottom:714.825000px;}
.y16_c00261{bottom:716.160000px;}
.y15_c00261{bottom:718.710000px;}
.y14_c00261{bottom:719.085000px;}
.y13_c00261{bottom:739.260000px;}
.y12_c00261{bottom:760.500000px;}
.y11_c00261{bottom:782.385000px;}
.y10_c00261{bottom:802.935000px;}
.yf_c00261{bottom:823.800000px;}
.ye_c00261{bottom:844.335000px;}
.yd_c00261{bottom:865.275000px;}
.yc_c00261{bottom:886.500000px;}
.yb_c00261{bottom:908.085000px;}
.ya_c00261{bottom:929.400000px;}
.y9_c00261{bottom:950.625000px;}
.y8_c00261{bottom:963.150000px;}
.y7_c00261{bottom:972.150000px;}
.y6_c00261{bottom:993.060000px;}
.y5_c00261{bottom:1013.550000px;}
.y4_c00261{bottom:1034.460000px;}
.y1_c00261{bottom:1087.050000px;}
.y3_c00261{bottom:1092.000000px;}
.y2_c00261{bottom:1099.650000px;}
.h2_c00261{height:52.998047px;}
.h4_c00261{height:58.886719px;}
.h3_c00261{height:64.775391px;}
.h1_c00261{height:78.609375px;}
.h0_c00261{height:1174.500000px;}
.w0_c00261{width:731.977200px;}
.w1_c00261{width:732.000000px;}
.x0_c00261{left:0.000000px;}
.xd_c00261{left:59.365200px;}
.x9_c00261{left:60.490200px;}
.x7_c00261{left:61.540200px;}
.x6_c00261{left:62.590200px;}
.x5_c00261{left:64.090200px;}
.x4_c00261{left:65.140200px;}
.xa_c00261{left:76.300200px;}
.x8_c00261{left:91.090200px;}
.x1_c00261{left:92.890200px;}
.x2_c00261{left:110.515200px;}
.x3_c00261{left:285.115200px;}
.xb_c00261{left:514.090200px;}
.xc_c00261{left:537.115200px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls0_c00261{letter-spacing:0.000000pt;}
.ws0_c00261{word-spacing:0.000000pt;}
.fs1_c00261{font-size:48.000000pt;}
.fs3_c00261{font-size:53.333333pt;}
.fs2_c00261{font-size:58.666667pt;}
.fs0_c00261{font-size:69.333333pt;}
.y0_c00261{bottom:0.000000pt;}
.y1a_c00261{bottom:582.520000pt;}
.y19_c00261{bottom:600.453333pt;}
.y18_c00261{bottom:619.386667pt;}
.y17_c00261{bottom:635.400000pt;}
.y16_c00261{bottom:636.586667pt;}
.y15_c00261{bottom:638.853333pt;}
.y14_c00261{bottom:639.186667pt;}
.y13_c00261{bottom:657.120000pt;}
.y12_c00261{bottom:676.000000pt;}
.y11_c00261{bottom:695.453333pt;}
.y10_c00261{bottom:713.720000pt;}
.yf_c00261{bottom:732.266667pt;}
.ye_c00261{bottom:750.520000pt;}
.yd_c00261{bottom:769.133333pt;}
.yc_c00261{bottom:788.000000pt;}
.yb_c00261{bottom:807.186667pt;}
.ya_c00261{bottom:826.133333pt;}
.y9_c00261{bottom:845.000000pt;}
.y8_c00261{bottom:856.133333pt;}
.y7_c00261{bottom:864.133333pt;}
.y6_c00261{bottom:882.720000pt;}
.y5_c00261{bottom:900.933333pt;}
.y4_c00261{bottom:919.520000pt;}
.y1_c00261{bottom:966.266667pt;}
.y3_c00261{bottom:970.666667pt;}
.y2_c00261{bottom:977.466667pt;}
.h2_c00261{height:47.109375pt;}
.h4_c00261{height:52.343750pt;}
.h3_c00261{height:57.578125pt;}
.h1_c00261{height:69.875000pt;}
.h0_c00261{height:1044.000000pt;}
.w0_c00261{width:650.646400pt;}
.w1_c00261{width:650.666667pt;}
.x0_c00261{left:0.000000pt;}
.xd_c00261{left:52.769067pt;}
.x9_c00261{left:53.769067pt;}
.x7_c00261{left:54.702400pt;}
.x6_c00261{left:55.635733pt;}
.x5_c00261{left:56.969067pt;}
.x4_c00261{left:57.902400pt;}
.xa_c00261{left:67.822400pt;}
.x8_c00261{left:80.969067pt;}
.x1_c00261{left:82.569067pt;}
.x2_c00261{left:98.235733pt;}
.x3_c00261{left:253.435733pt;}
.xb_c00261{left:456.969067pt;}
.xc_c00261{left:477.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8fb95e0cf545cb3574c6fa57.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00262;src:url('chunks/assets/font_bb2be079f959ab27489f3f1d.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00262;src:url('chunks/assets/font_6b022d696b2a047ec891c154.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00262{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5_c00262{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9_c00262{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.me_c00262{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc_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);}
.m8_c00262{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md_c00262{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4_c00262{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00262{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c00262{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb_c00262{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c00262{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7_c00262{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00262{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2_c00262{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,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.000000px;}
.fc0_c00262{color:transparent;}
.fs3_c00262{font-size:78.000000px;}
.fs1_c00262{font-size:90.000000px;}
.fs2_c00262{font-size:96.000000px;}
.fs0_c00262{font-size:162.000000px;}
.y0_c00262{bottom:0.000000px;}
.y12_c00262{bottom:216.135000px;}
.y13_c00262{bottom:218.685000px;}
.y11_c00262{bottom:241.710000px;}
.y10_c00262{bottom:290.025000px;}
.ye_c00262{bottom:386.835000px;}
.yf_c00262{bottom:387.900000px;}
.yd_c00262{bottom:413.085000px;}
.yc_c00262{bottom:462.810000px;}
.yb_c00262{bottom:561.060000px;}
.ya_c00262{bottom:561.375000px;}
.y9_c00262{bottom:586.635000px;}
.y8_c00262{bottom:612.210000px;}
.y7_c00262{bottom:661.875000px;}
.y6_c00262{bottom:758.700000px;}
.y5_c00262{bottom:760.200000px;}
.y4_c00262{bottom:783.510000px;}
.y3_c00262{bottom:785.310000px;}
.y2_c00262{bottom:786.435000px;}
.y1_c00262{bottom:944.835000px;}
.h5_c00262{height:76.552734px;}
.h2_c00262{height:88.286133px;}
.h3_c00262{height:88.330078px;}
.h4_c00262{height:94.218750px;}
.h1_c00262{height:163.265625px;}
.h0_c00262{height:1174.500000px;}
.w0_c00262{width:731.977200px;}
.w1_c00262{width:732.000000px;}
.x0_c00262{left:0.000000px;}
.x8_c00262{left:64.090200px;}
.x2_c00262{left:65.140200px;}
.xe_c00262{left:71.965200px;}
.x5_c00262{left:88.165200px;}
.x9_c00262{left:89.290200px;}
.xb_c00262{left:91.765200px;}
.x1_c00262{left:93.940200px;}
.xf_c00262{left:95.740200px;}
.xc_c00262{left:234.340200px;}
.x7_c00262{left:362.515200px;}
.xd_c00262{left:364.315200px;}
.x3_c00262{left:379.390200px;}
.x4_c00262{left:431.965200px;}
.x6_c00262{left:446.365200px;}
.x10_c00262{left:465.790200px;}
.xa_c00262{left:556.165200px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls0_c00262{letter-spacing:0.000000pt;}
.ws0_c00262{word-spacing:0.000000pt;}
.fs3_c00262{font-size:69.333333pt;}
.fs1_c00262{font-size:80.000000pt;}
.fs2_c00262{font-size:85.333333pt;}
.fs0_c00262{font-size:144.000000pt;}
.y0_c00262{bottom:0.000000pt;}
.y12_c00262{bottom:192.120000pt;}
.y13_c00262{bottom:194.386667pt;}
.y11_c00262{bottom:214.853333pt;}
.y10_c00262{bottom:257.800000pt;}
.ye_c00262{bottom:343.853333pt;}
.yf_c00262{bottom:344.800000pt;}
.yd_c00262{bottom:367.186667pt;}
.yc_c00262{bottom:411.386667pt;}
.yb_c00262{bottom:498.720000pt;}
.ya_c00262{bottom:499.000000pt;}
.y9_c00262{bottom:521.453333pt;}
.y8_c00262{bottom:544.186667pt;}
.y7_c00262{bottom:588.333333pt;}
.y6_c00262{bottom:674.400000pt;}
.y5_c00262{bottom:675.733333pt;}
.y4_c00262{bottom:696.453333pt;}
.y3_c00262{bottom:698.053333pt;}
.y2_c00262{bottom:699.053333pt;}
.y1_c00262{bottom:839.853333pt;}
.h5_c00262{height:68.046875pt;}
.h2_c00262{height:78.476562pt;}
.h3_c00262{height:78.515625pt;}
.h4_c00262{height:83.750000pt;}
.h1_c00262{height:145.125000pt;}
.h0_c00262{height:1044.000000pt;}
.w0_c00262{width:650.646400pt;}
.w1_c00262{width:650.666667pt;}
.x0_c00262{left:0.000000pt;}
.x8_c00262{left:56.969067pt;}
.x2_c00262{left:57.902400pt;}
.xe_c00262{left:63.969067pt;}
.x5_c00262{left:78.369067pt;}
.x9_c00262{left:79.369067pt;}
.xb_c00262{left:81.569067pt;}
.x1_c00262{left:83.502400pt;}
.xf_c00262{left:85.102400pt;}
.xc_c00262{left:208.302400pt;}
.x7_c00262{left:322.235733pt;}
.xd_c00262{left:323.835733pt;}
.x3_c00262{left:337.235733pt;}
.x4_c00262{left:383.969067pt;}
.x6_c00262{left:396.769067pt;}
.x10_c00262{left:414.035733pt;}
.xa_c00262{left:494.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00263 {
    display:none;
  }
  .loading-indicator_c00263.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00263 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00263 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00263" -> "#page-container .classname_c00263")
 */
.pf_c00263 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00263 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00263 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00263 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00263 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00263 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00263 {overflow:visible;}
  }
}
.c_c00263 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00263 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00263:after { /* webkit #35443 */
  content: '';
}
.t_c00263:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00263 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00263 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00263 { /* info for Javascript */
  display:none;
}
.l_c00263 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00263 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00263 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00263:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00263 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00263.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00263 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00263{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00263;src:url('chunks/assets/font_5f74c7d39b9a870fe17b9d05.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00263;src:url('chunks/assets/font_3976b474e258388093d7aa92.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00263;src:url('chunks/assets/font_04cd5011b2f8485eaff8faf0.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00263;src:url('chunks/assets/font_1030b44c38661e0a975d9456.woff2')format("woff");}.ff4_c00263{font-family:ff4_c00263;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00263{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m3_c00263{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00263{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6_c00263{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00263{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00263{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00263{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00263{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00263{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00263{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00263{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00263{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c00263{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c00263{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c00263{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c00263{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c00263{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m10_c00263{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00263{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls0_c00263{letter-spacing:0.000000px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00263{word-spacing:0.000000px;}
.fc0_c00263{color:transparent;}
.fs3_c00263{font-size:36.000000px;}
.fs2_c00263{font-size:42.000000px;}
.fs1_c00263{font-size:54.000000px;}
.fs0_c00263{font-size:66.000000px;}
.fs4_c00263{font-size:72.000000px;}
.y0_c00263{bottom:0.000000px;}
.y26_c00263{bottom:146.010000px;}
.y25_c00263{bottom:148.500000px;}
.y24_c00263{bottom:168.285000px;}
.y23_c00263{bottom:189.885000px;}
.y22_c00263{bottom:211.185000px;}
.y21_c00263{bottom:232.785000px;}
.y20_c00263{bottom:254.310000px;}
.y1f_c00263{bottom:275.625000px;}
.y1e_c00263{bottom:297.210000px;}
.y1d_c00263{bottom:318.750000px;}
.y1c_c00263{bottom:340.335000px;}
.y1b_c00263{bottom:361.650000px;}
.y1a_c00263{bottom:383.250000px;}
.y19_c00263{bottom:404.835000px;}
.y18_c00263{bottom:426.435000px;}
.y16_c00263{bottom:447.285000px;}
.y17_c00263{bottom:448.035000px;}
.y15_c00263{bottom:469.260000px;}
.y14_c00263{bottom:490.500000px;}
.y13_c00263{bottom:511.785000px;}
.y11_c00263{bottom:532.935000px;}
.y12_c00263{bottom:534.060000px;}
.y10_c00263{bottom:554.535000px;}
.yf_c00263{bottom:575.835000px;}
.ye_c00263{bottom:597.435000px;}
.yd_c00263{bottom:619.035000px;}
.yb_c00263{bottom:639.510000px;}
.yc_c00263{bottom:642.060000px;}
.ya_c00263{bottom:661.125000px;}
.y9_c00263{bottom:683.460000px;}
.y8_c00263{bottom:704.685000px;}
.y7_c00263{bottom:815.625000px;}
.y6_c00263{bottom:834.675000px;}
.y5_c00263{bottom:904.875000px;}
.y4_c00263{bottom:912.435000px;}
.y1_c00263{bottom:1082.025000px;}
.y3_c00263{bottom:1091.310000px;}
.y2_c00263{bottom:1097.310000px;}
.h4_c00263{height:37.546875px;}
.h3_c00263{height:41.220703px;}
.h2_c00263{height:52.998047px;}
.h1_c00263{height:64.775391px;}
.h6_c00263{height:66.515625px;}
.h5_c00263{height:70.628906px;}
.h7_c00263{height:70.664062px;}
.h0_c00263{height:1174.500000px;}
.w0_c00263{width:731.977200px;}
.w1_c00263{width:732.000000px;}
.x0_c00263{left:0.000000px;}
.xb_c00263{left:51.790200px;}
.x8_c00263{left:53.590200px;}
.xf_c00263{left:54.715200px;}
.x5_c00263{left:56.890200px;}
.x6_c00263{left:72.340200px;}
.x1_c00263{left:76.675200px;}
.x9_c00263{left:83.140200px;}
.x7_c00263{left:84.925200px;}
.x2_c00263{left:102.565200px;}
.x3_c00263{left:275.740200px;}
.x10_c00263{left:332.590200px;}
.x4_c00263{left:352.390200px;}
.xd_c00263{left:376.525200px;}
.xa_c00263{left:385.150200px;}
.xe_c00263{left:403.150200px;}
.xc_c00263{left:651.565200px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls0_c00263{letter-spacing:0.000000pt;}
.ws0_c00263{word-spacing:0.000000pt;}
.fs3_c00263{font-size:32.000000pt;}
.fs2_c00263{font-size:37.333333pt;}
.fs1_c00263{font-size:48.000000pt;}
.fs0_c00263{font-size:58.666667pt;}
.fs4_c00263{font-size:64.000000pt;}
.y0_c00263{bottom:0.000000pt;}
.y26_c00263{bottom:129.786667pt;}
.y25_c00263{bottom:132.000000pt;}
.y24_c00263{bottom:149.586667pt;}
.y23_c00263{bottom:168.786667pt;}
.y22_c00263{bottom:187.720000pt;}
.y21_c00263{bottom:206.920000pt;}
.y20_c00263{bottom:226.053333pt;}
.y1f_c00263{bottom:245.000000pt;}
.y1e_c00263{bottom:264.186667pt;}
.y1d_c00263{bottom:283.333333pt;}
.y1c_c00263{bottom:302.520000pt;}
.y1b_c00263{bottom:321.466667pt;}
.y1a_c00263{bottom:340.666667pt;}
.y19_c00263{bottom:359.853333pt;}
.y18_c00263{bottom:379.053333pt;}
.y16_c00263{bottom:397.586667pt;}
.y17_c00263{bottom:398.253333pt;}
.y15_c00263{bottom:417.120000pt;}
.y14_c00263{bottom:436.000000pt;}
.y13_c00263{bottom:454.920000pt;}
.y11_c00263{bottom:473.720000pt;}
.y12_c00263{bottom:474.720000pt;}
.y10_c00263{bottom:492.920000pt;}
.yf_c00263{bottom:511.853333pt;}
.ye_c00263{bottom:531.053333pt;}
.yd_c00263{bottom:550.253333pt;}
.yb_c00263{bottom:568.453333pt;}
.yc_c00263{bottom:570.720000pt;}
.ya_c00263{bottom:587.666667pt;}
.y9_c00263{bottom:607.520000pt;}
.y8_c00263{bottom:626.386667pt;}
.y7_c00263{bottom:725.000000pt;}
.y6_c00263{bottom:741.933333pt;}
.y5_c00263{bottom:804.333333pt;}
.y4_c00263{bottom:811.053333pt;}
.y1_c00263{bottom:961.800000pt;}
.y3_c00263{bottom:970.053333pt;}
.y2_c00263{bottom:975.386667pt;}
.h4_c00263{height:33.375000pt;}
.h3_c00263{height:36.640625pt;}
.h2_c00263{height:47.109375pt;}
.h1_c00263{height:57.578125pt;}
.h6_c00263{height:59.125000pt;}
.h5_c00263{height:62.781250pt;}
.h7_c00263{height:62.812500pt;}
.h0_c00263{height:1044.000000pt;}
.w0_c00263{width:650.646400pt;}
.w1_c00263{width:650.666667pt;}
.x0_c00263{left:0.000000pt;}
.xb_c00263{left:46.035733pt;}
.x8_c00263{left:47.635733pt;}
.xf_c00263{left:48.635733pt;}
.x5_c00263{left:50.569067pt;}
.x6_c00263{left:64.302400pt;}
.x1_c00263{left:68.155733pt;}
.x9_c00263{left:73.902400pt;}
.x7_c00263{left:75.489067pt;}
.x2_c00263{left:91.169067pt;}
.x3_c00263{left:245.102400pt;}
.x10_c00263{left:295.635733pt;}
.x4_c00263{left:313.235733pt;}
.xd_c00263{left:334.689067pt;}
.xa_c00263{left:342.355733pt;}
.xe_c00263{left:358.355733pt;}
.xc_c00263{left:579.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_82b06e766aae4f07294b0d94.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00264;src:url('chunks/assets/font_4a462554b5ee82900b62aa6f.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00264{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m4_c00264{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1_c00264{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c00264{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c00264{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00264{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00264{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00264{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c00264{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00264{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00264{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c00264{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00264{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00264{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00264{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m10_c00264{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m8_c00264{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mc_c00264{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c00264{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2_c00264{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00264{word-spacing:0.000000px;}
.fc0_c00264{color:transparent;}
.fs1_c00264{font-size:60.000000px;}
.fs0_c00264{font-size:66.000000px;}
.fs2_c00264{font-size:78.000000px;}
.y0_c00264{bottom:0.000000px;}
.y25_c00264{bottom:87.660000px;}
.y24_c00264{bottom:108.510000px;}
.y23_c00264{bottom:129.435000px;}
.y22_c00264{bottom:149.910000px;}
.y21_c00264{bottom:170.460000px;}
.y20_c00264{bottom:190.260000px;}
.y1f_c00264{bottom:210.750000px;}
.y1e_c00264{bottom:230.910000px;}
.y1d_c00264{bottom:251.460000px;}
.y1c_c00264{bottom:270.525000px;}
.y1b_c00264{bottom:292.875000px;}
.y1a_c00264{bottom:314.085000px;}
.y19_c00264{bottom:335.025000px;}
.y18_c00264{bottom:356.250000px;}
.y17_c00264{bottom:377.085000px;}
.y16_c00264{bottom:398.025000px;}
.y15_c00264{bottom:418.500000px;}
.y14_c00264{bottom:439.710000px;}
.y13_c00264{bottom:461.010000px;}
.y12_c00264{bottom:482.250000px;}
.y11_c00264{bottom:503.460000px;}
.y10_c00264{bottom:524.685000px;}
.yf_c00264{bottom:545.910000px;}
.ye_c00264{bottom:566.835000px;}
.yd_c00264{bottom:588.060000px;}
.yc_c00264{bottom:609.285000px;}
.yb_c00264{bottom:630.510000px;}
.ya_c00264{bottom:651.750000px;}
.y9_c00264{bottom:673.035000px;}
.y8_c00264{bottom:782.460000px;}
.y7_c00264{bottom:799.050000px;}
.y6_c00264{bottom:815.925000px;}
.y5_c00264{bottom:886.500000px;}
.y4_c00264{bottom:1067.625000px;}
.y1_c00264{bottom:1071.150000px;}
.y2_c00264{bottom:1071.900000px;}
.y3_c00264{bottom:1082.025000px;}
.h2_c00264{height:60.468750px;}
.h4_c00264{height:64.775391px;}
.h1_c00264{height:66.515625px;}
.h3_c00264{height:78.609375px;}
.h0_c00264{height:1174.500000px;}
.w0_c00264{width:731.977200px;}
.w1_c00264{width:732.000000px;}
.x0_c00264{left:0.000000px;}
.x9_c00264{left:57.190200px;}
.x6_c00264{left:58.315200px;}
.xb_c00264{left:59.740200px;}
.x7_c00264{left:83.890200px;}
.xa_c00264{left:89.290200px;}
.x8_c00264{left:90.715200px;}
.x1_c00264{left:271.390200px;}
.x2_c00264{left:295.540200px;}
.x5_c00264{left:361.390200px;}
.x3_c00264{left:460.765200px;}
.x4_c00264{left:622.090200px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls0_c00264{letter-spacing:0.000000pt;}
.ws0_c00264{word-spacing:0.000000pt;}
.fs1_c00264{font-size:53.333333pt;}
.fs0_c00264{font-size:58.666667pt;}
.fs2_c00264{font-size:69.333333pt;}
.y0_c00264{bottom:0.000000pt;}
.y25_c00264{bottom:77.920000pt;}
.y24_c00264{bottom:96.453333pt;}
.y23_c00264{bottom:115.053333pt;}
.y22_c00264{bottom:133.253333pt;}
.y21_c00264{bottom:151.520000pt;}
.y20_c00264{bottom:169.120000pt;}
.y1f_c00264{bottom:187.333333pt;}
.y1e_c00264{bottom:205.253333pt;}
.y1d_c00264{bottom:223.520000pt;}
.y1c_c00264{bottom:240.466667pt;}
.y1b_c00264{bottom:260.333333pt;}
.y1a_c00264{bottom:279.186667pt;}
.y19_c00264{bottom:297.800000pt;}
.y18_c00264{bottom:316.666667pt;}
.y17_c00264{bottom:335.186667pt;}
.y16_c00264{bottom:353.800000pt;}
.y15_c00264{bottom:372.000000pt;}
.y14_c00264{bottom:390.853333pt;}
.y13_c00264{bottom:409.786667pt;}
.y12_c00264{bottom:428.666667pt;}
.y11_c00264{bottom:447.520000pt;}
.y10_c00264{bottom:466.386667pt;}
.yf_c00264{bottom:485.253333pt;}
.ye_c00264{bottom:503.853333pt;}
.yd_c00264{bottom:522.720000pt;}
.yc_c00264{bottom:541.586667pt;}
.yb_c00264{bottom:560.453333pt;}
.ya_c00264{bottom:579.333333pt;}
.y9_c00264{bottom:598.253333pt;}
.y8_c00264{bottom:695.520000pt;}
.y7_c00264{bottom:710.266667pt;}
.y6_c00264{bottom:725.266667pt;}
.y5_c00264{bottom:788.000000pt;}
.y4_c00264{bottom:949.000000pt;}
.y1_c00264{bottom:952.133333pt;}
.y2_c00264{bottom:952.800000pt;}
.y3_c00264{bottom:961.800000pt;}
.h2_c00264{height:53.750000pt;}
.h4_c00264{height:57.578125pt;}
.h1_c00264{height:59.125000pt;}
.h3_c00264{height:69.875000pt;}
.h0_c00264{height:1044.000000pt;}
.w0_c00264{width:650.646400pt;}
.w1_c00264{width:650.666667pt;}
.x0_c00264{left:0.000000pt;}
.x9_c00264{left:50.835733pt;}
.x6_c00264{left:51.835733pt;}
.xb_c00264{left:53.102400pt;}
.x7_c00264{left:74.569067pt;}
.xa_c00264{left:79.369067pt;}
.x8_c00264{left:80.635733pt;}
.x1_c00264{left:241.235733pt;}
.x2_c00264{left:262.702400pt;}
.x5_c00264{left:321.235733pt;}
.x3_c00264{left:409.569067pt;}
.x4_c00264{left:552.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5af26e4bf299dc0cc8bd732b.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00265;src:url('chunks/assets/font_bf4ab07b60f13356d6a4537c.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00265{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2_c00265{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c00265{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00265{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3_c00265{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00265{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c00265{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c00265{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c00265{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00265{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m6_c00265{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8_c00265{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c00265{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00265{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls0_c00265{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00265{color:transparent;}
.fs1_c00265{font-size:60.000000px;}
.fs2_c00265{font-size:66.000000px;}
.fs0_c00265{font-size:78.000000px;}
.y0_c00265{bottom:0.000000px;}
.y22_c00265{bottom:423.885000px;}
.y21_c00265{bottom:444.750000px;}
.y20_c00265{bottom:466.335000px;}
.y1f_c00265{bottom:487.635000px;}
.y1e_c00265{bottom:509.250000px;}
.y1d_c00265{bottom:530.835000px;}
.y1c_c00265{bottom:552.750000px;}
.y1b_c00265{bottom:574.710000px;}
.y1a_c00265{bottom:592.710000px;}
.y19_c00265{bottom:596.010000px;}
.y18_c00265{bottom:617.625000px;}
.y17_c00265{bottom:639.210000px;}
.y16_c00265{bottom:660.060000px;}
.y15_c00265{bottom:681.585000px;}
.y14_c00265{bottom:702.510000px;}
.y13_c00265{bottom:723.450000px;}
.y12_c00265{bottom:745.035000px;}
.y11_c00265{bottom:765.885000px;}
.y10_c00265{bottom:787.185000px;}
.yf_c00265{bottom:808.425000px;}
.ye_c00265{bottom:829.275000px;}
.yd_c00265{bottom:850.125000px;}
.yc_c00265{bottom:871.335000px;}
.yb_c00265{bottom:891.900000px;}
.ya_c00265{bottom:913.125000px;}
.y9_c00265{bottom:934.425000px;}
.y8_c00265{bottom:956.025000px;}
.y7_c00265{bottom:977.175000px;}
.y6_c00265{bottom:998.400000px;}
.y5_c00265{bottom:1017.525000px;}
.y4_c00265{bottom:1039.500000px;}
.y1_c00265{bottom:1089.900000px;}
.y3_c00265{bottom:1096.335000px;}
.y2_c00265{bottom:1103.625000px;}
.h2_c00265{height:58.886719px;}
.h3_c00265{height:64.775391px;}
.h1_c00265{height:78.609375px;}
.h0_c00265{height:1174.500000px;}
.w0_c00265{width:731.977200px;}
.w1_c00265{width:732.000000px;}
.x0_c00265{left:0.000000px;}
.xc_c00265{left:50.365200px;}
.xa_c00265{left:51.790200px;}
.x8_c00265{left:52.915200px;}
.x7_c00265{left:53.965200px;}
.x6_c00265{left:55.390200px;}
.x4_c00265{left:56.515200px;}
.x5_c00265{left:70.165200px;}
.x1_c00265{left:75.925200px;}
.x9_c00265{left:82.090200px;}
.x2_c00265{left:101.890200px;}
.x3_c00265{left:273.565200px;}
.xb_c00265{left:645.115200px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls0_c00265{letter-spacing:0.000000pt;}
.ws0_c00265{word-spacing:0.000000pt;}
.fs1_c00265{font-size:53.333333pt;}
.fs2_c00265{font-size:58.666667pt;}
.fs0_c00265{font-size:69.333333pt;}
.y0_c00265{bottom:0.000000pt;}
.y22_c00265{bottom:376.786667pt;}
.y21_c00265{bottom:395.333333pt;}
.y20_c00265{bottom:414.520000pt;}
.y1f_c00265{bottom:433.453333pt;}
.y1e_c00265{bottom:452.666667pt;}
.y1d_c00265{bottom:471.853333pt;}
.y1c_c00265{bottom:491.333333pt;}
.y1b_c00265{bottom:510.853333pt;}
.y1a_c00265{bottom:526.853333pt;}
.y19_c00265{bottom:529.786667pt;}
.y18_c00265{bottom:549.000000pt;}
.y17_c00265{bottom:568.186667pt;}
.y16_c00265{bottom:586.720000pt;}
.y15_c00265{bottom:605.853333pt;}
.y14_c00265{bottom:624.453333pt;}
.y13_c00265{bottom:643.066667pt;}
.y12_c00265{bottom:662.253333pt;}
.y11_c00265{bottom:680.786667pt;}
.y10_c00265{bottom:699.720000pt;}
.yf_c00265{bottom:718.600000pt;}
.ye_c00265{bottom:737.133333pt;}
.yd_c00265{bottom:755.666667pt;}
.yc_c00265{bottom:774.520000pt;}
.yb_c00265{bottom:792.800000pt;}
.ya_c00265{bottom:811.666667pt;}
.y9_c00265{bottom:830.600000pt;}
.y8_c00265{bottom:849.800000pt;}
.y7_c00265{bottom:868.600000pt;}
.y6_c00265{bottom:887.466667pt;}
.y5_c00265{bottom:904.466667pt;}
.y4_c00265{bottom:924.000000pt;}
.y1_c00265{bottom:968.800000pt;}
.y3_c00265{bottom:974.520000pt;}
.y2_c00265{bottom:981.000000pt;}
.h2_c00265{height:52.343750pt;}
.h3_c00265{height:57.578125pt;}
.h1_c00265{height:69.875000pt;}
.h0_c00265{height:1044.000000pt;}
.w0_c00265{width:650.646400pt;}
.w1_c00265{width:650.666667pt;}
.x0_c00265{left:0.000000pt;}
.xc_c00265{left:44.769067pt;}
.xa_c00265{left:46.035733pt;}
.x8_c00265{left:47.035733pt;}
.x7_c00265{left:47.969067pt;}
.x6_c00265{left:49.235733pt;}
.x4_c00265{left:50.235733pt;}
.x5_c00265{left:62.369067pt;}
.x1_c00265{left:67.489067pt;}
.x9_c00265{left:72.969067pt;}
.x2_c00265{left:90.569067pt;}
.x3_c00265{left:243.169067pt;}
.xb_c00265{left:573.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8dc29517b86236495d377b0c.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00266;src:url('chunks/assets/font_4c270294a525d0a2c68680bc.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00266;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00266{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3_c00266{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0_c00266{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10_c00266{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c00266{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00266{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00266{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c00266{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c00266{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00266{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00266{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c00266{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00266{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c00266{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00266{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c00266{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c00266{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c00266{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c00266{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.me_c00266{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1_c00266{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls0_c00266{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00266{word-spacing:0.000000px;}
.fc0_c00266{color:transparent;}
.fs0_c00266{font-size:60.000000px;}
.fs2_c00266{font-size:66.000000px;}
.fs1_c00266{font-size:78.000000px;}
.y0_c00266{bottom:0.000000px;}
.y20_c00266{bottom:292.875000px;}
.y1f_c00266{bottom:314.460000px;}
.y1e_c00266{bottom:335.400000px;}
.y1d_c00266{bottom:356.625000px;}
.y1c_c00266{bottom:377.460000px;}
.y1b_c00266{bottom:398.685000px;}
.y1a_c00266{bottom:419.535000px;}
.y19_c00266{bottom:440.460000px;}
.y18_c00266{bottom:461.685000px;}
.y17_c00266{bottom:483.000000px;}
.y16_c00266{bottom:504.210000px;}
.y15_c00266{bottom:525.435000px;}
.y14_c00266{bottom:545.910000px;}
.y13_c00266{bottom:546.285000px;}
.y11_c00266{bottom:546.660000px;}
.y12_c00266{bottom:546.960000px;}
.y10_c00266{bottom:567.510000px;}
.yf_c00266{bottom:588.750000px;}
.ye_c00266{bottom:610.410000px;}
.yd_c00266{bottom:630.585000px;}
.yc_c00266{bottom:652.500000px;}
.yb_c00266{bottom:652.875000px;}
.ya_c00266{bottom:673.335000px;}
.y9_c00266{bottom:694.635000px;}
.y8_c00266{bottom:715.875000px;}
.y7_c00266{bottom:823.875000px;}
.y6_c00266{bottom:824.250000px;}
.y5_c00266{bottom:824.550000px;}
.y4_c00266{bottom:825.300000px;}
.y3_c00266{bottom:894.375000px;}
.y2_c00266{bottom:1077.300000px;}
.y1_c00266{bottom:1078.050000px;}
.h6_c00266{height:58.886719px;}
.h1_c00266{height:60.468750px;}
.h5_c00266{height:64.743164px;}
.h4_c00266{height:64.775391px;}
.h3_c00266{height:66.515625px;}
.h2_c00266{height:78.609375px;}
.h0_c00266{height:1174.500000px;}
.w0_c00266{width:731.977200px;}
.w1_c00266{width:732.000000px;}
.x0_c00266{left:0.000000px;}
.x5_c00266{left:62.965200px;}
.xb_c00266{left:66.190200px;}
.xe_c00266{left:67.990200px;}
.x13_c00266{left:69.115200px;}
.xa_c00266{left:97.165200px;}
.xf_c00266{left:99.340200px;}
.xc_c00266{left:181.750200px;}
.xd_c00266{left:200.500200px;}
.x6_c00266{left:240.790200px;}
.x7_c00266{left:257.365200px;}
.x1_c00266{left:269.965200px;}
.x8_c00266{left:292.690200px;}
.x9_c00266{left:351.715200px;}
.x4_c00266{left:360.715200px;}
.x10_c00266{left:368.275200px;}
.x11_c00266{left:412.900200px;}
.x2_c00266{left:462.190200px;}
.x3_c00266{left:623.140200px;}
.x12_c00266{left:663.790200px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls0_c00266{letter-spacing:0.000000pt;}
.ws0_c00266{word-spacing:0.000000pt;}
.fs0_c00266{font-size:53.333333pt;}
.fs2_c00266{font-size:58.666667pt;}
.fs1_c00266{font-size:69.333333pt;}
.y0_c00266{bottom:0.000000pt;}
.y20_c00266{bottom:260.333333pt;}
.y1f_c00266{bottom:279.520000pt;}
.y1e_c00266{bottom:298.133333pt;}
.y1d_c00266{bottom:317.000000pt;}
.y1c_c00266{bottom:335.520000pt;}
.y1b_c00266{bottom:354.386667pt;}
.y1a_c00266{bottom:372.920000pt;}
.y19_c00266{bottom:391.520000pt;}
.y18_c00266{bottom:410.386667pt;}
.y17_c00266{bottom:429.333333pt;}
.y16_c00266{bottom:448.186667pt;}
.y15_c00266{bottom:467.053333pt;}
.y14_c00266{bottom:485.253333pt;}
.y13_c00266{bottom:485.586667pt;}
.y11_c00266{bottom:485.920000pt;}
.y12_c00266{bottom:486.186667pt;}
.y10_c00266{bottom:504.453333pt;}
.yf_c00266{bottom:523.333333pt;}
.ye_c00266{bottom:542.586667pt;}
.yd_c00266{bottom:560.520000pt;}
.yc_c00266{bottom:580.000000pt;}
.yb_c00266{bottom:580.333333pt;}
.ya_c00266{bottom:598.520000pt;}
.y9_c00266{bottom:617.453333pt;}
.y8_c00266{bottom:636.333333pt;}
.y7_c00266{bottom:732.333333pt;}
.y6_c00266{bottom:732.666667pt;}
.y5_c00266{bottom:732.933333pt;}
.y4_c00266{bottom:733.600000pt;}
.y3_c00266{bottom:795.000000pt;}
.y2_c00266{bottom:957.600000pt;}
.y1_c00266{bottom:958.266667pt;}
.h6_c00266{height:52.343750pt;}
.h1_c00266{height:53.750000pt;}
.h5_c00266{height:57.549479pt;}
.h4_c00266{height:57.578125pt;}
.h3_c00266{height:59.125000pt;}
.h2_c00266{height:69.875000pt;}
.h0_c00266{height:1044.000000pt;}
.w0_c00266{width:650.646400pt;}
.w1_c00266{width:650.666667pt;}
.x0_c00266{left:0.000000pt;}
.x5_c00266{left:55.969067pt;}
.xb_c00266{left:58.835733pt;}
.xe_c00266{left:60.435733pt;}
.x13_c00266{left:61.435733pt;}
.xa_c00266{left:86.369067pt;}
.xf_c00266{left:88.302400pt;}
.xc_c00266{left:161.555733pt;}
.xd_c00266{left:178.222400pt;}
.x6_c00266{left:214.035733pt;}
.x7_c00266{left:228.769067pt;}
.x1_c00266{left:239.969067pt;}
.x8_c00266{left:260.169067pt;}
.x9_c00266{left:312.635733pt;}
.x4_c00266{left:320.635733pt;}
.x10_c00266{left:327.355733pt;}
.x11_c00266{left:367.022400pt;}
.x2_c00266{left:410.835733pt;}
.x3_c00266{left:553.902400pt;}
.x12_c00266{left:590.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5e093d1a61d9d617bf240c30.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00267{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m0_c00267{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c00267{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2_c00267{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00267{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00267{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00267{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00267{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c00267{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c00267{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00267{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c00267{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.me_c00267{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8_c00267{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c00267{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9_c00267{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00267{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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.000000px;}
.fc0_c00267{color:transparent;}
.fs1_c00267{font-size:54.000000px;}
.fs0_c00267{font-size:66.000000px;}
.y0_c00267{bottom:0.000000px;}
.y24_c00267{bottom:21.375000px;}
.y23_c00267{bottom:91.635000px;}
.y22_c00267{bottom:112.875000px;}
.y21_c00267{bottom:134.085000px;}
.y20_c00267{bottom:155.685000px;}
.y1f_c00267{bottom:177.285000px;}
.y1e_c00267{bottom:198.510000px;}
.y1d_c00267{bottom:219.750000px;}
.y1c_c00267{bottom:245.010000px;}
.y1b_c00267{bottom:263.685000px;}
.y1a_c00267{bottom:284.910000px;}
.y19_c00267{bottom:306.585000px;}
.y18_c00267{bottom:327.810000px;}
.y17_c00267{bottom:349.410000px;}
.y16_c00267{bottom:370.935000px;}
.y15_c00267{bottom:392.250000px;}
.y14_c00267{bottom:414.135000px;}
.y13_c00267{bottom:435.435000px;}
.y12_c00267{bottom:457.035000px;}
.y11_c00267{bottom:478.260000px;}
.y10_c00267{bottom:499.500000px;}
.yf_c00267{bottom:521.085000px;}
.ye_c00267{bottom:542.310000px;}
.yd_c00267{bottom:563.625000px;}
.yc_c00267{bottom:585.135000px;}
.yb_c00267{bottom:607.125000px;}
.ya_c00267{bottom:628.035000px;}
.y9_c00267{bottom:649.635000px;}
.y8_c00267{bottom:671.250000px;}
.y7_c00267{bottom:693.210000px;}
.y6_c00267{bottom:816.000000px;}
.y5_c00267{bottom:836.835000px;}
.y4_c00267{bottom:906.960000px;}
.y1_c00267{bottom:1080.525000px;}
.y3_c00267{bottom:1089.585000px;}
.y2_c00267{bottom:1095.300000px;}
.h2_c00267{height:52.998047px;}
.h1_c00267{height:64.775391px;}
.h0_c00267{height:1174.500000px;}
.w0_c00267{width:731.977200px;}
.w1_c00267{width:732.000000px;}
.x0_c00267{left:0.000000px;}
.x8_c00267{left:47.140200px;}
.x9_c00267{left:48.565200px;}
.x5_c00267{left:49.690200px;}
.xa_c00267{left:51.490200px;}
.xb_c00267{left:52.915200px;}
.x6_c00267{left:63.715200px;}
.x1_c00267{left:67.315200px;}
.x7_c00267{left:77.365200px;}
.xc_c00267{left:80.965200px;}
.x2_c00267{left:93.550200px;}
.x3_c00267{left:265.315200px;}
.x4_c00267{left:332.290200px;}
.xd_c00267{left:741.940200px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls0_c00267{letter-spacing:0.000000pt;}
.ws0_c00267{word-spacing:0.000000pt;}
.fs1_c00267{font-size:48.000000pt;}
.fs0_c00267{font-size:58.666667pt;}
.y0_c00267{bottom:0.000000pt;}
.y24_c00267{bottom:19.000000pt;}
.y23_c00267{bottom:81.453333pt;}
.y22_c00267{bottom:100.333333pt;}
.y21_c00267{bottom:119.186667pt;}
.y20_c00267{bottom:138.386667pt;}
.y1f_c00267{bottom:157.586667pt;}
.y1e_c00267{bottom:176.453333pt;}
.y1d_c00267{bottom:195.333333pt;}
.y1c_c00267{bottom:217.786667pt;}
.y1b_c00267{bottom:234.386667pt;}
.y1a_c00267{bottom:253.253333pt;}
.y19_c00267{bottom:272.520000pt;}
.y18_c00267{bottom:291.386667pt;}
.y17_c00267{bottom:310.586667pt;}
.y16_c00267{bottom:329.720000pt;}
.y15_c00267{bottom:348.666667pt;}
.y14_c00267{bottom:368.120000pt;}
.y13_c00267{bottom:387.053333pt;}
.y12_c00267{bottom:406.253333pt;}
.y11_c00267{bottom:425.120000pt;}
.y10_c00267{bottom:444.000000pt;}
.yf_c00267{bottom:463.186667pt;}
.ye_c00267{bottom:482.053333pt;}
.yd_c00267{bottom:501.000000pt;}
.yc_c00267{bottom:520.120000pt;}
.yb_c00267{bottom:539.666667pt;}
.ya_c00267{bottom:558.253333pt;}
.y9_c00267{bottom:577.453333pt;}
.y8_c00267{bottom:596.666667pt;}
.y7_c00267{bottom:616.186667pt;}
.y6_c00267{bottom:725.333333pt;}
.y5_c00267{bottom:743.853333pt;}
.y4_c00267{bottom:806.186667pt;}
.y1_c00267{bottom:960.466667pt;}
.y3_c00267{bottom:968.520000pt;}
.y2_c00267{bottom:973.600000pt;}
.h2_c00267{height:47.109375pt;}
.h1_c00267{height:57.578125pt;}
.h0_c00267{height:1044.000000pt;}
.w0_c00267{width:650.646400pt;}
.w1_c00267{width:650.666667pt;}
.x0_c00267{left:0.000000pt;}
.x8_c00267{left:41.902400pt;}
.x9_c00267{left:43.169067pt;}
.x5_c00267{left:44.169067pt;}
.xa_c00267{left:45.769067pt;}
.xb_c00267{left:47.035733pt;}
.x6_c00267{left:56.635733pt;}
.x1_c00267{left:59.835733pt;}
.x7_c00267{left:68.769067pt;}
.xc_c00267{left:71.969067pt;}
.x2_c00267{left:83.155733pt;}
.x3_c00267{left:235.835733pt;}
.x4_c00267{left:295.369067pt;}
.xd_c00267{left:659.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d4878d9f98af6056b64465e0.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00268;src:url('chunks/assets/font_59665effc434697dd8bc3786.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00268{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m12_c00268{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m0_c00268{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c00268{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00268{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00268{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00268{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00268{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3_c00268{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c00268{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c00268{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c00268{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5_c00268{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6_c00268{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4_c00268{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c00268{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10_c00268{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mf_c00268{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1_c00268{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00268{word-spacing:0.000000px;}
.fc0_c00268{color:transparent;}
.fs0_c00268{font-size:60.000000px;}
.fs1_c00268{font-size:66.000000px;}
.fs3_c00268{font-size:78.000000px;}
.fs2_c00268{font-size:84.000000px;}
.y0_c00268{bottom:0.000000px;}
.y36_c00268{bottom:59.910000px;}
.y35_c00268{bottom:60.285000px;}
.y30_c00268{bottom:84.060000px;}
.y31_c00268{bottom:84.750000px;}
.y32_c00268{bottom:85.125000px;}
.y33_c00268{bottom:85.500000px;}
.y34_c00268{bottom:87.285000px;}
.y2f_c00268{bottom:106.035000px;}
.y2e_c00268{bottom:126.885000px;}
.y2d_c00268{bottom:146.310000px;}
.y2c_c00268{bottom:167.625000px;}
.y2b_c00268{bottom:187.785000px;}
.y2a_c00268{bottom:208.260000px;}
.y29_c00268{bottom:228.435000px;}
.y28_c00268{bottom:249.285000px;}
.y27_c00268{bottom:269.460000px;}
.y26_c00268{bottom:290.685000px;}
.y25_c00268{bottom:311.625000px;}
.y24_c00268{bottom:333.210000px;}
.y23_c00268{bottom:353.685000px;}
.y22_c00268{bottom:374.910000px;}
.y21_c00268{bottom:396.150000px;}
.y20_c00268{bottom:416.685000px;}
.y1f_c00268{bottom:438.285000px;}
.y1e_c00268{bottom:459.510000px;}
.y1d_c00268{bottom:480.810000px;}
.y1c_c00268{bottom:502.410000px;}
.y1b_c00268{bottom:523.635000px;}
.y1a_c00268{bottom:545.250000px;}
.y19_c00268{bottom:566.460000px;}
.y18_c00268{bottom:588.000000px;}
.y17_c00268{bottom:608.910000px;}
.y16_c00268{bottom:630.135000px;}
.y15_c00268{bottom:651.750000px;}
.y14_c00268{bottom:672.660000px;}
.y13_c00268{bottom:694.260000px;}
.y12_c00268{bottom:715.500000px;}
.y11_c00268{bottom:736.335000px;}
.y10_c00268{bottom:758.700000px;}
.yf_c00268{bottom:779.250000px;}
.ye_c00268{bottom:800.460000px;}
.yd_c00268{bottom:821.685000px;}
.yc_c00268{bottom:843.300000px;}
.yb_c00268{bottom:864.525000px;}
.ya_c00268{bottom:885.435000px;}
.y9_c00268{bottom:906.300000px;}
.y8_c00268{bottom:927.210000px;}
.y7_c00268{bottom:948.375000px;}
.y6_c00268{bottom:969.000000px;}
.y5_c00268{bottom:990.150000px;}
.y4_c00268{bottom:1012.125000px;}
.y3_c00268{bottom:1067.550000px;}
.y2_c00268{bottom:1069.710000px;}
.y1_c00268{bottom:1070.085000px;}
.h3_c00268{height:58.886719px;}
.h1_c00268{height:60.468750px;}
.h2_c00268{height:64.775391px;}
.h5_c00268{height:76.552734px;}
.h4_c00268{height:82.441406px;}
.h0_c00268{height:1174.500000px;}
.w0_c00268{width:731.977200px;}
.w1_c00268{width:732.000000px;}
.x0_c00268{left:0.000000px;}
.x4_c00268{left:56.515200px;}
.x5_c00268{left:57.565200px;}
.x6_c00268{left:58.690200px;}
.x7_c00268{left:59.740200px;}
.xa_c00268{left:60.790200px;}
.xc_c00268{left:62.590200px;}
.xd_c00268{left:63.715200px;}
.xe_c00268{left:64.765200px;}
.xf_c00268{left:66.565200px;}
.x11_c00268{left:69.490200px;}
.x8_c00268{left:87.490200px;}
.x9_c00268{left:89.290200px;}
.xb_c00268{left:92.890200px;}
.x10_c00268{left:97.540200px;}
.x12_c00268{left:258.790200px;}
.x1_c00268{left:268.165200px;}
.x13_c00268{left:294.115200px;}
.x2_c00268{left:458.590200px;}
.x14_c00268{left:533.140200px;}
.x16_c00268{left:592.540200px;}
.x15_c00268{left:596.515200px;}
.x17_c00268{left:600.790200px;}
.x3_c00268{left:619.915200px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls0_c00268{letter-spacing:0.000000pt;}
.ws0_c00268{word-spacing:0.000000pt;}
.fs0_c00268{font-size:53.333333pt;}
.fs1_c00268{font-size:58.666667pt;}
.fs3_c00268{font-size:69.333333pt;}
.fs2_c00268{font-size:74.666667pt;}
.y0_c00268{bottom:0.000000pt;}
.y36_c00268{bottom:53.253333pt;}
.y35_c00268{bottom:53.586667pt;}
.y30_c00268{bottom:74.720000pt;}
.y31_c00268{bottom:75.333333pt;}
.y32_c00268{bottom:75.666667pt;}
.y33_c00268{bottom:76.000000pt;}
.y34_c00268{bottom:77.586667pt;}
.y2f_c00268{bottom:94.253333pt;}
.y2e_c00268{bottom:112.786667pt;}
.y2d_c00268{bottom:130.053333pt;}
.y2c_c00268{bottom:149.000000pt;}
.y2b_c00268{bottom:166.920000pt;}
.y2a_c00268{bottom:185.120000pt;}
.y29_c00268{bottom:203.053333pt;}
.y28_c00268{bottom:221.586667pt;}
.y27_c00268{bottom:239.520000pt;}
.y26_c00268{bottom:258.386667pt;}
.y25_c00268{bottom:277.000000pt;}
.y24_c00268{bottom:296.186667pt;}
.y23_c00268{bottom:314.386667pt;}
.y22_c00268{bottom:333.253333pt;}
.y21_c00268{bottom:352.133333pt;}
.y20_c00268{bottom:370.386667pt;}
.y1f_c00268{bottom:389.586667pt;}
.y1e_c00268{bottom:408.453333pt;}
.y1d_c00268{bottom:427.386667pt;}
.y1c_c00268{bottom:446.586667pt;}
.y1b_c00268{bottom:465.453333pt;}
.y1a_c00268{bottom:484.666667pt;}
.y19_c00268{bottom:503.520000pt;}
.y18_c00268{bottom:522.666667pt;}
.y17_c00268{bottom:541.253333pt;}
.y16_c00268{bottom:560.120000pt;}
.y15_c00268{bottom:579.333333pt;}
.y14_c00268{bottom:597.920000pt;}
.y13_c00268{bottom:617.120000pt;}
.y12_c00268{bottom:636.000000pt;}
.y11_c00268{bottom:654.520000pt;}
.y10_c00268{bottom:674.400000pt;}
.yf_c00268{bottom:692.666667pt;}
.ye_c00268{bottom:711.520000pt;}
.yd_c00268{bottom:730.386667pt;}
.yc_c00268{bottom:749.600000pt;}
.yb_c00268{bottom:768.466667pt;}
.ya_c00268{bottom:787.053333pt;}
.y9_c00268{bottom:805.600000pt;}
.y8_c00268{bottom:824.186667pt;}
.y7_c00268{bottom:843.000000pt;}
.y6_c00268{bottom:861.333333pt;}
.y5_c00268{bottom:880.133333pt;}
.y4_c00268{bottom:899.666667pt;}
.y3_c00268{bottom:948.933333pt;}
.y2_c00268{bottom:950.853333pt;}
.y1_c00268{bottom:951.186667pt;}
.h3_c00268{height:52.343750pt;}
.h1_c00268{height:53.750000pt;}
.h2_c00268{height:57.578125pt;}
.h5_c00268{height:68.046875pt;}
.h4_c00268{height:73.281250pt;}
.h0_c00268{height:1044.000000pt;}
.w0_c00268{width:650.646400pt;}
.w1_c00268{width:650.666667pt;}
.x0_c00268{left:0.000000pt;}
.x4_c00268{left:50.235733pt;}
.x5_c00268{left:51.169067pt;}
.x6_c00268{left:52.169067pt;}
.x7_c00268{left:53.102400pt;}
.xa_c00268{left:54.035733pt;}
.xc_c00268{left:55.635733pt;}
.xd_c00268{left:56.635733pt;}
.xe_c00268{left:57.569067pt;}
.xf_c00268{left:59.169067pt;}
.x11_c00268{left:61.769067pt;}
.x8_c00268{left:77.769067pt;}
.x9_c00268{left:79.369067pt;}
.xb_c00268{left:82.569067pt;}
.x10_c00268{left:86.702400pt;}
.x12_c00268{left:230.035733pt;}
.x1_c00268{left:238.369067pt;}
.x13_c00268{left:261.435733pt;}
.x2_c00268{left:407.635733pt;}
.x14_c00268{left:473.902400pt;}
.x16_c00268{left:526.702400pt;}
.x15_c00268{left:530.235733pt;}
.x17_c00268{left:534.035733pt;}
.x3_c00268{left:551.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9ec3d6e25690620a252b6e29.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00269{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00269{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c00269{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00269{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c00269{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00269{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c00269{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c00269{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5_c00269{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m8_c00269{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c00269{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00269{color:transparent;}
.fs1_c00269{font-size:60.000000px;}
.fs0_c00269{font-size:66.000000px;}
.y0_c00269{bottom:0.000000px;}
.yd_c00269{bottom:840.750000px;}
.yc_c00269{bottom:862.050000px;}
.yb_c00269{bottom:883.275000px;}
.ya_c00269{bottom:904.875000px;}
.y9_c00269{bottom:925.800000px;}
.y8_c00269{bottom:947.310000px;}
.y7_c00269{bottom:968.250000px;}
.y6_c00269{bottom:989.085000px;}
.y5_c00269{bottom:1009.650000px;}
.y4_c00269{bottom:1030.500000px;}
.y1_c00269{bottom:1084.125000px;}
.y3_c00269{bottom:1087.710000px;}
.y2_c00269{bottom:1097.460000px;}
.h2_c00269{height:58.886719px;}
.h1_c00269{height:64.775391px;}
.h0_c00269{height:1174.500000px;}
.w0_c00269{width:731.977200px;}
.w1_c00269{width:732.000000px;}
.x0_c00269{left:0.000000px;}
.x8_c00269{left:57.940200px;}
.x6_c00269{left:58.990200px;}
.x5_c00269{left:60.490200px;}
.x4_c00269{left:61.915200px;}
.x1_c00269{left:80.290200px;}
.x7_c00269{left:89.965200px;}
.x2_c00269{left:106.540200px;}
.x3_c00269{left:279.340200px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls0_c00269{letter-spacing:0.000000pt;}
.ws0_c00269{word-spacing:0.000000pt;}
.fs1_c00269{font-size:53.333333pt;}
.fs0_c00269{font-size:58.666667pt;}
.y0_c00269{bottom:0.000000pt;}
.yd_c00269{bottom:747.333333pt;}
.yc_c00269{bottom:766.266667pt;}
.yb_c00269{bottom:785.133333pt;}
.ya_c00269{bottom:804.333333pt;}
.y9_c00269{bottom:822.933333pt;}
.y8_c00269{bottom:842.053333pt;}
.y7_c00269{bottom:860.666667pt;}
.y6_c00269{bottom:879.186667pt;}
.y5_c00269{bottom:897.466667pt;}
.y4_c00269{bottom:916.000000pt;}
.y1_c00269{bottom:963.666667pt;}
.y3_c00269{bottom:966.853333pt;}
.y2_c00269{bottom:975.520000pt;}
.h2_c00269{height:52.343750pt;}
.h1_c00269{height:57.578125pt;}
.h0_c00269{height:1044.000000pt;}
.w0_c00269{width:650.646400pt;}
.w1_c00269{width:650.666667pt;}
.x0_c00269{left:0.000000pt;}
.x8_c00269{left:51.502400pt;}
.x6_c00269{left:52.435733pt;}
.x5_c00269{left:53.769067pt;}
.x4_c00269{left:55.035733pt;}
.x1_c00269{left:71.369067pt;}
.x7_c00269{left:79.969067pt;}
.x2_c00269{left:94.702400pt;}
.x3_c00269{left:248.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b0de1d2bac253f536b86c727.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00270;src:url('chunks/assets/font_bed9800b8fce3fb71e1aad1d.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00270{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m11_c00270{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m0_c00270{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2_c00270{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c00270{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00270{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c00270{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00270{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c00270{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c00270{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00270{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00270{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00270{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c00270{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c00270{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c00270{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mb_c00270{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md_c00270{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c00270{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mf_c00270{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m8_c00270{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00270{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.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;}
}
.ws0_c00270{word-spacing:0.000000px;}
.fc0_c00270{color:transparent;}
.fs2_c00270{font-size:60.000000px;}
.fs0_c00270{font-size:66.000000px;}
.fs1_c00270{font-size:174.000000px;}
.y0_c00270{bottom:0.000000px;}
.y24_c00270{bottom:68.250000px;}
.y23_c00270{bottom:89.460000px;}
.y22_c00270{bottom:110.685000px;}
.y21_c00270{bottom:131.625000px;}
.y20_c00270{bottom:152.385000px;}
.y1f_c00270{bottom:172.635000px;}
.y1e_c00270{bottom:192.435000px;}
.y1d_c00270{bottom:213.960000px;}
.y1c_c00270{bottom:234.210000px;}
.y1b_c00270{bottom:255.060000px;}
.y1a_c00270{bottom:275.625000px;}
.y19_c00270{bottom:296.400000px;}
.y18_c00270{bottom:347.625000px;}
.y15_c00270{bottom:347.910000px;}
.y14_c00270{bottom:348.285000px;}
.y16_c00270{bottom:357.285000px;}
.y17_c00270{bottom:357.660000px;}
.y13_c00270{bottom:400.875000px;}
.y12_c00270{bottom:421.785000px;}
.y11_c00270{bottom:442.935000px;}
.y10_c00270{bottom:464.250000px;}
.yf_c00270{bottom:485.460000px;}
.ye_c00270{bottom:507.000000px;}
.yd_c00270{bottom:528.000000px;}
.yc_c00270{bottom:549.210000px;}
.yb_c00270{bottom:570.435000px;}
.ya_c00270{bottom:591.660000px;}
.y9_c00270{bottom:612.885000px;}
.y8_c00270{bottom:661.875000px;}
.y7_c00270{bottom:679.185000px;}
.y6_c00270{bottom:696.375000px;}
.y5_c00270{bottom:713.310000px;}
.y4_c00270{bottom:827.460000px;}
.y3_c00270{bottom:1056.000000px;}
.y1_c00270{bottom:1057.875000px;}
.y2_c00270{bottom:1068.810000px;}
.h3_c00270{height:60.468750px;}
.h1_c00270{height:64.775391px;}
.h2_c00270{height:170.771484px;}
.h0_c00270{height:1174.500000px;}
.w0_c00270{width:731.977200px;}
.w1_c00270{width:732.000000px;}
.x0_c00270{left:0.000000px;}
.x4_c00270{left:56.515200px;}
.x5_c00270{left:58.315200px;}
.xc_c00270{left:62.290200px;}
.xb_c00270{left:63.340200px;}
.x14_c00270{left:67.315200px;}
.x15_c00270{left:68.365200px;}
.x17_c00270{left:69.490200px;}
.x18_c00270{left:71.590200px;}
.x6_c00270{left:75.550200px;}
.x7_c00270{left:76.990200px;}
.x8_c00270{left:91.090200px;}
.xd_c00270{left:93.550200px;}
.xe_c00270{left:94.690200px;}
.x13_c00270{left:97.915200px;}
.x16_c00270{left:100.390200px;}
.x19_c00270{left:102.565200px;}
.xf_c00270{left:215.965200px;}
.x9_c00270{left:218.890200px;}
.xa_c00270{left:264.940200px;}
.x1_c00270{left:292.315200px;}
.x10_c00270{left:425.140200px;}
.x12_c00270{left:430.525200px;}
.x2_c00270{left:457.915200px;}
.x11_c00270{left:515.890200px;}
.x3_c00270{left:618.115200px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls0_c00270{letter-spacing:0.000000pt;}
.ws0_c00270{word-spacing:0.000000pt;}
.fs2_c00270{font-size:53.333333pt;}
.fs0_c00270{font-size:58.666667pt;}
.fs1_c00270{font-size:154.666667pt;}
.y0_c00270{bottom:0.000000pt;}
.y24_c00270{bottom:60.666667pt;}
.y23_c00270{bottom:79.520000pt;}
.y22_c00270{bottom:98.386667pt;}
.y21_c00270{bottom:117.000000pt;}
.y20_c00270{bottom:135.453333pt;}
.y1f_c00270{bottom:153.453333pt;}
.y1e_c00270{bottom:171.053333pt;}
.y1d_c00270{bottom:190.186667pt;}
.y1c_c00270{bottom:208.186667pt;}
.y1b_c00270{bottom:226.720000pt;}
.y1a_c00270{bottom:245.000000pt;}
.y19_c00270{bottom:263.466667pt;}
.y18_c00270{bottom:309.000000pt;}
.y15_c00270{bottom:309.253333pt;}
.y14_c00270{bottom:309.586667pt;}
.y16_c00270{bottom:317.586667pt;}
.y17_c00270{bottom:317.920000pt;}
.y13_c00270{bottom:356.333333pt;}
.y12_c00270{bottom:374.920000pt;}
.y11_c00270{bottom:393.720000pt;}
.y10_c00270{bottom:412.666667pt;}
.yf_c00270{bottom:431.520000pt;}
.ye_c00270{bottom:450.666667pt;}
.yd_c00270{bottom:469.333333pt;}
.yc_c00270{bottom:488.186667pt;}
.yb_c00270{bottom:507.053333pt;}
.ya_c00270{bottom:525.920000pt;}
.y9_c00270{bottom:544.786667pt;}
.y8_c00270{bottom:588.333333pt;}
.y7_c00270{bottom:603.720000pt;}
.y6_c00270{bottom:619.000000pt;}
.y5_c00270{bottom:634.053333pt;}
.y4_c00270{bottom:735.520000pt;}
.y3_c00270{bottom:938.666667pt;}
.y1_c00270{bottom:940.333333pt;}
.y2_c00270{bottom:950.053333pt;}
.h3_c00270{height:53.750000pt;}
.h1_c00270{height:57.578125pt;}
.h2_c00270{height:151.796875pt;}
.h0_c00270{height:1044.000000pt;}
.w0_c00270{width:650.646400pt;}
.w1_c00270{width:650.666667pt;}
.x0_c00270{left:0.000000pt;}
.x4_c00270{left:50.235733pt;}
.x5_c00270{left:51.835733pt;}
.xc_c00270{left:55.369067pt;}
.xb_c00270{left:56.302400pt;}
.x14_c00270{left:59.835733pt;}
.x15_c00270{left:60.769067pt;}
.x17_c00270{left:61.769067pt;}
.x18_c00270{left:63.635733pt;}
.x6_c00270{left:67.155733pt;}
.x7_c00270{left:68.435733pt;}
.x8_c00270{left:80.969067pt;}
.xd_c00270{left:83.155733pt;}
.xe_c00270{left:84.169067pt;}
.x13_c00270{left:87.035733pt;}
.x16_c00270{left:89.235733pt;}
.x19_c00270{left:91.169067pt;}
.xf_c00270{left:191.969067pt;}
.x9_c00270{left:194.569067pt;}
.xa_c00270{left:235.502400pt;}
.x1_c00270{left:259.835733pt;}
.x10_c00270{left:377.902400pt;}
.x12_c00270{left:382.689067pt;}
.x2_c00270{left:407.035733pt;}
.x11_c00270{left:458.569067pt;}
.x3_c00270{left:549.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3edf531cc61e40dd322cdf2a.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00271;src:url('chunks/assets/font_6e91b7ddf2a00df3bab337fb.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00271;src:url('chunks/assets/font_5f02f9e4b5cd97271db9b7cf.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00271;src:url('chunks/assets/font_2ebd666b0bd5f398a740e072.woff2')format("woff");}.ff4_c00271{font-family:ff4_c00271;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19_c00271{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m0_c00271{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00271{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c00271{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c00271{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00271{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00271{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c00271{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00271{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m18_c00271{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00271{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00271{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00271{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00271{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8_c00271{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c00271{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c00271{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c00271{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3_c00271{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m10_c00271{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9_c00271{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c00271{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mb_c00271{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m12_c00271{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c00271{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1_c00271{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00271{color:transparent;}
.fs3_c00271{font-size:18.000000px;}
.fs1_c00271{font-size:60.000000px;}
.fs0_c00271{font-size:66.000000px;}
.fs2_c00271{font-size:78.000000px;}
.y0_c00271{bottom:0.000000px;}
.y36_c00271{bottom:97.410000px;}
.y35_c00271{bottom:110.385000px;}
.y34_c00271{bottom:131.910000px;}
.y33_c00271{bottom:152.835000px;}
.y32_c00271{bottom:176.250000px;}
.y31_c00271{bottom:196.710000px;}
.y2f_c00271{bottom:215.835000px;}
.y30_c00271{bottom:216.135000px;}
.y2e_c00271{bottom:220.875000px;}
.y2d_c00271{bottom:239.910000px;}
.y2c_c00271{bottom:261.150000px;}
.y2b_c00271{bottom:266.625000px;}
.y2a_c00271{bottom:280.275000px;}
.y29_c00271{bottom:284.625000px;}
.y28_c00271{bottom:304.710000px;}
.y27_c00271{bottom:326.310000px;}
.y26_c00271{bottom:347.535000px;}
.y25_c00271{bottom:369.150000px;}
.y24_c00271{bottom:390.750000px;}
.y23_c00271{bottom:413.460000px;}
.y22_c00271{bottom:434.310000px;}
.y21_c00271{bottom:456.285000px;}
.y20_c00271{bottom:477.135000px;}
.y1f_c00271{bottom:498.750000px;}
.y37_c00271{bottom:514.935000px;}
.y1e_c00271{bottom:520.035000px;}
.y1d_c00271{bottom:541.260000px;}
.y1c_c00271{bottom:562.875000px;}
.y1b_c00271{bottom:584.460000px;}
.y1a_c00271{bottom:606.435000px;}
.y19_c00271{bottom:627.960000px;}
.y18_c00271{bottom:649.635000px;}
.y17_c00271{bottom:671.160000px;}
.y16_c00271{bottom:692.835000px;}
.y15_c00271{bottom:711.885000px;}
.y14_c00271{bottom:735.285000px;}
.y13_c00271{bottom:757.260000px;}
.y12_c00271{bottom:778.125000px;}
.y11_c00271{bottom:796.500000px;}
.y10_c00271{bottom:822.060000px;}
.yf_c00271{bottom:842.250000px;}
.ye_c00271{bottom:857.685000px;}
.yd_c00271{bottom:885.060000px;}
.yc_c00271{bottom:906.000000px;}
.yb_c00271{bottom:926.400000px;}
.ya_c00271{bottom:948.810000px;}
.y9_c00271{bottom:970.050000px;}
.y8_c00271{bottom:990.525000px;}
.y5_c00271{bottom:1005.585000px;}
.y6_c00271{bottom:1009.935000px;}
.y7_c00271{bottom:1013.625000px;}
.y4_c00271{bottom:1032.675000px;}
.y1_c00271{bottom:1079.835000px;}
.y3_c00271{bottom:1088.460000px;}
.y2_c00271{bottom:1094.085000px;}
.h5_c00271{height:18.773438px;}
.h2_c00271{height:58.886719px;}
.h1_c00271{height:64.775391px;}
.h4_c00271{height:66.515625px;}
.h3_c00271{height:76.514648px;}
.h0_c00271{height:1174.500000px;}
.w0_c00271{width:731.977200px;}
.w1_c00271{width:732.000000px;}
.x0_c00271{left:0.000000px;}
.x1a_c00271{left:37.765200px;}
.x16_c00271{left:38.890200px;}
.x13_c00271{left:40.690200px;}
.x12_c00271{left:41.740200px;}
.x11_c00271{left:43.165200px;}
.xe_c00271{left:44.965200px;}
.xa_c00271{left:46.390200px;}
.x9_c00271{left:47.890200px;}
.x8_c00271{left:49.690200px;}
.x4_c00271{left:51.115200px;}
.xf_c00271{left:64.390200px;}
.xd_c00271{left:66.940200px;}
.xc_c00271{left:69.115200px;}
.x1_c00271{left:71.290200px;}
.x10_c00271{left:73.765200px;}
.xb_c00271{left:77.365200px;}
.x5_c00271{left:81.340200px;}
.x2_c00271{left:97.165200px;}
.x6_c00271{left:258.490200px;}
.x3_c00271{left:270.340200px;}
.x7_c00271{left:276.115200px;}
.x18_c00271{left:353.515200px;}
.x19_c00271{left:447.490200px;}
.x17_c00271{left:474.115200px;}
.x14_c00271{left:587.140200px;}
.x15_c00271{left:614.140200px;}
.x1b_c00271{left:755.575200px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls0_c00271{letter-spacing:0.000000pt;}
.ws0_c00271{word-spacing:0.000000pt;}
.fs3_c00271{font-size:16.000000pt;}
.fs1_c00271{font-size:53.333333pt;}
.fs0_c00271{font-size:58.666667pt;}
.fs2_c00271{font-size:69.333333pt;}
.y0_c00271{bottom:0.000000pt;}
.y36_c00271{bottom:86.586667pt;}
.y35_c00271{bottom:98.120000pt;}
.y34_c00271{bottom:117.253333pt;}
.y33_c00271{bottom:135.853333pt;}
.y32_c00271{bottom:156.666667pt;}
.y31_c00271{bottom:174.853333pt;}
.y2f_c00271{bottom:191.853333pt;}
.y30_c00271{bottom:192.120000pt;}
.y2e_c00271{bottom:196.333333pt;}
.y2d_c00271{bottom:213.253333pt;}
.y2c_c00271{bottom:232.133333pt;}
.y2b_c00271{bottom:237.000000pt;}
.y2a_c00271{bottom:249.133333pt;}
.y29_c00271{bottom:253.000000pt;}
.y28_c00271{bottom:270.853333pt;}
.y27_c00271{bottom:290.053333pt;}
.y26_c00271{bottom:308.920000pt;}
.y25_c00271{bottom:328.133333pt;}
.y24_c00271{bottom:347.333333pt;}
.y23_c00271{bottom:367.520000pt;}
.y22_c00271{bottom:386.053333pt;}
.y21_c00271{bottom:405.586667pt;}
.y20_c00271{bottom:424.120000pt;}
.y1f_c00271{bottom:443.333333pt;}
.y37_c00271{bottom:457.720000pt;}
.y1e_c00271{bottom:462.253333pt;}
.y1d_c00271{bottom:481.120000pt;}
.y1c_c00271{bottom:500.333333pt;}
.y1b_c00271{bottom:519.520000pt;}
.y1a_c00271{bottom:539.053333pt;}
.y19_c00271{bottom:558.186667pt;}
.y18_c00271{bottom:577.453333pt;}
.y17_c00271{bottom:596.586667pt;}
.y16_c00271{bottom:615.853333pt;}
.y15_c00271{bottom:632.786667pt;}
.y14_c00271{bottom:653.586667pt;}
.y13_c00271{bottom:673.120000pt;}
.y12_c00271{bottom:691.666667pt;}
.y11_c00271{bottom:708.000000pt;}
.y10_c00271{bottom:730.720000pt;}
.yf_c00271{bottom:748.666667pt;}
.ye_c00271{bottom:762.386667pt;}
.yd_c00271{bottom:786.720000pt;}
.yc_c00271{bottom:805.333333pt;}
.yb_c00271{bottom:823.466667pt;}
.ya_c00271{bottom:843.386667pt;}
.y9_c00271{bottom:862.266667pt;}
.y8_c00271{bottom:880.466667pt;}
.y5_c00271{bottom:893.853333pt;}
.y6_c00271{bottom:897.720000pt;}
.y7_c00271{bottom:901.000000pt;}
.y4_c00271{bottom:917.933333pt;}
.y1_c00271{bottom:959.853333pt;}
.y3_c00271{bottom:967.520000pt;}
.y2_c00271{bottom:972.520000pt;}
.h5_c00271{height:16.687500pt;}
.h2_c00271{height:52.343750pt;}
.h1_c00271{height:57.578125pt;}
.h4_c00271{height:59.125000pt;}
.h3_c00271{height:68.013021pt;}
.h0_c00271{height:1044.000000pt;}
.w0_c00271{width:650.646400pt;}
.w1_c00271{width:650.666667pt;}
.x0_c00271{left:0.000000pt;}
.x1a_c00271{left:33.569067pt;}
.x16_c00271{left:34.569067pt;}
.x13_c00271{left:36.169067pt;}
.x12_c00271{left:37.102400pt;}
.x11_c00271{left:38.369067pt;}
.xe_c00271{left:39.969067pt;}
.xa_c00271{left:41.235733pt;}
.x9_c00271{left:42.569067pt;}
.x8_c00271{left:44.169067pt;}
.x4_c00271{left:45.435733pt;}
.xf_c00271{left:57.235733pt;}
.xd_c00271{left:59.502400pt;}
.xc_c00271{left:61.435733pt;}
.x1_c00271{left:63.369067pt;}
.x10_c00271{left:65.569067pt;}
.xb_c00271{left:68.769067pt;}
.x5_c00271{left:72.302400pt;}
.x2_c00271{left:86.369067pt;}
.x6_c00271{left:229.769067pt;}
.x3_c00271{left:240.302400pt;}
.x7_c00271{left:245.435733pt;}
.x18_c00271{left:314.235733pt;}
.x19_c00271{left:397.769067pt;}
.x17_c00271{left:421.435733pt;}
.x14_c00271{left:521.902400pt;}
.x15_c00271{left:545.902400pt;}
.x1b_c00271{left:671.622400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e3666c4d580f4a58c5afb7f.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00272;src:url('chunks/assets/font_1bdf538b8da4785c5b14334e.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00272;src:url('chunks/assets/font_7aa1b6fbeabe67883e51592d.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m18_c00272{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c00272{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c00272{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c00272{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00272{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c00272{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00272{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00272{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00272{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00272{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00272{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c00272{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00272{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m13_c00272{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00272{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00272{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00272{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m19_c00272{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00272{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00272{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m15_c00272{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3_c00272{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c00272{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4_c00272{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m14_c00272{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1_c00272{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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{margin-left:-47.391364px;}
.fc0_c00272{color:transparent;}
.fs0_c00272{font-size:60.000000px;}
.fs1_c00272{font-size:66.000000px;}
.fs2_c00272{font-size:78.000000px;}
.y0_c00272{bottom:0.000000px;}
.y41_c00272{bottom:85.785000px;}
.y40_c00272{bottom:87.285000px;}
.y3f_c00272{bottom:107.835000px;}
.y3e_c00272{bottom:128.010000px;}
.y3d_c00272{bottom:148.500000px;}
.y3c_c00272{bottom:149.160000px;}
.y3b_c00272{bottom:150.660000px;}
.y3a_c00272{bottom:169.785000px;}
.y39_c00272{bottom:190.260000px;}
.y38_c00272{bottom:211.500000px;}
.y37_c00272{bottom:232.335000px;}
.y36_c00272{bottom:252.885000px;}
.y35_c00272{bottom:273.435000px;}
.y34_c00272{bottom:294.285000px;}
.y33_c00272{bottom:315.585000px;}
.y32_c00272{bottom:336.750000px;}
.y30_c00272{bottom:356.910000px;}
.y2f_c00272{bottom:357.285000px;}
.y31_c00272{bottom:357.660000px;}
.y2e_c00272{bottom:378.525000px;}
.y2c_c00272{bottom:399.000000px;}
.y2b_c00272{bottom:399.060000px;}
.y2d_c00272{bottom:399.810000px;}
.y2a_c00272{bottom:419.910000px;}
.y29_c00272{bottom:441.210000px;}
.y28_c00272{bottom:462.060000px;}
.y27_c00272{bottom:483.660000px;}
.y26_c00272{bottom:504.885000px;}
.y25_c00272{bottom:526.125000px;}
.y24_c00272{bottom:547.410000px;}
.y23_c00272{bottom:568.635000px;}
.y22_c00272{bottom:589.875000px;}
.y21_c00272{bottom:610.710000px;}
.y20_c00272{bottom:611.085000px;}
.y1f_c00272{bottom:632.310000px;}
.y1e_c00272{bottom:653.535000px;}
.y1d_c00272{bottom:674.835000px;}
.y1c_c00272{bottom:696.060000px;}
.y1b_c00272{bottom:716.160000px;}
.y19_c00272{bottom:717.285000px;}
.y1a_c00272{bottom:717.660000px;}
.y18_c00272{bottom:738.885000px;}
.y17_c00272{bottom:760.200000px;}
.y16_c00272{bottom:781.425000px;}
.y15_c00272{bottom:801.210000px;}
.y14_c00272{bottom:803.025000px;}
.y10_c00272{bottom:823.500000px;}
.y11_c00272{bottom:823.800000px;}
.y12_c00272{bottom:824.250000px;}
.y13_c00272{bottom:824.550000px;}
.yf_c00272{bottom:845.460000px;}
.ye_c00272{bottom:867.060000px;}
.yd_c00272{bottom:887.625000px;}
.yc_c00272{bottom:908.460000px;}
.yb_c00272{bottom:929.685000px;}
.ya_c00272{bottom:950.250000px;}
.y8_c00272{bottom:950.550000px;}
.y9_c00272{bottom:950.925000px;}
.y7_c00272{bottom:972.150000px;}
.y6_c00272{bottom:993.435000px;}
.y4_c00272{bottom:1014.960000px;}
.y5_c00272{bottom:1015.335000px;}
.y3_c00272{bottom:1074.060000px;}
.y1_c00272{bottom:1075.500000px;}
.y2_c00272{bottom:1086.150000px;}
.h2_c00272{height:58.886719px;}
.h1_c00272{height:60.468750px;}
.h4_c00272{height:64.775391px;}
.h3_c00272{height:66.515625px;}
.h7_c00272{height:76.514648px;}
.h5_c00272{height:76.552734px;}
.h6_c00272{height:78.609375px;}
.h0_c00272{height:1174.500000px;}
.w0_c00272{width:731.977200px;}
.w1_c00272{width:732.000000px;}
.x0_c00272{left:0.000000px;}
.x17_c00272{left:56.140200px;}
.x1a_c00272{left:57.190200px;}
.xf_c00272{left:58.315200px;}
.xa_c00272{left:59.365200px;}
.x6_c00272{left:60.790200px;}
.x9_c00272{left:61.915200px;}
.x16_c00272{left:68.740200px;}
.x1b_c00272{left:88.540200px;}
.x1e_c00272{left:89.590200px;}
.x1f_c00272{left:90.715200px;}
.x4_c00272{left:92.515200px;}
.xb_c00272{left:113.740200px;}
.x13_c00272{left:152.290200px;}
.xc_c00272{left:159.115200px;}
.x1c_c00272{left:177.115200px;}
.x7_c00272{left:188.590200px;}
.x1d_c00272{left:205.915200px;}
.xd_c00272{left:212.365200px;}
.x10_c00272{left:237.190200px;}
.x1_c00272{left:269.290200px;}
.x20_c00272{left:308.515200px;}
.x11_c00272{left:343.390200px;}
.x5_c00272{left:352.390200px;}
.x14_c00272{left:357.790200px;}
.x15_c00272{left:373.990200px;}
.x8_c00272{left:421.525200px;}
.x2_c00272{left:461.890200px;}
.x18_c00272{left:505.390200px;}
.x19_c00272{left:539.590200px;}
.xe_c00272{left:616.990200px;}
.x3_c00272{left:624.940200px;}
.x12_c00272{left:643.990200px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls0_c00272{letter-spacing:0.000000pt;}
.ws0_c00272{word-spacing:0.000000pt;}
._0_c00272{margin-left:-42.125657pt;}
.fs0_c00272{font-size:53.333333pt;}
.fs1_c00272{font-size:58.666667pt;}
.fs2_c00272{font-size:69.333333pt;}
.y0_c00272{bottom:0.000000pt;}
.y41_c00272{bottom:76.253333pt;}
.y40_c00272{bottom:77.586667pt;}
.y3f_c00272{bottom:95.853333pt;}
.y3e_c00272{bottom:113.786667pt;}
.y3d_c00272{bottom:132.000000pt;}
.y3c_c00272{bottom:132.586667pt;}
.y3b_c00272{bottom:133.920000pt;}
.y3a_c00272{bottom:150.920000pt;}
.y39_c00272{bottom:169.120000pt;}
.y38_c00272{bottom:188.000000pt;}
.y37_c00272{bottom:206.520000pt;}
.y36_c00272{bottom:224.786667pt;}
.y35_c00272{bottom:243.053333pt;}
.y34_c00272{bottom:261.586667pt;}
.y33_c00272{bottom:280.520000pt;}
.y32_c00272{bottom:299.333333pt;}
.y30_c00272{bottom:317.253333pt;}
.y2f_c00272{bottom:317.586667pt;}
.y31_c00272{bottom:317.920000pt;}
.y2e_c00272{bottom:336.466667pt;}
.y2c_c00272{bottom:354.666667pt;}
.y2b_c00272{bottom:354.720000pt;}
.y2d_c00272{bottom:355.386667pt;}
.y2a_c00272{bottom:373.253333pt;}
.y29_c00272{bottom:392.186667pt;}
.y28_c00272{bottom:410.720000pt;}
.y27_c00272{bottom:429.920000pt;}
.y26_c00272{bottom:448.786667pt;}
.y25_c00272{bottom:467.666667pt;}
.y24_c00272{bottom:486.586667pt;}
.y23_c00272{bottom:505.453333pt;}
.y22_c00272{bottom:524.333333pt;}
.y21_c00272{bottom:542.853333pt;}
.y20_c00272{bottom:543.186667pt;}
.y1f_c00272{bottom:562.053333pt;}
.y1e_c00272{bottom:580.920000pt;}
.y1d_c00272{bottom:599.853333pt;}
.y1c_c00272{bottom:618.720000pt;}
.y1b_c00272{bottom:636.586667pt;}
.y19_c00272{bottom:637.586667pt;}
.y1a_c00272{bottom:637.920000pt;}
.y18_c00272{bottom:656.786667pt;}
.y17_c00272{bottom:675.733333pt;}
.y16_c00272{bottom:694.600000pt;}
.y15_c00272{bottom:712.186667pt;}
.y14_c00272{bottom:713.800000pt;}
.y10_c00272{bottom:732.000000pt;}
.y11_c00272{bottom:732.266667pt;}
.y12_c00272{bottom:732.666667pt;}
.y13_c00272{bottom:732.933333pt;}
.yf_c00272{bottom:751.520000pt;}
.ye_c00272{bottom:770.720000pt;}
.yd_c00272{bottom:789.000000pt;}
.yc_c00272{bottom:807.520000pt;}
.yb_c00272{bottom:826.386667pt;}
.ya_c00272{bottom:844.666667pt;}
.y8_c00272{bottom:844.933333pt;}
.y9_c00272{bottom:845.266667pt;}
.y7_c00272{bottom:864.133333pt;}
.y6_c00272{bottom:883.053333pt;}
.y4_c00272{bottom:902.186667pt;}
.y5_c00272{bottom:902.520000pt;}
.y3_c00272{bottom:954.720000pt;}
.y1_c00272{bottom:956.000000pt;}
.y2_c00272{bottom:965.466667pt;}
.h2_c00272{height:52.343750pt;}
.h1_c00272{height:53.750000pt;}
.h4_c00272{height:57.578125pt;}
.h3_c00272{height:59.125000pt;}
.h7_c00272{height:68.013021pt;}
.h5_c00272{height:68.046875pt;}
.h6_c00272{height:69.875000pt;}
.h0_c00272{height:1044.000000pt;}
.w0_c00272{width:650.646400pt;}
.w1_c00272{width:650.666667pt;}
.x0_c00272{left:0.000000pt;}
.x17_c00272{left:49.902400pt;}
.x1a_c00272{left:50.835733pt;}
.xf_c00272{left:51.835733pt;}
.xa_c00272{left:52.769067pt;}
.x6_c00272{left:54.035733pt;}
.x9_c00272{left:55.035733pt;}
.x16_c00272{left:61.102400pt;}
.x1b_c00272{left:78.702400pt;}
.x1e_c00272{left:79.635733pt;}
.x1f_c00272{left:80.635733pt;}
.x4_c00272{left:82.235733pt;}
.xb_c00272{left:101.102400pt;}
.x13_c00272{left:135.369067pt;}
.xc_c00272{left:141.435733pt;}
.x1c_c00272{left:157.435733pt;}
.x7_c00272{left:167.635733pt;}
.x1d_c00272{left:183.035733pt;}
.xd_c00272{left:188.769067pt;}
.x10_c00272{left:210.835733pt;}
.x1_c00272{left:239.369067pt;}
.x20_c00272{left:274.235733pt;}
.x11_c00272{left:305.235733pt;}
.x5_c00272{left:313.235733pt;}
.x14_c00272{left:318.035733pt;}
.x15_c00272{left:332.435733pt;}
.x8_c00272{left:374.689067pt;}
.x2_c00272{left:410.569067pt;}
.x18_c00272{left:449.235733pt;}
.x19_c00272{left:479.635733pt;}
.xe_c00272{left:548.435733pt;}
.x3_c00272{left:555.502400pt;}
.x12_c00272{left:572.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00273 {
    display:none;
  }
  .loading-indicator_c00273.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00273 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00273 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00273" -> "#page-container .classname_c00273")
 */
.pf_c00273 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00273 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00273 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00273 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00273 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00273 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00273 {overflow:visible;}
  }
}
.c_c00273 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00273 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00273:after { /* webkit #35443 */
  content: '';
}
.t_c00273:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00273 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00273 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00273 { /* info for Javascript */
  display:none;
}
.l_c00273 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00273 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00273 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00273:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00273 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00273.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00273 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00273{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00273;src:url('chunks/assets/font_c0385757f55465096306e182.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00273;src:url('chunks/assets/font_aa0c1f08854d724999219c61.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00273;src:url('chunks/assets/font_a56d83fd8ebc83994f50034f.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00273;src:url('chunks/assets/font_119ce08b3fc34960f123dbe0.woff2')format("woff");}.ff4_c00273{font-family:ff4_c00273;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00273{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m10_c00273{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c00273{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m11_c00273{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1_c00273{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c00273{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c00273{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c00273{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00273{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00273{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00273{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m19_c00273{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2_c00273{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m18_c00273{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c00273{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c00273{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c00273{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00273{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00273{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00273{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3_c00273{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mf_c00273{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma_c00273{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5_c00273{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c00273{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m16_c00273{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls0_c00273{letter-spacing:0.000000px;}
.sc__c00273{text-shadow:none;}
.sc0_c00273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00273{-webkit-text-stroke:0px transparent;}
.sc0_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00273{word-spacing:0.000000px;}
.fc0_c00273{color:transparent;}
.fs1_c00273{font-size:60.000000px;}
.fs0_c00273{font-size:66.000000px;}
.fs2_c00273{font-size:78.000000px;}
.y0_c00273{bottom:0.000000px;}
.y3c_c00273{bottom:96.660000px;}
.y3a_c00273{bottom:116.085000px;}
.y3b_c00273{bottom:116.460000px;}
.y39_c00273{bottom:119.310000px;}
.y38_c00273{bottom:139.875000px;}
.y37_c00273{bottom:159.660000px;}
.y36_c00273{bottom:160.035000px;}
.y35_c00273{bottom:163.185000px;}
.y34_c00273{bottom:182.685000px;}
.y33_c00273{bottom:203.910000px;}
.y32_c00273{bottom:227.010000px;}
.y31_c00273{bottom:247.500000px;}
.y30_c00273{bottom:266.910000px;}
.y2f_c00273{bottom:270.585000px;}
.y2e_c00273{bottom:290.685000px;}
.y2d_c00273{bottom:311.910000px;}
.y2c_c00273{bottom:332.835000px;}
.y2b_c00273{bottom:337.125000px;}
.y2a_c00273{bottom:354.435000px;}
.y29_c00273{bottom:376.035000px;}
.y28_c00273{bottom:378.150000px;}
.y27_c00273{bottom:399.435000px;}
.y26_c00273{bottom:419.535000px;}
.y25_c00273{bottom:441.210000px;}
.y24_c00273{bottom:462.810000px;}
.y23_c00273{bottom:484.035000px;}
.y22_c00273{bottom:505.260000px;}
.y21_c00273{bottom:526.125000px;}
.y20_c00273{bottom:526.500000px;}
.y1f_c00273{bottom:526.875000px;}
.y1e_c00273{bottom:548.085000px;}
.y1d_c00273{bottom:569.310000px;}
.y1b_c00273{bottom:590.250000px;}
.y1c_c00273{bottom:590.910000px;}
.y1a_c00273{bottom:612.135000px;}
.y19_c00273{bottom:634.125000px;}
.y18_c00273{bottom:655.410000px;}
.y17_c00273{bottom:676.635000px;}
.y16_c00273{bottom:698.910000px;}
.y15_c00273{bottom:720.510000px;}
.y14_c00273{bottom:741.825000px;}
.y13_c00273{bottom:763.710000px;}
.y12_c00273{bottom:785.385000px;}
.y11_c00273{bottom:806.925000px;}
.y10_c00273{bottom:828.210000px;}
.yf_c00273{bottom:849.750000px;}
.ye_c00273{bottom:870.300000px;}
.yd_c00273{bottom:891.900000px;}
.yc_c00273{bottom:912.810000px;}
.y8_c00273{bottom:928.560000px;}
.y9_c00273{bottom:931.185000px;}
.ya_c00273{bottom:932.250000px;}
.yb_c00273{bottom:936.150000px;}
.y7_c00273{bottom:948.060000px;}
.y6_c00273{bottom:976.500000px;}
.y5_c00273{bottom:997.800000px;}
.y4_c00273{bottom:1018.650000px;}
.y3_c00273{bottom:1039.875000px;}
.y1_c00273{bottom:1095.300000px;}
.y2_c00273{bottom:1097.775000px;}
.h2_c00273{height:58.886719px;}
.h5_c00273{height:60.468750px;}
.h1_c00273{height:64.775391px;}
.h4_c00273{height:76.514648px;}
.h3_c00273{height:78.609375px;}
.h0_c00273{height:1174.500000px;}
.w0_c00273{width:731.977200px;}
.w1_c00273{width:732.000000px;}
.x0_c00273{left:0.000000px;}
.xb_c00273{left:42.115200px;}
.x9_c00273{left:43.165200px;}
.x5_c00273{left:44.965200px;}
.x3_c00273{left:46.390200px;}
.x17_c00273{left:47.515200px;}
.x10_c00273{left:68.740200px;}
.xa_c00273{left:73.390200px;}
.x4_c00273{left:76.300200px;}
.xf_c00273{left:123.790200px;}
.x6_c00273{left:149.740200px;}
.xd_c00273{left:231.790200px;}
.x7_c00273{left:248.740200px;}
.xc_c00273{left:253.765200px;}
.x8_c00273{left:263.890200px;}
.x1_c00273{left:264.940200px;}
.x2_c00273{left:350.590200px;}
.xe_c00273{left:357.115200px;}
.x11_c00273{left:409.315200px;}
.x13_c00273{left:468.715200px;}
.x14_c00273{left:493.915200px;}
.x12_c00273{left:521.965200px;}
.x15_c00273{left:595.090200px;}
.x16_c00273{left:618.790200px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls0_c00273{letter-spacing:0.000000pt;}
.ws0_c00273{word-spacing:0.000000pt;}
.fs1_c00273{font-size:53.333333pt;}
.fs0_c00273{font-size:58.666667pt;}
.fs2_c00273{font-size:69.333333pt;}
.y0_c00273{bottom:0.000000pt;}
.y3c_c00273{bottom:85.920000pt;}
.y3a_c00273{bottom:103.186667pt;}
.y3b_c00273{bottom:103.520000pt;}
.y39_c00273{bottom:106.053333pt;}
.y38_c00273{bottom:124.333333pt;}
.y37_c00273{bottom:141.920000pt;}
.y36_c00273{bottom:142.253333pt;}
.y35_c00273{bottom:145.053333pt;}
.y34_c00273{bottom:162.386667pt;}
.y33_c00273{bottom:181.253333pt;}
.y32_c00273{bottom:201.786667pt;}
.y31_c00273{bottom:220.000000pt;}
.y30_c00273{bottom:237.253333pt;}
.y2f_c00273{bottom:240.520000pt;}
.y2e_c00273{bottom:258.386667pt;}
.y2d_c00273{bottom:277.253333pt;}
.y2c_c00273{bottom:295.853333pt;}
.y2b_c00273{bottom:299.666667pt;}
.y2a_c00273{bottom:315.053333pt;}
.y29_c00273{bottom:334.253333pt;}
.y28_c00273{bottom:336.133333pt;}
.y27_c00273{bottom:355.053333pt;}
.y26_c00273{bottom:372.920000pt;}
.y25_c00273{bottom:392.186667pt;}
.y24_c00273{bottom:411.386667pt;}
.y23_c00273{bottom:430.253333pt;}
.y22_c00273{bottom:449.120000pt;}
.y21_c00273{bottom:467.666667pt;}
.y20_c00273{bottom:468.000000pt;}
.y1f_c00273{bottom:468.333333pt;}
.y1e_c00273{bottom:487.186667pt;}
.y1d_c00273{bottom:506.053333pt;}
.y1b_c00273{bottom:524.666667pt;}
.y1c_c00273{bottom:525.253333pt;}
.y1a_c00273{bottom:544.120000pt;}
.y19_c00273{bottom:563.666667pt;}
.y18_c00273{bottom:582.586667pt;}
.y17_c00273{bottom:601.453333pt;}
.y16_c00273{bottom:621.253333pt;}
.y15_c00273{bottom:640.453333pt;}
.y14_c00273{bottom:659.400000pt;}
.y13_c00273{bottom:678.853333pt;}
.y12_c00273{bottom:698.120000pt;}
.y11_c00273{bottom:717.266667pt;}
.y10_c00273{bottom:736.186667pt;}
.yf_c00273{bottom:755.333333pt;}
.ye_c00273{bottom:773.600000pt;}
.yd_c00273{bottom:792.800000pt;}
.yc_c00273{bottom:811.386667pt;}
.y8_c00273{bottom:825.386667pt;}
.y9_c00273{bottom:827.720000pt;}
.ya_c00273{bottom:828.666667pt;}
.yb_c00273{bottom:832.133333pt;}
.y7_c00273{bottom:842.720000pt;}
.y6_c00273{bottom:868.000000pt;}
.y5_c00273{bottom:886.933333pt;}
.y4_c00273{bottom:905.466667pt;}
.y3_c00273{bottom:924.333333pt;}
.y1_c00273{bottom:973.600000pt;}
.y2_c00273{bottom:975.800000pt;}
.h2_c00273{height:52.343750pt;}
.h5_c00273{height:53.750000pt;}
.h1_c00273{height:57.578125pt;}
.h4_c00273{height:68.013021pt;}
.h3_c00273{height:69.875000pt;}
.h0_c00273{height:1044.000000pt;}
.w0_c00273{width:650.646400pt;}
.w1_c00273{width:650.666667pt;}
.x0_c00273{left:0.000000pt;}
.xb_c00273{left:37.435733pt;}
.x9_c00273{left:38.369067pt;}
.x5_c00273{left:39.969067pt;}
.x3_c00273{left:41.235733pt;}
.x17_c00273{left:42.235733pt;}
.x10_c00273{left:61.102400pt;}
.xa_c00273{left:65.235733pt;}
.x4_c00273{left:67.822400pt;}
.xf_c00273{left:110.035733pt;}
.x6_c00273{left:133.102400pt;}
.xd_c00273{left:206.035733pt;}
.x7_c00273{left:221.102400pt;}
.xc_c00273{left:225.569067pt;}
.x8_c00273{left:234.569067pt;}
.x1_c00273{left:235.502400pt;}
.x2_c00273{left:311.635733pt;}
.xe_c00273{left:317.435733pt;}
.x11_c00273{left:363.835733pt;}
.x13_c00273{left:416.635733pt;}
.x14_c00273{left:439.035733pt;}
.x12_c00273{left:463.969067pt;}
.x15_c00273{left:528.969067pt;}
.x16_c00273{left:550.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5212def74daa25bd63b0d43e.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00274;src:url('chunks/assets/font_8ca53a7417a951fd20958fc0.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00274{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00274{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6_c00274{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00274{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c00274{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00274{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00274{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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.000000px;}
.fc0_c00274{color:transparent;}
.fs0_c00274{font-size:60.000000px;}
.fs1_c00274{font-size:66.000000px;}
.y0_c00274{bottom:0.000000px;}
.y8_c00274{bottom:934.335000px;}
.y7_c00274{bottom:955.560000px;}
.y6_c00274{bottom:977.550000px;}
.y5_c00274{bottom:999.150000px;}
.y4_c00274{bottom:1020.435000px;}
.y3_c00274{bottom:1080.150000px;}
.y1_c00274{bottom:1080.900000px;}
.y2_c00274{bottom:1093.875000px;}
.h1_c00274{height:60.468750px;}
.h2_c00274{height:64.775391px;}
.h0_c00274{height:1174.500000px;}
.w0_c00274{width:731.977200px;}
.w1_c00274{width:732.000000px;}
.x0_c00274{left:0.000000px;}
.x4_c00274{left:60.490200px;}
.x5_c00274{left:61.915200px;}
.x6_c00274{left:62.965200px;}
.x1_c00274{left:265.990200px;}
.x2_c00274{left:459.715200px;}
.x3_c00274{left:624.940200px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls0_c00274{letter-spacing:0.000000pt;}
.ws0_c00274{word-spacing:0.000000pt;}
.fs0_c00274{font-size:53.333333pt;}
.fs1_c00274{font-size:58.666667pt;}
.y0_c00274{bottom:0.000000pt;}
.y8_c00274{bottom:830.520000pt;}
.y7_c00274{bottom:849.386667pt;}
.y6_c00274{bottom:868.933333pt;}
.y5_c00274{bottom:888.133333pt;}
.y4_c00274{bottom:907.053333pt;}
.y3_c00274{bottom:960.133333pt;}
.y1_c00274{bottom:960.800000pt;}
.y2_c00274{bottom:972.333333pt;}
.h1_c00274{height:53.750000pt;}
.h2_c00274{height:57.578125pt;}
.h0_c00274{height:1044.000000pt;}
.w0_c00274{width:650.646400pt;}
.w1_c00274{width:650.666667pt;}
.x0_c00274{left:0.000000pt;}
.x4_c00274{left:53.769067pt;}
.x5_c00274{left:55.035733pt;}
.x6_c00274{left:55.969067pt;}
.x1_c00274{left:236.435733pt;}
.x2_c00274{left:408.635733pt;}
.x3_c00274{left:555.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00275 {
    display:none;
  }
  .loading-indicator_c00275.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00275 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00275 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00275" -> "#page-container .classname_c00275")
 */
.pf_c00275 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00275 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00275 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00275 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00275 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00275 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00275 {overflow:visible;}
  }
}
.c_c00275 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00275 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00275:after { /* webkit #35443 */
  content: '';
}
.t_c00275:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00275 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00275 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00275 { /* info for Javascript */
  display:none;
}
.l_c00275 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00275 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00275 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00275:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00275 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00275.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00275 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00275{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00275;src:url('chunks/assets/font_c2c149852017121bddde036f.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00275;src:url('chunks/assets/font_51263804a42656597a709fb7.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00275;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00275{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m2_c00275{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m10_c00275{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00275{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c00275{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00275{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00275{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00275{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8_c00275{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00275{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c00275{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5_c00275{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mb_c00275{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.ma_c00275{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m9_c00275{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me_c00275{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3_c00275{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls0_c00275{letter-spacing:0.000000px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00275{word-spacing:0.000000px;}
.fc0_c00275{color:transparent;}
.fs0_c00275{font-size:54.000000px;}
.fs2_c00275{font-size:66.000000px;}
.fs3_c00275{font-size:84.000000px;}
.fs1_c00275{font-size:168.000000px;}
.y0_c00275{bottom:0.000000px;}
.y26_c00275{bottom:100.935000px;}
.y25_c00275{bottom:104.910000px;}
.y24_c00275{bottom:124.035000px;}
.y23_c00275{bottom:145.260000px;}
.y22_c00275{bottom:166.500000px;}
.y21_c00275{bottom:188.085000px;}
.y20_c00275{bottom:210.060000px;}
.y1f_c00275{bottom:232.035000px;}
.y1e_c00275{bottom:253.275000px;}
.y1d_c00275{bottom:274.875000px;}
.y1c_c00275{bottom:296.085000px;}
.y1b_c00275{bottom:318.060000px;}
.y1a_c00275{bottom:339.285000px;}
.y19_c00275{bottom:360.585000px;}
.y18_c00275{bottom:382.500000px;}
.y17_c00275{bottom:404.400000px;}
.y16_c00275{bottom:426.060000px;}
.y15_c00275{bottom:447.285000px;}
.y14_c00275{bottom:469.185000px;}
.y13_c00275{bottom:490.500000px;}
.y12_c00275{bottom:511.710000px;}
.y11_c00275{bottom:532.635000px;}
.y10_c00275{bottom:554.250000px;}
.yf_c00275{bottom:575.460000px;}
.ye_c00275{bottom:597.435000px;}
.yd_c00275{bottom:619.035000px;}
.yc_c00275{bottom:640.635000px;}
.yb_c00275{bottom:662.250000px;}
.ya_c00275{bottom:683.835000px;}
.y9_c00275{bottom:705.435000px;}
.y8_c00275{bottom:726.285000px;}
.y7_c00275{bottom:749.010000px;}
.y6_c00275{bottom:770.250000px;}
.y3_c00275{bottom:875.310000px;}
.y4_c00275{bottom:880.050000px;}
.y5_c00275{bottom:883.185000px;}
.y1_c00275{bottom:1090.650000px;}
.y2_c00275{bottom:1100.685000px;}
.h1_c00275{height:52.998047px;}
.h3_c00275{height:64.775391px;}
.h4_c00275{height:82.400391px;}
.h2_c00275{height:169.312500px;}
.h0_c00275{height:1174.500000px;}
.w0_c00275{width:731.977200px;}
.w1_c00275{width:732.000000px;}
.x0_c00275{left:0.000000px;}
.x3_c00275{left:30.190200px;}
.x7_c00275{left:31.690200px;}
.x9_c00275{left:33.490200px;}
.x8_c00275{left:34.540200px;}
.xb_c00275{left:35.575200px;}
.xc_c00275{left:36.715200px;}
.xd_c00275{left:38.140200px;}
.xe_c00275{left:39.190200px;}
.x1_c00275{left:49.990200px;}
.x6_c00275{left:59.740200px;}
.xa_c00275{left:66.565200px;}
.x2_c00275{left:247.990200px;}
.x4_c00275{left:327.940200px;}
.xf_c00275{left:425.890200px;}
.x10_c00275{left:444.940200px;}
.x5_c00275{left:520.915200px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls0_c00275{letter-spacing:0.000000pt;}
.ws0_c00275{word-spacing:0.000000pt;}
.fs0_c00275{font-size:48.000000pt;}
.fs2_c00275{font-size:58.666667pt;}
.fs3_c00275{font-size:74.666667pt;}
.fs1_c00275{font-size:149.333333pt;}
.y0_c00275{bottom:0.000000pt;}
.y26_c00275{bottom:89.720000pt;}
.y25_c00275{bottom:93.253333pt;}
.y24_c00275{bottom:110.253333pt;}
.y23_c00275{bottom:129.120000pt;}
.y22_c00275{bottom:148.000000pt;}
.y21_c00275{bottom:167.186667pt;}
.y20_c00275{bottom:186.720000pt;}
.y1f_c00275{bottom:206.253333pt;}
.y1e_c00275{bottom:225.133333pt;}
.y1d_c00275{bottom:244.333333pt;}
.y1c_c00275{bottom:263.186667pt;}
.y1b_c00275{bottom:282.720000pt;}
.y1a_c00275{bottom:301.586667pt;}
.y19_c00275{bottom:320.520000pt;}
.y18_c00275{bottom:340.000000pt;}
.y17_c00275{bottom:359.466667pt;}
.y16_c00275{bottom:378.720000pt;}
.y15_c00275{bottom:397.586667pt;}
.y14_c00275{bottom:417.053333pt;}
.y13_c00275{bottom:436.000000pt;}
.y12_c00275{bottom:454.853333pt;}
.y11_c00275{bottom:473.453333pt;}
.y10_c00275{bottom:492.666667pt;}
.yf_c00275{bottom:511.520000pt;}
.ye_c00275{bottom:531.053333pt;}
.yd_c00275{bottom:550.253333pt;}
.yc_c00275{bottom:569.453333pt;}
.yb_c00275{bottom:588.666667pt;}
.ya_c00275{bottom:607.853333pt;}
.y9_c00275{bottom:627.053333pt;}
.y8_c00275{bottom:645.586667pt;}
.y7_c00275{bottom:665.786667pt;}
.y6_c00275{bottom:684.666667pt;}
.y3_c00275{bottom:778.053333pt;}
.y4_c00275{bottom:782.266667pt;}
.y5_c00275{bottom:785.053333pt;}
.y1_c00275{bottom:969.466667pt;}
.y2_c00275{bottom:978.386667pt;}
.h1_c00275{height:47.109375pt;}
.h3_c00275{height:57.578125pt;}
.h4_c00275{height:73.244792pt;}
.h2_c00275{height:150.500000pt;}
.h0_c00275{height:1044.000000pt;}
.w0_c00275{width:650.646400pt;}
.w1_c00275{width:650.666667pt;}
.x0_c00275{left:0.000000pt;}
.x3_c00275{left:26.835733pt;}
.x7_c00275{left:28.169067pt;}
.x9_c00275{left:29.769067pt;}
.x8_c00275{left:30.702400pt;}
.xb_c00275{left:31.622400pt;}
.xc_c00275{left:32.635733pt;}
.xd_c00275{left:33.902400pt;}
.xe_c00275{left:34.835733pt;}
.x1_c00275{left:44.435733pt;}
.x6_c00275{left:53.102400pt;}
.xa_c00275{left:59.169067pt;}
.x2_c00275{left:220.435733pt;}
.x4_c00275{left:291.502400pt;}
.xf_c00275{left:378.569067pt;}
.x10_c00275{left:395.502400pt;}
.x5_c00275{left:463.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e808f021e3a86a460b91b204.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00276{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me_c00276{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00276{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00276{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00276{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00276{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00276{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00276{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1_c00276{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00276{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c00276{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3_c00276{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00276{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c00276{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c00276{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00276{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c00276{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c00276{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.v0_c00276{vertical-align:0.000000px;}
.ls0_c00276{letter-spacing:0.000000px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00276{word-spacing:0.000000px;}
.fc0_c00276{color:transparent;}
.fs1_c00276{font-size:66.000000px;}
.fs0_c00276{font-size:72.000000px;}
.y0_c00276{bottom:0.000000px;}
.y33_c00276{bottom:81.885000px;}
.y34_c00276{bottom:83.310000px;}
.y35_c00276{bottom:84.435000px;}
.y36_c00276{bottom:86.910000px;}
.y31_c00276{bottom:105.285000px;}
.y32_c00276{bottom:108.885000px;}
.y30_c00276{bottom:129.060000px;}
.y2f_c00276{bottom:149.250000px;}
.y2d_c00276{bottom:169.335000px;}
.y2e_c00276{bottom:171.510000px;}
.y2b_c00276{bottom:190.635000px;}
.y2c_c00276{bottom:193.875000px;}
.y29_c00276{bottom:211.500000px;}
.y2a_c00276{bottom:214.335000px;}
.y28_c00276{bottom:234.210000px;}
.y27_c00276{bottom:255.060000px;}
.y26_c00276{bottom:276.660000px;}
.y25_c00276{bottom:297.525000px;}
.y24_c00276{bottom:319.185000px;}
.y23_c00276{bottom:341.085000px;}
.y22_c00276{bottom:362.685000px;}
.y21_c00276{bottom:384.285000px;}
.y20_c00276{bottom:405.525000px;}
.y1f_c00276{bottom:427.125000px;}
.y1e_c00276{bottom:449.085000px;}
.y1d_c00276{bottom:470.685000px;}
.y1c_c00276{bottom:492.660000px;}
.y1b_c00276{bottom:514.635000px;}
.y1a_c00276{bottom:536.910000px;}
.y19_c00276{bottom:558.510000px;}
.y18_c00276{bottom:580.500000px;}
.y17_c00276{bottom:602.085000px;}
.y16_c00276{bottom:624.060000px;}
.y15_c00276{bottom:645.660000px;}
.y14_c00276{bottom:667.935000px;}
.y13_c00276{bottom:689.535000px;}
.y12_c00276{bottom:711.210000px;}
.y11_c00276{bottom:733.875000px;}
.y10_c00276{bottom:757.260000px;}
.yf_c00276{bottom:777.060000px;}
.ye_c00276{bottom:799.710000px;}
.yd_c00276{bottom:821.310000px;}
.yc_c00276{bottom:843.300000px;}
.yb_c00276{bottom:867.060000px;}
.ya_c00276{bottom:887.925000px;}
.y9_c00276{bottom:909.150000px;}
.y8_c00276{bottom:930.060000px;}
.y7_c00276{bottom:952.425000px;}
.y6_c00276{bottom:973.275000px;}
.y5_c00276{bottom:994.500000px;}
.y4_c00276{bottom:1015.335000px;}
.y3_c00276{bottom:1018.125000px;}
.y2_c00276{bottom:1020.375000px;}
.y1_c00276{bottom:1039.500000px;}
.h2_c00276{height:64.775391px;}
.h1_c00276{height:70.664062px;}
.h0_c00276{height:1174.500000px;}
.w0_c00276{width:731.977200px;}
.w1_c00276{width:732.000000px;}
.x0_c00276{left:0.000000px;}
.x7_c00276{left:60.115200px;}
.x5_c00276{left:61.540200px;}
.x1_c00276{left:62.590200px;}
.xc_c00276{left:91.390200px;}
.x6_c00276{left:93.550200px;}
.x4_c00276{left:94.990200px;}
.xa_c00276{left:120.190200px;}
.xd_c00276{left:191.500200px;}
.xb_c00276{left:215.965200px;}
.xe_c00276{left:232.540200px;}
.x2_c00276{left:267.490200px;}
.x3_c00276{left:270.715200px;}
.x8_c00276{left:319.690200px;}
.x9_c00276{left:409.315200px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls0_c00276{letter-spacing:0.000000pt;}
.ws0_c00276{word-spacing:0.000000pt;}
.fs1_c00276{font-size:58.666667pt;}
.fs0_c00276{font-size:64.000000pt;}
.y0_c00276{bottom:0.000000pt;}
.y33_c00276{bottom:72.786667pt;}
.y34_c00276{bottom:74.053333pt;}
.y35_c00276{bottom:75.053333pt;}
.y36_c00276{bottom:77.253333pt;}
.y31_c00276{bottom:93.586667pt;}
.y32_c00276{bottom:96.786667pt;}
.y30_c00276{bottom:114.720000pt;}
.y2f_c00276{bottom:132.666667pt;}
.y2d_c00276{bottom:150.520000pt;}
.y2e_c00276{bottom:152.453333pt;}
.y2b_c00276{bottom:169.453333pt;}
.y2c_c00276{bottom:172.333333pt;}
.y29_c00276{bottom:188.000000pt;}
.y2a_c00276{bottom:190.520000pt;}
.y28_c00276{bottom:208.186667pt;}
.y27_c00276{bottom:226.720000pt;}
.y26_c00276{bottom:245.920000pt;}
.y25_c00276{bottom:264.466667pt;}
.y24_c00276{bottom:283.720000pt;}
.y23_c00276{bottom:303.186667pt;}
.y22_c00276{bottom:322.386667pt;}
.y21_c00276{bottom:341.586667pt;}
.y20_c00276{bottom:360.466667pt;}
.y1f_c00276{bottom:379.666667pt;}
.y1e_c00276{bottom:399.186667pt;}
.y1d_c00276{bottom:418.386667pt;}
.y1c_c00276{bottom:437.920000pt;}
.y1b_c00276{bottom:457.453333pt;}
.y1a_c00276{bottom:477.253333pt;}
.y19_c00276{bottom:496.453333pt;}
.y18_c00276{bottom:516.000000pt;}
.y17_c00276{bottom:535.186667pt;}
.y16_c00276{bottom:554.720000pt;}
.y15_c00276{bottom:573.920000pt;}
.y14_c00276{bottom:593.720000pt;}
.y13_c00276{bottom:612.920000pt;}
.y12_c00276{bottom:632.186667pt;}
.y11_c00276{bottom:652.333333pt;}
.y10_c00276{bottom:673.120000pt;}
.yf_c00276{bottom:690.720000pt;}
.ye_c00276{bottom:710.853333pt;}
.yd_c00276{bottom:730.053333pt;}
.yc_c00276{bottom:749.600000pt;}
.yb_c00276{bottom:770.720000pt;}
.ya_c00276{bottom:789.266667pt;}
.y9_c00276{bottom:808.133333pt;}
.y8_c00276{bottom:826.720000pt;}
.y7_c00276{bottom:846.600000pt;}
.y6_c00276{bottom:865.133333pt;}
.y5_c00276{bottom:884.000000pt;}
.y4_c00276{bottom:902.520000pt;}
.y3_c00276{bottom:905.000000pt;}
.y2_c00276{bottom:907.000000pt;}
.y1_c00276{bottom:924.000000pt;}
.h2_c00276{height:57.578125pt;}
.h1_c00276{height:62.812500pt;}
.h0_c00276{height:1044.000000pt;}
.w0_c00276{width:650.646400pt;}
.w1_c00276{width:650.666667pt;}
.x0_c00276{left:0.000000pt;}
.x7_c00276{left:53.435733pt;}
.x5_c00276{left:54.702400pt;}
.x1_c00276{left:55.635733pt;}
.xc_c00276{left:81.235733pt;}
.x6_c00276{left:83.155733pt;}
.x4_c00276{left:84.435733pt;}
.xa_c00276{left:106.835733pt;}
.xd_c00276{left:170.222400pt;}
.xb_c00276{left:191.969067pt;}
.xe_c00276{left:206.702400pt;}
.x2_c00276{left:237.769067pt;}
.x3_c00276{left:240.635733pt;}
.x8_c00276{left:284.169067pt;}
.x9_c00276{left:363.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_80d0c7d10360f9331f83e110.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00277;src:url('chunks/assets/font_e29ecb84060a6e788fad48d1.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m18_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);}
.me_c00277{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m17_c00277{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m0_c00277{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m11_c00277{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00277{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m16_c00277{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12_c00277{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00277{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00277{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00277{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c00277{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00277{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c00277{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00277{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c00277{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c00277{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c00277{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c00277{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c00277{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc_c00277{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00277{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4_c00277{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m15_c00277{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1_c00277{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls0_c00277{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00277{word-spacing:0.000000px;}
.fc0_c00277{color:transparent;}
.fs1_c00277{font-size:60.000000px;}
.fs0_c00277{font-size:66.000000px;}
.fs2_c00277{font-size:72.000000px;}
.fs3_c00277{font-size:78.000000px;}
.y0_c00277{bottom:0.000000px;}
.y34_c00277{bottom:95.250000px;}
.y33_c00277{bottom:103.875000px;}
.y32_c00277{bottom:116.460000px;}
.y31_c00277{bottom:125.460000px;}
.y30_c00277{bottom:125.835000px;}
.y2f_c00277{bottom:137.685000px;}
.y2e_c00277{bottom:163.935000px;}
.y2d_c00277{bottom:180.510000px;}
.y2c_c00277{bottom:202.875000px;}
.y2b_c00277{bottom:224.835000px;}
.y2a_c00277{bottom:246.060000px;}
.y29_c00277{bottom:267.285000px;}
.y28_c00277{bottom:288.900000px;}
.y26_c00277{bottom:309.060000px;}
.y27_c00277{bottom:310.125000px;}
.y25_c00277{bottom:310.875000px;}
.y24_c00277{bottom:331.710000px;}
.y23_c00277{bottom:353.310000px;}
.y22_c00277{bottom:374.910000px;}
.y21_c00277{bottom:396.900000px;}
.y20_c00277{bottom:418.500000px;}
.y1f_c00277{bottom:439.785000px;}
.y1e_c00277{bottom:461.685000px;}
.y1d_c00277{bottom:483.000000px;}
.y1c_c00277{bottom:504.510000px;}
.y1b_c00277{bottom:526.125000px;}
.y1a_c00277{bottom:547.335000px;}
.y19_c00277{bottom:569.010000px;}
.y17_c00277{bottom:590.250000px;}
.y18_c00277{bottom:592.035000px;}
.y16_c00277{bottom:612.135000px;}
.y15_c00277{bottom:633.750000px;}
.y14_c00277{bottom:655.035000px;}
.y13_c00277{bottom:676.635000px;}
.y12_c00277{bottom:698.250000px;}
.y11_c00277{bottom:719.760000px;}
.y10_c00277{bottom:741.450000px;}
.yf_c00277{bottom:762.660000px;}
.ye_c00277{bottom:784.260000px;}
.yd_c00277{bottom:805.500000px;}
.yc_c00277{bottom:826.710000px;}
.yb_c00277{bottom:847.650000px;}
.ya_c00277{bottom:868.875000px;}
.y9_c00277{bottom:890.460000px;}
.y8_c00277{bottom:912.375000px;}
.y7_c00277{bottom:1020.750000px;}
.y4_c00277{bottom:1042.050000px;}
.y6_c00277{bottom:1043.775000px;}
.y5_c00277{bottom:1044.210000px;}
.y1_c00277{bottom:1092.375000px;}
.y3_c00277{bottom:1100.685000px;}
.y2_c00277{bottom:1107.750000px;}
.h2_c00277{height:58.886719px;}
.h1_c00277{height:64.775391px;}
.h5_c00277{height:66.515625px;}
.h3_c00277{height:70.664062px;}
.h4_c00277{height:78.609375px;}
.h0_c00277{height:1174.500000px;}
.w0_c00277{width:731.977200px;}
.w1_c00277{width:732.000000px;}
.x0_c00277{left:0.000000px;}
.x4_c00277{left:47.890200px;}
.x9_c00277{left:48.940200px;}
.xc_c00277{left:50.740200px;}
.xb_c00277{left:51.790200px;}
.xd_c00277{left:52.915200px;}
.x10_c00277{left:53.965200px;}
.x11_c00277{left:55.090200px;}
.x12_c00277{left:57.190200px;}
.x13_c00277{left:58.315200px;}
.x14_c00277{left:59.740200px;}
.x1_c00277{left:67.690200px;}
.x18_c00277{left:74.515200px;}
.x16_c00277{left:76.675200px;}
.x8_c00277{left:80.290200px;}
.x7_c00277{left:82.765200px;}
.x17_c00277{left:85.300200px;}
.x15_c00277{left:90.340200px;}
.x2_c00277{left:94.315200px;}
.x19_c00277{left:109.090200px;}
.x3_c00277{left:265.690200px;}
.xe_c00277{left:525.190200px;}
.x5_c00277{left:530.290200px;}
.x6_c00277{left:563.365200px;}
.xa_c00277{left:628.915200px;}
.xf_c00277{left:636.115200px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls0_c00277{letter-spacing:0.000000pt;}
.ws0_c00277{word-spacing:0.000000pt;}
.fs1_c00277{font-size:53.333333pt;}
.fs0_c00277{font-size:58.666667pt;}
.fs2_c00277{font-size:64.000000pt;}
.fs3_c00277{font-size:69.333333pt;}
.y0_c00277{bottom:0.000000pt;}
.y34_c00277{bottom:84.666667pt;}
.y33_c00277{bottom:92.333333pt;}
.y32_c00277{bottom:103.520000pt;}
.y31_c00277{bottom:111.520000pt;}
.y30_c00277{bottom:111.853333pt;}
.y2f_c00277{bottom:122.386667pt;}
.y2e_c00277{bottom:145.720000pt;}
.y2d_c00277{bottom:160.453333pt;}
.y2c_c00277{bottom:180.333333pt;}
.y2b_c00277{bottom:199.853333pt;}
.y2a_c00277{bottom:218.720000pt;}
.y29_c00277{bottom:237.586667pt;}
.y28_c00277{bottom:256.800000pt;}
.y26_c00277{bottom:274.720000pt;}
.y27_c00277{bottom:275.666667pt;}
.y25_c00277{bottom:276.333333pt;}
.y24_c00277{bottom:294.853333pt;}
.y23_c00277{bottom:314.053333pt;}
.y22_c00277{bottom:333.253333pt;}
.y21_c00277{bottom:352.800000pt;}
.y20_c00277{bottom:372.000000pt;}
.y1f_c00277{bottom:390.920000pt;}
.y1e_c00277{bottom:410.386667pt;}
.y1d_c00277{bottom:429.333333pt;}
.y1c_c00277{bottom:448.453333pt;}
.y1b_c00277{bottom:467.666667pt;}
.y1a_c00277{bottom:486.520000pt;}
.y19_c00277{bottom:505.786667pt;}
.y17_c00277{bottom:524.666667pt;}
.y18_c00277{bottom:526.253333pt;}
.y16_c00277{bottom:544.120000pt;}
.y15_c00277{bottom:563.333333pt;}
.y14_c00277{bottom:582.253333pt;}
.y13_c00277{bottom:601.453333pt;}
.y12_c00277{bottom:620.666667pt;}
.y11_c00277{bottom:639.786667pt;}
.y10_c00277{bottom:659.066667pt;}
.yf_c00277{bottom:677.920000pt;}
.ye_c00277{bottom:697.120000pt;}
.yd_c00277{bottom:716.000000pt;}
.yc_c00277{bottom:734.853333pt;}
.yb_c00277{bottom:753.466667pt;}
.ya_c00277{bottom:772.333333pt;}
.y9_c00277{bottom:791.520000pt;}
.y8_c00277{bottom:811.000000pt;}
.y7_c00277{bottom:907.333333pt;}
.y4_c00277{bottom:926.266667pt;}
.y6_c00277{bottom:927.800000pt;}
.y5_c00277{bottom:928.186667pt;}
.y1_c00277{bottom:971.000000pt;}
.y3_c00277{bottom:978.386667pt;}
.y2_c00277{bottom:984.666667pt;}
.h2_c00277{height:52.343750pt;}
.h1_c00277{height:57.578125pt;}
.h5_c00277{height:59.125000pt;}
.h3_c00277{height:62.812500pt;}
.h4_c00277{height:69.875000pt;}
.h0_c00277{height:1044.000000pt;}
.w0_c00277{width:650.646400pt;}
.w1_c00277{width:650.666667pt;}
.x0_c00277{left:0.000000pt;}
.x4_c00277{left:42.569067pt;}
.x9_c00277{left:43.502400pt;}
.xc_c00277{left:45.102400pt;}
.xb_c00277{left:46.035733pt;}
.xd_c00277{left:47.035733pt;}
.x10_c00277{left:47.969067pt;}
.x11_c00277{left:48.969067pt;}
.x12_c00277{left:50.835733pt;}
.x13_c00277{left:51.835733pt;}
.x14_c00277{left:53.102400pt;}
.x1_c00277{left:60.169067pt;}
.x18_c00277{left:66.235733pt;}
.x16_c00277{left:68.155733pt;}
.x8_c00277{left:71.369067pt;}
.x7_c00277{left:73.569067pt;}
.x17_c00277{left:75.822400pt;}
.x15_c00277{left:80.302400pt;}
.x2_c00277{left:83.835733pt;}
.x19_c00277{left:96.969067pt;}
.x3_c00277{left:236.169067pt;}
.xe_c00277{left:466.835733pt;}
.x5_c00277{left:471.369067pt;}
.x6_c00277{left:500.769067pt;}
.xa_c00277{left:559.035733pt;}
.xf_c00277{left:565.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_deb4829dd30fab6d210af61c.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00278;src:url('chunks/assets/font_cd60eae97b03ac9b1ec10be8.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00278{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m13_c00278{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c00278{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00278{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00278{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00278{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00278{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c00278{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00278{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c00278{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00278{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00278{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00278{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00278{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m14_c00278{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c00278{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00278{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c00278{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m17_c00278{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m16_c00278{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m18_c00278{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c00278{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m9_c00278{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m10_c00278{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m6_c00278{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.ls0_c00278{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00278{word-spacing:0.000000px;}
.fc0_c00278{color:transparent;}
.fs0_c00278{font-size:60.000000px;}
.fs1_c00278{font-size:66.000000px;}
.fs2_c00278{font-size:72.000000px;}
.y0_c00278{bottom:0.000000px;}
.y3d_c00278{bottom:80.760000px;}
.y3e_c00278{bottom:81.510000px;}
.y3f_c00278{bottom:84.000000px;}
.y3b_c00278{bottom:105.660000px;}
.y3c_c00278{bottom:109.935000px;}
.y39_c00278{bottom:124.710000px;}
.y3a_c00278{bottom:127.260000px;}
.y37_c00278{bottom:147.810000px;}
.y38_c00278{bottom:152.085000px;}
.y36_c00278{bottom:170.085000px;}
.y35_c00278{bottom:188.460000px;}
.y32_c00278{bottom:209.385000px;}
.y33_c00278{bottom:210.060000px;}
.y34_c00278{bottom:212.910000px;}
.y30_c00278{bottom:231.285000px;}
.y31_c00278{bottom:233.085000px;}
.y2f_c00278{bottom:253.275000px;}
.y2e_c00278{bottom:273.060000px;}
.y2d_c00278{bottom:295.410000px;}
.y2c_c00278{bottom:317.310000px;}
.y2b_c00278{bottom:338.910000px;}
.y2a_c00278{bottom:359.460000px;}
.y29_c00278{bottom:381.060000px;}
.y28_c00278{bottom:402.660000px;}
.y27_c00278{bottom:424.260000px;}
.y26_c00278{bottom:445.875000px;}
.y25_c00278{bottom:468.210000px;}
.y24_c00278{bottom:490.125000px;}
.y23_c00278{bottom:512.085000px;}
.y22_c00278{bottom:533.685000px;}
.y21_c00278{bottom:555.660000px;}
.y20_c00278{bottom:577.635000px;}
.y1f_c00278{bottom:599.250000px;}
.y1e_c00278{bottom:620.835000px;}
.y1d_c00278{bottom:642.750000px;}
.y1c_c00278{bottom:665.085000px;}
.y1b_c00278{bottom:686.310000px;}
.y1a_c00278{bottom:708.000000px;}
.y19_c00278{bottom:729.510000px;}
.y18_c00278{bottom:730.260000px;}
.y17_c00278{bottom:731.010000px;}
.y16_c00278{bottom:751.875000px;}
.y15_c00278{bottom:774.135000px;}
.y14_c00278{bottom:794.310000px;}
.y13_c00278{bottom:794.685000px;}
.y12_c00278{bottom:796.500000px;}
.y11_c00278{bottom:818.460000px;}
.y10_c00278{bottom:840.435000px;}
.yf_c00278{bottom:862.335000px;}
.ye_c00278{bottom:884.685000px;}
.yd_c00278{bottom:905.625000px;}
.yc_c00278{bottom:907.050000px;}
.yb_c00278{bottom:924.000000px;}
.ya_c00278{bottom:927.525000px;}
.y9_c00278{bottom:951.000000px;}
.y8_c00278{bottom:970.050000px;}
.y7_c00278{bottom:973.650000px;}
.y6_c00278{bottom:992.685000px;}
.y5_c00278{bottom:1013.925000px;}
.y4_c00278{bottom:1017.525000px;}
.y3_c00278{bottom:1034.775000px;}
.y2_c00278{bottom:1038.060000px;}
.y1_c00278{bottom:1098.210000px;}
.h1_c00278{height:60.468750px;}
.h3_c00278{height:64.775391px;}
.h2_c00278{height:66.515625px;}
.h4_c00278{height:70.664062px;}
.h0_c00278{height:1174.500000px;}
.w0_c00278{width:731.977200px;}
.w1_c00278{width:732.000000px;}
.x0_c00278{left:0.000000px;}
.xa_c00278{left:57.940200px;}
.x2_c00278{left:58.990200px;}
.x6_c00278{left:60.115200px;}
.xf_c00278{left:61.540200px;}
.x11_c00278{left:62.965200px;}
.x12_c00278{left:64.090200px;}
.x13_c00278{left:65.140200px;}
.x18_c00278{left:67.990200px;}
.x7_c00278{left:92.140200px;}
.x10_c00278{left:93.550200px;}
.x5_c00278{left:95.365200px;}
.x14_c00278{left:97.540200px;}
.x19_c00278{left:98.965200px;}
.x16_c00278{left:103.990200px;}
.x9_c00278{left:116.965200px;}
.x1c_c00278{left:120.190200px;}
.x1d_c00278{left:142.540200px;}
.x4_c00278{left:162.715200px;}
.x15_c00278{left:291.190200px;}
.x1_c00278{left:304.165200px;}
.x17_c00278{left:344.890200px;}
.xd_c00278{left:462.565200px;}
.xe_c00278{left:477.340200px;}
.x3_c00278{left:541.765200px;}
.xb_c00278{left:578.890200px;}
.x1a_c00278{left:580.990200px;}
.x1b_c00278{left:606.940200px;}
.xc_c00278{left:621.340200px;}
.x8_c00278{left:631.765200px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls0_c00278{letter-spacing:0.000000pt;}
.ws0_c00278{word-spacing:0.000000pt;}
.fs0_c00278{font-size:53.333333pt;}
.fs1_c00278{font-size:58.666667pt;}
.fs2_c00278{font-size:64.000000pt;}
.y0_c00278{bottom:0.000000pt;}
.y3d_c00278{bottom:71.786667pt;}
.y3e_c00278{bottom:72.453333pt;}
.y3f_c00278{bottom:74.666667pt;}
.y3b_c00278{bottom:93.920000pt;}
.y3c_c00278{bottom:97.720000pt;}
.y39_c00278{bottom:110.853333pt;}
.y3a_c00278{bottom:113.120000pt;}
.y37_c00278{bottom:131.386667pt;}
.y38_c00278{bottom:135.186667pt;}
.y36_c00278{bottom:151.186667pt;}
.y35_c00278{bottom:167.520000pt;}
.y32_c00278{bottom:186.120000pt;}
.y33_c00278{bottom:186.720000pt;}
.y34_c00278{bottom:189.253333pt;}
.y30_c00278{bottom:205.586667pt;}
.y31_c00278{bottom:207.186667pt;}
.y2f_c00278{bottom:225.133333pt;}
.y2e_c00278{bottom:242.720000pt;}
.y2d_c00278{bottom:262.586667pt;}
.y2c_c00278{bottom:282.053333pt;}
.y2b_c00278{bottom:301.253333pt;}
.y2a_c00278{bottom:319.520000pt;}
.y29_c00278{bottom:338.720000pt;}
.y28_c00278{bottom:357.920000pt;}
.y27_c00278{bottom:377.120000pt;}
.y26_c00278{bottom:396.333333pt;}
.y25_c00278{bottom:416.186667pt;}
.y24_c00278{bottom:435.666667pt;}
.y23_c00278{bottom:455.186667pt;}
.y22_c00278{bottom:474.386667pt;}
.y21_c00278{bottom:493.920000pt;}
.y20_c00278{bottom:513.453333pt;}
.y1f_c00278{bottom:532.666667pt;}
.y1e_c00278{bottom:551.853333pt;}
.y1d_c00278{bottom:571.333333pt;}
.y1c_c00278{bottom:591.186667pt;}
.y1b_c00278{bottom:610.053333pt;}
.y1a_c00278{bottom:629.333333pt;}
.y19_c00278{bottom:648.453333pt;}
.y18_c00278{bottom:649.120000pt;}
.y17_c00278{bottom:649.786667pt;}
.y16_c00278{bottom:668.333333pt;}
.y15_c00278{bottom:688.120000pt;}
.y14_c00278{bottom:706.053333pt;}
.y13_c00278{bottom:706.386667pt;}
.y12_c00278{bottom:708.000000pt;}
.y11_c00278{bottom:727.520000pt;}
.y10_c00278{bottom:747.053333pt;}
.yf_c00278{bottom:766.520000pt;}
.ye_c00278{bottom:786.386667pt;}
.yd_c00278{bottom:805.000000pt;}
.yc_c00278{bottom:806.266667pt;}
.yb_c00278{bottom:821.333333pt;}
.ya_c00278{bottom:824.466667pt;}
.y9_c00278{bottom:845.333333pt;}
.y8_c00278{bottom:862.266667pt;}
.y7_c00278{bottom:865.466667pt;}
.y6_c00278{bottom:882.386667pt;}
.y5_c00278{bottom:901.266667pt;}
.y4_c00278{bottom:904.466667pt;}
.y3_c00278{bottom:919.800000pt;}
.y2_c00278{bottom:922.720000pt;}
.y1_c00278{bottom:976.186667pt;}
.h1_c00278{height:53.750000pt;}
.h3_c00278{height:57.578125pt;}
.h2_c00278{height:59.125000pt;}
.h4_c00278{height:62.812500pt;}
.h0_c00278{height:1044.000000pt;}
.w0_c00278{width:650.646400pt;}
.w1_c00278{width:650.666667pt;}
.x0_c00278{left:0.000000pt;}
.xa_c00278{left:51.502400pt;}
.x2_c00278{left:52.435733pt;}
.x6_c00278{left:53.435733pt;}
.xf_c00278{left:54.702400pt;}
.x11_c00278{left:55.969067pt;}
.x12_c00278{left:56.969067pt;}
.x13_c00278{left:57.902400pt;}
.x18_c00278{left:60.435733pt;}
.x7_c00278{left:81.902400pt;}
.x10_c00278{left:83.155733pt;}
.x5_c00278{left:84.769067pt;}
.x14_c00278{left:86.702400pt;}
.x19_c00278{left:87.969067pt;}
.x16_c00278{left:92.435733pt;}
.x9_c00278{left:103.969067pt;}
.x1c_c00278{left:106.835733pt;}
.x1d_c00278{left:126.702400pt;}
.x4_c00278{left:144.635733pt;}
.x15_c00278{left:258.835733pt;}
.x1_c00278{left:270.369067pt;}
.x17_c00278{left:306.569067pt;}
.xd_c00278{left:411.169067pt;}
.xe_c00278{left:424.302400pt;}
.x3_c00278{left:481.569067pt;}
.xb_c00278{left:514.569067pt;}
.x1a_c00278{left:516.435733pt;}
.x1b_c00278{left:539.502400pt;}
.xc_c00278{left:552.302400pt;}
.x8_c00278{left:561.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bfd4921b4cdeed3115d3cd94.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00279{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00279{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c00279{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00279{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00279{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3_c00279{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c00279{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c00279{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00279{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00279{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00279{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c00279{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c00279{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7_c00279{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8_c00279{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m10_c00279{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c00279{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc_c00279{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.md_c00279{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00279{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.ls0_c00279{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00279{word-spacing:0.000000px;}
.fc0_c00279{color:transparent;}
.fs0_c00279{font-size:60.000000px;}
.fs1_c00279{font-size:66.000000px;}
.y0_c00279{bottom:0.000000px;}
.y32_c00279{bottom:92.310000px;}
.y31_c00279{bottom:113.535000px;}
.y30_c00279{bottom:133.785000px;}
.y2f_c00279{bottom:141.000000px;}
.y2e_c00279{bottom:153.885000px;}
.y2d_c00279{bottom:175.875000px;}
.y2c_c00279{bottom:197.460000px;}
.y2b_c00279{bottom:219.060000px;}
.y2a_c00279{bottom:240.960000px;}
.y29_c00279{bottom:264.810000px;}
.y28_c00279{bottom:283.875000px;}
.y27_c00279{bottom:305.460000px;}
.y26_c00279{bottom:327.435000px;}
.y25_c00279{bottom:348.660000px;}
.y24_c00279{bottom:370.275000px;}
.y23_c00279{bottom:391.875000px;}
.y22_c00279{bottom:414.135000px;}
.y21_c00279{bottom:435.435000px;}
.y20_c00279{bottom:457.335000px;}
.y1f_c00279{bottom:478.935000px;}
.y1e_c00279{bottom:500.535000px;}
.y1d_c00279{bottom:521.760000px;}
.y1c_c00279{bottom:543.060000px;}
.y1b_c00279{bottom:564.660000px;}
.y1a_c00279{bottom:586.260000px;}
.y19_c00279{bottom:607.875000px;}
.y18_c00279{bottom:629.460000px;}
.y17_c00279{bottom:651.060000px;}
.y16_c00279{bottom:672.660000px;}
.y15_c00279{bottom:694.560000px;}
.y14_c00279{bottom:715.785000px;}
.y13_c00279{bottom:737.460000px;}
.y12_c00279{bottom:759.075000px;}
.y11_c00279{bottom:780.960000px;}
.y10_c00279{bottom:802.185000px;}
.yf_c00279{bottom:818.460000px;}
.ye_c00279{bottom:844.425000px;}
.yd_c00279{bottom:866.025000px;}
.yc_c00279{bottom:886.875000px;}
.yb_c00279{bottom:909.210000px;}
.ya_c00279{bottom:924.675000px;}
.y8_c00279{bottom:951.300000px;}
.y9_c00279{bottom:953.400000px;}
.y7_c00279{bottom:973.275000px;}
.y6_c00279{bottom:994.800000px;}
.y5_c00279{bottom:1015.800000px;}
.y4_c00279{bottom:1036.275000px;}
.y1_c00279{bottom:1085.550000px;}
.y3_c00279{bottom:1094.250000px;}
.y2_c00279{bottom:1100.310000px;}
.h1_c00279{height:58.886719px;}
.h2_c00279{height:64.775391px;}
.h0_c00279{height:1174.500000px;}
.w0_c00279{width:731.977200px;}
.w1_c00279{width:732.000000px;}
.x0_c00279{left:0.000000px;}
.xa_c00279{left:43.915200px;}
.x6_c00279{left:45.340200px;}
.x5_c00279{left:46.390200px;}
.x4_c00279{left:47.515200px;}
.xd_c00279{left:48.565200px;}
.xe_c00279{left:59.740200px;}
.x1_c00279{left:66.190200px;}
.x8_c00279{left:73.390200px;}
.xb_c00279{left:74.515200px;}
.x9_c00279{left:75.550200px;}
.xc_c00279{left:78.490200px;}
.xf_c00279{left:79.915200px;}
.x10_c00279{left:82.765200px;}
.x2_c00279{left:92.890200px;}
.x3_c00279{left:270.340200px;}
.x7_c00279{left:629.290200px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ws0_c00279{word-spacing:0.000000pt;}
.fs0_c00279{font-size:53.333333pt;}
.fs1_c00279{font-size:58.666667pt;}
.y0_c00279{bottom:0.000000pt;}
.y32_c00279{bottom:82.053333pt;}
.y31_c00279{bottom:100.920000pt;}
.y30_c00279{bottom:118.920000pt;}
.y2f_c00279{bottom:125.333333pt;}
.y2e_c00279{bottom:136.786667pt;}
.y2d_c00279{bottom:156.333333pt;}
.y2c_c00279{bottom:175.520000pt;}
.y2b_c00279{bottom:194.720000pt;}
.y2a_c00279{bottom:214.186667pt;}
.y29_c00279{bottom:235.386667pt;}
.y28_c00279{bottom:252.333333pt;}
.y27_c00279{bottom:271.520000pt;}
.y26_c00279{bottom:291.053333pt;}
.y25_c00279{bottom:309.920000pt;}
.y24_c00279{bottom:329.133333pt;}
.y23_c00279{bottom:348.333333pt;}
.y22_c00279{bottom:368.120000pt;}
.y21_c00279{bottom:387.053333pt;}
.y20_c00279{bottom:406.520000pt;}
.y1f_c00279{bottom:425.720000pt;}
.y1e_c00279{bottom:444.920000pt;}
.y1d_c00279{bottom:463.786667pt;}
.y1c_c00279{bottom:482.720000pt;}
.y1b_c00279{bottom:501.920000pt;}
.y1a_c00279{bottom:521.120000pt;}
.y19_c00279{bottom:540.333333pt;}
.y18_c00279{bottom:559.520000pt;}
.y17_c00279{bottom:578.720000pt;}
.y16_c00279{bottom:597.920000pt;}
.y15_c00279{bottom:617.386667pt;}
.y14_c00279{bottom:636.253333pt;}
.y13_c00279{bottom:655.520000pt;}
.y12_c00279{bottom:674.733333pt;}
.y11_c00279{bottom:694.186667pt;}
.y10_c00279{bottom:713.053333pt;}
.yf_c00279{bottom:727.520000pt;}
.ye_c00279{bottom:750.600000pt;}
.yd_c00279{bottom:769.800000pt;}
.yc_c00279{bottom:788.333333pt;}
.yb_c00279{bottom:808.186667pt;}
.ya_c00279{bottom:821.933333pt;}
.y8_c00279{bottom:845.600000pt;}
.y9_c00279{bottom:847.466667pt;}
.y7_c00279{bottom:865.133333pt;}
.y6_c00279{bottom:884.266667pt;}
.y5_c00279{bottom:902.933333pt;}
.y4_c00279{bottom:921.133333pt;}
.y1_c00279{bottom:964.933333pt;}
.y3_c00279{bottom:972.666667pt;}
.y2_c00279{bottom:978.053333pt;}
.h1_c00279{height:52.343750pt;}
.h2_c00279{height:57.578125pt;}
.h0_c00279{height:1044.000000pt;}
.w0_c00279{width:650.646400pt;}
.w1_c00279{width:650.666667pt;}
.x0_c00279{left:0.000000pt;}
.xa_c00279{left:39.035733pt;}
.x6_c00279{left:40.302400pt;}
.x5_c00279{left:41.235733pt;}
.x4_c00279{left:42.235733pt;}
.xd_c00279{left:43.169067pt;}
.xe_c00279{left:53.102400pt;}
.x1_c00279{left:58.835733pt;}
.x8_c00279{left:65.235733pt;}
.xb_c00279{left:66.235733pt;}
.x9_c00279{left:67.155733pt;}
.xc_c00279{left:69.769067pt;}
.xf_c00279{left:71.035733pt;}
.x10_c00279{left:73.569067pt;}
.x2_c00279{left:82.569067pt;}
.x3_c00279{left:240.302400pt;}
.x7_c00279{left:559.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15b6563e75c7b5cd20a0a29c.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00280;src:url('chunks/assets/font_0eb4e15997aa8a545b6752ce.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00280;src:url('chunks/assets/font_fd6dbb0d54e8151dcde902ae.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00280{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m17_c00280{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2_c00280{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m15_c00280{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c00280{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m16_c00280{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c00280{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00280{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00280{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00280{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m13_c00280{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00280{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00280{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00280{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00280{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00280{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00280{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00280{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3_c00280{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00280{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c00280{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c00280{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00280{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c00280{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00280{vertical-align:0.000000px;}
.ls0_c00280{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00280{color:transparent;}
.fs0_c00280{font-size:48.000000px;}
.fs3_c00280{font-size:54.000000px;}
.fs4_c00280{font-size:60.000000px;}
.fs1_c00280{font-size:72.000000px;}
.fs2_c00280{font-size:78.000000px;}
.y0_c00280{bottom:0.000000px;}
.y27_c00280{bottom:418.125000px;}
.y29_c00280{bottom:421.710000px;}
.y2a_c00280{bottom:422.760000px;}
.y2b_c00280{bottom:423.135000px;}
.y28_c00280{bottom:429.285000px;}
.y24_c00280{bottom:459.510000px;}
.y26_c00280{bottom:464.535000px;}
.y25_c00280{bottom:470.685000px;}
.y23_c00280{bottom:509.535000px;}
.y22_c00280{bottom:531.885000px;}
.y1f_c00280{bottom:552.060000px;}
.y20_c00280{bottom:552.435000px;}
.y21_c00280{bottom:553.875000px;}
.y1d_c00280{bottom:575.460000px;}
.y1e_c00280{bottom:577.635000px;}
.y1c_c00280{bottom:597.750000px;}
.y1b_c00280{bottom:619.710000px;}
.y1a_c00280{bottom:641.685000px;}
.y19_c00280{bottom:663.285000px;}
.y18_c00280{bottom:685.260000px;}
.y15_c00280{bottom:707.250000px;}
.y17_c00280{bottom:707.535000px;}
.y16_c00280{bottom:707.625000px;}
.y14_c00280{bottom:729.135000px;}
.y13_c00280{bottom:750.750000px;}
.y12_c00280{bottom:751.125000px;}
.y11_c00280{bottom:773.085000px;}
.y10_c00280{bottom:794.310000px;}
.yf_c00280{bottom:795.060000px;}
.ye_c00280{bottom:817.050000px;}
.yd_c00280{bottom:839.685000px;}
.yc_c00280{bottom:861.300000px;}
.yb_c00280{bottom:882.900000px;}
.ya_c00280{bottom:904.500000px;}
.y9_c00280{bottom:925.710000px;}
.y8_c00280{bottom:947.310000px;}
.y7_c00280{bottom:968.925000px;}
.y6_c00280{bottom:990.900000px;}
.y5_c00280{bottom:1013.175000px;}
.y4_c00280{bottom:1034.775000px;}
.y3_c00280{bottom:1092.810000px;}
.y1_c00280{bottom:1095.675000px;}
.y2_c00280{bottom:1106.250000px;}
.h1_c00280{height:47.109375px;}
.h4_c00280{height:55.503491px;}
.h5_c00280{height:58.886719px;}
.h2_c00280{height:70.664062px;}
.h3_c00280{height:76.514648px;}
.h0_c00280{height:1174.500000px;}
.w0_c00280{width:731.977200px;}
.w1_c00280{width:732.000000px;}
.x0_c00280{left:0.000000px;}
.x5_c00280{left:51.790200px;}
.x6_c00280{left:52.915200px;}
.x4_c00280{left:84.550200px;}
.xa_c00280{left:85.990200px;}
.xe_c00280{left:101.890200px;}
.x12_c00280{left:118.765200px;}
.xf_c00280{left:121.315200px;}
.x10_c00280{left:217.090200px;}
.x1_c00280{left:268.540200px;}
.x13_c00280{left:315.715200px;}
.x14_c00280{left:409.690200px;}
.xb_c00280{left:434.140200px;}
.xc_c00280{left:461.890200px;}
.x2_c00280{left:465.115200px;}
.x11_c00280{left:506.515200px;}
.x9_c00280{left:521.965200px;}
.x15_c00280{left:539.590200px;}
.x16_c00280{left:566.290200px;}
.x3_c00280{left:629.290200px;}
.x7_c00280{left:642.190200px;}
.xd_c00280{left:644.740200px;}
.x8_c00280{left:660.940200px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls0_c00280{letter-spacing:0.000000pt;}
.ws0_c00280{word-spacing:0.000000pt;}
.fs0_c00280{font-size:42.666667pt;}
.fs3_c00280{font-size:48.000000pt;}
.fs4_c00280{font-size:53.333333pt;}
.fs1_c00280{font-size:64.000000pt;}
.fs2_c00280{font-size:69.333333pt;}
.y0_c00280{bottom:0.000000pt;}
.y27_c00280{bottom:371.666667pt;}
.y29_c00280{bottom:374.853333pt;}
.y2a_c00280{bottom:375.786667pt;}
.y2b_c00280{bottom:376.120000pt;}
.y28_c00280{bottom:381.586667pt;}
.y24_c00280{bottom:408.453333pt;}
.y26_c00280{bottom:412.920000pt;}
.y25_c00280{bottom:418.386667pt;}
.y23_c00280{bottom:452.920000pt;}
.y22_c00280{bottom:472.786667pt;}
.y1f_c00280{bottom:490.720000pt;}
.y20_c00280{bottom:491.053333pt;}
.y21_c00280{bottom:492.333333pt;}
.y1d_c00280{bottom:511.520000pt;}
.y1e_c00280{bottom:513.453333pt;}
.y1c_c00280{bottom:531.333333pt;}
.y1b_c00280{bottom:550.853333pt;}
.y1a_c00280{bottom:570.386667pt;}
.y19_c00280{bottom:589.586667pt;}
.y18_c00280{bottom:609.120000pt;}
.y15_c00280{bottom:628.666667pt;}
.y17_c00280{bottom:628.920000pt;}
.y16_c00280{bottom:629.000000pt;}
.y14_c00280{bottom:648.120000pt;}
.y13_c00280{bottom:667.333333pt;}
.y12_c00280{bottom:667.666667pt;}
.y11_c00280{bottom:687.186667pt;}
.y10_c00280{bottom:706.053333pt;}
.yf_c00280{bottom:706.720000pt;}
.ye_c00280{bottom:726.266667pt;}
.yd_c00280{bottom:746.386667pt;}
.yc_c00280{bottom:765.600000pt;}
.yb_c00280{bottom:784.800000pt;}
.ya_c00280{bottom:804.000000pt;}
.y9_c00280{bottom:822.853333pt;}
.y8_c00280{bottom:842.053333pt;}
.y7_c00280{bottom:861.266667pt;}
.y6_c00280{bottom:880.800000pt;}
.y5_c00280{bottom:900.600000pt;}
.y4_c00280{bottom:919.800000pt;}
.y3_c00280{bottom:971.386667pt;}
.y1_c00280{bottom:973.933333pt;}
.y2_c00280{bottom:983.333333pt;}
.h1_c00280{height:41.875000pt;}
.h4_c00280{height:49.336436pt;}
.h5_c00280{height:52.343750pt;}
.h2_c00280{height:62.812500pt;}
.h3_c00280{height:68.013021pt;}
.h0_c00280{height:1044.000000pt;}
.w0_c00280{width:650.646400pt;}
.w1_c00280{width:650.666667pt;}
.x0_c00280{left:0.000000pt;}
.x5_c00280{left:46.035733pt;}
.x6_c00280{left:47.035733pt;}
.x4_c00280{left:75.155733pt;}
.xa_c00280{left:76.435733pt;}
.xe_c00280{left:90.569067pt;}
.x12_c00280{left:105.569067pt;}
.xf_c00280{left:107.835733pt;}
.x10_c00280{left:192.969067pt;}
.x1_c00280{left:238.702400pt;}
.x13_c00280{left:280.635733pt;}
.x14_c00280{left:364.169067pt;}
.xb_c00280{left:385.902400pt;}
.xc_c00280{left:410.569067pt;}
.x2_c00280{left:413.435733pt;}
.x11_c00280{left:450.235733pt;}
.x9_c00280{left:463.969067pt;}
.x15_c00280{left:479.635733pt;}
.x16_c00280{left:503.369067pt;}
.x3_c00280{left:559.369067pt;}
.x7_c00280{left:570.835733pt;}
.xd_c00280{left:573.102400pt;}
.x8_c00280{left:587.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d50477690a03bfc6b42a0d0.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00281;src:url('chunks/assets/font_e7e1bf0ed0d7dd9f8c9120cb.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00281;src:url('chunks/assets/font_0b9e6160355a03c2221fb9d7.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1b_c00281{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m4_c00281{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00281{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m0_c00281{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c00281{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m15_c00281{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00281{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00281{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m13_c00281{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00281{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00281{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00281{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00281{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00281{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00281{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00281{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00281{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00281{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00281{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00281{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m19_c00281{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c00281{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c00281{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00281{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16_c00281{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.md_c00281{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m17_c00281{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c00281{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me_c00281{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12_c00281{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m6_c00281{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1_c00281{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.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;}
}
.ws0_c00281{word-spacing:0.000000px;}
.fc0_c00281{color:transparent;}
.fs1_c00281{font-size:60.000000px;}
.fs0_c00281{font-size:66.000000px;}
.fs3_c00281{font-size:90.000000px;}
.fs2_c00281{font-size:240.000000px;}
.y0_c00281{bottom:0.000000px;}
.y3e_c00281{bottom:81.885000px;}
.y3d_c00281{bottom:95.160000px;}
.y3c_c00281{bottom:112.875000px;}
.y3b_c00281{bottom:133.710000px;}
.y3a_c00281{bottom:147.060000px;}
.y39_c00281{bottom:168.660000px;}
.y36_c00281{bottom:180.885000px;}
.y37_c00281{bottom:181.635000px;}
.y35_c00281{bottom:181.935000px;}
.y38_c00281{bottom:183.060000px;}
.y34_c00281{bottom:184.185000px;}
.y33_c00281{bottom:185.250000px;}
.y32_c00281{bottom:199.260000px;}
.y31_c00281{bottom:216.135000px;}
.y30_c00281{bottom:218.310000px;}
.y2f_c00281{bottom:219.750000px;}
.y2e_c00281{bottom:237.060000px;}
.y2c_c00281{bottom:250.035000px;}
.y2d_c00281{bottom:250.710000px;}
.y2b_c00281{bottom:251.460000px;}
.y2a_c00281{bottom:252.510000px;}
.y29_c00281{bottom:254.025000px;}
.y28_c00281{bottom:267.285000px;}
.y27_c00281{bottom:267.660000px;}
.y26_c00281{bottom:268.410000px;}
.y25_c00281{bottom:268.710000px;}
.y24_c00281{bottom:269.085000px;}
.y23_c00281{bottom:269.460000px;}
.y22_c00281{bottom:270.900000px;}
.y20_c00281{bottom:285.000000px;}
.y1f_c00281{bottom:285.285000px;}
.y21_c00281{bottom:286.035000px;}
.y1e_c00281{bottom:287.775000px;}
.y1d_c00281{bottom:288.900000px;}
.y1c_c00281{bottom:301.500000px;}
.y1b_c00281{bottom:302.625000px;}
.y1a_c00281{bottom:302.910000px;}
.y19_c00281{bottom:303.660000px;}
.y18_c00281{bottom:320.535000px;}
.y17_c00281{bottom:338.910000px;}
.y16_c00281{bottom:354.375000px;}
.y15_c00281{bottom:407.310000px;}
.y14_c00281{bottom:428.910000px;}
.y13_c00281{bottom:451.635000px;}
.y12_c00281{bottom:472.500000px;}
.y11_c00281{bottom:494.085000px;}
.y10_c00281{bottom:514.935000px;}
.yf_c00281{bottom:536.625000px;}
.ye_c00281{bottom:558.210000px;}
.yd_c00281{bottom:580.125000px;}
.yc_c00281{bottom:601.410000px;}
.yb_c00281{bottom:623.685000px;}
.ya_c00281{bottom:675.885000px;}
.y9_c00281{bottom:693.585000px;}
.y8_c00281{bottom:710.835000px;}
.y7_c00281{bottom:781.710000px;}
.y6_c00281{bottom:855.900000px;}
.y5_c00281{bottom:902.025000px;}
.y1_c00281{bottom:1078.050000px;}
.y3_c00281{bottom:1087.050000px;}
.y4_c00281{bottom:1088.835000px;}
.y2_c00281{bottom:1094.625000px;}
.h2_c00281{height:58.886719px;}
.h6_c00281{height:60.468750px;}
.h5_c00281{height:64.743164px;}
.h1_c00281{height:64.775391px;}
.h4_c00281{height:90.703125px;}
.h3_c00281{height:235.546875px;}
.h0_c00281{height:1174.500000px;}
.w0_c00281{width:731.977200px;}
.w1_c00281{width:732.000000px;}
.x0_c00281{left:0.000000px;}
.x8_c00281{left:48.565200px;}
.xb_c00281{left:49.690200px;}
.xd_c00281{left:51.790200px;}
.x15_c00281{left:53.590200px;}
.xf_c00281{left:54.715200px;}
.x2e_c00281{left:56.515200px;}
.x2f_c00281{left:57.565200px;}
.x1_c00281{left:66.190200px;}
.xe_c00281{left:67.690200px;}
.x9_c00281{left:74.140200px;}
.x10_c00281{left:77.365200px;}
.xa_c00281{left:79.165200px;}
.x2d_c00281{left:80.590200px;}
.xc_c00281{left:82.390200px;}
.x16_c00281{left:88.540200px;}
.x2_c00281{left:92.890200px;}
.x5_c00281{left:100.090200px;}
.x27_c00281{left:112.990200px;}
.x21_c00281{left:129.190200px;}
.x1a_c00281{left:154.390200px;}
.x17_c00281{left:178.540200px;}
.x6_c00281{left:206.965200px;}
.x29_c00281{left:211.690200px;}
.x22_c00281{left:226.765200px;}
.x1b_c00281{left:239.365200px;}
.x28_c00281{left:243.715200px;}
.x7_c00281{left:262.765200px;}
.x11_c00281{left:266.740200px;}
.x3_c00281{left:267.790200px;}
.x23_c00281{left:319.690200px;}
.x1c_c00281{left:323.290200px;}
.x1d_c00281{left:325.390200px;}
.x12_c00281{left:341.965200px;}
.x1e_c00281{left:350.590200px;}
.x4_c00281{left:354.940200px;}
.x1f_c00281{left:418.990200px;}
.x13_c00281{left:442.765200px;}
.x24_c00281{left:448.540200px;}
.x2a_c00281{left:451.390200px;}
.x2b_c00281{left:503.290200px;}
.x25_c00281{left:539.965200px;}
.x18_c00281{left:568.090200px;}
.x14_c00281{left:593.290200px;}
.x26_c00281{left:609.490200px;}
.x19_c00281{left:646.540200px;}
.x20_c00281{left:649.390200px;}
.x2c_c00281{left:654.790200px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls0_c00281{letter-spacing:0.000000pt;}
.ws0_c00281{word-spacing:0.000000pt;}
.fs1_c00281{font-size:53.333333pt;}
.fs0_c00281{font-size:58.666667pt;}
.fs3_c00281{font-size:80.000000pt;}
.fs2_c00281{font-size:213.333333pt;}
.y0_c00281{bottom:0.000000pt;}
.y3e_c00281{bottom:72.786667pt;}
.y3d_c00281{bottom:84.586667pt;}
.y3c_c00281{bottom:100.333333pt;}
.y3b_c00281{bottom:118.853333pt;}
.y3a_c00281{bottom:130.720000pt;}
.y39_c00281{bottom:149.920000pt;}
.y36_c00281{bottom:160.786667pt;}
.y37_c00281{bottom:161.453333pt;}
.y35_c00281{bottom:161.720000pt;}
.y38_c00281{bottom:162.720000pt;}
.y34_c00281{bottom:163.720000pt;}
.y33_c00281{bottom:164.666667pt;}
.y32_c00281{bottom:177.120000pt;}
.y31_c00281{bottom:192.120000pt;}
.y30_c00281{bottom:194.053333pt;}
.y2f_c00281{bottom:195.333333pt;}
.y2e_c00281{bottom:210.720000pt;}
.y2c_c00281{bottom:222.253333pt;}
.y2d_c00281{bottom:222.853333pt;}
.y2b_c00281{bottom:223.520000pt;}
.y2a_c00281{bottom:224.453333pt;}
.y29_c00281{bottom:225.800000pt;}
.y28_c00281{bottom:237.586667pt;}
.y27_c00281{bottom:237.920000pt;}
.y26_c00281{bottom:238.586667pt;}
.y25_c00281{bottom:238.853333pt;}
.y24_c00281{bottom:239.186667pt;}
.y23_c00281{bottom:239.520000pt;}
.y22_c00281{bottom:240.800000pt;}
.y20_c00281{bottom:253.333333pt;}
.y1f_c00281{bottom:253.586667pt;}
.y21_c00281{bottom:254.253333pt;}
.y1e_c00281{bottom:255.800000pt;}
.y1d_c00281{bottom:256.800000pt;}
.y1c_c00281{bottom:268.000000pt;}
.y1b_c00281{bottom:269.000000pt;}
.y1a_c00281{bottom:269.253333pt;}
.y19_c00281{bottom:269.920000pt;}
.y18_c00281{bottom:284.920000pt;}
.y17_c00281{bottom:301.253333pt;}
.y16_c00281{bottom:315.000000pt;}
.y15_c00281{bottom:362.053333pt;}
.y14_c00281{bottom:381.253333pt;}
.y13_c00281{bottom:401.453333pt;}
.y12_c00281{bottom:420.000000pt;}
.y11_c00281{bottom:439.186667pt;}
.y10_c00281{bottom:457.720000pt;}
.yf_c00281{bottom:477.000000pt;}
.ye_c00281{bottom:496.186667pt;}
.yd_c00281{bottom:515.666667pt;}
.yc_c00281{bottom:534.586667pt;}
.yb_c00281{bottom:554.386667pt;}
.ya_c00281{bottom:600.786667pt;}
.y9_c00281{bottom:616.520000pt;}
.y8_c00281{bottom:631.853333pt;}
.y7_c00281{bottom:694.853333pt;}
.y6_c00281{bottom:760.800000pt;}
.y5_c00281{bottom:801.800000pt;}
.y1_c00281{bottom:958.266667pt;}
.y3_c00281{bottom:966.266667pt;}
.y4_c00281{bottom:967.853333pt;}
.y2_c00281{bottom:973.000000pt;}
.h2_c00281{height:52.343750pt;}
.h6_c00281{height:53.750000pt;}
.h5_c00281{height:57.549479pt;}
.h1_c00281{height:57.578125pt;}
.h4_c00281{height:80.625000pt;}
.h3_c00281{height:209.375000pt;}
.h0_c00281{height:1044.000000pt;}
.w0_c00281{width:650.646400pt;}
.w1_c00281{width:650.666667pt;}
.x0_c00281{left:0.000000pt;}
.x8_c00281{left:43.169067pt;}
.xb_c00281{left:44.169067pt;}
.xd_c00281{left:46.035733pt;}
.x15_c00281{left:47.635733pt;}
.xf_c00281{left:48.635733pt;}
.x2e_c00281{left:50.235733pt;}
.x2f_c00281{left:51.169067pt;}
.x1_c00281{left:58.835733pt;}
.xe_c00281{left:60.169067pt;}
.x9_c00281{left:65.902400pt;}
.x10_c00281{left:68.769067pt;}
.xa_c00281{left:70.369067pt;}
.x2d_c00281{left:71.635733pt;}
.xc_c00281{left:73.235733pt;}
.x16_c00281{left:78.702400pt;}
.x2_c00281{left:82.569067pt;}
.x5_c00281{left:88.969067pt;}
.x27_c00281{left:100.435733pt;}
.x21_c00281{left:114.835733pt;}
.x1a_c00281{left:137.235733pt;}
.x17_c00281{left:158.702400pt;}
.x6_c00281{left:183.969067pt;}
.x29_c00281{left:188.169067pt;}
.x22_c00281{left:201.569067pt;}
.x1b_c00281{left:212.769067pt;}
.x28_c00281{left:216.635733pt;}
.x7_c00281{left:233.569067pt;}
.x11_c00281{left:237.102400pt;}
.x3_c00281{left:238.035733pt;}
.x23_c00281{left:284.169067pt;}
.x1c_c00281{left:287.369067pt;}
.x1d_c00281{left:289.235733pt;}
.x12_c00281{left:303.969067pt;}
.x1e_c00281{left:311.635733pt;}
.x4_c00281{left:315.502400pt;}
.x1f_c00281{left:372.435733pt;}
.x13_c00281{left:393.569067pt;}
.x24_c00281{left:398.702400pt;}
.x2a_c00281{left:401.235733pt;}
.x2b_c00281{left:447.369067pt;}
.x25_c00281{left:479.969067pt;}
.x18_c00281{left:504.969067pt;}
.x14_c00281{left:527.369067pt;}
.x26_c00281{left:541.769067pt;}
.x19_c00281{left:574.702400pt;}
.x20_c00281{left:577.235733pt;}
.x2c_c00281{left:582.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75fdb6b9b6724e3e4bf63391.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00282;src:url('chunks/assets/font_db26f6adf99bf16f2eba5a6a.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00282;src:url('chunks/assets/font_8d797cf6d3a768dd50f9e075.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00282;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff4_c00282{font-family:ff4_c00282;line-height:1.575000;font-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_c00282{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.m1a_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);}
.m18_c00282{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m15_c00282{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2_c00282{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13_c00282{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c00282{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00282{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m17_c00282{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00282{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c00282{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00282{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m0_c00282{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00282{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00282{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00282{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c00282{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c00282{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5_c00282{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00282{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m6_c00282{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7_c00282{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3_c00282{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c00282{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.ma_c00282{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mb_c00282{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c00282{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me_c00282{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00282{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c00282{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.ls0_c00282{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00282{word-spacing:0.000000px;}
.fc0_c00282{color:transparent;}
.fs2_c00282{font-size:24.000000px;}
.fs0_c00282{font-size:60.000000px;}
.fs1_c00282{font-size:66.000000px;}
.y0_c00282{bottom:0.000000px;}
.y3a_c00282{bottom:66.375000px;}
.y34_c00282{bottom:83.685000px;}
.y35_c00282{bottom:84.060000px;}
.y36_c00282{bottom:84.435000px;}
.y37_c00282{bottom:85.785000px;}
.y38_c00282{bottom:88.035000px;}
.y39_c00282{bottom:90.135000px;}
.y33_c00282{bottom:101.685000px;}
.y32_c00282{bottom:134.760000px;}
.y31_c00282{bottom:134.835000px;}
.y30_c00282{bottom:180.510000px;}
.y2f_c00282{bottom:199.635000px;}
.y2d_c00282{bottom:220.500000px;}
.y2e_c00282{bottom:223.035000px;}
.y2c_c00282{bottom:243.135000px;}
.y2b_c00282{bottom:264.750000px;}
.y2a_c00282{bottom:286.035000px;}
.y28_c00282{bottom:306.900000px;}
.y29_c00282{bottom:309.375000px;}
.y27_c00282{bottom:329.535000px;}
.y26_c00282{bottom:350.085000px;}
.y25_c00282{bottom:372.375000px;}
.y24_c00282{bottom:392.535000px;}
.y23_c00282{bottom:415.635000px;}
.y22_c00282{bottom:436.125000px;}
.y21_c00282{bottom:458.835000px;}
.y20_c00282{bottom:480.435000px;}
.y1f_c00282{bottom:502.710000px;}
.y1d_c00282{bottom:523.635000px;}
.y1e_c00282{bottom:524.685000px;}
.y1c_c00282{bottom:546.660000px;}
.y1b_c00282{bottom:568.260000px;}
.y1a_c00282{bottom:590.250000px;}
.y19_c00282{bottom:611.835000px;}
.y18_c00282{bottom:633.750000px;}
.y17_c00282{bottom:656.835000px;}
.y16_c00282{bottom:676.935000px;}
.y15_c00282{bottom:677.310000px;}
.y14_c00282{bottom:678.435000px;}
.y13_c00282{bottom:699.660000px;}
.y12_c00282{bottom:723.750000px;}
.y11_c00282{bottom:743.535000px;}
.y10_c00282{bottom:765.885000px;}
.yf_c00282{bottom:787.875000px;}
.ye_c00282{bottom:809.460000px;}
.yd_c00282{bottom:833.925000px;}
.yc_c00282{bottom:854.460000px;}
.yb_c00282{bottom:876.375000px;}
.ya_c00282{bottom:897.300000px;}
.y9_c00282{bottom:919.935000px;}
.y8_c00282{bottom:940.125000px;}
.y7_c00282{bottom:961.335000px;}
.y6_c00282{bottom:982.650000px;}
.y5_c00282{bottom:1008.150000px;}
.y4_c00282{bottom:1026.525000px;}
.y3_c00282{bottom:1083.375000px;}
.y1_c00282{bottom:1086.675000px;}
.y2_c00282{bottom:1097.310000px;}
.h4_c00282{height:24.187500px;}
.h5_c00282{height:25.608000px;}
.h1_c00282{height:58.886719px;}
.h3_c00282{height:64.743164px;}
.h2_c00282{height:64.775391px;}
.h0_c00282{height:1174.500000px;}
.w0_c00282{width:731.977200px;}
.w1_c00282{width:732.000000px;}
.x0_c00282{left:0.000000px;}
.x5_c00282{left:54.715200px;}
.xa_c00282{left:56.890200px;}
.xb_c00282{left:58.315200px;}
.xf_c00282{left:60.490200px;}
.x13_c00282{left:61.540200px;}
.x14_c00282{left:67.990200px;}
.x15_c00282{left:71.590200px;}
.x16_c00282{left:73.765200px;}
.x19_c00282{left:79.540200px;}
.x17_c00282{left:84.550200px;}
.x4_c00282{left:85.990200px;}
.x6_c00282{left:87.115200px;}
.x7_c00282{left:89.290200px;}
.xe_c00282{left:90.715200px;}
.x10_c00282{left:92.515200px;}
.xd_c00282{left:107.290200px;}
.x1a_c00282{left:118.090200px;}
.x1b_c00282{left:128.515200px;}
.x12_c00282{left:213.790200px;}
.x18_c00282{left:257.740200px;}
.x1_c00282{left:269.590200px;}
.x11_c00282{left:331.165200px;}
.x8_c00282{left:424.765200px;}
.x1c_c00282{left:429.775200px;}
.x1d_c00282{left:465.490200px;}
.x2_c00282{left:469.090200px;}
.x9_c00282{left:519.790200px;}
.xc_c00282{left:630.715200px;}
.x3_c00282{left:633.565200px;}
.x1e_c00282{left:658.765200px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls0_c00282{letter-spacing:0.000000pt;}
.ws0_c00282{word-spacing:0.000000pt;}
.fs2_c00282{font-size:21.333333pt;}
.fs0_c00282{font-size:53.333333pt;}
.fs1_c00282{font-size:58.666667pt;}
.y0_c00282{bottom:0.000000pt;}
.y3a_c00282{bottom:59.000000pt;}
.y34_c00282{bottom:74.386667pt;}
.y35_c00282{bottom:74.720000pt;}
.y36_c00282{bottom:75.053333pt;}
.y37_c00282{bottom:76.253333pt;}
.y38_c00282{bottom:78.253333pt;}
.y39_c00282{bottom:80.120000pt;}
.y33_c00282{bottom:90.386667pt;}
.y32_c00282{bottom:119.786667pt;}
.y31_c00282{bottom:119.853333pt;}
.y30_c00282{bottom:160.453333pt;}
.y2f_c00282{bottom:177.453333pt;}
.y2d_c00282{bottom:196.000000pt;}
.y2e_c00282{bottom:198.253333pt;}
.y2c_c00282{bottom:216.120000pt;}
.y2b_c00282{bottom:235.333333pt;}
.y2a_c00282{bottom:254.253333pt;}
.y28_c00282{bottom:272.800000pt;}
.y29_c00282{bottom:275.000000pt;}
.y27_c00282{bottom:292.920000pt;}
.y26_c00282{bottom:311.186667pt;}
.y25_c00282{bottom:331.000000pt;}
.y24_c00282{bottom:348.920000pt;}
.y23_c00282{bottom:369.453333pt;}
.y22_c00282{bottom:387.666667pt;}
.y21_c00282{bottom:407.853333pt;}
.y20_c00282{bottom:427.053333pt;}
.y1f_c00282{bottom:446.853333pt;}
.y1d_c00282{bottom:465.453333pt;}
.y1e_c00282{bottom:466.386667pt;}
.y1c_c00282{bottom:485.920000pt;}
.y1b_c00282{bottom:505.120000pt;}
.y1a_c00282{bottom:524.666667pt;}
.y19_c00282{bottom:543.853333pt;}
.y18_c00282{bottom:563.333333pt;}
.y17_c00282{bottom:583.853333pt;}
.y16_c00282{bottom:601.720000pt;}
.y15_c00282{bottom:602.053333pt;}
.y14_c00282{bottom:603.053333pt;}
.y13_c00282{bottom:621.920000pt;}
.y12_c00282{bottom:643.333333pt;}
.y11_c00282{bottom:660.920000pt;}
.y10_c00282{bottom:680.786667pt;}
.yf_c00282{bottom:700.333333pt;}
.ye_c00282{bottom:719.520000pt;}
.yd_c00282{bottom:741.266667pt;}
.yc_c00282{bottom:759.520000pt;}
.yb_c00282{bottom:779.000000pt;}
.ya_c00282{bottom:797.600000pt;}
.y9_c00282{bottom:817.720000pt;}
.y8_c00282{bottom:835.666667pt;}
.y7_c00282{bottom:854.520000pt;}
.y6_c00282{bottom:873.466667pt;}
.y5_c00282{bottom:896.133333pt;}
.y4_c00282{bottom:912.466667pt;}
.y3_c00282{bottom:963.000000pt;}
.y1_c00282{bottom:965.933333pt;}
.y2_c00282{bottom:975.386667pt;}
.h4_c00282{height:21.500000pt;}
.h5_c00282{height:22.762667pt;}
.h1_c00282{height:52.343750pt;}
.h3_c00282{height:57.549479pt;}
.h2_c00282{height:57.578125pt;}
.h0_c00282{height:1044.000000pt;}
.w0_c00282{width:650.646400pt;}
.w1_c00282{width:650.666667pt;}
.x0_c00282{left:0.000000pt;}
.x5_c00282{left:48.635733pt;}
.xa_c00282{left:50.569067pt;}
.xb_c00282{left:51.835733pt;}
.xf_c00282{left:53.769067pt;}
.x13_c00282{left:54.702400pt;}
.x14_c00282{left:60.435733pt;}
.x15_c00282{left:63.635733pt;}
.x16_c00282{left:65.569067pt;}
.x19_c00282{left:70.702400pt;}
.x17_c00282{left:75.155733pt;}
.x4_c00282{left:76.435733pt;}
.x6_c00282{left:77.435733pt;}
.x7_c00282{left:79.369067pt;}
.xe_c00282{left:80.635733pt;}
.x10_c00282{left:82.235733pt;}
.xd_c00282{left:95.369067pt;}
.x1a_c00282{left:104.969067pt;}
.x1b_c00282{left:114.235733pt;}
.x12_c00282{left:190.035733pt;}
.x18_c00282{left:229.102400pt;}
.x1_c00282{left:239.635733pt;}
.x11_c00282{left:294.369067pt;}
.x8_c00282{left:377.569067pt;}
.x1c_c00282{left:382.022400pt;}
.x1d_c00282{left:413.769067pt;}
.x2_c00282{left:416.969067pt;}
.x9_c00282{left:462.035733pt;}
.xc_c00282{left:560.635733pt;}
.x3_c00282{left:563.169067pt;}
.x1e_c00282{left:585.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88881f47b3495cdf7a2496d5.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00283;src:url('chunks/assets/font_ce8e3101ccc8703d56702792.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00283;src:url('chunks/assets/font_261a87132f7d9c3f22651b37.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14_c00283{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0_c00283{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c00283{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c00283{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m13_c00283{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00283{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m16_c00283{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00283{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c00283{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m19_c00283{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c00283{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m18_c00283{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00283{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00283{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00283{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00283{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c00283{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c00283{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c00283{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c00283{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5_c00283{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3_c00283{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mf_c00283{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c00283{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma_c00283{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4_c00283{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00283{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls0_c00283{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00283{color:transparent;}
.fs1_c00283{font-size:60.000000px;}
.fs0_c00283{font-size:66.000000px;}
.fs3_c00283{font-size:72.000000px;}
.fs2_c00283{font-size:84.000000px;}
.y0_c00283{bottom:0.000000px;}
.y3b_c00283{bottom:91.185000px;}
.y3a_c00283{bottom:93.435000px;}
.y39_c00283{bottom:95.910000px;}
.y38_c00283{bottom:98.460000px;}
.y37_c00283{bottom:108.210000px;}
.y36_c00283{bottom:123.285000px;}
.y35_c00283{bottom:129.435000px;}
.y34_c00283{bottom:142.410000px;}
.y33_c00283{bottom:159.000000px;}
.y32_c00283{bottom:165.375000px;}
.y31_c00283{bottom:179.460000px;}
.y30_c00283{bottom:193.185000px;}
.y2f_c00283{bottom:198.885000px;}
.y2e_c00283{bottom:212.910000px;}
.y2d_c00283{bottom:228.435000px;}
.y2c_c00283{bottom:233.760000px;}
.y2b_c00283{bottom:250.410000px;}
.y2a_c00283{bottom:263.025000px;}
.y29_c00283{bottom:267.960000px;}
.y28_c00283{bottom:373.125000px;}
.y27_c00283{bottom:395.085000px;}
.y26_c00283{bottom:416.685000px;}
.y25_c00283{bottom:417.375000px;}
.y24_c00283{bottom:419.250000px;}
.y23_c00283{bottom:438.285000px;}
.y22_c00283{bottom:440.085000px;}
.y21_c00283{bottom:459.885000px;}
.y20_c00283{bottom:460.260000px;}
.y1f_c00283{bottom:461.310000px;}
.y1e_c00283{bottom:483.660000px;}
.y1d_c00283{bottom:504.210000px;}
.y1c_c00283{bottom:525.435000px;}
.y1b_c00283{bottom:547.335000px;}
.y1a_c00283{bottom:568.935000px;}
.y19_c00283{bottom:590.910000px;}
.y18_c00283{bottom:612.885000px;}
.y17_c00283{bottom:634.875000px;}
.y16_c00283{bottom:656.835000px;}
.y15_c00283{bottom:678.750000px;}
.y14_c00283{bottom:699.660000px;}
.y13_c00283{bottom:722.325000px;}
.y12_c00283{bottom:744.285000px;}
.y11_c00283{bottom:766.260000px;}
.y10_c00283{bottom:787.875000px;}
.yf_c00283{bottom:809.460000px;}
.ye_c00283{bottom:831.375000px;}
.yd_c00283{bottom:852.675000px;}
.yc_c00283{bottom:874.275000px;}
.yb_c00283{bottom:895.185000px;}
.ya_c00283{bottom:917.400000px;}
.y9_c00283{bottom:938.685000px;}
.y8_c00283{bottom:960.300000px;}
.y7_c00283{bottom:982.275000px;}
.y6_c00283{bottom:1003.185000px;}
.y5_c00283{bottom:1023.300000px;}
.y4_c00283{bottom:1045.275000px;}
.y1_c00283{bottom:1092.435000px;}
.y3_c00283{bottom:1101.750000px;}
.y2_c00283{bottom:1106.835000px;}
.h2_c00283{height:58.886719px;}
.h4_c00283{height:60.468750px;}
.h1_c00283{height:64.775391px;}
.h5_c00283{height:70.628906px;}
.h3_c00283{height:82.400391px;}
.h0_c00283{height:1174.500000px;}
.w0_c00283{width:731.977200px;}
.w1_c00283{width:732.000000px;}
.x0_c00283{left:0.000000px;}
.xc_c00283{left:53.965200px;}
.xb_c00283{left:55.090200px;}
.x9_c00283{left:57.190200px;}
.x8_c00283{left:58.315200px;}
.x7_c00283{left:59.740200px;}
.x6_c00283{left:61.165200px;}
.x5_c00283{left:62.290200px;}
.x4_c00283{left:63.340200px;}
.x16_c00283{left:70.165200px;}
.x14_c00283{left:71.965200px;}
.x1_c00283{left:83.140200px;}
.xd_c00283{left:85.990200px;}
.xa_c00283{left:87.115200px;}
.x12_c00283{left:102.565200px;}
.x15_c00283{left:107.590200px;}
.x2_c00283{left:109.090200px;}
.x18_c00283{left:259.915200px;}
.x17_c00283{left:274.690200px;}
.x19_c00283{left:275.740200px;}
.x3_c00283{left:283.315200px;}
.x10_c00283{left:313.915200px;}
.x13_c00283{left:371.890200px;}
.xe_c00283{left:401.365200px;}
.x11_c00283{left:493.915200px;}
.xf_c00283{left:547.915200px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls0_c00283{letter-spacing:0.000000pt;}
.ws0_c00283{word-spacing:0.000000pt;}
.fs1_c00283{font-size:53.333333pt;}
.fs0_c00283{font-size:58.666667pt;}
.fs3_c00283{font-size:64.000000pt;}
.fs2_c00283{font-size:74.666667pt;}
.y0_c00283{bottom:0.000000pt;}
.y3b_c00283{bottom:81.053333pt;}
.y3a_c00283{bottom:83.053333pt;}
.y39_c00283{bottom:85.253333pt;}
.y38_c00283{bottom:87.520000pt;}
.y37_c00283{bottom:96.186667pt;}
.y36_c00283{bottom:109.586667pt;}
.y35_c00283{bottom:115.053333pt;}
.y34_c00283{bottom:126.586667pt;}
.y33_c00283{bottom:141.333333pt;}
.y32_c00283{bottom:147.000000pt;}
.y31_c00283{bottom:159.520000pt;}
.y30_c00283{bottom:171.720000pt;}
.y2f_c00283{bottom:176.786667pt;}
.y2e_c00283{bottom:189.253333pt;}
.y2d_c00283{bottom:203.053333pt;}
.y2c_c00283{bottom:207.786667pt;}
.y2b_c00283{bottom:222.586667pt;}
.y2a_c00283{bottom:233.800000pt;}
.y29_c00283{bottom:238.186667pt;}
.y28_c00283{bottom:331.666667pt;}
.y27_c00283{bottom:351.186667pt;}
.y26_c00283{bottom:370.386667pt;}
.y25_c00283{bottom:371.000000pt;}
.y24_c00283{bottom:372.666667pt;}
.y23_c00283{bottom:389.586667pt;}
.y22_c00283{bottom:391.186667pt;}
.y21_c00283{bottom:408.786667pt;}
.y20_c00283{bottom:409.120000pt;}
.y1f_c00283{bottom:410.053333pt;}
.y1e_c00283{bottom:429.920000pt;}
.y1d_c00283{bottom:448.186667pt;}
.y1c_c00283{bottom:467.053333pt;}
.y1b_c00283{bottom:486.520000pt;}
.y1a_c00283{bottom:505.720000pt;}
.y19_c00283{bottom:525.253333pt;}
.y18_c00283{bottom:544.786667pt;}
.y17_c00283{bottom:564.333333pt;}
.y16_c00283{bottom:583.853333pt;}
.y15_c00283{bottom:603.333333pt;}
.y14_c00283{bottom:621.920000pt;}
.y13_c00283{bottom:642.066667pt;}
.y12_c00283{bottom:661.586667pt;}
.y11_c00283{bottom:681.120000pt;}
.y10_c00283{bottom:700.333333pt;}
.yf_c00283{bottom:719.520000pt;}
.ye_c00283{bottom:739.000000pt;}
.yd_c00283{bottom:757.933333pt;}
.yc_c00283{bottom:777.133333pt;}
.yb_c00283{bottom:795.720000pt;}
.ya_c00283{bottom:815.466667pt;}
.y9_c00283{bottom:834.386667pt;}
.y8_c00283{bottom:853.600000pt;}
.y7_c00283{bottom:873.133333pt;}
.y6_c00283{bottom:891.720000pt;}
.y5_c00283{bottom:909.600000pt;}
.y4_c00283{bottom:929.133333pt;}
.y1_c00283{bottom:971.053333pt;}
.y3_c00283{bottom:979.333333pt;}
.y2_c00283{bottom:983.853333pt;}
.h2_c00283{height:52.343750pt;}
.h4_c00283{height:53.750000pt;}
.h1_c00283{height:57.578125pt;}
.h5_c00283{height:62.781250pt;}
.h3_c00283{height:73.244792pt;}
.h0_c00283{height:1044.000000pt;}
.w0_c00283{width:650.646400pt;}
.w1_c00283{width:650.666667pt;}
.x0_c00283{left:0.000000pt;}
.xc_c00283{left:47.969067pt;}
.xb_c00283{left:48.969067pt;}
.x9_c00283{left:50.835733pt;}
.x8_c00283{left:51.835733pt;}
.x7_c00283{left:53.102400pt;}
.x6_c00283{left:54.369067pt;}
.x5_c00283{left:55.369067pt;}
.x4_c00283{left:56.302400pt;}
.x16_c00283{left:62.369067pt;}
.x14_c00283{left:63.969067pt;}
.x1_c00283{left:73.902400pt;}
.xd_c00283{left:76.435733pt;}
.xa_c00283{left:77.435733pt;}
.x12_c00283{left:91.169067pt;}
.x15_c00283{left:95.635733pt;}
.x2_c00283{left:96.969067pt;}
.x18_c00283{left:231.035733pt;}
.x17_c00283{left:244.169067pt;}
.x19_c00283{left:245.102400pt;}
.x3_c00283{left:251.835733pt;}
.x10_c00283{left:279.035733pt;}
.x13_c00283{left:330.569067pt;}
.xe_c00283{left:356.769067pt;}
.x11_c00283{left:439.035733pt;}
.xf_c00283{left:487.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_614d6e78f99d0bd5481daeb8.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00284;src:url('chunks/assets/font_7234e3e254a96761b02aaca5.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14_c00284{transform:matrix(0.052500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00284{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2_c00284{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00284{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m13_c00284{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m17_c00284{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00284{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00284{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00284{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8_c00284{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c00284{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10_c00284{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00284{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c00284{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00284{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c00284{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4_c00284{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c00284{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c00284{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00284{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00284{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c00284{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c00284{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00284{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00284{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md_c00284{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m11_c00284{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00284{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.ma_c00284{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m16_c00284{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1_c00284{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.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;}
}
.ws0_c00284{word-spacing:0.000000px;}
.fc0_c00284{color:transparent;}
.fs0_c00284{font-size:66.000000px;}
.fs1_c00284{font-size:78.000000px;}
.y0_c00284{bottom:0.000000px;}
.y43_c00284{bottom:54.510000px;}
.y42_c00284{bottom:81.510000px;}
.y3f_c00284{bottom:102.810000px;}
.y40_c00284{bottom:103.185000px;}
.y41_c00284{bottom:103.500000px;}
.y3e_c00284{bottom:122.910000px;}
.y3c_c00284{bottom:144.210000px;}
.y3d_c00284{bottom:145.560000px;}
.y3a_c00284{bottom:166.125000px;}
.y3b_c00284{bottom:167.910000px;}
.y39_c00284{bottom:187.410000px;}
.y37_c00284{bottom:207.135000px;}
.y38_c00284{bottom:208.635000px;}
.y36_c00284{bottom:229.500000px;}
.y33_c00284{bottom:249.960000px;}
.y32_c00284{bottom:250.410000px;}
.y34_c00284{bottom:251.085000px;}
.y35_c00284{bottom:251.835000px;}
.y2d_c00284{bottom:271.560000px;}
.y2f_c00284{bottom:271.935000px;}
.y2e_c00284{bottom:272.025000px;}
.y30_c00284{bottom:272.310000px;}
.y31_c00284{bottom:273.060000px;}
.y2c_c00284{bottom:293.250000px;}
.y2b_c00284{bottom:314.460000px;}
.y2a_c00284{bottom:336.435000px;}
.y29_c00284{bottom:358.035000px;}
.y28_c00284{bottom:378.585000px;}
.y27_c00284{bottom:400.875000px;}
.y26_c00284{bottom:422.460000px;}
.y25_c00284{bottom:444.375000px;}
.y24_c00284{bottom:466.335000px;}
.y23_c00284{bottom:488.310000px;}
.y22_c00284{bottom:510.285000px;}
.y21_c00284{bottom:532.560000px;}
.y20_c00284{bottom:554.250000px;}
.y1f_c00284{bottom:576.510000px;}
.y1e_c00284{bottom:598.500000px;}
.y1d_c00284{bottom:620.460000px;}
.y1c_c00284{bottom:642.435000px;}
.y1b_c00284{bottom:664.710000px;}
.y1a_c00284{bottom:685.935000px;}
.y18_c00284{bottom:687.060000px;}
.y19_c00284{bottom:687.435000px;}
.y17_c00284{bottom:707.535000px;}
.y16_c00284{bottom:708.660000px;}
.y15_c00284{bottom:709.410000px;}
.y14_c00284{bottom:730.635000px;}
.y13_c00284{bottom:752.250000px;}
.y12_c00284{bottom:774.210000px;}
.y11_c00284{bottom:796.500000px;}
.y10_c00284{bottom:818.460000px;}
.yf_c00284{bottom:840.435000px;}
.ye_c00284{bottom:862.335000px;}
.yd_c00284{bottom:884.310000px;}
.yc_c00284{bottom:905.925000px;}
.yb_c00284{bottom:926.085000px;}
.y9_c00284{bottom:927.525000px;}
.ya_c00284{bottom:927.900000px;}
.y8_c00284{bottom:949.500000px;}
.y7_c00284{bottom:971.085000px;}
.y6_c00284{bottom:992.685000px;}
.y5_c00284{bottom:1015.335000px;}
.y4_c00284{bottom:1037.310000px;}
.y3_c00284{bottom:1095.960000px;}
.y1_c00284{bottom:1098.150000px;}
.y2_c00284{bottom:1109.175000px;}
.h1_c00284{height:64.775391px;}
.h2_c00284{height:76.552734px;}
.h3_c00284{height:78.609375px;}
.h0_c00284{height:1174.500000px;}
.w0_c00284{width:731.977200px;}
.w1_c00284{width:732.000000px;}
.x0_c00284{left:0.000000px;}
.x4_c00284{left:47.515200px;}
.x6_c00284{left:48.940200px;}
.xf_c00284{left:50.740200px;}
.x11_c00284{left:51.790200px;}
.x12_c00284{left:54.340200px;}
.x1b_c00284{left:56.140200px;}
.x23_c00284{left:58.315200px;}
.x5_c00284{left:79.540200px;}
.x7_c00284{left:80.965200px;}
.xe_c00284{left:82.090200px;}
.x10_c00284{left:83.890200px;}
.x1d_c00284{left:88.540200px;}
.x20_c00284{left:90.340200px;}
.x1f_c00284{left:94.990200px;}
.x8_c00284{left:113.740200px;}
.x1c_c00284{left:169.915200px;}
.xc_c00284{left:202.315200px;}
.x13_c00284{left:252.340200px;}
.x1_c00284{left:262.765200px;}
.xd_c00284{left:295.165200px;}
.x14_c00284{left:320.740200px;}
.xa_c00284{left:348.790200px;}
.x17_c00284{left:371.890200px;}
.x18_c00284{left:372.940200px;}
.x9_c00284{left:380.890200px;}
.xb_c00284{left:397.090200px;}
.x2_c00284{left:458.965200px;}
.x1e_c00284{left:507.565200px;}
.x19_c00284{left:546.115200px;}
.x1a_c00284{left:565.540200px;}
.x15_c00284{left:588.940200px;}
.x24_c00284{left:597.190200px;}
.x21_c00284{left:622.765200px;}
.x3_c00284{left:628.165200px;}
.x22_c00284{left:629.590200px;}
.x16_c00284{left:641.890200px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls0_c00284{letter-spacing:0.000000pt;}
.ws0_c00284{word-spacing:0.000000pt;}
.fs0_c00284{font-size:58.666667pt;}
.fs1_c00284{font-size:69.333333pt;}
.y0_c00284{bottom:0.000000pt;}
.y43_c00284{bottom:48.453333pt;}
.y42_c00284{bottom:72.453333pt;}
.y3f_c00284{bottom:91.386667pt;}
.y40_c00284{bottom:91.720000pt;}
.y41_c00284{bottom:92.000000pt;}
.y3e_c00284{bottom:109.253333pt;}
.y3c_c00284{bottom:128.186667pt;}
.y3d_c00284{bottom:129.386667pt;}
.y3a_c00284{bottom:147.666667pt;}
.y3b_c00284{bottom:149.253333pt;}
.y39_c00284{bottom:166.586667pt;}
.y37_c00284{bottom:184.120000pt;}
.y38_c00284{bottom:185.453333pt;}
.y36_c00284{bottom:204.000000pt;}
.y33_c00284{bottom:222.186667pt;}
.y32_c00284{bottom:222.586667pt;}
.y34_c00284{bottom:223.186667pt;}
.y35_c00284{bottom:223.853333pt;}
.y2d_c00284{bottom:241.386667pt;}
.y2f_c00284{bottom:241.720000pt;}
.y2e_c00284{bottom:241.800000pt;}
.y30_c00284{bottom:242.053333pt;}
.y31_c00284{bottom:242.720000pt;}
.y2c_c00284{bottom:260.666667pt;}
.y2b_c00284{bottom:279.520000pt;}
.y2a_c00284{bottom:299.053333pt;}
.y29_c00284{bottom:318.253333pt;}
.y28_c00284{bottom:336.520000pt;}
.y27_c00284{bottom:356.333333pt;}
.y26_c00284{bottom:375.520000pt;}
.y25_c00284{bottom:395.000000pt;}
.y24_c00284{bottom:414.520000pt;}
.y23_c00284{bottom:434.053333pt;}
.y22_c00284{bottom:453.586667pt;}
.y21_c00284{bottom:473.386667pt;}
.y20_c00284{bottom:492.666667pt;}
.y1f_c00284{bottom:512.453333pt;}
.y1e_c00284{bottom:532.000000pt;}
.y1d_c00284{bottom:551.520000pt;}
.y1c_c00284{bottom:571.053333pt;}
.y1b_c00284{bottom:590.853333pt;}
.y1a_c00284{bottom:609.720000pt;}
.y18_c00284{bottom:610.720000pt;}
.y19_c00284{bottom:611.053333pt;}
.y17_c00284{bottom:628.920000pt;}
.y16_c00284{bottom:629.920000pt;}
.y15_c00284{bottom:630.586667pt;}
.y14_c00284{bottom:649.453333pt;}
.y13_c00284{bottom:668.666667pt;}
.y12_c00284{bottom:688.186667pt;}
.y11_c00284{bottom:708.000000pt;}
.y10_c00284{bottom:727.520000pt;}
.yf_c00284{bottom:747.053333pt;}
.ye_c00284{bottom:766.520000pt;}
.yd_c00284{bottom:786.053333pt;}
.yc_c00284{bottom:805.266667pt;}
.yb_c00284{bottom:823.186667pt;}
.y9_c00284{bottom:824.466667pt;}
.ya_c00284{bottom:824.800000pt;}
.y8_c00284{bottom:844.000000pt;}
.y7_c00284{bottom:863.186667pt;}
.y6_c00284{bottom:882.386667pt;}
.y5_c00284{bottom:902.520000pt;}
.y4_c00284{bottom:922.053333pt;}
.y3_c00284{bottom:974.186667pt;}
.y1_c00284{bottom:976.133333pt;}
.y2_c00284{bottom:985.933333pt;}
.h1_c00284{height:57.578125pt;}
.h2_c00284{height:68.046875pt;}
.h3_c00284{height:69.875000pt;}
.h0_c00284{height:1044.000000pt;}
.w0_c00284{width:650.646400pt;}
.w1_c00284{width:650.666667pt;}
.x0_c00284{left:0.000000pt;}
.x4_c00284{left:42.235733pt;}
.x6_c00284{left:43.502400pt;}
.xf_c00284{left:45.102400pt;}
.x11_c00284{left:46.035733pt;}
.x12_c00284{left:48.302400pt;}
.x1b_c00284{left:49.902400pt;}
.x23_c00284{left:51.835733pt;}
.x5_c00284{left:70.702400pt;}
.x7_c00284{left:71.969067pt;}
.xe_c00284{left:72.969067pt;}
.x10_c00284{left:74.569067pt;}
.x1d_c00284{left:78.702400pt;}
.x20_c00284{left:80.302400pt;}
.x1f_c00284{left:84.435733pt;}
.x8_c00284{left:101.102400pt;}
.x1c_c00284{left:151.035733pt;}
.xc_c00284{left:179.835733pt;}
.x13_c00284{left:224.302400pt;}
.x1_c00284{left:233.569067pt;}
.xd_c00284{left:262.369067pt;}
.x14_c00284{left:285.102400pt;}
.xa_c00284{left:310.035733pt;}
.x17_c00284{left:330.569067pt;}
.x18_c00284{left:331.502400pt;}
.x9_c00284{left:338.569067pt;}
.xb_c00284{left:352.969067pt;}
.x2_c00284{left:407.969067pt;}
.x1e_c00284{left:451.169067pt;}
.x19_c00284{left:485.435733pt;}
.x1a_c00284{left:502.702400pt;}
.x15_c00284{left:523.502400pt;}
.x24_c00284{left:530.835733pt;}
.x21_c00284{left:553.569067pt;}
.x3_c00284{left:558.369067pt;}
.x22_c00284{left:559.635733pt;}
.x16_c00284{left:570.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_12f2d75be22e491804847117.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00285;src:url('chunks/assets/font_a435e2684e28acd449cfe0dc.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00285;src:url('chunks/assets/font_e377b258354c8ee459d75122.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00285;src:url('chunks/assets/font_155221f8a58877cd76ef69ba.woff2')format("woff");}.ff4_c00285{font-family:ff4_c00285;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1b_c00285{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00285{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m17_c00285{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c00285{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf_c00285{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c00285{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00285{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00285{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00285{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m16_c00285{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00285{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c00285{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m12_c00285{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m14_c00285{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00285{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3_c00285{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00285{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c00285{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c00285{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00285{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00285{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c00285{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00285{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8_c00285{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4_c00285{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m18_c00285{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m7_c00285{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c00285{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mc_c00285{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.ls0_c00285{letter-spacing:0.000000px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00285{word-spacing:0.000000px;}
.fc0_c00285{color:transparent;}
.fs0_c00285{font-size:54.000000px;}
.fs2_c00285{font-size:60.000000px;}
.fs1_c00285{font-size:66.000000px;}
.fs3_c00285{font-size:78.000000px;}
.y0_c00285{bottom:0.000000px;}
.y41_c00285{bottom:108.885000px;}
.y40_c00285{bottom:109.560000px;}
.y3b_c00285{bottom:110.310000px;}
.y3d_c00285{bottom:116.085000px;}
.y3f_c00285{bottom:116.460000px;}
.y3e_c00285{bottom:116.760000px;}
.y3c_c00285{bottom:120.060000px;}
.y3a_c00285{bottom:134.760000px;}
.y39_c00285{bottom:135.510000px;}
.y38_c00285{bottom:152.835000px;}
.y37_c00285{bottom:170.460000px;}
.y36_c00285{bottom:186.660000px;}
.y35_c00285{bottom:189.585000px;}
.y34_c00285{bottom:203.910000px;}
.y33_c00285{bottom:205.335000px;}
.y32_c00285{bottom:208.935000px;}
.y31_c00285{bottom:222.285000px;}
.y30_c00285{bottom:239.625000px;}
.y2f_c00285{bottom:256.785000px;}
.y2e_c00285{bottom:318.750000px;}
.y2d_c00285{bottom:320.625000px;}
.y2c_c00285{bottom:341.460000px;}
.y2b_c00285{bottom:342.525000px;}
.y2a_c00285{bottom:343.560000px;}
.y29_c00285{bottom:363.750000px;}
.y28_c00285{bottom:365.535000px;}
.y27_c00285{bottom:416.010000px;}
.y26_c00285{bottom:432.885000px;}
.y25_c00285{bottom:463.500000px;}
.y24_c00285{bottom:480.810000px;}
.y23_c00285{bottom:511.410000px;}
.y1a_c00285{bottom:512.460000px;}
.y22_c00285{bottom:527.625000px;}
.y19_c00285{bottom:528.660000px;}
.y21_c00285{bottom:545.250000px;}
.y18_c00285{bottom:545.625000px;}
.y20_c00285{bottom:576.510000px;}
.y17_c00285{bottom:577.185000px;}
.y16_c00285{bottom:593.460000px;}
.y1f_c00285{bottom:593.835000px;}
.y1e_c00285{bottom:624.810000px;}
.y15_c00285{bottom:641.010000px;}
.y1d_c00285{bottom:642.060000px;}
.y14_c00285{bottom:671.625000px;}
.y1c_c00285{bottom:673.035000px;}
.y13_c00285{bottom:689.160000px;}
.y1b_c00285{bottom:690.285000px;}
.y11_c00285{bottom:731.700000px;}
.y12_c00285{bottom:732.075000px;}
.yf_c00285{bottom:744.660000px;}
.y10_c00285{bottom:745.335000px;}
.ye_c00285{bottom:791.835000px;}
.yd_c00285{bottom:815.925000px;}
.yc_c00285{bottom:836.085000px;}
.yb_c00285{bottom:858.810000px;}
.ya_c00285{bottom:880.425000px;}
.y9_c00285{bottom:901.650000px;}
.y8_c00285{bottom:919.650000px;}
.y7_c00285{bottom:944.775000px;}
.y6_c00285{bottom:966.060000px;}
.y5_c00285{bottom:987.675000px;}
.y4_c00285{bottom:1002.000000px;}
.y3_c00285{bottom:1029.060000px;}
.y2_c00285{bottom:1049.550000px;}
.y1_c00285{bottom:1106.460000px;}
.h1_c00285{height:52.998047px;}
.h6_c00285{height:58.857422px;}
.h3_c00285{height:58.886719px;}
.h4_c00285{height:64.743164px;}
.h2_c00285{height:64.775391px;}
.h7_c00285{height:66.515625px;}
.h5_c00285{height:76.514648px;}
.h0_c00285{height:1174.500000px;}
.w0_c00285{width:731.977200px;}
.w1_c00285{width:732.000000px;}
.x0_c00285{left:0.000000px;}
.x8_c00285{left:52.540200px;}
.x11_c00285{left:54.340200px;}
.x20_c00285{left:55.765200px;}
.x5_c00285{left:56.890200px;}
.x4_c00285{left:58.690200px;}
.x2_c00285{left:59.740200px;}
.xf_c00285{left:67.315200px;}
.x10_c00285{left:68.365200px;}
.x9_c00285{left:70.540200px;}
.x1b_c00285{left:72.715200px;}
.x26_c00285{left:83.890200px;}
.x7_c00285{left:85.300200px;}
.x6_c00285{left:87.115200px;}
.x3_c00285{left:88.915200px;}
.x27_c00285{left:90.715200px;}
.xc_c00285{left:150.115200px;}
.x17_c00285{left:204.115200px;}
.xd_c00285{left:247.990200px;}
.x1_c00285{left:277.915200px;}
.x1c_c00285{left:314.590200px;}
.xa_c00285{left:324.715200px;}
.x18_c00285{left:352.390200px;}
.x19_c00285{left:370.390200px;}
.x12_c00285{left:371.890200px;}
.x14_c00285{left:372.940200px;}
.x15_c00285{left:373.990200px;}
.xb_c00285{left:389.140200px;}
.x13_c00285{left:390.190200px;}
.x16_c00285{left:391.315200px;}
.x1d_c00285{left:427.990200px;}
.xe_c00285{left:455.740200px;}
.x22_c00285{left:519.115200px;}
.x23_c00285{left:544.690200px;}
.x1e_c00285{left:546.790200px;}
.x1f_c00285{left:562.990200px;}
.x24_c00285{left:625.315200px;}
.x1a_c00285{left:629.290200px;}
.x25_c00285{left:645.790200px;}
.x21_c00285{left:659.140200px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls0_c00285{letter-spacing:0.000000pt;}
.ws0_c00285{word-spacing:0.000000pt;}
.fs0_c00285{font-size:48.000000pt;}
.fs2_c00285{font-size:53.333333pt;}
.fs1_c00285{font-size:58.666667pt;}
.fs3_c00285{font-size:69.333333pt;}
.y0_c00285{bottom:0.000000pt;}
.y41_c00285{bottom:96.786667pt;}
.y40_c00285{bottom:97.386667pt;}
.y3b_c00285{bottom:98.053333pt;}
.y3d_c00285{bottom:103.186667pt;}
.y3f_c00285{bottom:103.520000pt;}
.y3e_c00285{bottom:103.786667pt;}
.y3c_c00285{bottom:106.720000pt;}
.y3a_c00285{bottom:119.786667pt;}
.y39_c00285{bottom:120.453333pt;}
.y38_c00285{bottom:135.853333pt;}
.y37_c00285{bottom:151.520000pt;}
.y36_c00285{bottom:165.920000pt;}
.y35_c00285{bottom:168.520000pt;}
.y34_c00285{bottom:181.253333pt;}
.y33_c00285{bottom:182.520000pt;}
.y32_c00285{bottom:185.720000pt;}
.y31_c00285{bottom:197.586667pt;}
.y30_c00285{bottom:213.000000pt;}
.y2f_c00285{bottom:228.253333pt;}
.y2e_c00285{bottom:283.333333pt;}
.y2d_c00285{bottom:285.000000pt;}
.y2c_c00285{bottom:303.520000pt;}
.y2b_c00285{bottom:304.466667pt;}
.y2a_c00285{bottom:305.386667pt;}
.y29_c00285{bottom:323.333333pt;}
.y28_c00285{bottom:324.920000pt;}
.y27_c00285{bottom:369.786667pt;}
.y26_c00285{bottom:384.786667pt;}
.y25_c00285{bottom:412.000000pt;}
.y24_c00285{bottom:427.386667pt;}
.y23_c00285{bottom:454.586667pt;}
.y1a_c00285{bottom:455.520000pt;}
.y22_c00285{bottom:469.000000pt;}
.y19_c00285{bottom:469.920000pt;}
.y21_c00285{bottom:484.666667pt;}
.y18_c00285{bottom:485.000000pt;}
.y20_c00285{bottom:512.453333pt;}
.y17_c00285{bottom:513.053333pt;}
.y16_c00285{bottom:527.520000pt;}
.y1f_c00285{bottom:527.853333pt;}
.y1e_c00285{bottom:555.386667pt;}
.y15_c00285{bottom:569.786667pt;}
.y1d_c00285{bottom:570.720000pt;}
.y14_c00285{bottom:597.000000pt;}
.y1c_c00285{bottom:598.253333pt;}
.y13_c00285{bottom:612.586667pt;}
.y1b_c00285{bottom:613.586667pt;}
.y11_c00285{bottom:650.400000pt;}
.y12_c00285{bottom:650.733333pt;}
.yf_c00285{bottom:661.920000pt;}
.y10_c00285{bottom:662.520000pt;}
.ye_c00285{bottom:703.853333pt;}
.yd_c00285{bottom:725.266667pt;}
.yc_c00285{bottom:743.186667pt;}
.yb_c00285{bottom:763.386667pt;}
.ya_c00285{bottom:782.600000pt;}
.y9_c00285{bottom:801.466667pt;}
.y8_c00285{bottom:817.466667pt;}
.y7_c00285{bottom:839.800000pt;}
.y6_c00285{bottom:858.720000pt;}
.y5_c00285{bottom:877.933333pt;}
.y4_c00285{bottom:890.666667pt;}
.y3_c00285{bottom:914.720000pt;}
.y2_c00285{bottom:932.933333pt;}
.y1_c00285{bottom:983.520000pt;}
.h1_c00285{height:47.109375pt;}
.h6_c00285{height:52.317708pt;}
.h3_c00285{height:52.343750pt;}
.h4_c00285{height:57.549479pt;}
.h2_c00285{height:57.578125pt;}
.h7_c00285{height:59.125000pt;}
.h5_c00285{height:68.013021pt;}
.h0_c00285{height:1044.000000pt;}
.w0_c00285{width:650.646400pt;}
.w1_c00285{width:650.666667pt;}
.x0_c00285{left:0.000000pt;}
.x8_c00285{left:46.702400pt;}
.x11_c00285{left:48.302400pt;}
.x20_c00285{left:49.569067pt;}
.x5_c00285{left:50.569067pt;}
.x4_c00285{left:52.169067pt;}
.x2_c00285{left:53.102400pt;}
.xf_c00285{left:59.835733pt;}
.x10_c00285{left:60.769067pt;}
.x9_c00285{left:62.702400pt;}
.x1b_c00285{left:64.635733pt;}
.x26_c00285{left:74.569067pt;}
.x7_c00285{left:75.822400pt;}
.x6_c00285{left:77.435733pt;}
.x3_c00285{left:79.035733pt;}
.x27_c00285{left:80.635733pt;}
.xc_c00285{left:133.435733pt;}
.x17_c00285{left:181.435733pt;}
.xd_c00285{left:220.435733pt;}
.x1_c00285{left:247.035733pt;}
.x1c_c00285{left:279.635733pt;}
.xa_c00285{left:288.635733pt;}
.x18_c00285{left:313.235733pt;}
.x19_c00285{left:329.235733pt;}
.x12_c00285{left:330.569067pt;}
.x14_c00285{left:331.502400pt;}
.x15_c00285{left:332.435733pt;}
.xb_c00285{left:345.902400pt;}
.x13_c00285{left:346.835733pt;}
.x16_c00285{left:347.835733pt;}
.x1d_c00285{left:380.435733pt;}
.xe_c00285{left:405.102400pt;}
.x22_c00285{left:461.435733pt;}
.x23_c00285{left:484.169067pt;}
.x1e_c00285{left:486.035733pt;}
.x1f_c00285{left:500.435733pt;}
.x24_c00285{left:555.835733pt;}
.x1a_c00285{left:559.369067pt;}
.x25_c00285{left:574.035733pt;}
.x21_c00285{left:585.902400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5421034d171769d2922177c3.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00286;src:url('chunks/assets/font_788280b737381f5fd724c743.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00286;src:url('chunks/assets/font_879e2705f78745cfc79023cc.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00286;src:url('chunks/assets/font_05bcea798ace2cea4529d605.woff2')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00286{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m0_c00286{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c00286{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m13_c00286{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf_c00286{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m11_c00286{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c00286{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2_c00286{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c00286{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00286{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00286{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c00286{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c00286{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5_c00286{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7_c00286{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4_c00286{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c00286{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma_c00286{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m8_c00286{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mb_c00286{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m12_c00286{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00286{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls0_c00286{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00286{color:transparent;}
.fs1_c00286{font-size:60.000000px;}
.fs0_c00286{font-size:66.000000px;}
.fs2_c00286{font-size:78.000000px;}
.y0_c00286{bottom:0.000000px;}
.y36_c00286{bottom:74.010000px;}
.y37_c00286{bottom:75.435000px;}
.y34_c00286{bottom:96.660000px;}
.y35_c00286{bottom:99.135000px;}
.y32_c00286{bottom:119.685000px;}
.y33_c00286{bottom:122.160000px;}
.y31_c00286{bottom:141.660000px;}
.y30_c00286{bottom:162.585000px;}
.y2f_c00286{bottom:183.810000px;}
.y2e_c00286{bottom:205.035000px;}
.y2d_c00286{bottom:225.885000px;}
.y2c_c00286{bottom:246.750000px;}
.y2b_c00286{bottom:267.960000px;}
.y2a_c00286{bottom:289.275000px;}
.y29_c00286{bottom:310.875000px;}
.y28_c00286{bottom:332.400000px;}
.y26_c00286{bottom:352.275000px;}
.y27_c00286{bottom:354.000000px;}
.y23_c00286{bottom:373.785000px;}
.y24_c00286{bottom:375.660000px;}
.y25_c00286{bottom:376.335000px;}
.y22_c00286{bottom:394.335000px;}
.y21_c00286{bottom:418.125000px;}
.y20_c00286{bottom:439.710000px;}
.y1f_c00286{bottom:461.310000px;}
.y1e_c00286{bottom:482.910000px;}
.y1d_c00286{bottom:504.885000px;}
.y1c_c00286{bottom:526.875000px;}
.y1b_c00286{bottom:548.835000px;}
.y1a_c00286{bottom:570.060000px;}
.y19_c00286{bottom:592.335000px;}
.y18_c00286{bottom:614.310000px;}
.y17_c00286{bottom:635.910000px;}
.y16_c00286{bottom:657.585000px;}
.y15_c00286{bottom:679.500000px;}
.y14_c00286{bottom:701.460000px;}
.y13_c00286{bottom:723.450000px;}
.y12_c00286{bottom:745.335000px;}
.y11_c00286{bottom:767.010000px;}
.y10_c00286{bottom:789.000000px;}
.yf_c00286{bottom:811.185000px;}
.ye_c00286{bottom:832.875000px;}
.yd_c00286{bottom:854.835000px;}
.yc_c00286{bottom:876.375000px;}
.yb_c00286{bottom:898.335000px;}
.ya_c00286{bottom:919.650000px;}
.y9_c00286{bottom:940.875000px;}
.y8_c00286{bottom:962.085000px;}
.y7_c00286{bottom:984.375000px;}
.y6_c00286{bottom:1005.585000px;}
.y5_c00286{bottom:1028.310000px;}
.y4_c00286{bottom:1030.125000px;}
.y3_c00286{bottom:1085.175000px;}
.y1_c00286{bottom:1088.085000px;}
.y2_c00286{bottom:1098.375000px;}
.h2_c00286{height:60.468750px;}
.h4_c00286{height:64.775391px;}
.h1_c00286{height:66.515625px;}
.h3_c00286{height:76.514648px;}
.h5_c00286{height:78.609375px;}
.h0_c00286{height:1174.500000px;}
.w0_c00286{width:731.977200px;}
.w1_c00286{width:732.000000px;}
.x0_c00286{left:0.000000px;}
.x4_c00286{left:40.990200px;}
.x6_c00286{left:42.490200px;}
.x7_c00286{left:43.915200px;}
.x8_c00286{left:44.965200px;}
.x9_c00286{left:46.090200px;}
.xb_c00286{left:47.140200px;}
.xe_c00286{left:49.315200px;}
.x10_c00286{left:51.115200px;}
.x11_c00286{left:52.165200px;}
.x13_c00286{left:53.290200px;}
.x14_c00286{left:55.090200px;}
.x15_c00286{left:56.515200px;}
.xa_c00286{left:79.165200px;}
.x12_c00286{left:84.550200px;}
.xf_c00286{left:91.090200px;}
.x5_c00286{left:100.390200px;}
.x18_c00286{left:156.190200px;}
.xc_c00286{left:195.790200px;}
.x1_c00286{left:257.740200px;}
.x17_c00286{left:298.765200px;}
.x2_c00286{left:453.940200px;}
.x16_c00286{left:575.590200px;}
.x3_c00286{left:618.490200px;}
.xd_c00286{left:640.390200px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls0_c00286{letter-spacing:0.000000pt;}
.ws0_c00286{word-spacing:0.000000pt;}
.fs1_c00286{font-size:53.333333pt;}
.fs0_c00286{font-size:58.666667pt;}
.fs2_c00286{font-size:69.333333pt;}
.y0_c00286{bottom:0.000000pt;}
.y36_c00286{bottom:65.786667pt;}
.y37_c00286{bottom:67.053333pt;}
.y34_c00286{bottom:85.920000pt;}
.y35_c00286{bottom:88.120000pt;}
.y32_c00286{bottom:106.386667pt;}
.y33_c00286{bottom:108.586667pt;}
.y31_c00286{bottom:125.920000pt;}
.y30_c00286{bottom:144.520000pt;}
.y2f_c00286{bottom:163.386667pt;}
.y2e_c00286{bottom:182.253333pt;}
.y2d_c00286{bottom:200.786667pt;}
.y2c_c00286{bottom:219.333333pt;}
.y2b_c00286{bottom:238.186667pt;}
.y2a_c00286{bottom:257.133333pt;}
.y29_c00286{bottom:276.333333pt;}
.y28_c00286{bottom:295.466667pt;}
.y26_c00286{bottom:313.133333pt;}
.y27_c00286{bottom:314.666667pt;}
.y23_c00286{bottom:332.253333pt;}
.y24_c00286{bottom:333.920000pt;}
.y25_c00286{bottom:334.520000pt;}
.y22_c00286{bottom:350.520000pt;}
.y21_c00286{bottom:371.666667pt;}
.y20_c00286{bottom:390.853333pt;}
.y1f_c00286{bottom:410.053333pt;}
.y1e_c00286{bottom:429.253333pt;}
.y1d_c00286{bottom:448.786667pt;}
.y1c_c00286{bottom:468.333333pt;}
.y1b_c00286{bottom:487.853333pt;}
.y1a_c00286{bottom:506.720000pt;}
.y19_c00286{bottom:526.520000pt;}
.y18_c00286{bottom:546.053333pt;}
.y17_c00286{bottom:565.253333pt;}
.y16_c00286{bottom:584.520000pt;}
.y15_c00286{bottom:604.000000pt;}
.y14_c00286{bottom:623.520000pt;}
.y13_c00286{bottom:643.066667pt;}
.y12_c00286{bottom:662.520000pt;}
.y11_c00286{bottom:681.786667pt;}
.y10_c00286{bottom:701.333333pt;}
.yf_c00286{bottom:721.053333pt;}
.ye_c00286{bottom:740.333333pt;}
.yd_c00286{bottom:759.853333pt;}
.yc_c00286{bottom:779.000000pt;}
.yb_c00286{bottom:798.520000pt;}
.ya_c00286{bottom:817.466667pt;}
.y9_c00286{bottom:836.333333pt;}
.y8_c00286{bottom:855.186667pt;}
.y7_c00286{bottom:875.000000pt;}
.y6_c00286{bottom:893.853333pt;}
.y5_c00286{bottom:914.053333pt;}
.y4_c00286{bottom:915.666667pt;}
.y3_c00286{bottom:964.600000pt;}
.y1_c00286{bottom:967.186667pt;}
.y2_c00286{bottom:976.333333pt;}
.h2_c00286{height:53.750000pt;}
.h4_c00286{height:57.578125pt;}
.h1_c00286{height:59.125000pt;}
.h3_c00286{height:68.013021pt;}
.h5_c00286{height:69.875000pt;}
.h0_c00286{height:1044.000000pt;}
.w0_c00286{width:650.646400pt;}
.w1_c00286{width:650.666667pt;}
.x0_c00286{left:0.000000pt;}
.x4_c00286{left:36.435733pt;}
.x6_c00286{left:37.769067pt;}
.x7_c00286{left:39.035733pt;}
.x8_c00286{left:39.969067pt;}
.x9_c00286{left:40.969067pt;}
.xb_c00286{left:41.902400pt;}
.xe_c00286{left:43.835733pt;}
.x10_c00286{left:45.435733pt;}
.x11_c00286{left:46.369067pt;}
.x13_c00286{left:47.369067pt;}
.x14_c00286{left:48.969067pt;}
.x15_c00286{left:50.235733pt;}
.xa_c00286{left:70.369067pt;}
.x12_c00286{left:75.155733pt;}
.xf_c00286{left:80.969067pt;}
.x5_c00286{left:89.235733pt;}
.x18_c00286{left:138.835733pt;}
.xc_c00286{left:174.035733pt;}
.x1_c00286{left:229.102400pt;}
.x17_c00286{left:265.569067pt;}
.x2_c00286{left:403.502400pt;}
.x16_c00286{left:511.635733pt;}
.x3_c00286{left:549.769067pt;}
.xd_c00286{left:569.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27a612f0efddba6d0cf0196f.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00287;src:url('chunks/assets/font_1c73a880b1208f1b93192554.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00287;src:url('chunks/assets/font_1eac91c799d128c2aa428de4.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00287{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m15_c00287{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00287{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00287{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m14_c00287{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6_c00287{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c00287{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00287{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00287{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c00287{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00287{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10_c00287{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c00287{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c00287{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf_c00287{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md_c00287{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00287{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00287{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00287{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00287{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00287{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c00287{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c00287{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.ma_c00287{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00287{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m17_c00287{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m16_c00287{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m19_c00287{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mb_c00287{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m12_c00287{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m18_c00287{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1_c00287{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00287{color:transparent;}
.fs0_c00287{font-size:60.000000px;}
.fs1_c00287{font-size:66.000000px;}
.fs2_c00287{font-size:78.000000px;}
.y0_c00287{bottom:0.000000px;}
.y3f_c00287{bottom:93.750000px;}
.y3e_c00287{bottom:100.635000px;}
.y3d_c00287{bottom:103.125000px;}
.y3c_c00287{bottom:114.285000px;}
.y3b_c00287{bottom:117.510000px;}
.y3a_c00287{bottom:136.935000px;}
.y39_c00287{bottom:160.035000px;}
.y38_c00287{bottom:180.135000px;}
.y37_c00287{bottom:201.750000px;}
.y36_c00287{bottom:222.960000px;}
.y35_c00287{bottom:223.710000px;}
.y34_c00287{bottom:245.310000px;}
.y33_c00287{bottom:266.625000px;}
.y32_c00287{bottom:288.900000px;}
.y31_c00287{bottom:310.500000px;}
.y30_c00287{bottom:330.660000px;}
.y2f_c00287{bottom:332.085000px;}
.y2e_c00287{bottom:353.685000px;}
.y2d_c00287{bottom:375.285000px;}
.y2c_c00287{bottom:399.435000px;}
.y2b_c00287{bottom:418.500000px;}
.y2a_c00287{bottom:440.085000px;}
.y29_c00287{bottom:462.060000px;}
.y28_c00287{bottom:483.660000px;}
.y27_c00287{bottom:505.260000px;}
.y26_c00287{bottom:526.875000px;}
.y25_c00287{bottom:527.910000px;}
.y24_c00287{bottom:548.460000px;}
.y23_c00287{bottom:570.060000px;}
.y22_c00287{bottom:591.960000px;}
.y21_c00287{bottom:613.635000px;}
.y20_c00287{bottom:635.250000px;}
.y1f_c00287{bottom:657.210000px;}
.y1d_c00287{bottom:678.060000px;}
.y1e_c00287{bottom:679.125000px;}
.y1c_c00287{bottom:700.035000px;}
.y1b_c00287{bottom:722.700000px;}
.y19_c00287{bottom:742.500000px;}
.y1a_c00287{bottom:744.285000px;}
.y18_c00287{bottom:764.835000px;}
.y16_c00287{bottom:785.010000px;}
.y17_c00287{bottom:787.875000px;}
.y15_c00287{bottom:807.000000px;}
.y14_c00287{bottom:830.685000px;}
.y13_c00287{bottom:852.675000px;}
.y12_c00287{bottom:873.210000px;}
.y11_c00287{bottom:895.185000px;}
.y10_c00287{bottom:912.435000px;}
.yf_c00287{bottom:931.875000px;}
.ye_c00287{bottom:938.400000px;}
.yd_c00287{bottom:959.925000px;}
.yc_c00287{bottom:980.835000px;}
.ya_c00287{bottom:1000.560000px;}
.yb_c00287{bottom:1004.625000px;}
.y6_c00287{bottom:1013.925000px;}
.y7_c00287{bottom:1020.060000px;}
.y8_c00287{bottom:1023.300000px;}
.y9_c00287{bottom:1026.150000px;}
.y4_c00287{bottom:1043.835000px;}
.y5_c00287{bottom:1046.310000px;}
.y1_c00287{bottom:1090.650000px;}
.y3_c00287{bottom:1100.685000px;}
.y2_c00287{bottom:1105.050000px;}
.h1_c00287{height:58.886719px;}
.h2_c00287{height:64.775391px;}
.h4_c00287{height:66.515625px;}
.h3_c00287{height:76.514648px;}
.h5_c00287{height:78.609375px;}
.h0_c00287{height:1174.500000px;}
.w0_c00287{width:731.977200px;}
.w1_c00287{width:732.000000px;}
.x0_c00287{left:0.000000px;}
.x1c_c00287{left:54.340200px;}
.x1b_c00287{left:55.390200px;}
.x17_c00287{left:56.515200px;}
.x16_c00287{left:57.940200px;}
.x11_c00287{left:58.990200px;}
.x10_c00287{left:60.790200px;}
.xd_c00287{left:61.915200px;}
.xb_c00287{left:62.965200px;}
.x6_c00287{left:64.390200px;}
.x15_c00287{left:78.790200px;}
.x12_c00287{left:80.590200px;}
.xe_c00287{left:82.090200px;}
.x1_c00287{left:84.550200px;}
.xc_c00287{left:86.365200px;}
.x19_c00287{left:88.165200px;}
.xf_c00287{left:91.390200px;}
.x13_c00287{left:94.315200px;}
.x4_c00287{left:96.490200px;}
.x14_c00287{left:100.090200px;}
.x2_c00287{left:111.565200px;}
.x1f_c00287{left:161.590200px;}
.x7_c00287{left:170.965200px;}
.x20_c00287{left:181.375200px;}
.x18_c00287{left:278.290200px;}
.x3_c00287{left:282.940200px;}
.x8_c00287{left:353.890200px;}
.x9_c00287{left:361.090200px;}
.x1e_c00287{left:521.590200px;}
.xa_c00287{left:565.165200px;}
.x5_c00287{left:613.765200px;}
.x1a_c00287{left:645.790200px;}
.x1d_c00287{left:655.540200px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls0_c00287{letter-spacing:0.000000pt;}
.ws0_c00287{word-spacing:0.000000pt;}
.fs0_c00287{font-size:53.333333pt;}
.fs1_c00287{font-size:58.666667pt;}
.fs2_c00287{font-size:69.333333pt;}
.y0_c00287{bottom:0.000000pt;}
.y3f_c00287{bottom:83.333333pt;}
.y3e_c00287{bottom:89.453333pt;}
.y3d_c00287{bottom:91.666667pt;}
.y3c_c00287{bottom:101.586667pt;}
.y3b_c00287{bottom:104.453333pt;}
.y3a_c00287{bottom:121.720000pt;}
.y39_c00287{bottom:142.253333pt;}
.y38_c00287{bottom:160.120000pt;}
.y37_c00287{bottom:179.333333pt;}
.y36_c00287{bottom:198.186667pt;}
.y35_c00287{bottom:198.853333pt;}
.y34_c00287{bottom:218.053333pt;}
.y33_c00287{bottom:237.000000pt;}
.y32_c00287{bottom:256.800000pt;}
.y31_c00287{bottom:276.000000pt;}
.y30_c00287{bottom:293.920000pt;}
.y2f_c00287{bottom:295.186667pt;}
.y2e_c00287{bottom:314.386667pt;}
.y2d_c00287{bottom:333.586667pt;}
.y2c_c00287{bottom:355.053333pt;}
.y2b_c00287{bottom:372.000000pt;}
.y2a_c00287{bottom:391.186667pt;}
.y29_c00287{bottom:410.720000pt;}
.y28_c00287{bottom:429.920000pt;}
.y27_c00287{bottom:449.120000pt;}
.y26_c00287{bottom:468.333333pt;}
.y25_c00287{bottom:469.253333pt;}
.y24_c00287{bottom:487.520000pt;}
.y23_c00287{bottom:506.720000pt;}
.y22_c00287{bottom:526.186667pt;}
.y21_c00287{bottom:545.453333pt;}
.y20_c00287{bottom:564.666667pt;}
.y1f_c00287{bottom:584.186667pt;}
.y1d_c00287{bottom:602.720000pt;}
.y1e_c00287{bottom:603.666667pt;}
.y1c_c00287{bottom:622.253333pt;}
.y1b_c00287{bottom:642.400000pt;}
.y19_c00287{bottom:660.000000pt;}
.y1a_c00287{bottom:661.586667pt;}
.y18_c00287{bottom:679.853333pt;}
.y16_c00287{bottom:697.786667pt;}
.y17_c00287{bottom:700.333333pt;}
.y15_c00287{bottom:717.333333pt;}
.y14_c00287{bottom:738.386667pt;}
.y13_c00287{bottom:757.933333pt;}
.y12_c00287{bottom:776.186667pt;}
.y11_c00287{bottom:795.720000pt;}
.y10_c00287{bottom:811.053333pt;}
.yf_c00287{bottom:828.333333pt;}
.ye_c00287{bottom:834.133333pt;}
.yd_c00287{bottom:853.266667pt;}
.yc_c00287{bottom:871.853333pt;}
.ya_c00287{bottom:889.386667pt;}
.yb_c00287{bottom:893.000000pt;}
.y6_c00287{bottom:901.266667pt;}
.y7_c00287{bottom:906.720000pt;}
.y8_c00287{bottom:909.600000pt;}
.y9_c00287{bottom:912.133333pt;}
.y4_c00287{bottom:927.853333pt;}
.y5_c00287{bottom:930.053333pt;}
.y1_c00287{bottom:969.466667pt;}
.y3_c00287{bottom:978.386667pt;}
.y2_c00287{bottom:982.266667pt;}
.h1_c00287{height:52.343750pt;}
.h2_c00287{height:57.578125pt;}
.h4_c00287{height:59.125000pt;}
.h3_c00287{height:68.013021pt;}
.h5_c00287{height:69.875000pt;}
.h0_c00287{height:1044.000000pt;}
.w0_c00287{width:650.646400pt;}
.w1_c00287{width:650.666667pt;}
.x0_c00287{left:0.000000pt;}
.x1c_c00287{left:48.302400pt;}
.x1b_c00287{left:49.235733pt;}
.x17_c00287{left:50.235733pt;}
.x16_c00287{left:51.502400pt;}
.x11_c00287{left:52.435733pt;}
.x10_c00287{left:54.035733pt;}
.xd_c00287{left:55.035733pt;}
.xb_c00287{left:55.969067pt;}
.x6_c00287{left:57.235733pt;}
.x15_c00287{left:70.035733pt;}
.x12_c00287{left:71.635733pt;}
.xe_c00287{left:72.969067pt;}
.x1_c00287{left:75.155733pt;}
.xc_c00287{left:76.769067pt;}
.x19_c00287{left:78.369067pt;}
.xf_c00287{left:81.235733pt;}
.x13_c00287{left:83.835733pt;}
.x4_c00287{left:85.769067pt;}
.x14_c00287{left:88.969067pt;}
.x2_c00287{left:99.169067pt;}
.x1f_c00287{left:143.635733pt;}
.x7_c00287{left:151.969067pt;}
.x20_c00287{left:161.222400pt;}
.x18_c00287{left:247.369067pt;}
.x3_c00287{left:251.502400pt;}
.x8_c00287{left:314.569067pt;}
.x9_c00287{left:320.969067pt;}
.x1e_c00287{left:463.635733pt;}
.xa_c00287{left:502.369067pt;}
.x5_c00287{left:545.569067pt;}
.x1a_c00287{left:574.035733pt;}
.x1d_c00287{left:582.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3b535e4326284087bb2b691.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00288;src:url('chunks/assets/font_9c61db94c960450f9e2f8e72.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00288;src:url('chunks/assets/font_49b57109a8287ab08846a06d.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m22_c00288{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m1_c00288{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3_c00288{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4_c00288{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m23_c00288{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00288{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00288{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m20_c00288{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00288{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00288{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m21_c00288{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c00288{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c00288{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c00288{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00288{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00288{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00288{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m19_c00288{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c00288{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00288{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c00288{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00288{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00288{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m8_c00288{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00288{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c00288{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9_c00288{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c00288{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m7_c00288{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mc_c00288{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mf_c00288{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m10_c00288{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m13_c00288{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m14_c00288{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma_c00288{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m6_c00288{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,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.000000px;}
.fc0_c00288{color:transparent;}
.fs0_c00288{font-size:66.000000px;}
.fs1_c00288{font-size:84.000000px;}
.y0_c00288{bottom:0.000000px;}
.y41_c00288{bottom:74.685000px;}
.y3c_c00288{bottom:92.685000px;}
.y3d_c00288{bottom:93.435000px;}
.y3e_c00288{bottom:94.875000px;}
.y3f_c00288{bottom:96.285000px;}
.y40_c00288{bottom:97.410000px;}
.y3a_c00288{bottom:112.500000px;}
.y3b_c00288{bottom:115.410000px;}
.y37_c00288{bottom:127.560000px;}
.y38_c00288{bottom:127.935000px;}
.y39_c00288{bottom:130.500000px;}
.y34_c00288{bottom:144.135000px;}
.y35_c00288{bottom:146.685000px;}
.y36_c00288{bottom:148.875000px;}
.y33_c00288{bottom:162.885000px;}
.y2e_c00288{bottom:177.960000px;}
.y2f_c00288{bottom:180.135000px;}
.y30_c00288{bottom:182.310000px;}
.y31_c00288{bottom:182.685000px;}
.y32_c00288{bottom:183.435000px;}
.y2b_c00288{bottom:195.285000px;}
.y2c_c00288{bottom:197.085000px;}
.y2d_c00288{bottom:198.510000px;}
.y29_c00288{bottom:213.285000px;}
.y2a_c00288{bottom:216.885000px;}
.y28_c00288{bottom:270.150000px;}
.y27_c00288{bottom:291.435000px;}
.y26_c00288{bottom:312.660000px;}
.y25_c00288{bottom:334.275000px;}
.y24_c00288{bottom:355.500000px;}
.y23_c00288{bottom:376.785000px;}
.y22_c00288{bottom:398.310000px;}
.y21_c00288{bottom:419.535000px;}
.y20_c00288{bottom:441.510000px;}
.y1f_c00288{bottom:463.125000px;}
.y1e_c00288{bottom:484.710000px;}
.y1d_c00288{bottom:506.685000px;}
.y1c_c00288{bottom:528.285000px;}
.y1b_c00288{bottom:550.260000px;}
.y1a_c00288{bottom:572.250000px;}
.y19_c00288{bottom:594.135000px;}
.y18_c00288{bottom:615.750000px;}
.y17_c00288{bottom:637.335000px;}
.y16_c00288{bottom:659.010000px;}
.y15_c00288{bottom:681.285000px;}
.y14_c00288{bottom:768.060000px;}
.y13_c00288{bottom:790.050000px;}
.y12_c00288{bottom:811.650000px;}
.y11_c00288{bottom:834.300000px;}
.y10_c00288{bottom:856.275000px;}
.yf_c00288{bottom:877.125000px;}
.ye_c00288{bottom:878.250000px;}
.yd_c00288{bottom:899.460000px;}
.yc_c00288{bottom:921.060000px;}
.yb_c00288{bottom:942.300000px;}
.ya_c00288{bottom:964.935000px;}
.y9_c00288{bottom:982.275000px;}
.y8_c00288{bottom:983.025000px;}
.y7_c00288{bottom:986.250000px;}
.y6_c00288{bottom:1008.150000px;}
.y5_c00288{bottom:1027.185000px;}
.y4_c00288{bottom:1029.000000px;}
.y3_c00288{bottom:1030.185000px;}
.y42_c00288{bottom:1086.675000px;}
.y2_c00288{bottom:1090.650000px;}
.y1_c00288{bottom:1090.935000px;}
.h1_c00288{height:64.743164px;}
.h2_c00288{height:64.775391px;}
.h3_c00288{height:82.441406px;}
.h4_c00288{height:84.656250px;}
.h0_c00288{height:1174.500000px;}
.w0_c00288{width:731.977200px;}
.w1_c00288{width:732.000000px;}
.x0_c00288{left:0.000000px;}
.xf_c00288{left:50.365200px;}
.xe_c00288{left:52.165200px;}
.xc_c00288{left:53.290200px;}
.x3_c00288{left:54.340200px;}
.x9_c00288{left:55.390200px;}
.x11_c00288{left:68.365200px;}
.x1d_c00288{left:78.790200px;}
.x10_c00288{left:83.140200px;}
.xd_c00288{left:84.550200px;}
.x8_c00288{left:87.490200px;}
.x1f_c00288{left:127.090200px;}
.x20_c00288{left:129.940200px;}
.x21_c00288{left:152.290200px;}
.x1b_c00288{left:201.190200px;}
.xa_c00288{left:208.750200px;}
.x15_c00288{left:219.565200px;}
.xb_c00288{left:249.490200px;}
.x1c_c00288{left:266.365200px;}
.x1_c00288{left:272.890200px;}
.x2_c00288{left:300.565200px;}
.x19_c00288{left:311.740200px;}
.x13_c00288{left:373.315200px;}
.x4_c00288{left:432.340200px;}
.x14_c00288{left:438.775200px;}
.x1a_c00288{left:486.340200px;}
.x5_c00288{left:507.190200px;}
.x22_c00288{left:510.790200px;}
.x23_c00288{left:525.940200px;}
.x16_c00288{left:545.740200px;}
.x6_c00288{left:567.340200px;}
.x17_c00288{left:585.715200px;}
.x7_c00288{left:587.890200px;}
.x18_c00288{left:599.740200px;}
.x1e_c00288{left:607.690200px;}
.x12_c00288{left:630.715200px;}
.x24_c00288{left:635.365200px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls0_c00288{letter-spacing:0.000000pt;}
.ws0_c00288{word-spacing:0.000000pt;}
.fs0_c00288{font-size:58.666667pt;}
.fs1_c00288{font-size:74.666667pt;}
.y0_c00288{bottom:0.000000pt;}
.y41_c00288{bottom:66.386667pt;}
.y3c_c00288{bottom:82.386667pt;}
.y3d_c00288{bottom:83.053333pt;}
.y3e_c00288{bottom:84.333333pt;}
.y3f_c00288{bottom:85.586667pt;}
.y40_c00288{bottom:86.586667pt;}
.y3a_c00288{bottom:100.000000pt;}
.y3b_c00288{bottom:102.586667pt;}
.y37_c00288{bottom:113.386667pt;}
.y38_c00288{bottom:113.720000pt;}
.y39_c00288{bottom:116.000000pt;}
.y34_c00288{bottom:128.120000pt;}
.y35_c00288{bottom:130.386667pt;}
.y36_c00288{bottom:132.333333pt;}
.y33_c00288{bottom:144.786667pt;}
.y2e_c00288{bottom:158.186667pt;}
.y2f_c00288{bottom:160.120000pt;}
.y30_c00288{bottom:162.053333pt;}
.y31_c00288{bottom:162.386667pt;}
.y32_c00288{bottom:163.053333pt;}
.y2b_c00288{bottom:173.586667pt;}
.y2c_c00288{bottom:175.186667pt;}
.y2d_c00288{bottom:176.453333pt;}
.y29_c00288{bottom:189.586667pt;}
.y2a_c00288{bottom:192.786667pt;}
.y28_c00288{bottom:240.133333pt;}
.y27_c00288{bottom:259.053333pt;}
.y26_c00288{bottom:277.920000pt;}
.y25_c00288{bottom:297.133333pt;}
.y24_c00288{bottom:316.000000pt;}
.y23_c00288{bottom:334.920000pt;}
.y22_c00288{bottom:354.053333pt;}
.y21_c00288{bottom:372.920000pt;}
.y20_c00288{bottom:392.453333pt;}
.y1f_c00288{bottom:411.666667pt;}
.y1e_c00288{bottom:430.853333pt;}
.y1d_c00288{bottom:450.386667pt;}
.y1c_c00288{bottom:469.586667pt;}
.y1b_c00288{bottom:489.120000pt;}
.y1a_c00288{bottom:508.666667pt;}
.y19_c00288{bottom:528.120000pt;}
.y18_c00288{bottom:547.333333pt;}
.y17_c00288{bottom:566.520000pt;}
.y16_c00288{bottom:585.786667pt;}
.y15_c00288{bottom:605.586667pt;}
.y14_c00288{bottom:682.720000pt;}
.y13_c00288{bottom:702.266667pt;}
.y12_c00288{bottom:721.466667pt;}
.y11_c00288{bottom:741.600000pt;}
.y10_c00288{bottom:761.133333pt;}
.yf_c00288{bottom:779.666667pt;}
.ye_c00288{bottom:780.666667pt;}
.yd_c00288{bottom:799.520000pt;}
.yc_c00288{bottom:818.720000pt;}
.yb_c00288{bottom:837.600000pt;}
.ya_c00288{bottom:857.720000pt;}
.y9_c00288{bottom:873.133333pt;}
.y8_c00288{bottom:873.800000pt;}
.y7_c00288{bottom:876.666667pt;}
.y6_c00288{bottom:896.133333pt;}
.y5_c00288{bottom:913.053333pt;}
.y4_c00288{bottom:914.666667pt;}
.y3_c00288{bottom:915.720000pt;}
.y42_c00288{bottom:965.933333pt;}
.y2_c00288{bottom:969.466667pt;}
.y1_c00288{bottom:969.720000pt;}
.h1_c00288{height:57.549479pt;}
.h2_c00288{height:57.578125pt;}
.h3_c00288{height:73.281250pt;}
.h4_c00288{height:75.250000pt;}
.h0_c00288{height:1044.000000pt;}
.w0_c00288{width:650.646400pt;}
.w1_c00288{width:650.666667pt;}
.x0_c00288{left:0.000000pt;}
.xf_c00288{left:44.769067pt;}
.xe_c00288{left:46.369067pt;}
.xc_c00288{left:47.369067pt;}
.x3_c00288{left:48.302400pt;}
.x9_c00288{left:49.235733pt;}
.x11_c00288{left:60.769067pt;}
.x1d_c00288{left:70.035733pt;}
.x10_c00288{left:73.902400pt;}
.xd_c00288{left:75.155733pt;}
.x8_c00288{left:77.769067pt;}
.x1f_c00288{left:112.969067pt;}
.x20_c00288{left:115.502400pt;}
.x21_c00288{left:135.369067pt;}
.x1b_c00288{left:178.835733pt;}
.xa_c00288{left:185.555733pt;}
.x15_c00288{left:195.169067pt;}
.xb_c00288{left:221.769067pt;}
.x1c_c00288{left:236.769067pt;}
.x1_c00288{left:242.569067pt;}
.x2_c00288{left:267.169067pt;}
.x19_c00288{left:277.102400pt;}
.x13_c00288{left:331.835733pt;}
.x4_c00288{left:384.302400pt;}
.x14_c00288{left:390.022400pt;}
.x1a_c00288{left:432.302400pt;}
.x5_c00288{left:450.835733pt;}
.x22_c00288{left:454.035733pt;}
.x23_c00288{left:467.502400pt;}
.x16_c00288{left:485.102400pt;}
.x6_c00288{left:504.302400pt;}
.x17_c00288{left:520.635733pt;}
.x7_c00288{left:522.569067pt;}
.x18_c00288{left:533.102400pt;}
.x1e_c00288{left:540.169067pt;}
.x12_c00288{left:560.635733pt;}
.x24_c00288{left:564.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00289 {
    display:none;
  }
  .loading-indicator_c00289.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00289 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00289 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00289" -> "#page-container .classname_c00289")
 */
.pf_c00289 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00289 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00289 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00289 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00289 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00289 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00289 {overflow:visible;}
  }
}
.c_c00289 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00289 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00289:after { /* webkit #35443 */
  content: '';
}
.t_c00289:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00289 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00289 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00289 { /* info for Javascript */
  display:none;
}
.l_c00289 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00289 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00289 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00289:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00289 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00289.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00289 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00289{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00289;src:url('chunks/assets/font_adf25de5e9630e6a2b5cd983.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00289;src:url('chunks/assets/font_370eb36a61ccb114acdfa557.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00289;src:url('chunks/assets/font_43cffa94a2de114079d157db.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00289;src:url('chunks/assets/font_f96dc4f2383221674091a2ec.woff2')format("woff");}.ff4_c00289{font-family:ff4_c00289;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c00289{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mc_c00289{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m0_c00289{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mb_c00289{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00289{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m24_c00289{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3_c00289{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m17_c00289{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m18_c00289{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c00289{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00289{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c00289{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00289{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00289{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m22_c00289{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m20_c00289{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00289{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c00289{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m21_c00289{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00289{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c00289{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00289{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00289{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c00289{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m8_c00289{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5_c00289{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c00289{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c00289{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4_c00289{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c00289{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma_c00289{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10_c00289{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m11_c00289{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m12_c00289{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00289{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m23_c00289{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1_c00289{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.ls0_c00289{letter-spacing:0.000000px;}
.sc__c00289{text-shadow:none;}
.sc0_c00289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00289{-webkit-text-stroke:0px transparent;}
.sc0_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00289{word-spacing:0.000000px;}
.fc0_c00289{color:transparent;}
.fs1_c00289{font-size:54.000000px;}
.fs5_c00289{font-size:60.000000px;}
.fs3_c00289{font-size:66.000000px;}
.fs6_c00289{font-size:72.000000px;}
.fs0_c00289{font-size:78.000000px;}
.fs2_c00289{font-size:84.000000px;}
.fs4_c00289{font-size:90.000000px;}
.y0_c00289{bottom:0.000000px;}
.y4f_c00289{bottom:91.260000px;}
.y4e_c00289{bottom:91.935000px;}
.y4d_c00289{bottom:93.375000px;}
.y4c_c00289{bottom:97.410000px;}
.y4b_c00289{bottom:98.835000px;}
.y4a_c00289{bottom:111.810000px;}
.y49_c00289{bottom:125.760000px;}
.y48_c00289{bottom:141.285000px;}
.y47_c00289{bottom:142.710000px;}
.y46_c00289{bottom:144.885000px;}
.y45_c00289{bottom:149.625000px;}
.y44_c00289{bottom:163.260000px;}
.y43_c00289{bottom:176.250000px;}
.y42_c00289{bottom:179.085000px;}
.y41_c00289{bottom:181.260000px;}
.y40_c00289{bottom:194.535000px;}
.y3f_c00289{bottom:211.875000px;}
.y3e_c00289{bottom:228.750000px;}
.y3d_c00289{bottom:234.210000px;}
.y3c_c00289{bottom:247.500000px;}
.y3b_c00289{bottom:261.525000px;}
.y3a_c00289{bottom:262.275000px;}
.y39_c00289{bottom:265.500000px;}
.y38_c00289{bottom:281.025000px;}
.y37_c00289{bottom:285.660000px;}
.y36_c00289{bottom:373.125000px;}
.y35_c00289{bottom:374.535000px;}
.y34_c00289{bottom:376.335000px;}
.y33_c00289{bottom:396.525000px;}
.y32_c00289{bottom:418.125000px;}
.y31_c00289{bottom:439.710000px;}
.y30_c00289{bottom:441.510000px;}
.y2f_c00289{bottom:459.885000px;}
.y2e_c00289{bottom:462.060000px;}
.y2d_c00289{bottom:462.435000px;}
.y2c_c00289{bottom:462.750000px;}
.y2b_c00289{bottom:481.125000px;}
.y2a_c00289{bottom:483.660000px;}
.y29_c00289{bottom:484.335000px;}
.y28_c00289{bottom:484.710000px;}
.y27_c00289{bottom:504.885000px;}
.y26_c00289{bottom:526.125000px;}
.y25_c00289{bottom:547.410000px;}
.y24_c00289{bottom:569.310000px;}
.y23_c00289{bottom:590.535000px;}
.y22_c00289{bottom:611.385000px;}
.y21_c00289{bottom:612.510000px;}
.y20_c00289{bottom:634.125000px;}
.y1f_c00289{bottom:656.085000px;}
.y1e_c00289{bottom:677.310000px;}
.y1d_c00289{bottom:699.285000px;}
.y1c_c00289{bottom:720.885000px;}
.y1b_c00289{bottom:742.500000px;}
.y1a_c00289{bottom:764.085000px;}
.y19_c00289{bottom:786.060000px;}
.y18_c00289{bottom:806.925000px;}
.y17_c00289{bottom:828.525000px;}
.y16_c00289{bottom:849.750000px;}
.y15_c00289{bottom:870.675000px;}
.y14_c00289{bottom:891.900000px;}
.y13_c00289{bottom:913.500000px;}
.y12_c00289{bottom:935.460000px;}
.y11_c00289{bottom:954.900000px;}
.ya_c00289{bottom:966.060000px;}
.yb_c00289{bottom:970.050000px;}
.yc_c00289{bottom:970.710000px;}
.yd_c00289{bottom:971.460000px;}
.ye_c00289{bottom:973.650000px;}
.yf_c00289{bottom:976.800000px;}
.y10_c00289{bottom:980.085000px;}
.y7_c00289{bottom:993.810000px;}
.y8_c00289{bottom:1000.275000px;}
.y9_c00289{bottom:1001.685000px;}
.y6_c00289{bottom:1021.500000px;}
.y4_c00289{bottom:1033.050000px;}
.y5_c00289{bottom:1043.085000px;}
.y1_c00289{bottom:1091.400000px;}
.y3_c00289{bottom:1099.650000px;}
.y2_c00289{bottom:1106.685000px;}
.h2_c00289{height:52.998047px;}
.h7_c00289{height:58.886719px;}
.h9_c00289{height:64.743164px;}
.h4_c00289{height:64.775391px;}
.h8_c00289{height:70.664062px;}
.h5_c00289{height:76.514648px;}
.h1_c00289{height:78.609375px;}
.h3_c00289{height:82.400391px;}
.h6_c00289{height:88.330078px;}
.h0_c00289{height:1174.500000px;}
.w0_c00289{width:731.977200px;}
.w1_c00289{width:732.000000px;}
.x0_c00289{left:0.000000px;}
.x16_c00289{left:52.165200px;}
.x10_c00289{left:53.590200px;}
.xf_c00289{left:55.090200px;}
.xe_c00289{left:56.140200px;}
.x4_c00289{left:57.565200px;}
.x1d_c00289{left:72.715200px;}
.x24_c00289{left:73.765200px;}
.x1_c00289{left:76.990200px;}
.x12_c00289{left:84.175200px;}
.x8_c00289{left:85.675200px;}
.xd_c00289{left:87.115200px;}
.x13_c00289{left:89.590200px;}
.x9_c00289{left:91.390200px;}
.xa_c00289{left:94.315200px;}
.x14_c00289{left:95.740200px;}
.x2_c00289{left:104.365200px;}
.x21_c00289{left:109.090200px;}
.x1e_c00289{left:110.140200px;}
.x27_c00289{left:111.565200px;}
.x1a_c00289{left:125.290200px;}
.x5_c00289{left:130.990200px;}
.x17_c00289{left:139.690200px;}
.x18_c00289{left:169.915200px;}
.xb_c00289{left:178.915200px;}
.x28_c00289{left:186.490200px;}
.x6_c00289{left:240.490200px;}
.x22_c00289{left:265.690200px;}
.x3_c00289{left:278.590200px;}
.x23_c00289{left:286.540200px;}
.x1b_c00289{left:305.965200px;}
.xc_c00289{left:324.715200px;}
.x29_c00289{left:339.790200px;}
.x25_c00289{left:368.590200px;}
.x1c_c00289{left:404.275200px;}
.x26_c00289{left:410.740200px;}
.x19_c00289{left:465.115200px;}
.x7_c00289{left:468.715200px;}
.x1f_c00289{left:493.540200px;}
.x15_c00289{left:531.340200px;}
.x20_c00289{left:543.565200px;}
.x11_c00289{left:658.090200px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls0_c00289{letter-spacing:0.000000pt;}
.ws0_c00289{word-spacing:0.000000pt;}
.fs1_c00289{font-size:48.000000pt;}
.fs5_c00289{font-size:53.333333pt;}
.fs3_c00289{font-size:58.666667pt;}
.fs6_c00289{font-size:64.000000pt;}
.fs0_c00289{font-size:69.333333pt;}
.fs2_c00289{font-size:74.666667pt;}
.fs4_c00289{font-size:80.000000pt;}
.y0_c00289{bottom:0.000000pt;}
.y4f_c00289{bottom:81.120000pt;}
.y4e_c00289{bottom:81.720000pt;}
.y4d_c00289{bottom:83.000000pt;}
.y4c_c00289{bottom:86.586667pt;}
.y4b_c00289{bottom:87.853333pt;}
.y4a_c00289{bottom:99.386667pt;}
.y49_c00289{bottom:111.786667pt;}
.y48_c00289{bottom:125.586667pt;}
.y47_c00289{bottom:126.853333pt;}
.y46_c00289{bottom:128.786667pt;}
.y45_c00289{bottom:133.000000pt;}
.y44_c00289{bottom:145.120000pt;}
.y43_c00289{bottom:156.666667pt;}
.y42_c00289{bottom:159.186667pt;}
.y41_c00289{bottom:161.120000pt;}
.y40_c00289{bottom:172.920000pt;}
.y3f_c00289{bottom:188.333333pt;}
.y3e_c00289{bottom:203.333333pt;}
.y3d_c00289{bottom:208.186667pt;}
.y3c_c00289{bottom:220.000000pt;}
.y3b_c00289{bottom:232.466667pt;}
.y3a_c00289{bottom:233.133333pt;}
.y39_c00289{bottom:236.000000pt;}
.y38_c00289{bottom:249.800000pt;}
.y37_c00289{bottom:253.920000pt;}
.y36_c00289{bottom:331.666667pt;}
.y35_c00289{bottom:332.920000pt;}
.y34_c00289{bottom:334.520000pt;}
.y33_c00289{bottom:352.466667pt;}
.y32_c00289{bottom:371.666667pt;}
.y31_c00289{bottom:390.853333pt;}
.y30_c00289{bottom:392.453333pt;}
.y2f_c00289{bottom:408.786667pt;}
.y2e_c00289{bottom:410.720000pt;}
.y2d_c00289{bottom:411.053333pt;}
.y2c_c00289{bottom:411.333333pt;}
.y2b_c00289{bottom:427.666667pt;}
.y2a_c00289{bottom:429.920000pt;}
.y29_c00289{bottom:430.520000pt;}
.y28_c00289{bottom:430.853333pt;}
.y27_c00289{bottom:448.786667pt;}
.y26_c00289{bottom:467.666667pt;}
.y25_c00289{bottom:486.586667pt;}
.y24_c00289{bottom:506.053333pt;}
.y23_c00289{bottom:524.920000pt;}
.y22_c00289{bottom:543.453333pt;}
.y21_c00289{bottom:544.453333pt;}
.y20_c00289{bottom:563.666667pt;}
.y1f_c00289{bottom:583.186667pt;}
.y1e_c00289{bottom:602.053333pt;}
.y1d_c00289{bottom:621.586667pt;}
.y1c_c00289{bottom:640.786667pt;}
.y1b_c00289{bottom:660.000000pt;}
.y1a_c00289{bottom:679.186667pt;}
.y19_c00289{bottom:698.720000pt;}
.y18_c00289{bottom:717.266667pt;}
.y17_c00289{bottom:736.466667pt;}
.y16_c00289{bottom:755.333333pt;}
.y15_c00289{bottom:773.933333pt;}
.y14_c00289{bottom:792.800000pt;}
.y13_c00289{bottom:812.000000pt;}
.y12_c00289{bottom:831.520000pt;}
.y11_c00289{bottom:848.800000pt;}
.ya_c00289{bottom:858.720000pt;}
.yb_c00289{bottom:862.266667pt;}
.yc_c00289{bottom:862.853333pt;}
.yd_c00289{bottom:863.520000pt;}
.ye_c00289{bottom:865.466667pt;}
.yf_c00289{bottom:868.266667pt;}
.y10_c00289{bottom:871.186667pt;}
.y7_c00289{bottom:883.386667pt;}
.y8_c00289{bottom:889.133333pt;}
.y9_c00289{bottom:890.386667pt;}
.y6_c00289{bottom:908.000000pt;}
.y4_c00289{bottom:918.266667pt;}
.y5_c00289{bottom:927.186667pt;}
.y1_c00289{bottom:970.133333pt;}
.y3_c00289{bottom:977.466667pt;}
.y2_c00289{bottom:983.720000pt;}
.h2_c00289{height:47.109375pt;}
.h7_c00289{height:52.343750pt;}
.h9_c00289{height:57.549479pt;}
.h4_c00289{height:57.578125pt;}
.h8_c00289{height:62.812500pt;}
.h5_c00289{height:68.013021pt;}
.h1_c00289{height:69.875000pt;}
.h3_c00289{height:73.244792pt;}
.h6_c00289{height:78.515625pt;}
.h0_c00289{height:1044.000000pt;}
.w0_c00289{width:650.646400pt;}
.w1_c00289{width:650.666667pt;}
.x0_c00289{left:0.000000pt;}
.x16_c00289{left:46.369067pt;}
.x10_c00289{left:47.635733pt;}
.xf_c00289{left:48.969067pt;}
.xe_c00289{left:49.902400pt;}
.x4_c00289{left:51.169067pt;}
.x1d_c00289{left:64.635733pt;}
.x24_c00289{left:65.569067pt;}
.x1_c00289{left:68.435733pt;}
.x12_c00289{left:74.822400pt;}
.x8_c00289{left:76.155733pt;}
.xd_c00289{left:77.435733pt;}
.x13_c00289{left:79.635733pt;}
.x9_c00289{left:81.235733pt;}
.xa_c00289{left:83.835733pt;}
.x14_c00289{left:85.102400pt;}
.x2_c00289{left:92.769067pt;}
.x21_c00289{left:96.969067pt;}
.x1e_c00289{left:97.902400pt;}
.x27_c00289{left:99.169067pt;}
.x1a_c00289{left:111.369067pt;}
.x5_c00289{left:116.435733pt;}
.x17_c00289{left:124.169067pt;}
.x18_c00289{left:151.035733pt;}
.xb_c00289{left:159.035733pt;}
.x28_c00289{left:165.769067pt;}
.x6_c00289{left:213.769067pt;}
.x22_c00289{left:236.169067pt;}
.x3_c00289{left:247.635733pt;}
.x23_c00289{left:254.702400pt;}
.x1b_c00289{left:271.969067pt;}
.xc_c00289{left:288.635733pt;}
.x29_c00289{left:302.035733pt;}
.x25_c00289{left:327.635733pt;}
.x1c_c00289{left:359.355733pt;}
.x26_c00289{left:365.102400pt;}
.x19_c00289{left:413.435733pt;}
.x7_c00289{left:416.635733pt;}
.x1f_c00289{left:438.702400pt;}
.x15_c00289{left:472.302400pt;}
.x20_c00289{left:483.169067pt;}
.x11_c00289{left:584.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4582adabf185f3e41e62aaac.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00290;src:url('chunks/assets/font_39e45448ab84a2e971bccf25.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00290;src:url('chunks/assets/font_a5f43e118a2e8c733c3b1046.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00290{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf_c00290{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m0_c00290{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c00290{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00290{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c00290{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00290{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m11_c00290{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00290{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00290{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00290{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00290{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00290{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00290{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00290{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00290{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00290{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c00290{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m13_c00290{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,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;}
}
.ws0_c00290{word-spacing:0.000000px;}
.fc0_c00290{color:transparent;}
.fs0_c00290{font-size:60.000000px;}
.fs3_c00290{font-size:66.000000px;}
.fs2_c00290{font-size:72.000000px;}
.fs1_c00290{font-size:84.000000px;}
.y0_c00290{bottom:0.000000px;}
.y43_c00290{bottom:67.500000px;}
.y44_c00290{bottom:68.160000px;}
.y45_c00290{bottom:71.085000px;}
.y42_c00290{bottom:88.785000px;}
.y41_c00290{bottom:105.585000px;}
.y40_c00290{bottom:122.535000px;}
.y3e_c00290{bottom:137.310000px;}
.y3f_c00290{bottom:141.000000px;}
.y3c_c00290{bottom:153.885000px;}
.y3d_c00290{bottom:156.375000px;}
.y39_c00290{bottom:170.085000px;}
.y3a_c00290{bottom:170.385000px;}
.y3b_c00290{bottom:173.010000px;}
.y37_c00290{bottom:188.460000px;}
.y38_c00290{bottom:190.260000px;}
.y34_c00290{bottom:205.410000px;}
.y35_c00290{bottom:207.135000px;}
.y36_c00290{bottom:208.560000px;}
.y31_c00290{bottom:220.500000px;}
.y32_c00290{bottom:222.000000px;}
.y33_c00290{bottom:223.410000px;}
.y2e_c00290{bottom:237.060000px;}
.y2f_c00290{bottom:238.185000px;}
.y30_c00290{bottom:239.910000px;}
.y2c_c00290{bottom:254.310000px;}
.y2d_c00290{bottom:256.500000px;}
.y2a_c00290{bottom:272.400000px;}
.y2b_c00290{bottom:273.060000px;}
.y29_c00290{bottom:289.650000px;}
.y26_c00290{bottom:306.900000px;}
.y27_c00290{bottom:308.310000px;}
.y28_c00290{bottom:309.435000px;}
.y25_c00290{bottom:324.900000px;}
.y24_c00290{bottom:341.775000px;}
.y21_c00290{bottom:358.035000px;}
.y22_c00290{bottom:359.085000px;}
.y23_c00290{bottom:360.210000px;}
.y1f_c00290{bottom:374.535000px;}
.y20_c00290{bottom:376.410000px;}
.y1e_c00290{bottom:433.560000px;}
.y1d_c00290{bottom:455.625000px;}
.y1c_c00290{bottom:477.885000px;}
.y1b_c00290{bottom:499.875000px;}
.y1a_c00290{bottom:521.460000px;}
.y19_c00290{bottom:543.435000px;}
.y18_c00290{bottom:565.035000px;}
.y17_c00290{bottom:586.935000px;}
.y16_c00290{bottom:608.535000px;}
.y15_c00290{bottom:630.885000px;}
.y14_c00290{bottom:652.125000px;}
.y13_c00290{bottom:674.085000px;}
.y12_c00290{bottom:695.685000px;}
.y11_c00290{bottom:719.385000px;}
.y10_c00290{bottom:739.575000px;}
.yf_c00290{bottom:761.160000px;}
.ye_c00290{bottom:783.510000px;}
.yd_c00290{bottom:805.125000px;}
.yc_c00290{bottom:829.560000px;}
.yb_c00290{bottom:849.060000px;}
.ya_c00290{bottom:871.335000px;}
.y9_c00290{bottom:893.310000px;}
.y8_c00290{bottom:914.550000px;}
.y7_c00290{bottom:936.150000px;}
.y6_c00290{bottom:957.375000px;}
.y5_c00290{bottom:978.300000px;}
.y4_c00290{bottom:982.650000px;}
.y3_c00290{bottom:1005.000000px;}
.y2_c00290{bottom:1022.925000px;}
.y1_c00290{bottom:1084.500000px;}
.h1_c00290{height:60.468750px;}
.h6_c00290{height:64.743164px;}
.h5_c00290{height:64.775391px;}
.h4_c00290{height:70.664062px;}
.h3_c00290{height:82.441406px;}
.h2_c00290{height:84.656250px;}
.h0_c00290{height:1174.500000px;}
.w0_c00290{width:731.977200px;}
.w1_c00290{width:732.000000px;}
.x0_c00290{left:0.000000px;}
.x2_c00290{left:61.165200px;}
.x5_c00290{left:62.590200px;}
.x7_c00290{left:63.715200px;}
.x9_c00290{left:64.765200px;}
.xf_c00290{left:65.890200px;}
.x12_c00290{left:66.940200px;}
.x1b_c00290{left:69.115200px;}
.x23_c00290{left:70.540200px;}
.xb_c00290{left:81.715200px;}
.x15_c00290{left:84.175200px;}
.x13_c00290{left:85.675200px;}
.x3_c00290{left:93.550200px;}
.x6_c00290{left:95.740200px;}
.xa_c00290{left:96.790200px;}
.x21_c00290{left:97.915200px;}
.x8_c00290{left:106.915200px;}
.xc_c00290{left:120.190200px;}
.x14_c00290{left:122.740200px;}
.x16_c00290{left:125.290200px;}
.x1d_c00290{left:130.690200px;}
.x4_c00290{left:149.365200px;}
.x24_c00290{left:150.490200px;}
.x1f_c00290{left:153.340200px;}
.x25_c00290{left:172.750200px;}
.x1e_c00290{left:196.165200px;}
.x17_c00290{left:197.290200px;}
.x20_c00290{left:208.090200px;}
.x18_c00290{left:292.990200px;}
.x1_c00290{left:304.540200px;}
.x22_c00290{left:341.290200px;}
.xd_c00290{left:389.515200px;}
.xe_c00290{left:405.715200px;}
.x1c_c00290{left:436.990200px;}
.x10_c00290{left:503.290200px;}
.x19_c00290{left:511.915200px;}
.x11_c00290{left:521.590200px;}
.x1a_c00290{left:532.765200px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls0_c00290{letter-spacing:0.000000pt;}
.ws0_c00290{word-spacing:0.000000pt;}
.fs0_c00290{font-size:53.333333pt;}
.fs3_c00290{font-size:58.666667pt;}
.fs2_c00290{font-size:64.000000pt;}
.fs1_c00290{font-size:74.666667pt;}
.y0_c00290{bottom:0.000000pt;}
.y43_c00290{bottom:60.000000pt;}
.y44_c00290{bottom:60.586667pt;}
.y45_c00290{bottom:63.186667pt;}
.y42_c00290{bottom:78.920000pt;}
.y41_c00290{bottom:93.853333pt;}
.y40_c00290{bottom:108.920000pt;}
.y3e_c00290{bottom:122.053333pt;}
.y3f_c00290{bottom:125.333333pt;}
.y3c_c00290{bottom:136.786667pt;}
.y3d_c00290{bottom:139.000000pt;}
.y39_c00290{bottom:151.186667pt;}
.y3a_c00290{bottom:151.453333pt;}
.y3b_c00290{bottom:153.786667pt;}
.y37_c00290{bottom:167.520000pt;}
.y38_c00290{bottom:169.120000pt;}
.y34_c00290{bottom:182.586667pt;}
.y35_c00290{bottom:184.120000pt;}
.y36_c00290{bottom:185.386667pt;}
.y31_c00290{bottom:196.000000pt;}
.y32_c00290{bottom:197.333333pt;}
.y33_c00290{bottom:198.586667pt;}
.y2e_c00290{bottom:210.720000pt;}
.y2f_c00290{bottom:211.720000pt;}
.y30_c00290{bottom:213.253333pt;}
.y2c_c00290{bottom:226.053333pt;}
.y2d_c00290{bottom:228.000000pt;}
.y2a_c00290{bottom:242.133333pt;}
.y2b_c00290{bottom:242.720000pt;}
.y29_c00290{bottom:257.466667pt;}
.y26_c00290{bottom:272.800000pt;}
.y27_c00290{bottom:274.053333pt;}
.y28_c00290{bottom:275.053333pt;}
.y25_c00290{bottom:288.800000pt;}
.y24_c00290{bottom:303.800000pt;}
.y21_c00290{bottom:318.253333pt;}
.y22_c00290{bottom:319.186667pt;}
.y23_c00290{bottom:320.186667pt;}
.y1f_c00290{bottom:332.920000pt;}
.y20_c00290{bottom:334.586667pt;}
.y1e_c00290{bottom:385.386667pt;}
.y1d_c00290{bottom:405.000000pt;}
.y1c_c00290{bottom:424.786667pt;}
.y1b_c00290{bottom:444.333333pt;}
.y1a_c00290{bottom:463.520000pt;}
.y19_c00290{bottom:483.053333pt;}
.y18_c00290{bottom:502.253333pt;}
.y17_c00290{bottom:521.720000pt;}
.y16_c00290{bottom:540.920000pt;}
.y15_c00290{bottom:560.786667pt;}
.y14_c00290{bottom:579.666667pt;}
.y13_c00290{bottom:599.186667pt;}
.y12_c00290{bottom:618.386667pt;}
.y11_c00290{bottom:639.453333pt;}
.y10_c00290{bottom:657.400000pt;}
.yf_c00290{bottom:676.586667pt;}
.ye_c00290{bottom:696.453333pt;}
.yd_c00290{bottom:715.666667pt;}
.yc_c00290{bottom:737.386667pt;}
.yb_c00290{bottom:754.720000pt;}
.ya_c00290{bottom:774.520000pt;}
.y9_c00290{bottom:794.053333pt;}
.y8_c00290{bottom:812.933333pt;}
.y7_c00290{bottom:832.133333pt;}
.y6_c00290{bottom:851.000000pt;}
.y5_c00290{bottom:869.600000pt;}
.y4_c00290{bottom:873.466667pt;}
.y3_c00290{bottom:893.333333pt;}
.y2_c00290{bottom:909.266667pt;}
.y1_c00290{bottom:964.000000pt;}
.h1_c00290{height:53.750000pt;}
.h6_c00290{height:57.549479pt;}
.h5_c00290{height:57.578125pt;}
.h4_c00290{height:62.812500pt;}
.h3_c00290{height:73.281250pt;}
.h2_c00290{height:75.250000pt;}
.h0_c00290{height:1044.000000pt;}
.w0_c00290{width:650.646400pt;}
.w1_c00290{width:650.666667pt;}
.x0_c00290{left:0.000000pt;}
.x2_c00290{left:54.369067pt;}
.x5_c00290{left:55.635733pt;}
.x7_c00290{left:56.635733pt;}
.x9_c00290{left:57.569067pt;}
.xf_c00290{left:58.569067pt;}
.x12_c00290{left:59.502400pt;}
.x1b_c00290{left:61.435733pt;}
.x23_c00290{left:62.702400pt;}
.xb_c00290{left:72.635733pt;}
.x15_c00290{left:74.822400pt;}
.x13_c00290{left:76.155733pt;}
.x3_c00290{left:83.155733pt;}
.x6_c00290{left:85.102400pt;}
.xa_c00290{left:86.035733pt;}
.x21_c00290{left:87.035733pt;}
.x8_c00290{left:95.035733pt;}
.xc_c00290{left:106.835733pt;}
.x14_c00290{left:109.102400pt;}
.x16_c00290{left:111.369067pt;}
.x1d_c00290{left:116.169067pt;}
.x4_c00290{left:132.769067pt;}
.x24_c00290{left:133.769067pt;}
.x1f_c00290{left:136.302400pt;}
.x25_c00290{left:153.555733pt;}
.x1e_c00290{left:174.369067pt;}
.x17_c00290{left:175.369067pt;}
.x20_c00290{left:184.969067pt;}
.x18_c00290{left:260.435733pt;}
.x1_c00290{left:270.702400pt;}
.x22_c00290{left:303.369067pt;}
.xd_c00290{left:346.235733pt;}
.xe_c00290{left:360.635733pt;}
.x1c_c00290{left:388.435733pt;}
.x10_c00290{left:447.369067pt;}
.x19_c00290{left:455.035733pt;}
.x11_c00290{left:463.635733pt;}
.x1a_c00290{left:473.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d67427d3527abbd8a389cf7.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00291;src:url('chunks/assets/font_7ffd9594447b57cd19fa6eda.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00291;src:url('chunks/assets/font_60af90cde4f8e205c4865b13.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m18_c00291{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m11_c00291{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf_c00291{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m17_c00291{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00291{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m0_c00291{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m19_c00291{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c00291{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c00291{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00291{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00291{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c00291{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c00291{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m14_c00291{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c00291{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00291{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00291{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00291{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00291{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c00291{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00291{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c00291{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5_c00291{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m6_c00291{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2_c00291{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c00291{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,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:0.000000px;}
.fc0_c00291{color:transparent;}
.fs0_c00291{font-size:60.000000px;}
.fs1_c00291{font-size:66.000000px;}
.fs2_c00291{font-size:72.000000px;}
.y0_c00291{bottom:0.000000px;}
.y43_c00291{bottom:91.260000px;}
.y42_c00291{bottom:91.635000px;}
.y41_c00291{bottom:95.910000px;}
.y40_c00291{bottom:110.685000px;}
.y3f_c00291{bottom:126.210000px;}
.y3e_c00291{bottom:129.060000px;}
.y3d_c00291{bottom:132.660000px;}
.y3c_c00291{bottom:144.585000px;}
.y3b_c00291{bottom:161.835000px;}
.y3a_c00291{bottom:178.410000px;}
.y39_c00291{bottom:184.125000px;}
.y38_c00291{bottom:197.460000px;}
.y37_c00291{bottom:213.660000px;}
.y36_c00291{bottom:220.500000px;}
.y32_c00291{bottom:229.875000px;}
.y35_c00291{bottom:231.000000px;}
.y33_c00291{bottom:246.810000px;}
.y34_c00291{bottom:247.125000px;}
.y31_c00291{bottom:250.410000px;}
.y30_c00291{bottom:265.875000px;}
.y2f_c00291{bottom:270.900000px;}
.y2e_c00291{bottom:284.910000px;}
.y2d_c00291{bottom:288.210000px;}
.y2c_c00291{bottom:303.285000px;}
.y2b_c00291{bottom:318.000000px;}
.y2a_c00291{bottom:321.960000px;}
.y29_c00291{bottom:335.685000px;}
.y28_c00291{bottom:352.650000px;}
.y27_c00291{bottom:369.585000px;}
.y26_c00291{bottom:372.435000px;}
.y25_c00291{bottom:387.525000px;}
.y23_c00291{bottom:387.900000px;}
.y24_c00291{bottom:404.085000px;}
.y22_c00291{bottom:406.275000px;}
.y21_c00291{bottom:422.085000px;}
.y20_c00291{bottom:439.410000px;}
.y1f_c00291{bottom:441.210000px;}
.y1e_c00291{bottom:457.035000px;}
.y1d_c00291{bottom:474.285000px;}
.y1c_c00291{bottom:491.250000px;}
.y1b_c00291{bottom:508.500000px;}
.y1a_c00291{bottom:525.750000px;}
.y19_c00291{bottom:526.875000px;}
.y17_c00291{bottom:592.035000px;}
.y18_c00291{bottom:592.335000px;}
.y16_c00291{bottom:614.310000px;}
.y15_c00291{bottom:636.285000px;}
.y14_c00291{bottom:657.885000px;}
.y13_c00291{bottom:679.500000px;}
.y12_c00291{bottom:701.085000px;}
.y11_c00291{bottom:719.835000px;}
.y10_c00291{bottom:744.285000px;}
.yf_c00291{bottom:764.835000px;}
.ye_c00291{bottom:787.875000px;}
.yd_c00291{bottom:809.460000px;}
.yc_c00291{bottom:828.900000px;}
.yb_c00291{bottom:851.250000px;}
.ya_c00291{bottom:872.460000px;}
.y9_c00291{bottom:894.060000px;}
.y8_c00291{bottom:915.300000px;}
.y7_c00291{bottom:932.625000px;}
.y6_c00291{bottom:959.250000px;}
.y5_c00291{bottom:981.150000px;}
.y4_c00291{bottom:991.275000px;}
.y3_c00291{bottom:1022.925000px;}
.y2_c00291{bottom:1044.150000px;}
.y44_c00291{bottom:1091.025000px;}
.y1_c00291{bottom:1100.310000px;}
.h1_c00291{height:58.886719px;}
.h4_c00291{height:60.468750px;}
.h5_c00291{height:64.743164px;}
.h2_c00291{height:64.775391px;}
.h3_c00291{height:70.628906px;}
.h0_c00291{height:1174.500000px;}
.w0_c00291{width:731.977200px;}
.w1_c00291{width:732.000000px;}
.x0_c00291{left:0.000000px;}
.x7_c00291{left:43.915200px;}
.x6_c00291{left:45.340200px;}
.x3_c00291{left:46.390200px;}
.x4_c00291{left:47.890200px;}
.x10_c00291{left:48.940200px;}
.x1c_c00291{left:50.365200px;}
.xb_c00291{left:53.965200px;}
.x9_c00291{left:62.590200px;}
.xe_c00291{left:64.090200px;}
.x13_c00291{left:65.140200px;}
.x11_c00291{left:66.565200px;}
.x1a_c00291{left:73.090200px;}
.x5_c00291{left:74.140200px;}
.x2_c00291{left:76.300200px;}
.xa_c00291{left:98.290200px;}
.xf_c00291{left:99.340200px;}
.x14_c00291{left:101.515200px;}
.x12_c00291{left:102.565200px;}
.x19_c00291{left:103.690200px;}
.x8_c00291{left:160.165200px;}
.x1b_c00291{left:182.500200px;}
.xd_c00291{left:246.190200px;}
.x1_c00291{left:264.190200px;}
.x1d_c00291{left:268.165200px;}
.xc_c00291{left:273.565200px;}
.x1e_c00291{left:344.515200px;}
.x1f_c00291{left:444.565200px;}
.x20_c00291{left:487.390200px;}
.x16_c00291{left:515.515200px;}
.x15_c00291{left:532.090200px;}
.x17_c00291{left:533.140200px;}
.x18_c00291{left:539.290200px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls0_c00291{letter-spacing:0.000000pt;}
.ws0_c00291{word-spacing:0.000000pt;}
.fs0_c00291{font-size:53.333333pt;}
.fs1_c00291{font-size:58.666667pt;}
.fs2_c00291{font-size:64.000000pt;}
.y0_c00291{bottom:0.000000pt;}
.y43_c00291{bottom:81.120000pt;}
.y42_c00291{bottom:81.453333pt;}
.y41_c00291{bottom:85.253333pt;}
.y40_c00291{bottom:98.386667pt;}
.y3f_c00291{bottom:112.186667pt;}
.y3e_c00291{bottom:114.720000pt;}
.y3d_c00291{bottom:117.920000pt;}
.y3c_c00291{bottom:128.520000pt;}
.y3b_c00291{bottom:143.853333pt;}
.y3a_c00291{bottom:158.586667pt;}
.y39_c00291{bottom:163.666667pt;}
.y38_c00291{bottom:175.520000pt;}
.y37_c00291{bottom:189.920000pt;}
.y36_c00291{bottom:196.000000pt;}
.y32_c00291{bottom:204.333333pt;}
.y35_c00291{bottom:205.333333pt;}
.y33_c00291{bottom:219.386667pt;}
.y34_c00291{bottom:219.666667pt;}
.y31_c00291{bottom:222.586667pt;}
.y30_c00291{bottom:236.333333pt;}
.y2f_c00291{bottom:240.800000pt;}
.y2e_c00291{bottom:253.253333pt;}
.y2d_c00291{bottom:256.186667pt;}
.y2c_c00291{bottom:269.586667pt;}
.y2b_c00291{bottom:282.666667pt;}
.y2a_c00291{bottom:286.186667pt;}
.y29_c00291{bottom:298.386667pt;}
.y28_c00291{bottom:313.466667pt;}
.y27_c00291{bottom:328.520000pt;}
.y26_c00291{bottom:331.053333pt;}
.y25_c00291{bottom:344.466667pt;}
.y23_c00291{bottom:344.800000pt;}
.y24_c00291{bottom:359.186667pt;}
.y22_c00291{bottom:361.133333pt;}
.y21_c00291{bottom:375.186667pt;}
.y20_c00291{bottom:390.586667pt;}
.y1f_c00291{bottom:392.186667pt;}
.y1e_c00291{bottom:406.253333pt;}
.y1d_c00291{bottom:421.586667pt;}
.y1c_c00291{bottom:436.666667pt;}
.y1b_c00291{bottom:452.000000pt;}
.y1a_c00291{bottom:467.333333pt;}
.y19_c00291{bottom:468.333333pt;}
.y17_c00291{bottom:526.253333pt;}
.y18_c00291{bottom:526.520000pt;}
.y16_c00291{bottom:546.053333pt;}
.y15_c00291{bottom:565.586667pt;}
.y14_c00291{bottom:584.786667pt;}
.y13_c00291{bottom:604.000000pt;}
.y12_c00291{bottom:623.186667pt;}
.y11_c00291{bottom:639.853333pt;}
.y10_c00291{bottom:661.586667pt;}
.yf_c00291{bottom:679.853333pt;}
.ye_c00291{bottom:700.333333pt;}
.yd_c00291{bottom:719.520000pt;}
.yc_c00291{bottom:736.800000pt;}
.yb_c00291{bottom:756.666667pt;}
.ya_c00291{bottom:775.520000pt;}
.y9_c00291{bottom:794.720000pt;}
.y8_c00291{bottom:813.600000pt;}
.y7_c00291{bottom:829.000000pt;}
.y6_c00291{bottom:852.666667pt;}
.y5_c00291{bottom:872.133333pt;}
.y4_c00291{bottom:881.133333pt;}
.y3_c00291{bottom:909.266667pt;}
.y2_c00291{bottom:928.133333pt;}
.y44_c00291{bottom:969.800000pt;}
.y1_c00291{bottom:978.053333pt;}
.h1_c00291{height:52.343750pt;}
.h4_c00291{height:53.750000pt;}
.h5_c00291{height:57.549479pt;}
.h2_c00291{height:57.578125pt;}
.h3_c00291{height:62.781250pt;}
.h0_c00291{height:1044.000000pt;}
.w0_c00291{width:650.646400pt;}
.w1_c00291{width:650.666667pt;}
.x0_c00291{left:0.000000pt;}
.x7_c00291{left:39.035733pt;}
.x6_c00291{left:40.302400pt;}
.x3_c00291{left:41.235733pt;}
.x4_c00291{left:42.569067pt;}
.x10_c00291{left:43.502400pt;}
.x1c_c00291{left:44.769067pt;}
.xb_c00291{left:47.969067pt;}
.x9_c00291{left:55.635733pt;}
.xe_c00291{left:56.969067pt;}
.x13_c00291{left:57.902400pt;}
.x11_c00291{left:59.169067pt;}
.x1a_c00291{left:64.969067pt;}
.x5_c00291{left:65.902400pt;}
.x2_c00291{left:67.822400pt;}
.xa_c00291{left:87.369067pt;}
.xf_c00291{left:88.302400pt;}
.x14_c00291{left:90.235733pt;}
.x12_c00291{left:91.169067pt;}
.x19_c00291{left:92.169067pt;}
.x8_c00291{left:142.369067pt;}
.x1b_c00291{left:162.222400pt;}
.xd_c00291{left:218.835733pt;}
.x1_c00291{left:234.835733pt;}
.x1d_c00291{left:238.369067pt;}
.xc_c00291{left:243.169067pt;}
.x1e_c00291{left:306.235733pt;}
.x1f_c00291{left:395.169067pt;}
.x20_c00291{left:433.235733pt;}
.x16_c00291{left:458.235733pt;}
.x15_c00291{left:472.969067pt;}
.x17_c00291{left:473.902400pt;}
.x18_c00291{left:479.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_956124ae8687bf9d53c00ddb.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00292;src:url('chunks/assets/font_fda3430110bf4acb229f72b5.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00292;src:url('chunks/assets/font_5c9f71ec97670509895ce834.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00292{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m14_c00292{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m0_c00292{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c00292{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c00292{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00292{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c00292{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c00292{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c00292{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c00292{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c00292{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00292{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c00292{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c00292{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c00292{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c00292{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00292{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00292{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00292{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00292{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00292{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m13_c00292{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c00292{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.ls0_c00292{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00292{word-spacing:0.000000px;}
.fc0_c00292{color:transparent;}
.fs0_c00292{font-size:60.000000px;}
.fs2_c00292{font-size:66.000000px;}
.fs1_c00292{font-size:78.000000px;}
.y0_c00292{bottom:0.000000px;}
.y26_c00292{bottom:465.660000px;}
.y25_c00292{bottom:485.835000px;}
.y24_c00292{bottom:501.000000px;}
.y23_c00292{bottom:520.785000px;}
.y1f_c00292{bottom:536.250000px;}
.y20_c00292{bottom:537.960000px;}
.y21_c00292{bottom:538.335000px;}
.y22_c00292{bottom:538.410000px;}
.y1d_c00292{bottom:553.500000px;}
.y1e_c00292{bottom:555.660000px;}
.y1c_c00292{bottom:572.250000px;}
.y19_c00292{bottom:588.435000px;}
.y1a_c00292{bottom:589.185000px;}
.y1b_c00292{bottom:590.535000px;}
.y18_c00292{bottom:607.500000px;}
.y17_c00292{bottom:624.750000px;}
.y16_c00292{bottom:641.685000px;}
.y15_c00292{bottom:659.310000px;}
.y14_c00292{bottom:676.935000px;}
.y13_c00292{bottom:694.260000px;}
.y12_c00292{bottom:711.885000px;}
.y11_c00292{bottom:728.835000px;}
.y10_c00292{bottom:808.050000px;}
.yf_c00292{bottom:829.275000px;}
.ye_c00292{bottom:851.250000px;}
.yd_c00292{bottom:872.460000px;}
.yc_c00292{bottom:894.375000px;}
.yb_c00292{bottom:915.960000px;}
.ya_c00292{bottom:937.560000px;}
.y9_c00292{bottom:959.175000px;}
.y8_c00292{bottom:978.960000px;}
.y7_c00292{bottom:979.710000px;}
.y6_c00292{bottom:980.835000px;}
.y5_c00292{bottom:1002.375000px;}
.y4_c00292{bottom:1024.425000px;}
.y3_c00292{bottom:1082.400000px;}
.y1_c00292{bottom:1084.875000px;}
.y2_c00292{bottom:1095.525000px;}
.h1_c00292{height:60.468750px;}
.h5_c00292{height:64.743164px;}
.h4_c00292{height:64.775391px;}
.h2_c00292{height:76.552734px;}
.h3_c00292{height:78.609375px;}
.h0_c00292{height:1174.500000px;}
.w0_c00292{width:731.977200px;}
.w1_c00292{width:732.000000px;}
.x0_c00292{left:0.000000px;}
.x8_c00292{left:59.740200px;}
.x5_c00292{left:60.790200px;}
.xb_c00292{left:61.915200px;}
.x16_c00292{left:64.390200px;}
.x15_c00292{left:79.165200px;}
.x9_c00292{left:85.675200px;}
.xc_c00292{left:87.115200px;}
.xd_c00292{left:88.165200px;}
.x4_c00292{left:93.550200px;}
.xe_c00292{left:112.315200px;}
.x10_c00292{left:144.340200px;}
.x11_c00292{left:228.940200px;}
.x1_c00292{left:278.590200px;}
.xf_c00292{left:280.090200px;}
.x12_c00292{left:333.340200px;}
.x13_c00292{left:348.490200px;}
.x14_c00292{left:410.365200px;}
.x2_c00292{left:473.365200px;}
.x6_c00292{left:524.140200px;}
.x7_c00292{left:553.990200px;}
.xa_c00292{left:571.690200px;}
.x3_c00292{left:637.165200px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls0_c00292{letter-spacing:0.000000pt;}
.ws0_c00292{word-spacing:0.000000pt;}
.fs0_c00292{font-size:53.333333pt;}
.fs2_c00292{font-size:58.666667pt;}
.fs1_c00292{font-size:69.333333pt;}
.y0_c00292{bottom:0.000000pt;}
.y26_c00292{bottom:413.920000pt;}
.y25_c00292{bottom:431.853333pt;}
.y24_c00292{bottom:445.333333pt;}
.y23_c00292{bottom:462.920000pt;}
.y1f_c00292{bottom:476.666667pt;}
.y20_c00292{bottom:478.186667pt;}
.y21_c00292{bottom:478.520000pt;}
.y22_c00292{bottom:478.586667pt;}
.y1d_c00292{bottom:492.000000pt;}
.y1e_c00292{bottom:493.920000pt;}
.y1c_c00292{bottom:508.666667pt;}
.y19_c00292{bottom:523.053333pt;}
.y1a_c00292{bottom:523.720000pt;}
.y1b_c00292{bottom:524.920000pt;}
.y18_c00292{bottom:540.000000pt;}
.y17_c00292{bottom:555.333333pt;}
.y16_c00292{bottom:570.386667pt;}
.y15_c00292{bottom:586.053333pt;}
.y14_c00292{bottom:601.720000pt;}
.y13_c00292{bottom:617.120000pt;}
.y12_c00292{bottom:632.786667pt;}
.y11_c00292{bottom:647.853333pt;}
.y10_c00292{bottom:718.266667pt;}
.yf_c00292{bottom:737.133333pt;}
.ye_c00292{bottom:756.666667pt;}
.yd_c00292{bottom:775.520000pt;}
.yc_c00292{bottom:795.000000pt;}
.yb_c00292{bottom:814.186667pt;}
.ya_c00292{bottom:833.386667pt;}
.y9_c00292{bottom:852.600000pt;}
.y8_c00292{bottom:870.186667pt;}
.y7_c00292{bottom:870.853333pt;}
.y6_c00292{bottom:871.853333pt;}
.y5_c00292{bottom:891.000000pt;}
.y4_c00292{bottom:910.600000pt;}
.y3_c00292{bottom:962.133333pt;}
.y1_c00292{bottom:964.333333pt;}
.y2_c00292{bottom:973.800000pt;}
.h1_c00292{height:53.750000pt;}
.h5_c00292{height:57.549479pt;}
.h4_c00292{height:57.578125pt;}
.h2_c00292{height:68.046875pt;}
.h3_c00292{height:69.875000pt;}
.h0_c00292{height:1044.000000pt;}
.w0_c00292{width:650.646400pt;}
.w1_c00292{width:650.666667pt;}
.x0_c00292{left:0.000000pt;}
.x8_c00292{left:53.102400pt;}
.x5_c00292{left:54.035733pt;}
.xb_c00292{left:55.035733pt;}
.x16_c00292{left:57.235733pt;}
.x15_c00292{left:70.369067pt;}
.x9_c00292{left:76.155733pt;}
.xc_c00292{left:77.435733pt;}
.xd_c00292{left:78.369067pt;}
.x4_c00292{left:83.155733pt;}
.xe_c00292{left:99.835733pt;}
.x10_c00292{left:128.302400pt;}
.x11_c00292{left:203.502400pt;}
.x1_c00292{left:247.635733pt;}
.xf_c00292{left:248.969067pt;}
.x12_c00292{left:296.302400pt;}
.x13_c00292{left:309.769067pt;}
.x14_c00292{left:364.769067pt;}
.x2_c00292{left:420.769067pt;}
.x6_c00292{left:465.902400pt;}
.x7_c00292{left:492.435733pt;}
.xa_c00292{left:508.169067pt;}
.x3_c00292{left:566.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_24ec2a53b1fa063f70079cf2.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00293;src:url('chunks/assets/font_8430aa766479ce9357fd7ca1.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00293;src:url('chunks/assets/font_7b91dd59a0e01fd0e1733376.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00293{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m2_c00293{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4_c00293{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3_c00293{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c00293{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,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;}
}
.ws0_c00293{word-spacing:0.000000px;}
.fc0_c00293{color:transparent;}
.fs2_c00293{font-size:36.000000px;}
.fs1_c00293{font-size:96.000000px;}
.fs0_c00293{font-size:168.000000px;}
.y0_c00293{bottom:0.000000px;}
.y7_c00293{bottom:397.275000px;}
.y6_c00293{bottom:399.750000px;}
.y5_c00293{bottom:532.560000px;}
.y4_c00293{bottom:533.385000px;}
.y2_c00293{bottom:694.635000px;}
.y3_c00293{bottom:695.310000px;}
.y8_c00293{bottom:697.125000px;}
.y1_c00293{bottom:866.025000px;}
.h4_c00293{height:35.332031px;}
.h2_c00293{height:94.171875px;}
.h3_c00293{height:94.218750px;}
.h1_c00293{height:169.312500px;}
.h0_c00293{height:1174.500000px;}
.w0_c00293{width:731.977200px;}
.w1_c00293{width:732.000000px;}
.x0_c00293{left:0.000000px;}
.x2_c00293{left:44.965200px;}
.x5_c00293{left:48.940200px;}
.x1_c00293{left:85.990200px;}
.x6_c00293{left:161.290200px;}
.x4_c00293{left:284.740200px;}
.x3_c00293{left:326.515200px;}
.x7_c00293{left:747.700200px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls0_c00293{letter-spacing:0.000000pt;}
.ws0_c00293{word-spacing:0.000000pt;}
.fs2_c00293{font-size:32.000000pt;}
.fs1_c00293{font-size:85.333333pt;}
.fs0_c00293{font-size:149.333333pt;}
.y0_c00293{bottom:0.000000pt;}
.y7_c00293{bottom:353.133333pt;}
.y6_c00293{bottom:355.333333pt;}
.y5_c00293{bottom:473.386667pt;}
.y4_c00293{bottom:474.120000pt;}
.y2_c00293{bottom:617.453333pt;}
.y3_c00293{bottom:618.053333pt;}
.y8_c00293{bottom:619.666667pt;}
.y1_c00293{bottom:769.800000pt;}
.h4_c00293{height:31.406250pt;}
.h2_c00293{height:83.708333pt;}
.h3_c00293{height:83.750000pt;}
.h1_c00293{height:150.500000pt;}
.h0_c00293{height:1044.000000pt;}
.w0_c00293{width:650.646400pt;}
.w1_c00293{width:650.666667pt;}
.x0_c00293{left:0.000000pt;}
.x2_c00293{left:39.969067pt;}
.x5_c00293{left:43.502400pt;}
.x1_c00293{left:76.435733pt;}
.x6_c00293{left:143.369067pt;}
.x4_c00293{left:253.102400pt;}
.x3_c00293{left:290.235733pt;}
.x7_c00293{left:664.622400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81fb09ef332a3c38aea4dd9f.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00294;src:url('chunks/assets/font_bbbe41cfb10c4dbe15fbec9e.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00294{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m3_c00294{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2_c00294{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00294{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m11_c00294{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00294{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c00294{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00294{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m8_c00294{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c00294{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7_c00294{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.md_c00294{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10_c00294{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mf_c00294{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma_c00294{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c00294{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m5_c00294{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00294{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.ls0_c00294{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00294{color:transparent;}
.fs0_c00294{font-size:54.000000px;}
.fs1_c00294{font-size:66.000000px;}
.fs2_c00294{font-size:156.000000px;}
.y0_c00294{bottom:0.000000px;}
.y28_c00294{bottom:73.560000px;}
.y27_c00294{bottom:95.625000px;}
.y26_c00294{bottom:116.835000px;}
.y25_c00294{bottom:137.685000px;}
.y24_c00294{bottom:158.910000px;}
.y23_c00294{bottom:179.460000px;}
.y22_c00294{bottom:200.385000px;}
.y21_c00294{bottom:221.250000px;}
.y20_c00294{bottom:242.085000px;}
.y1f_c00294{bottom:263.400000px;}
.y1e_c00294{bottom:284.625000px;}
.y1d_c00294{bottom:305.460000px;}
.y1c_c00294{bottom:327.060000px;}
.y1b_c00294{bottom:348.660000px;}
.y1a_c00294{bottom:369.900000px;}
.y19_c00294{bottom:391.185000px;}
.y18_c00294{bottom:412.710000px;}
.y17_c00294{bottom:434.310000px;}
.y16_c00294{bottom:455.625000px;}
.y15_c00294{bottom:477.510000px;}
.y14_c00294{bottom:499.500000px;}
.y13_c00294{bottom:521.085000px;}
.y12_c00294{bottom:543.060000px;}
.y11_c00294{bottom:564.660000px;}
.y10_c00294{bottom:585.885000px;}
.yf_c00294{bottom:608.160000px;}
.ye_c00294{bottom:630.135000px;}
.yd_c00294{bottom:651.810000px;}
.yc_c00294{bottom:673.410000px;}
.yb_c00294{bottom:695.685000px;}
.ya_c00294{bottom:717.285000px;}
.y9_c00294{bottom:738.510000px;}
.y8_c00294{bottom:760.875000px;}
.y7_c00294{bottom:782.085000px;}
.y6_c00294{bottom:871.710000px;}
.y5_c00294{bottom:874.275000px;}
.y4_c00294{bottom:876.810000px;}
.y3_c00294{bottom:1082.310000px;}
.y2_c00294{bottom:1086.000000px;}
.y1_c00294{bottom:1086.960000px;}
.h1_c00294{height:54.421875px;}
.h2_c00294{height:64.775391px;}
.h3_c00294{height:157.218750px;}
.h0_c00294{height:1174.500000px;}
.w0_c00294{width:731.977200px;}
.w1_c00294{width:732.000000px;}
.x0_c00294{left:0.000000px;}
.xa_c00294{left:65.890200px;}
.x9_c00294{left:67.315200px;}
.x8_c00294{left:68.365200px;}
.x4_c00294{left:70.165200px;}
.xb_c00294{left:71.290200px;}
.xc_c00294{left:72.340200px;}
.x7_c00294{left:101.515200px;}
.x1_c00294{left:283.315200px;}
.x5_c00294{left:433.390200px;}
.x2_c00294{left:481.315200px;}
.x6_c00294{left:569.515200px;}
.x3_c00294{left:643.990200px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls0_c00294{letter-spacing:0.000000pt;}
.ws0_c00294{word-spacing:0.000000pt;}
.fs0_c00294{font-size:48.000000pt;}
.fs1_c00294{font-size:58.666667pt;}
.fs2_c00294{font-size:138.666667pt;}
.y0_c00294{bottom:0.000000pt;}
.y28_c00294{bottom:65.386667pt;}
.y27_c00294{bottom:85.000000pt;}
.y26_c00294{bottom:103.853333pt;}
.y25_c00294{bottom:122.386667pt;}
.y24_c00294{bottom:141.253333pt;}
.y23_c00294{bottom:159.520000pt;}
.y22_c00294{bottom:178.120000pt;}
.y21_c00294{bottom:196.666667pt;}
.y20_c00294{bottom:215.186667pt;}
.y1f_c00294{bottom:234.133333pt;}
.y1e_c00294{bottom:253.000000pt;}
.y1d_c00294{bottom:271.520000pt;}
.y1c_c00294{bottom:290.720000pt;}
.y1b_c00294{bottom:309.920000pt;}
.y1a_c00294{bottom:328.800000pt;}
.y19_c00294{bottom:347.720000pt;}
.y18_c00294{bottom:366.853333pt;}
.y17_c00294{bottom:386.053333pt;}
.y16_c00294{bottom:405.000000pt;}
.y15_c00294{bottom:424.453333pt;}
.y14_c00294{bottom:444.000000pt;}
.y13_c00294{bottom:463.186667pt;}
.y12_c00294{bottom:482.720000pt;}
.y11_c00294{bottom:501.920000pt;}
.y10_c00294{bottom:520.786667pt;}
.yf_c00294{bottom:540.586667pt;}
.ye_c00294{bottom:560.120000pt;}
.yd_c00294{bottom:579.386667pt;}
.yc_c00294{bottom:598.586667pt;}
.yb_c00294{bottom:618.386667pt;}
.ya_c00294{bottom:637.586667pt;}
.y9_c00294{bottom:656.453333pt;}
.y8_c00294{bottom:676.333333pt;}
.y7_c00294{bottom:695.186667pt;}
.y6_c00294{bottom:774.853333pt;}
.y5_c00294{bottom:777.133333pt;}
.y4_c00294{bottom:779.386667pt;}
.y3_c00294{bottom:962.053333pt;}
.y2_c00294{bottom:965.333333pt;}
.y1_c00294{bottom:966.186667pt;}
.h1_c00294{height:48.375000pt;}
.h2_c00294{height:57.578125pt;}
.h3_c00294{height:139.750000pt;}
.h0_c00294{height:1044.000000pt;}
.w0_c00294{width:650.646400pt;}
.w1_c00294{width:650.666667pt;}
.x0_c00294{left:0.000000pt;}
.xa_c00294{left:58.569067pt;}
.x9_c00294{left:59.835733pt;}
.x8_c00294{left:60.769067pt;}
.x4_c00294{left:62.369067pt;}
.xb_c00294{left:63.369067pt;}
.xc_c00294{left:64.302400pt;}
.x7_c00294{left:90.235733pt;}
.x1_c00294{left:251.835733pt;}
.x5_c00294{left:385.235733pt;}
.x2_c00294{left:427.835733pt;}
.x6_c00294{left:506.235733pt;}
.x3_c00294{left:572.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61b639dc36435ac6b0e65ad9.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00295;src:url('chunks/assets/font_c5db95edf3d0649be5047b9a.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00295{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m2_c00295{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc_c00295{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00295{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00295{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00295{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c00295{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c00295{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3_c00295{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00295{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c00295{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mf_c00295{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8_c00295{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.md_c00295{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.ma_c00295{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m10_c00295{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00295{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00295{word-spacing:0.000000px;}
.fc0_c00295{color:transparent;}
.fs1_c00295{font-size:60.000000px;}
.fs0_c00295{font-size:66.000000px;}
.fs2_c00295{font-size:78.000000px;}
.y0_c00295{bottom:0.000000px;}
.y31_c00295{bottom:82.635000px;}
.y30_c00295{bottom:106.410000px;}
.y2f_c00295{bottom:125.760000px;}
.y2e_c00295{bottom:147.060000px;}
.y2d_c00295{bottom:168.285000px;}
.y2c_c00295{bottom:190.260000px;}
.y2b_c00295{bottom:216.510000px;}
.y2a_c00295{bottom:234.585000px;}
.y29_c00295{bottom:256.125000px;}
.y28_c00295{bottom:277.710000px;}
.y27_c00295{bottom:299.685000px;}
.y26_c00295{bottom:321.660000px;}
.y25_c00295{bottom:342.900000px;}
.y24_c00295{bottom:364.785000px;}
.y23_c00295{bottom:385.710000px;}
.y22_c00295{bottom:388.275000px;}
.y21_c00295{bottom:408.435000px;}
.y20_c00295{bottom:430.335000px;}
.y1f_c00295{bottom:452.010000px;}
.y1e_c00295{bottom:473.535000px;}
.y1d_c00295{bottom:495.210000px;}
.y1c_c00295{bottom:516.435000px;}
.y1b_c00295{bottom:538.035000px;}
.y1a_c00295{bottom:559.635000px;}
.y19_c00295{bottom:581.910000px;}
.y18_c00295{bottom:603.135000px;}
.y17_c00295{bottom:625.125000px;}
.y16_c00295{bottom:646.710000px;}
.y15_c00295{bottom:668.010000px;}
.y14_c00295{bottom:689.625000px;}
.y13_c00295{bottom:711.135000px;}
.y12_c00295{bottom:732.825000px;}
.y11_c00295{bottom:754.335000px;}
.y10_c00295{bottom:776.310000px;}
.yf_c00295{bottom:797.925000px;}
.ye_c00295{bottom:819.210000px;}
.yd_c00295{bottom:838.275000px;}
.yc_c00295{bottom:860.925000px;}
.yb_c00295{bottom:882.525000px;}
.ya_c00295{bottom:903.810000px;}
.y9_c00295{bottom:925.710000px;}
.y8_c00295{bottom:947.310000px;}
.y7_c00295{bottom:969.000000px;}
.y6_c00295{bottom:990.210000px;}
.y5_c00295{bottom:1011.435000px;}
.y4_c00295{bottom:1032.675000px;}
.y1_c00295{bottom:1080.900000px;}
.y3_c00295{bottom:1089.525000px;}
.y2_c00295{bottom:1095.810000px;}
.h2_c00295{height:58.886719px;}
.h1_c00295{height:64.775391px;}
.h3_c00295{height:78.609375px;}
.h0_c00295{height:1174.500000px;}
.w0_c00295{width:731.977200px;}
.w1_c00295{width:732.000000px;}
.x0_c00295{left:0.000000px;}
.xb_c00295{left:39.940200px;}
.xa_c00295{left:40.990200px;}
.x9_c00295{left:42.115200px;}
.x8_c00295{left:43.540200px;}
.x6_c00295{left:44.590200px;}
.x5_c00295{left:45.715200px;}
.x4_c00295{left:46.765200px;}
.x1_c00295{left:66.565200px;}
.xc_c00295{left:70.915200px;}
.xf_c00295{left:72.340200px;}
.x7_c00295{left:74.890200px;}
.x2_c00295{left:92.890200px;}
.x3_c00295{left:266.740200px;}
.xd_c00295{left:361.090200px;}
.xe_c00295{left:470.140200px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls0_c00295{letter-spacing:0.000000pt;}
.ws0_c00295{word-spacing:0.000000pt;}
.fs1_c00295{font-size:53.333333pt;}
.fs0_c00295{font-size:58.666667pt;}
.fs2_c00295{font-size:69.333333pt;}
.y0_c00295{bottom:0.000000pt;}
.y31_c00295{bottom:73.453333pt;}
.y30_c00295{bottom:94.586667pt;}
.y2f_c00295{bottom:111.786667pt;}
.y2e_c00295{bottom:130.720000pt;}
.y2d_c00295{bottom:149.586667pt;}
.y2c_c00295{bottom:169.120000pt;}
.y2b_c00295{bottom:192.453333pt;}
.y2a_c00295{bottom:208.520000pt;}
.y29_c00295{bottom:227.666667pt;}
.y28_c00295{bottom:246.853333pt;}
.y27_c00295{bottom:266.386667pt;}
.y26_c00295{bottom:285.920000pt;}
.y25_c00295{bottom:304.800000pt;}
.y24_c00295{bottom:324.253333pt;}
.y23_c00295{bottom:342.853333pt;}
.y22_c00295{bottom:345.133333pt;}
.y21_c00295{bottom:363.053333pt;}
.y20_c00295{bottom:382.520000pt;}
.y1f_c00295{bottom:401.786667pt;}
.y1e_c00295{bottom:420.920000pt;}
.y1d_c00295{bottom:440.186667pt;}
.y1c_c00295{bottom:459.053333pt;}
.y1b_c00295{bottom:478.253333pt;}
.y1a_c00295{bottom:497.453333pt;}
.y19_c00295{bottom:517.253333pt;}
.y18_c00295{bottom:536.120000pt;}
.y17_c00295{bottom:555.666667pt;}
.y16_c00295{bottom:574.853333pt;}
.y15_c00295{bottom:593.786667pt;}
.y14_c00295{bottom:613.000000pt;}
.y13_c00295{bottom:632.120000pt;}
.y12_c00295{bottom:651.400000pt;}
.y11_c00295{bottom:670.520000pt;}
.y10_c00295{bottom:690.053333pt;}
.yf_c00295{bottom:709.266667pt;}
.ye_c00295{bottom:728.186667pt;}
.yd_c00295{bottom:745.133333pt;}
.yc_c00295{bottom:765.266667pt;}
.yb_c00295{bottom:784.466667pt;}
.ya_c00295{bottom:803.386667pt;}
.y9_c00295{bottom:822.853333pt;}
.y8_c00295{bottom:842.053333pt;}
.y7_c00295{bottom:861.333333pt;}
.y6_c00295{bottom:880.186667pt;}
.y5_c00295{bottom:899.053333pt;}
.y4_c00295{bottom:917.933333pt;}
.y1_c00295{bottom:960.800000pt;}
.y3_c00295{bottom:968.466667pt;}
.y2_c00295{bottom:974.053333pt;}
.h2_c00295{height:52.343750pt;}
.h1_c00295{height:57.578125pt;}
.h3_c00295{height:69.875000pt;}
.h0_c00295{height:1044.000000pt;}
.w0_c00295{width:650.646400pt;}
.w1_c00295{width:650.666667pt;}
.x0_c00295{left:0.000000pt;}
.xb_c00295{left:35.502400pt;}
.xa_c00295{left:36.435733pt;}
.x9_c00295{left:37.435733pt;}
.x8_c00295{left:38.702400pt;}
.x6_c00295{left:39.635733pt;}
.x5_c00295{left:40.635733pt;}
.x4_c00295{left:41.569067pt;}
.x1_c00295{left:59.169067pt;}
.xc_c00295{left:63.035733pt;}
.xf_c00295{left:64.302400pt;}
.x7_c00295{left:66.569067pt;}
.x2_c00295{left:82.569067pt;}
.x3_c00295{left:237.102400pt;}
.xd_c00295{left:320.969067pt;}
.xe_c00295{left:417.902400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_96d624d705f0d33194dd3ca4.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00296;src:url('chunks/assets/font_af3707bad4b916b9c907711d.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00296;src:url('chunks/assets/font_4bd4e4b48388d31430f8fba4.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00296;src:url('chunks/assets/font_83410dc2dac60b973970c3a1.woff2')format("woff");}.ff4_c00296{font-family:ff4_c00296;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00296;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff5_c00296{font-family:ff5_c00296;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me_c00296{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m4_c00296{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m0_c00296{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00296{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb_c00296{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00296{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c00296{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m16_c00296{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00296{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00296{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00296{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c00296{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c00296{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c00296{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c00296{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3_c00296{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10_c00296{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c00296{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma_c00296{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7_c00296{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m14_c00296{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c00296{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00296{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00296{color:transparent;}
.fs0_c00296{font-size:60.000000px;}
.fs1_c00296{font-size:66.000000px;}
.fs2_c00296{font-size:78.000000px;}
.fs3_c00296{font-size:84.000000px;}
.y0_c00296{bottom:0.000000px;}
.y3e_c00296{bottom:89.085000px;}
.y3d_c00296{bottom:111.060000px;}
.y3c_c00296{bottom:129.060000px;}
.y3b_c00296{bottom:153.135000px;}
.y3a_c00296{bottom:174.000000px;}
.y39_c00296{bottom:194.910000px;}
.y38_c00296{bottom:215.460000px;}
.y37_c00296{bottom:236.385000px;}
.y36_c00296{bottom:257.625000px;}
.y35_c00296{bottom:279.150000px;}
.y34_c00296{bottom:299.685000px;}
.y31_c00296{bottom:321.285000px;}
.y32_c00296{bottom:323.835000px;}
.y33_c00296{bottom:324.585000px;}
.y30_c00296{bottom:342.900000px;}
.y2f_c00296{bottom:364.500000px;}
.y2e_c00296{bottom:386.085000px;}
.y2d_c00296{bottom:407.685000px;}
.y2c_c00296{bottom:429.000000px;}
.y2b_c00296{bottom:450.135000px;}
.y2a_c00296{bottom:472.185000px;}
.y29_c00296{bottom:494.085000px;}
.y28_c00296{bottom:516.060000px;}
.y27_c00296{bottom:537.660000px;}
.y26_c00296{bottom:559.635000px;}
.y25_c00296{bottom:581.250000px;}
.y24_c00296{bottom:602.835000px;}
.y22_c00296{bottom:624.060000px;}
.y23_c00296{bottom:624.375000px;}
.y21_c00296{bottom:624.810000px;}
.y20_c00296{bottom:646.710000px;}
.y1f_c00296{bottom:667.635000px;}
.y1e_c00296{bottom:668.685000px;}
.y1d_c00296{bottom:669.750000px;}
.y1c_c00296{bottom:690.285000px;}
.y1b_c00296{bottom:711.885000px;}
.y1a_c00296{bottom:733.875000px;}
.y19_c00296{bottom:755.460000px;}
.y18_c00296{bottom:775.260000px;}
.y17_c00296{bottom:776.250000px;}
.y16_c00296{bottom:778.500000px;}
.y15_c00296{bottom:798.960000px;}
.y14_c00296{bottom:823.125000px;}
.y13_c00296{bottom:839.310000px;}
.y12_c00296{bottom:839.685000px;}
.y11_c00296{bottom:843.675000px;}
.y10_c00296{bottom:864.900000px;}
.yf_c00296{bottom:886.875000px;}
.ye_c00296{bottom:908.460000px;}
.yd_c00296{bottom:928.935000px;}
.yc_c00296{bottom:931.500000px;}
.yb_c00296{bottom:950.925000px;}
.ya_c00296{bottom:972.150000px;}
.y9_c00296{bottom:994.125000px;}
.y8_c00296{bottom:1016.085000px;}
.y7_c00296{bottom:1034.085000px;}
.y6_c00296{bottom:1034.460000px;}
.y5_c00296{bottom:1034.835000px;}
.y4_c00296{bottom:1039.125000px;}
.y3_c00296{bottom:1094.250000px;}
.y2_c00296{bottom:1097.835000px;}
.y1_c00296{bottom:1098.525000px;}
.h1_c00296{height:60.468750px;}
.h5_c00296{height:62.578125px;}
.h3_c00296{height:64.775391px;}
.h2_c00296{height:66.515625px;}
.h6_c00296{height:68.835938px;}
.h7_c00296{height:76.514648px;}
.h9_c00296{height:76.552734px;}
.h4_c00296{height:81.351562px;}
.h8_c00296{height:82.400391px;}
.h0_c00296{height:1174.500000px;}
.w0_c00296{width:731.977200px;}
.w1_c00296{width:732.000000px;}
.x0_c00296{left:0.000000px;}
.x8_c00296{left:63.340200px;}
.x4_c00296{left:64.390200px;}
.x16_c00296{left:65.515200px;}
.x14_c00296{left:66.565200px;}
.xb_c00296{left:95.740200px;}
.x15_c00296{left:96.790200px;}
.x9_c00296{left:195.790200px;}
.xe_c00296{left:261.715200px;}
.x1_c00296{left:278.590200px;}
.xf_c00296{left:289.090200px;}
.xc_c00296{left:470.140200px;}
.x2_c00296{left:473.740200px;}
.xd_c00296{left:475.915200px;}
.x5_c00296{left:513.715200px;}
.x10_c00296{left:601.915200px;}
.x6_c00296{left:610.165200px;}
.x12_c00296{left:614.515200px;}
.x11_c00296{left:623.515200px;}
.x3_c00296{left:639.340200px;}
.x13_c00296{left:644.740200px;}
.xa_c00296{left:658.765200px;}
.x7_c00296{left:663.490200px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls0_c00296{letter-spacing:0.000000pt;}
.ws0_c00296{word-spacing:0.000000pt;}
.fs0_c00296{font-size:53.333333pt;}
.fs1_c00296{font-size:58.666667pt;}
.fs2_c00296{font-size:69.333333pt;}
.fs3_c00296{font-size:74.666667pt;}
.y0_c00296{bottom:0.000000pt;}
.y3e_c00296{bottom:79.186667pt;}
.y3d_c00296{bottom:98.720000pt;}
.y3c_c00296{bottom:114.720000pt;}
.y3b_c00296{bottom:136.120000pt;}
.y3a_c00296{bottom:154.666667pt;}
.y39_c00296{bottom:173.253333pt;}
.y38_c00296{bottom:191.520000pt;}
.y37_c00296{bottom:210.120000pt;}
.y36_c00296{bottom:229.000000pt;}
.y35_c00296{bottom:248.133333pt;}
.y34_c00296{bottom:266.386667pt;}
.y31_c00296{bottom:285.586667pt;}
.y32_c00296{bottom:287.853333pt;}
.y33_c00296{bottom:288.520000pt;}
.y30_c00296{bottom:304.800000pt;}
.y2f_c00296{bottom:324.000000pt;}
.y2e_c00296{bottom:343.186667pt;}
.y2d_c00296{bottom:362.386667pt;}
.y2c_c00296{bottom:381.333333pt;}
.y2b_c00296{bottom:400.120000pt;}
.y2a_c00296{bottom:419.720000pt;}
.y29_c00296{bottom:439.186667pt;}
.y28_c00296{bottom:458.720000pt;}
.y27_c00296{bottom:477.920000pt;}
.y26_c00296{bottom:497.453333pt;}
.y25_c00296{bottom:516.666667pt;}
.y24_c00296{bottom:535.853333pt;}
.y22_c00296{bottom:554.720000pt;}
.y23_c00296{bottom:555.000000pt;}
.y21_c00296{bottom:555.386667pt;}
.y20_c00296{bottom:574.853333pt;}
.y1f_c00296{bottom:593.453333pt;}
.y1e_c00296{bottom:594.386667pt;}
.y1d_c00296{bottom:595.333333pt;}
.y1c_c00296{bottom:613.586667pt;}
.y1b_c00296{bottom:632.786667pt;}
.y1a_c00296{bottom:652.333333pt;}
.y19_c00296{bottom:671.520000pt;}
.y18_c00296{bottom:689.120000pt;}
.y17_c00296{bottom:690.000000pt;}
.y16_c00296{bottom:692.000000pt;}
.y15_c00296{bottom:710.186667pt;}
.y14_c00296{bottom:731.666667pt;}
.y13_c00296{bottom:746.053333pt;}
.y12_c00296{bottom:746.386667pt;}
.y11_c00296{bottom:749.933333pt;}
.y10_c00296{bottom:768.800000pt;}
.yf_c00296{bottom:788.333333pt;}
.ye_c00296{bottom:807.520000pt;}
.yd_c00296{bottom:825.720000pt;}
.yc_c00296{bottom:828.000000pt;}
.yb_c00296{bottom:845.266667pt;}
.ya_c00296{bottom:864.133333pt;}
.y9_c00296{bottom:883.666667pt;}
.y8_c00296{bottom:903.186667pt;}
.y7_c00296{bottom:919.186667pt;}
.y6_c00296{bottom:919.520000pt;}
.y5_c00296{bottom:919.853333pt;}
.y4_c00296{bottom:923.666667pt;}
.y3_c00296{bottom:972.666667pt;}
.y2_c00296{bottom:975.853333pt;}
.y1_c00296{bottom:976.466667pt;}
.h1_c00296{height:53.750000pt;}
.h5_c00296{height:55.625000pt;}
.h3_c00296{height:57.578125pt;}
.h2_c00296{height:59.125000pt;}
.h6_c00296{height:61.187500pt;}
.h7_c00296{height:68.013021pt;}
.h9_c00296{height:68.046875pt;}
.h4_c00296{height:72.312500pt;}
.h8_c00296{height:73.244792pt;}
.h0_c00296{height:1044.000000pt;}
.w0_c00296{width:650.646400pt;}
.w1_c00296{width:650.666667pt;}
.x0_c00296{left:0.000000pt;}
.x8_c00296{left:56.302400pt;}
.x4_c00296{left:57.235733pt;}
.x16_c00296{left:58.235733pt;}
.x14_c00296{left:59.169067pt;}
.xb_c00296{left:85.102400pt;}
.x15_c00296{left:86.035733pt;}
.x9_c00296{left:174.035733pt;}
.xe_c00296{left:232.635733pt;}
.x1_c00296{left:247.635733pt;}
.xf_c00296{left:256.969067pt;}
.xc_c00296{left:417.902400pt;}
.x2_c00296{left:421.102400pt;}
.xd_c00296{left:423.035733pt;}
.x5_c00296{left:456.635733pt;}
.x10_c00296{left:535.035733pt;}
.x6_c00296{left:542.369067pt;}
.x12_c00296{left:546.235733pt;}
.x11_c00296{left:554.235733pt;}
.x3_c00296{left:568.302400pt;}
.x13_c00296{left:573.102400pt;}
.xa_c00296{left:585.569067pt;}
.x7_c00296{left:589.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a5d852bc6b367c51b4e38d9a.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00297;src:url('chunks/assets/font_2048153b0bb1890cf14477df.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00297{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.mf_c00297{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m0_c00297{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me_c00297{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m17_c00297{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c00297{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc_c00297{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2_c00297{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c00297{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00297{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00297{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00297{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00297{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00297{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00297{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00297{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00297{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m8_c00297{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c00297{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3_c00297{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c00297{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m16_c00297{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c00297{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c00297{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00297{word-spacing:0.000000px;}
.fc0_c00297{color:transparent;}
.fs1_c00297{font-size:54.000000px;}
.fs0_c00297{font-size:66.000000px;}
.y0_c00297{bottom:0.000000px;}
.y30_c00297{bottom:190.185000px;}
.y2f_c00297{bottom:220.125000px;}
.y2e_c00297{bottom:273.750000px;}
.y2d_c00297{bottom:292.125000px;}
.y2c_c00297{bottom:317.310000px;}
.y2b_c00297{bottom:336.435000px;}
.y2a_c00297{bottom:358.335000px;}
.y29_c00297{bottom:382.500000px;}
.y28_c00297{bottom:401.250000px;}
.y27_c00297{bottom:423.135000px;}
.y26_c00297{bottom:444.750000px;}
.y25_c00297{bottom:468.510000px;}
.y24_c00297{bottom:485.085000px;}
.y23_c00297{bottom:488.310000px;}
.y21_c00297{bottom:490.125000px;}
.y22_c00297{bottom:490.185000px;}
.y20_c00297{bottom:511.035000px;}
.y1f_c00297{bottom:531.885000px;}
.y1e_c00297{bottom:553.125000px;}
.y1d_c00297{bottom:575.085000px;}
.y1c_c00297{bottom:596.685000px;}
.y1b_c00297{bottom:618.660000px;}
.y1a_c00297{bottom:639.885000px;}
.y19_c00297{bottom:661.500000px;}
.y18_c00297{bottom:682.785000px;}
.y17_c00297{bottom:703.260000px;}
.y16_c00297{bottom:704.010000px;}
.y15_c00297{bottom:704.685000px;}
.y14_c00297{bottom:725.625000px;}
.y13_c00297{bottom:747.510000px;}
.y12_c00297{bottom:769.500000px;}
.y11_c00297{bottom:791.085000px;}
.y10_c00297{bottom:812.025000px;}
.yf_c00297{bottom:833.250000px;}
.ye_c00297{bottom:854.085000px;}
.yd_c00297{bottom:875.310000px;}
.yc_c00297{bottom:896.625000px;}
.yb_c00297{bottom:918.210000px;}
.ya_c00297{bottom:939.810000px;}
.y9_c00297{bottom:958.800000px;}
.y8_c00297{bottom:982.650000px;}
.y7_c00297{bottom:1003.875000px;}
.y6_c00297{bottom:1024.710000px;}
.y5_c00297{bottom:1045.560000px;}
.y1_c00297{bottom:1094.925000px;}
.y3_c00297{bottom:1101.810000px;}
.y4_c00297{bottom:1103.250000px;}
.y2_c00297{bottom:1109.685000px;}
.h2_c00297{height:52.998047px;}
.h4_c00297{height:54.421875px;}
.h1_c00297{height:64.775391px;}
.h3_c00297{height:66.515625px;}
.h0_c00297{height:1174.500000px;}
.w0_c00297{width:731.977200px;}
.w1_c00297{width:732.000000px;}
.x0_c00297{left:0.000000px;}
.x9_c00297{left:37.390200px;}
.xc_c00297{left:38.890200px;}
.x8_c00297{left:39.940200px;}
.x6_c00297{left:40.990200px;}
.x5_c00297{left:42.490200px;}
.x13_c00297{left:58.690200px;}
.xf_c00297{left:60.490200px;}
.x1_c00297{left:61.540200px;}
.xd_c00297{left:67.690200px;}
.xe_c00297{left:69.490200px;}
.x7_c00297{left:71.290200px;}
.x10_c00297{left:74.140200px;}
.x11_c00297{left:79.915200px;}
.x2_c00297{left:88.540200px;}
.x3_c00297{left:260.590200px;}
.x15_c00297{left:323.965200px;}
.x4_c00297{left:347.740200px;}
.x14_c00297{left:364.990200px;}
.xa_c00297{left:573.490200px;}
.xb_c00297{left:584.965200px;}
.x12_c00297{left:592.165200px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls0_c00297{letter-spacing:0.000000pt;}
.ws0_c00297{word-spacing:0.000000pt;}
.fs1_c00297{font-size:48.000000pt;}
.fs0_c00297{font-size:58.666667pt;}
.y0_c00297{bottom:0.000000pt;}
.y30_c00297{bottom:169.053333pt;}
.y2f_c00297{bottom:195.666667pt;}
.y2e_c00297{bottom:243.333333pt;}
.y2d_c00297{bottom:259.666667pt;}
.y2c_c00297{bottom:282.053333pt;}
.y2b_c00297{bottom:299.053333pt;}
.y2a_c00297{bottom:318.520000pt;}
.y29_c00297{bottom:340.000000pt;}
.y28_c00297{bottom:356.666667pt;}
.y27_c00297{bottom:376.120000pt;}
.y26_c00297{bottom:395.333333pt;}
.y25_c00297{bottom:416.453333pt;}
.y24_c00297{bottom:431.186667pt;}
.y23_c00297{bottom:434.053333pt;}
.y21_c00297{bottom:435.666667pt;}
.y22_c00297{bottom:435.720000pt;}
.y20_c00297{bottom:454.253333pt;}
.y1f_c00297{bottom:472.786667pt;}
.y1e_c00297{bottom:491.666667pt;}
.y1d_c00297{bottom:511.186667pt;}
.y1c_c00297{bottom:530.386667pt;}
.y1b_c00297{bottom:549.920000pt;}
.y1a_c00297{bottom:568.786667pt;}
.y19_c00297{bottom:588.000000pt;}
.y18_c00297{bottom:606.920000pt;}
.y17_c00297{bottom:625.120000pt;}
.y16_c00297{bottom:625.786667pt;}
.y15_c00297{bottom:626.386667pt;}
.y14_c00297{bottom:645.000000pt;}
.y13_c00297{bottom:664.453333pt;}
.y12_c00297{bottom:684.000000pt;}
.y11_c00297{bottom:703.186667pt;}
.y10_c00297{bottom:721.800000pt;}
.yf_c00297{bottom:740.666667pt;}
.ye_c00297{bottom:759.186667pt;}
.yd_c00297{bottom:778.053333pt;}
.yc_c00297{bottom:797.000000pt;}
.yb_c00297{bottom:816.186667pt;}
.ya_c00297{bottom:835.386667pt;}
.y9_c00297{bottom:852.266667pt;}
.y8_c00297{bottom:873.466667pt;}
.y7_c00297{bottom:892.333333pt;}
.y6_c00297{bottom:910.853333pt;}
.y5_c00297{bottom:929.386667pt;}
.y1_c00297{bottom:973.266667pt;}
.y3_c00297{bottom:979.386667pt;}
.y4_c00297{bottom:980.666667pt;}
.y2_c00297{bottom:986.386667pt;}
.h2_c00297{height:47.109375pt;}
.h4_c00297{height:48.375000pt;}
.h1_c00297{height:57.578125pt;}
.h3_c00297{height:59.125000pt;}
.h0_c00297{height:1044.000000pt;}
.w0_c00297{width:650.646400pt;}
.w1_c00297{width:650.666667pt;}
.x0_c00297{left:0.000000pt;}
.x9_c00297{left:33.235733pt;}
.xc_c00297{left:34.569067pt;}
.x8_c00297{left:35.502400pt;}
.x6_c00297{left:36.435733pt;}
.x5_c00297{left:37.769067pt;}
.x13_c00297{left:52.169067pt;}
.xf_c00297{left:53.769067pt;}
.x1_c00297{left:54.702400pt;}
.xd_c00297{left:60.169067pt;}
.xe_c00297{left:61.769067pt;}
.x7_c00297{left:63.369067pt;}
.x10_c00297{left:65.902400pt;}
.x11_c00297{left:71.035733pt;}
.x2_c00297{left:78.702400pt;}
.x3_c00297{left:231.635733pt;}
.x15_c00297{left:287.969067pt;}
.x4_c00297{left:309.102400pt;}
.x14_c00297{left:324.435733pt;}
.xa_c00297{left:509.769067pt;}
.xb_c00297{left:519.969067pt;}
.x12_c00297{left:526.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1477ced995ae537fc491b08e.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00298;src:url('chunks/assets/font_7ef8363877df99fac1663aeb.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00298;src:url('chunks/assets/font_53d2e3f8efd13e7470d63ae5.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00298{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m3_c00298{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2_c00298{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m0_c00298{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me_c00298{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md_c00298{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c00298{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5_c00298{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m6_c00298{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c00298{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c00298{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc_c00298{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c00298{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m9_c00298{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00298{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00298{word-spacing:0.000000px;}
.fc0_c00298{color:transparent;}
.fs0_c00298{font-size:66.000000px;}
.fs1_c00298{font-size:78.000000px;}
.fs2_c00298{font-size:156.000000px;}
.y0_c00298{bottom:0.000000px;}
.y28_c00298{bottom:92.385000px;}
.y27_c00298{bottom:114.285000px;}
.y26_c00298{bottom:135.885000px;}
.y25_c00298{bottom:156.060000px;}
.y24_c00298{bottom:178.410000px;}
.y23_c00298{bottom:199.560000px;}
.y22_c00298{bottom:220.125000px;}
.y21_c00298{bottom:241.035000px;}
.y20_c00298{bottom:261.900000px;}
.y1f_c00298{bottom:283.125000px;}
.y1e_c00298{bottom:304.710000px;}
.y1d_c00298{bottom:325.650000px;}
.y1c_c00298{bottom:347.910000px;}
.y1b_c00298{bottom:369.210000px;}
.y1a_c00298{bottom:390.435000px;}
.y19_c00298{bottom:412.335000px;}
.y18_c00298{bottom:433.635000px;}
.y17_c00298{bottom:455.160000px;}
.y16_c00298{bottom:477.210000px;}
.y15_c00298{bottom:498.810000px;}
.y14_c00298{bottom:520.710000px;}
.y13_c00298{bottom:542.310000px;}
.y12_c00298{bottom:563.910000px;}
.y11_c00298{bottom:585.885000px;}
.y10_c00298{bottom:607.500000px;}
.yf_c00298{bottom:628.710000px;}
.ye_c00298{bottom:650.685000px;}
.yd_c00298{bottom:672.285000px;}
.yc_c00298{bottom:694.260000px;}
.yb_c00298{bottom:715.875000px;}
.ya_c00298{bottom:738.210000px;}
.y9_c00298{bottom:759.375000px;}
.y8_c00298{bottom:781.050000px;}
.y7_c00298{bottom:802.935000px;}
.y6_c00298{bottom:888.300000px;}
.y4_c00298{bottom:894.750000px;}
.y5_c00298{bottom:909.000000px;}
.y3_c00298{bottom:1096.335000px;}
.y2_c00298{bottom:1100.310000px;}
.y1_c00298{bottom:1101.375000px;}
.h4_c00298{height:64.775391px;}
.h1_c00298{height:66.515625px;}
.h2_c00298{height:78.609375px;}
.h3_c00298{height:162.703125px;}
.h0_c00298{height:1174.500000px;}
.w0_c00298{width:731.977200px;}
.w1_c00298{width:732.000000px;}
.x0_c00298{left:0.000000px;}
.x8_c00298{left:56.515200px;}
.xa_c00298{left:57.565200px;}
.x4_c00298{left:58.690200px;}
.xd_c00298{left:59.740200px;}
.xb_c00298{left:60.790200px;}
.x7_c00298{left:89.290200px;}
.x9_c00298{left:90.340200px;}
.xc_c00298{left:92.140200px;}
.x1_c00298{left:299.890200px;}
.x5_c00298{left:379.390200px;}
.x2_c00298{left:469.765200px;}
.x6_c00298{left:558.340200px;}
.x3_c00298{left:633.940200px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls0_c00298{letter-spacing:0.000000pt;}
.ws0_c00298{word-spacing:0.000000pt;}
.fs0_c00298{font-size:58.666667pt;}
.fs1_c00298{font-size:69.333333pt;}
.fs2_c00298{font-size:138.666667pt;}
.y0_c00298{bottom:0.000000pt;}
.y28_c00298{bottom:82.120000pt;}
.y27_c00298{bottom:101.586667pt;}
.y26_c00298{bottom:120.786667pt;}
.y25_c00298{bottom:138.720000pt;}
.y24_c00298{bottom:158.586667pt;}
.y23_c00298{bottom:177.386667pt;}
.y22_c00298{bottom:195.666667pt;}
.y21_c00298{bottom:214.253333pt;}
.y20_c00298{bottom:232.800000pt;}
.y1f_c00298{bottom:251.666667pt;}
.y1e_c00298{bottom:270.853333pt;}
.y1d_c00298{bottom:289.466667pt;}
.y1c_c00298{bottom:309.253333pt;}
.y1b_c00298{bottom:328.186667pt;}
.y1a_c00298{bottom:347.053333pt;}
.y19_c00298{bottom:366.520000pt;}
.y18_c00298{bottom:385.453333pt;}
.y17_c00298{bottom:404.586667pt;}
.y16_c00298{bottom:424.186667pt;}
.y15_c00298{bottom:443.386667pt;}
.y14_c00298{bottom:462.853333pt;}
.y13_c00298{bottom:482.053333pt;}
.y12_c00298{bottom:501.253333pt;}
.y11_c00298{bottom:520.786667pt;}
.y10_c00298{bottom:540.000000pt;}
.yf_c00298{bottom:558.853333pt;}
.ye_c00298{bottom:578.386667pt;}
.yd_c00298{bottom:597.586667pt;}
.yc_c00298{bottom:617.120000pt;}
.yb_c00298{bottom:636.333333pt;}
.ya_c00298{bottom:656.186667pt;}
.y9_c00298{bottom:675.000000pt;}
.y8_c00298{bottom:694.266667pt;}
.y7_c00298{bottom:713.720000pt;}
.y6_c00298{bottom:789.600000pt;}
.y4_c00298{bottom:795.333333pt;}
.y5_c00298{bottom:808.000000pt;}
.y3_c00298{bottom:974.520000pt;}
.y2_c00298{bottom:978.053333pt;}
.y1_c00298{bottom:979.000000pt;}
.h4_c00298{height:57.578125pt;}
.h1_c00298{height:59.125000pt;}
.h2_c00298{height:69.875000pt;}
.h3_c00298{height:144.625000pt;}
.h0_c00298{height:1044.000000pt;}
.w0_c00298{width:650.646400pt;}
.w1_c00298{width:650.666667pt;}
.x0_c00298{left:0.000000pt;}
.x8_c00298{left:50.235733pt;}
.xa_c00298{left:51.169067pt;}
.x4_c00298{left:52.169067pt;}
.xd_c00298{left:53.102400pt;}
.xb_c00298{left:54.035733pt;}
.x7_c00298{left:79.369067pt;}
.x9_c00298{left:80.302400pt;}
.xc_c00298{left:81.902400pt;}
.x1_c00298{left:266.569067pt;}
.x5_c00298{left:337.235733pt;}
.x2_c00298{left:417.569067pt;}
.x6_c00298{left:496.302400pt;}
.x3_c00298{left:563.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_07880e9632fb58c0446b8b2c.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00299;src:url('chunks/assets/font_eb902e2cb1a2bdcca5da0892.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00299;src:url('chunks/assets/font_0ac4df5a8ef5e6a7ac0285c1.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c00299{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.m2_c00299{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc_c00299{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m0_c00299{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c00299{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m14_c00299{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c00299{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00299{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00299{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c00299{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00299{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c00299{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m4_c00299{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c00299{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c00299{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8_c00299{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m12_c00299{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10_c00299{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.me_c00299{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mf_c00299{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6_c00299{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3_c00299{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m1_c00299{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00299{word-spacing:0.000000px;}
.fc0_c00299{color:transparent;}
.fs3_c00299{font-size:18.000000px;}
.fs0_c00299{font-size:60.000000px;}
.fs1_c00299{font-size:66.000000px;}
.fs2_c00299{font-size:78.000000px;}
.y0_c00299{bottom:0.000000px;}
.y34_c00299{bottom:99.885000px;}
.y33_c00299{bottom:120.435000px;}
.y32_c00299{bottom:142.335000px;}
.y31_c00299{bottom:162.210000px;}
.y30_c00299{bottom:162.885000px;}
.y2f_c00299{bottom:166.125000px;}
.y2e_c00299{bottom:185.910000px;}
.y2d_c00299{bottom:207.585000px;}
.y2c_c00299{bottom:231.285000px;}
.y2b_c00299{bottom:251.460000px;}
.y2a_c00299{bottom:273.435000px;}
.y29_c00299{bottom:294.585000px;}
.y28_c00299{bottom:316.650000px;}
.y27_c00299{bottom:338.250000px;}
.y26_c00299{bottom:359.775000px;}
.y25_c00299{bottom:381.810000px;}
.y24_c00299{bottom:403.410000px;}
.y23_c00299{bottom:426.435000px;}
.y22_c00299{bottom:446.910000px;}
.y21_c00299{bottom:468.885000px;}
.y20_c00299{bottom:490.500000px;}
.y1f_c00299{bottom:512.085000px;}
.y1e_c00299{bottom:533.385000px;}
.y35_c00299{bottom:552.060000px;}
.y1d_c00299{bottom:554.910000px;}
.y1c_c00299{bottom:576.510000px;}
.y1b_c00299{bottom:598.500000px;}
.y1a_c00299{bottom:620.085000px;}
.y19_c00299{bottom:642.000000px;}
.y18_c00299{bottom:663.660000px;}
.y17_c00299{bottom:685.260000px;}
.y16_c00299{bottom:704.685000px;}
.y15_c00299{bottom:728.460000px;}
.y14_c00299{bottom:750.075000px;}
.y13_c00299{bottom:771.675000px;}
.y12_c00299{bottom:793.650000px;}
.y11_c00299{bottom:814.800000px;}
.y10_c00299{bottom:835.710000px;}
.yf_c00299{bottom:857.025000px;}
.ye_c00299{bottom:873.210000px;}
.yd_c00299{bottom:899.460000px;}
.yc_c00299{bottom:921.435000px;}
.yb_c00299{bottom:943.050000px;}
.ya_c00299{bottom:964.935000px;}
.y9_c00299{bottom:985.875000px;}
.y7_c00299{bottom:998.460000px;}
.y8_c00299{bottom:1007.835000px;}
.y6_c00299{bottom:1028.310000px;}
.y5_c00299{bottom:1049.175000px;}
.y4_c00299{bottom:1086.300000px;}
.y1_c00299{bottom:1097.085000px;}
.y3_c00299{bottom:1105.710000px;}
.y2_c00299{bottom:1111.710000px;}
.h5_c00299{height:18.773438px;}
.h1_c00299{height:58.886719px;}
.h2_c00299{height:64.775391px;}
.h4_c00299{height:66.515625px;}
.h3_c00299{height:78.609375px;}
.h0_c00299{height:1174.500000px;}
.w0_c00299{width:731.977200px;}
.w1_c00299{width:732.000000px;}
.x0_c00299{left:0.000000px;}
.xe_c00299{left:46.765200px;}
.xd_c00299{left:47.890200px;}
.xc_c00299{left:49.690200px;}
.x9_c00299{left:50.740200px;}
.x8_c00299{left:51.790200px;}
.x5_c00299{left:53.590200px;}
.x1_c00299{left:72.340200px;}
.xf_c00299{left:77.740200px;}
.x6_c00299{left:79.165200px;}
.xb_c00299{left:80.590200px;}
.xa_c00299{left:82.090200px;}
.x7_c00299{left:83.515200px;}
.x2_c00299{left:98.965200px;}
.x4_c00299{left:167.740200px;}
.x3_c00299{left:272.140200px;}
.x10_c00299{left:478.390200px;}
.x11_c00299{left:504.715200px;}
.x12_c00299{left:548.290200px;}
.x13_c00299{left:648.715200px;}
.x14_c00299{left:741.190200px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls0_c00299{letter-spacing:0.000000pt;}
.ws0_c00299{word-spacing:0.000000pt;}
.fs3_c00299{font-size:16.000000pt;}
.fs0_c00299{font-size:53.333333pt;}
.fs1_c00299{font-size:58.666667pt;}
.fs2_c00299{font-size:69.333333pt;}
.y0_c00299{bottom:0.000000pt;}
.y34_c00299{bottom:88.786667pt;}
.y33_c00299{bottom:107.053333pt;}
.y32_c00299{bottom:126.520000pt;}
.y31_c00299{bottom:144.186667pt;}
.y30_c00299{bottom:144.786667pt;}
.y2f_c00299{bottom:147.666667pt;}
.y2e_c00299{bottom:165.253333pt;}
.y2d_c00299{bottom:184.520000pt;}
.y2c_c00299{bottom:205.586667pt;}
.y2b_c00299{bottom:223.520000pt;}
.y2a_c00299{bottom:243.053333pt;}
.y29_c00299{bottom:261.853333pt;}
.y28_c00299{bottom:281.466667pt;}
.y27_c00299{bottom:300.666667pt;}
.y26_c00299{bottom:319.800000pt;}
.y25_c00299{bottom:339.386667pt;}
.y24_c00299{bottom:358.586667pt;}
.y23_c00299{bottom:379.053333pt;}
.y22_c00299{bottom:397.253333pt;}
.y21_c00299{bottom:416.786667pt;}
.y20_c00299{bottom:436.000000pt;}
.y1f_c00299{bottom:455.186667pt;}
.y1e_c00299{bottom:474.120000pt;}
.y35_c00299{bottom:490.720000pt;}
.y1d_c00299{bottom:493.253333pt;}
.y1c_c00299{bottom:512.453333pt;}
.y1b_c00299{bottom:532.000000pt;}
.y1a_c00299{bottom:551.186667pt;}
.y19_c00299{bottom:570.666667pt;}
.y18_c00299{bottom:589.920000pt;}
.y17_c00299{bottom:609.120000pt;}
.y16_c00299{bottom:626.386667pt;}
.y15_c00299{bottom:647.520000pt;}
.y14_c00299{bottom:666.733333pt;}
.y13_c00299{bottom:685.933333pt;}
.y12_c00299{bottom:705.466667pt;}
.y11_c00299{bottom:724.266667pt;}
.y10_c00299{bottom:742.853333pt;}
.yf_c00299{bottom:761.800000pt;}
.ye_c00299{bottom:776.186667pt;}
.yd_c00299{bottom:799.520000pt;}
.yc_c00299{bottom:819.053333pt;}
.yb_c00299{bottom:838.266667pt;}
.ya_c00299{bottom:857.720000pt;}
.y9_c00299{bottom:876.333333pt;}
.y7_c00299{bottom:887.520000pt;}
.y8_c00299{bottom:895.853333pt;}
.y6_c00299{bottom:914.053333pt;}
.y5_c00299{bottom:932.600000pt;}
.y4_c00299{bottom:965.600000pt;}
.y1_c00299{bottom:975.186667pt;}
.y3_c00299{bottom:982.853333pt;}
.y2_c00299{bottom:988.186667pt;}
.h5_c00299{height:16.687500pt;}
.h1_c00299{height:52.343750pt;}
.h2_c00299{height:57.578125pt;}
.h4_c00299{height:59.125000pt;}
.h3_c00299{height:69.875000pt;}
.h0_c00299{height:1044.000000pt;}
.w0_c00299{width:650.646400pt;}
.w1_c00299{width:650.666667pt;}
.x0_c00299{left:0.000000pt;}
.xe_c00299{left:41.569067pt;}
.xd_c00299{left:42.569067pt;}
.xc_c00299{left:44.169067pt;}
.x9_c00299{left:45.102400pt;}
.x8_c00299{left:46.035733pt;}
.x5_c00299{left:47.635733pt;}
.x1_c00299{left:64.302400pt;}
.xf_c00299{left:69.102400pt;}
.x6_c00299{left:70.369067pt;}
.xb_c00299{left:71.635733pt;}
.xa_c00299{left:72.969067pt;}
.x7_c00299{left:74.235733pt;}
.x2_c00299{left:87.969067pt;}
.x4_c00299{left:149.102400pt;}
.x3_c00299{left:241.902400pt;}
.x10_c00299{left:425.235733pt;}
.x11_c00299{left:448.635733pt;}
.x12_c00299{left:487.369067pt;}
.x13_c00299{left:576.635733pt;}
.x14_c00299{left:658.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0ba574e37104a59b15814ab4.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00300;src:url('chunks/assets/font_2197bcf5b4c1b2af68daf57a.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00300{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.me_c00300{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m3_c00300{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma_c00300{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c00300{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1_c00300{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mb_c00300{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c00300{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00300{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00300{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c00300{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00300{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11_c00300{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00300{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00300{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c00300{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.md_c00300{transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);}
.mf_c00300{transform:matrix(1.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.372500,0.000000,0.000000,0.250000,0,0);}
.m2_c00300{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.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;}
}
.ws0_c00300{word-spacing:0.000000px;}
.fc0_c00300{color:transparent;}
.fs5_c00300{font-size:54.000000px;}
.fs0_c00300{font-size:60.000000px;}
.fs3_c00300{font-size:66.000000px;}
.fs1_c00300{font-size:78.000000px;}
.fs2_c00300{font-size:84.000000px;}
.fs4_c00300{font-size:90.000000px;}
.y0_c00300{bottom:0.000000px;}
.y1a_c00300{bottom:68.173500px;}
.y19_c00300{bottom:637.723500px;}
.y18_c00300{bottom:667.648500px;}
.y17_c00300{bottom:713.698500px;}
.y15_c00300{bottom:735.298500px;}
.y16_c00300{bottom:736.348500px;}
.y13_c00300{bottom:756.898500px;}
.y14_c00300{bottom:758.023500px;}
.y12_c00300{bottom:779.550000px;}
.y11_c00300{bottom:800.473500px;}
.y10_c00300{bottom:822.823500px;}
.yf_c00300{bottom:844.723500px;}
.ye_c00300{bottom:866.698500px;}
.yd_c00300{bottom:887.925000px;}
.yc_c00300{bottom:908.775000px;}
.yb_c00300{bottom:930.073500px;}
.ya_c00300{bottom:950.925000px;}
.y9_c00300{bottom:972.900000px;}
.y8_c00300{bottom:994.800000px;}
.y7_c00300{bottom:994.875000px;}
.y6_c00300{bottom:1016.098500px;}
.y5_c00300{bottom:1038.073500px;}
.y4_c00300{bottom:1094.625000px;}
.y1_c00300{bottom:1096.723500px;}
.y2_c00300{bottom:1097.098500px;}
.y3_c00300{bottom:1107.900000px;}
.h7_c00300{height:52.998047px;}
.h8_c00300{height:54.421875px;}
.h1_c00300{height:58.886719px;}
.h2_c00300{height:60.468750px;}
.h5_c00300{height:64.775391px;}
.h3_c00300{height:78.609375px;}
.h4_c00300{height:82.441406px;}
.h6_c00300{height:90.703125px;}
.h0_c00300{height:1174.500000px;}
.w0_c00300{width:731.977200px;}
.w1_c00300{width:732.000000px;}
.x0_c00300{left:0.000000px;}
.x6_c00300{left:48.940200px;}
.x7_c00300{left:49.990200px;}
.xb_c00300{left:51.490200px;}
.xa_c00300{left:52.540200px;}
.x11_c00300{left:55.390200px;}
.xd_c00300{left:76.313700px;}
.x5_c00300{left:83.140200px;}
.xc_c00300{left:85.313700px;}
.xe_c00300{left:91.390200px;}
.xf_c00300{left:97.915200px;}
.x10_c00300{left:120.190200px;}
.x8_c00300{left:235.090200px;}
.x9_c00300{left:257.365200px;}
.x1_c00300{left:264.190200px;}
.x2_c00300{left:289.390200px;}
.x13_c00300{left:368.288700px;}
.x12_c00300{left:406.390200px;}
.x3_c00300{left:465.790200px;}
.x14_c00300{left:580.315200px;}
.x15_c00300{left:598.315200px;}
.x4_c00300{left:629.965200px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls0_c00300{letter-spacing:0.000000pt;}
.ws0_c00300{word-spacing:0.000000pt;}
.fs5_c00300{font-size:48.000000pt;}
.fs0_c00300{font-size:53.333333pt;}
.fs3_c00300{font-size:58.666667pt;}
.fs1_c00300{font-size:69.333333pt;}
.fs2_c00300{font-size:74.666667pt;}
.fs4_c00300{font-size:80.000000pt;}
.y0_c00300{bottom:0.000000pt;}
.y1a_c00300{bottom:60.598667pt;}
.y19_c00300{bottom:566.865333pt;}
.y18_c00300{bottom:593.465333pt;}
.y17_c00300{bottom:634.398667pt;}
.y15_c00300{bottom:653.598667pt;}
.y16_c00300{bottom:654.532000pt;}
.y13_c00300{bottom:672.798667pt;}
.y14_c00300{bottom:673.798667pt;}
.y12_c00300{bottom:692.933333pt;}
.y11_c00300{bottom:711.532000pt;}
.y10_c00300{bottom:731.398667pt;}
.yf_c00300{bottom:750.865333pt;}
.ye_c00300{bottom:770.398667pt;}
.yd_c00300{bottom:789.266667pt;}
.yc_c00300{bottom:807.800000pt;}
.yb_c00300{bottom:826.732000pt;}
.ya_c00300{bottom:845.266667pt;}
.y9_c00300{bottom:864.800000pt;}
.y8_c00300{bottom:884.266667pt;}
.y7_c00300{bottom:884.333333pt;}
.y6_c00300{bottom:903.198667pt;}
.y5_c00300{bottom:922.732000pt;}
.y4_c00300{bottom:973.000000pt;}
.y1_c00300{bottom:974.865333pt;}
.y2_c00300{bottom:975.198667pt;}
.y3_c00300{bottom:984.800000pt;}
.h7_c00300{height:47.109375pt;}
.h8_c00300{height:48.375000pt;}
.h1_c00300{height:52.343750pt;}
.h2_c00300{height:53.750000pt;}
.h5_c00300{height:57.578125pt;}
.h3_c00300{height:69.875000pt;}
.h4_c00300{height:73.281250pt;}
.h6_c00300{height:80.625000pt;}
.h0_c00300{height:1044.000000pt;}
.w0_c00300{width:650.646400pt;}
.w1_c00300{width:650.666667pt;}
.x0_c00300{left:0.000000pt;}
.x6_c00300{left:43.502400pt;}
.x7_c00300{left:44.435733pt;}
.xb_c00300{left:45.769067pt;}
.xa_c00300{left:46.702400pt;}
.x11_c00300{left:49.235733pt;}
.xd_c00300{left:67.834400pt;}
.x5_c00300{left:73.902400pt;}
.xc_c00300{left:75.834400pt;}
.xe_c00300{left:81.235733pt;}
.xf_c00300{left:87.035733pt;}
.x10_c00300{left:106.835733pt;}
.x8_c00300{left:208.969067pt;}
.x9_c00300{left:228.769067pt;}
.x1_c00300{left:234.835733pt;}
.x2_c00300{left:257.235733pt;}
.x13_c00300{left:327.367733pt;}
.x12_c00300{left:361.235733pt;}
.x3_c00300{left:414.035733pt;}
.x14_c00300{left:515.835733pt;}
.x15_c00300{left:531.835733pt;}
.x4_c00300{left:559.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_09efffb642da5a963a76a570.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00301;src:url('chunks/assets/font_dda059a6539a68540422d17c.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00301{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m3_c00301{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m0_c00301{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m7_c00301{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mb_c00301{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc_c00301{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c00301{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00301{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10_c00301{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c00301{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md_c00301{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00301{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf_c00301{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00301{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me_c00301{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00301{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00301{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00301{color:transparent;}
.fs1_c00301{font-size:60.000000px;}
.fs0_c00301{font-size:78.000000px;}
.fs3_c00301{font-size:84.000000px;}
.fs2_c00301{font-size:168.000000px;}
.y0_c00301{bottom:0.000000px;}
.y29_c00301{bottom:103.125000px;}
.y28_c00301{bottom:124.423500px;}
.y27_c00301{bottom:145.273500px;}
.y26_c00301{bottom:151.723500px;}
.y25_c00301{bottom:167.548500px;}
.y24_c00301{bottom:188.848500px;}
.y23_c00301{bottom:210.823500px;}
.y22_c00301{bottom:232.348500px;}
.y21_c00301{bottom:255.448500px;}
.y20_c00301{bottom:275.923500px;}
.y1f_c00301{bottom:297.525000px;}
.y1e_c00301{bottom:319.875000px;}
.y1d_c00301{bottom:340.348500px;}
.y1c_c00301{bottom:361.948500px;}
.y1b_c00301{bottom:383.923500px;}
.y1a_c00301{bottom:405.525000px;}
.y19_c00301{bottom:427.125000px;}
.y18_c00301{bottom:448.723500px;}
.y17_c00301{bottom:470.323500px;}
.y16_c00301{bottom:491.625000px;}
.y15_c00301{bottom:512.848500px;}
.y14_c00301{bottom:534.073500px;}
.y13_c00301{bottom:554.923500px;}
.y12_c00301{bottom:577.273500px;}
.y11_c00301{bottom:599.250000px;}
.y10_c00301{bottom:619.048500px;}
.yf_c00301{bottom:642.073500px;}
.ye_c00301{bottom:662.625000px;}
.yd_c00301{bottom:684.898500px;}
.yc_c00301{bottom:706.500000px;}
.yb_c00301{bottom:727.723500px;}
.ya_c00301{bottom:749.325000px;}
.y9_c00301{bottom:766.648500px;}
.y8_c00301{bottom:791.848500px;}
.y7_c00301{bottom:813.448500px;}
.y4_c00301{bottom:891.900000px;}
.y5_c00301{bottom:896.175000px;}
.y6_c00301{bottom:900.525000px;}
.y1_c00301{bottom:1091.698500px;}
.y3_c00301{bottom:1101.448500px;}
.y2_c00301{bottom:1107.000000px;}
.h2_c00301{height:58.886719px;}
.h1_c00301{height:78.609375px;}
.h4_c00301{height:82.441406px;}
.h3_c00301{height:169.312500px;}
.h0_c00301{height:1174.500000px;}
.w0_c00301{width:731.977200px;}
.w1_c00301{width:732.000000px;}
.x0_c00301{left:0.000000px;}
.x10_c00301{left:34.540200px;}
.xf_c00301{left:35.963700px;}
.xc_c00301{left:37.390200px;}
.xb_c00301{left:38.890200px;}
.x8_c00301{left:41.740200px;}
.x4_c00301{left:44.290200px;}
.xd_c00301{left:57.940200px;}
.xa_c00301{left:59.365200px;}
.x9_c00301{left:64.765200px;}
.x1_c00301{left:66.940200px;}
.xe_c00301{left:68.740200px;}
.x7_c00301{left:73.390200px;}
.x2_c00301{left:94.315200px;}
.x11_c00301{left:130.315200px;}
.x3_c00301{left:268.165200px;}
.x5_c00301{left:354.565200px;}
.x6_c00301{left:535.315200px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls0_c00301{letter-spacing:0.000000pt;}
.ws0_c00301{word-spacing:0.000000pt;}
.fs1_c00301{font-size:53.333333pt;}
.fs0_c00301{font-size:69.333333pt;}
.fs3_c00301{font-size:74.666667pt;}
.fs2_c00301{font-size:149.333333pt;}
.y0_c00301{bottom:0.000000pt;}
.y29_c00301{bottom:91.666667pt;}
.y28_c00301{bottom:110.598667pt;}
.y27_c00301{bottom:129.132000pt;}
.y26_c00301{bottom:134.865333pt;}
.y25_c00301{bottom:148.932000pt;}
.y24_c00301{bottom:167.865333pt;}
.y23_c00301{bottom:187.398667pt;}
.y22_c00301{bottom:206.532000pt;}
.y21_c00301{bottom:227.065333pt;}
.y20_c00301{bottom:245.265333pt;}
.y1f_c00301{bottom:264.466667pt;}
.y1e_c00301{bottom:284.333333pt;}
.y1d_c00301{bottom:302.532000pt;}
.y1c_c00301{bottom:321.732000pt;}
.y1b_c00301{bottom:341.265333pt;}
.y1a_c00301{bottom:360.466667pt;}
.y19_c00301{bottom:379.666667pt;}
.y18_c00301{bottom:398.865333pt;}
.y17_c00301{bottom:418.065333pt;}
.y16_c00301{bottom:437.000000pt;}
.y15_c00301{bottom:455.865333pt;}
.y14_c00301{bottom:474.732000pt;}
.y13_c00301{bottom:493.265333pt;}
.y12_c00301{bottom:513.132000pt;}
.y11_c00301{bottom:532.666667pt;}
.y10_c00301{bottom:550.265333pt;}
.yf_c00301{bottom:570.732000pt;}
.ye_c00301{bottom:589.000000pt;}
.yd_c00301{bottom:608.798667pt;}
.yc_c00301{bottom:628.000000pt;}
.yb_c00301{bottom:646.865333pt;}
.ya_c00301{bottom:666.066667pt;}
.y9_c00301{bottom:681.465333pt;}
.y8_c00301{bottom:703.865333pt;}
.y7_c00301{bottom:723.065333pt;}
.y4_c00301{bottom:792.800000pt;}
.y5_c00301{bottom:796.600000pt;}
.y6_c00301{bottom:800.466667pt;}
.y1_c00301{bottom:970.398667pt;}
.y3_c00301{bottom:979.065333pt;}
.y2_c00301{bottom:984.000000pt;}
.h2_c00301{height:52.343750pt;}
.h1_c00301{height:69.875000pt;}
.h4_c00301{height:73.281250pt;}
.h3_c00301{height:150.500000pt;}
.h0_c00301{height:1044.000000pt;}
.w0_c00301{width:650.646400pt;}
.w1_c00301{width:650.666667pt;}
.x0_c00301{left:0.000000pt;}
.x10_c00301{left:30.702400pt;}
.xf_c00301{left:31.967733pt;}
.xc_c00301{left:33.235733pt;}
.xb_c00301{left:34.569067pt;}
.x8_c00301{left:37.102400pt;}
.x4_c00301{left:39.369067pt;}
.xd_c00301{left:51.502400pt;}
.xa_c00301{left:52.769067pt;}
.x9_c00301{left:57.569067pt;}
.x1_c00301{left:59.502400pt;}
.xe_c00301{left:61.102400pt;}
.x7_c00301{left:65.235733pt;}
.x2_c00301{left:83.835733pt;}
.x11_c00301{left:115.835733pt;}
.x3_c00301{left:238.369067pt;}
.x5_c00301{left:315.169067pt;}
.x6_c00301{left:475.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cdcd0c29839a373a848c8596.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00302{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m12_c00302{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m16_c00302{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m10_c00302{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c00302{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m0_c00302{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4_c00302{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6_c00302{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me_c00302{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00302{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc_c00302{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00302{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m17_c00302{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mf_c00302{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c00302{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00302{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00302{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8_c00302{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c00302{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00302{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c00302{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19_c00302{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c00302{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00302{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00302{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m18_c00302{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00302{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.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;}
}
.ws0_c00302{word-spacing:0.000000px;}
.fc0_c00302{color:transparent;}
.fs0_c00302{font-size:66.000000px;}
.fs1_c00302{font-size:72.000000px;}
.fs2_c00302{font-size:84.000000px;}
.y0_c00302{bottom:0.000000px;}
.y46_c00302{bottom:78.298500px;}
.y45_c00302{bottom:100.273500px;}
.y44_c00302{bottom:118.273500px;}
.y43_c00302{bottom:140.923500px;}
.y42_c00302{bottom:161.773500px;}
.y40_c00302{bottom:180.223500px;}
.y41_c00302{bottom:182.698500px;}
.y3f_c00302{bottom:203.173500px;}
.y3e_c00302{bottom:223.723500px;}
.y3c_c00302{bottom:244.273500px;}
.y3d_c00302{bottom:248.250000px;}
.y37_c00302{bottom:264.448500px;}
.y38_c00302{bottom:264.823500px;}
.y39_c00302{bottom:265.500000px;}
.y3a_c00302{bottom:266.173500px;}
.y3b_c00302{bottom:267.673500px;}
.y35_c00302{bottom:286.048500px;}
.y36_c00302{bottom:288.598500px;}
.y34_c00302{bottom:307.650000px;}
.y32_c00302{bottom:327.750000px;}
.y33_c00302{bottom:329.625000px;}
.y30_c00302{bottom:350.848500px;}
.y31_c00302{bottom:352.650000px;}
.y2f_c00302{bottom:372.448500px;}
.y2d_c00302{bottom:392.923500px;}
.y2e_c00302{bottom:394.423500px;}
.y2b_c00302{bottom:413.098500px;}
.y2c_c00302{bottom:414.898500px;}
.y2a_c00302{bottom:435.750000px;}
.y29_c00302{bottom:457.423500px;}
.y28_c00302{bottom:478.948500px;}
.y25_c00302{bottom:500.548500px;}
.y27_c00302{bottom:500.625000px;}
.y26_c00302{bottom:500.923500px;}
.y23_c00302{bottom:521.098500px;}
.y24_c00302{bottom:522.223500px;}
.y22_c00302{bottom:544.125000px;}
.y21_c00302{bottom:564.298500px;}
.y20_c00302{bottom:564.973500px;}
.y1f_c00302{bottom:565.723500px;}
.y1e_c00302{bottom:587.023500px;}
.y1d_c00302{bottom:608.548500px;}
.y1c_c00302{bottom:630.148500px;}
.y1b_c00302{bottom:651.750000px;}
.y1a_c00302{bottom:673.348500px;}
.y19_c00302{bottom:693.598500px;}
.y18_c00302{bottom:695.323500px;}
.y17_c00302{bottom:717.598500px;}
.y16_c00302{bottom:737.773500px;}
.y15_c00302{bottom:759.750000px;}
.y14_c00302{bottom:781.050000px;}
.y13_c00302{bottom:802.650000px;}
.y12_c00302{bottom:804.375000px;}
.y11_c00302{bottom:820.573500px;}
.y10_c00302{bottom:825.300000px;}
.yf_c00302{bottom:846.525000px;}
.ye_c00302{bottom:867.750000px;}
.yd_c00302{bottom:886.500000px;}
.yc_c00302{bottom:887.925000px;}
.yb_c00302{bottom:890.473500px;}
.ya_c00302{bottom:906.300000px;}
.y9_c00302{bottom:911.698500px;}
.y8_c00302{bottom:932.250000px;}
.y7_c00302{bottom:953.400000px;}
.y6_c00302{bottom:974.698500px;}
.y5_c00302{bottom:996.300000px;}
.y4_c00302{bottom:1018.275000px;}
.y3_c00302{bottom:1071.900000px;}
.y1_c00302{bottom:1077.973500px;}
.y2_c00302{bottom:1085.775000px;}
.h1_c00302{height:64.775391px;}
.h2_c00302{height:70.664062px;}
.h3_c00302{height:82.441406px;}
.h0_c00302{height:1174.500000px;}
.w0_c00302{width:731.977200px;}
.w1_c00302{width:732.000000px;}
.x0_c00302{left:0.000000px;}
.x4_c00302{left:55.765200px;}
.x5_c00302{left:57.190200px;}
.x17_c00302{left:58.990200px;}
.x19_c00302{left:60.115200px;}
.x20_c00302{left:61.165200px;}
.x22_c00302{left:63.340200px;}
.xc_c00302{left:88.540200px;}
.x9_c00302{left:89.590200px;}
.x10_c00302{left:92.140200px;}
.x23_c00302{left:95.740200px;}
.x18_c00302{left:125.965200px;}
.x21_c00302{left:147.565200px;}
.xb_c00302{left:151.540200px;}
.x13_c00302{left:155.890200px;}
.x1_c00302{left:273.190200px;}
.x1b_c00302{left:284.365200px;}
.x11_c00302{left:299.515200px;}
.xd_c00302{left:324.340200px;}
.x1c_c00302{left:339.490200px;}
.x12_c00302{left:355.315200px;}
.x1d_c00302{left:366.490200px;}
.xe_c00302{left:385.913700px;}
.x1e_c00302{left:397.765200px;}
.x14_c00302{left:449.965200px;}
.x2_c00302{left:469.090200px;}
.x7_c00302{left:479.890200px;}
.x8_c00302{left:511.165200px;}
.x1a_c00302{left:513.715200px;}
.x15_c00302{left:518.365200px;}
.x6_c00302{left:579.565200px;}
.x1f_c00302{left:597.190200px;}
.xa_c00302{left:624.565200px;}
.x3_c00302{left:632.515200px;}
.x16_c00302{left:641.890200px;}
.xf_c00302{left:644.365200px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls0_c00302{letter-spacing:0.000000pt;}
.ws0_c00302{word-spacing:0.000000pt;}
.fs0_c00302{font-size:58.666667pt;}
.fs1_c00302{font-size:64.000000pt;}
.fs2_c00302{font-size:74.666667pt;}
.y0_c00302{bottom:0.000000pt;}
.y46_c00302{bottom:69.598667pt;}
.y45_c00302{bottom:89.132000pt;}
.y44_c00302{bottom:105.132000pt;}
.y43_c00302{bottom:125.265333pt;}
.y42_c00302{bottom:143.798667pt;}
.y40_c00302{bottom:160.198667pt;}
.y41_c00302{bottom:162.398667pt;}
.y3f_c00302{bottom:180.598667pt;}
.y3e_c00302{bottom:198.865333pt;}
.y3c_c00302{bottom:217.132000pt;}
.y3d_c00302{bottom:220.666667pt;}
.y37_c00302{bottom:235.065333pt;}
.y38_c00302{bottom:235.398667pt;}
.y39_c00302{bottom:236.000000pt;}
.y3a_c00302{bottom:236.598667pt;}
.y3b_c00302{bottom:237.932000pt;}
.y35_c00302{bottom:254.265333pt;}
.y36_c00302{bottom:256.532000pt;}
.y34_c00302{bottom:273.466667pt;}
.y32_c00302{bottom:291.333333pt;}
.y33_c00302{bottom:293.000000pt;}
.y30_c00302{bottom:311.865333pt;}
.y31_c00302{bottom:313.466667pt;}
.y2f_c00302{bottom:331.065333pt;}
.y2d_c00302{bottom:349.265333pt;}
.y2e_c00302{bottom:350.598667pt;}
.y2b_c00302{bottom:367.198667pt;}
.y2c_c00302{bottom:368.798667pt;}
.y2a_c00302{bottom:387.333333pt;}
.y29_c00302{bottom:406.598667pt;}
.y28_c00302{bottom:425.732000pt;}
.y25_c00302{bottom:444.932000pt;}
.y27_c00302{bottom:445.000000pt;}
.y26_c00302{bottom:445.265333pt;}
.y23_c00302{bottom:463.198667pt;}
.y24_c00302{bottom:464.198667pt;}
.y22_c00302{bottom:483.666667pt;}
.y21_c00302{bottom:501.598667pt;}
.y20_c00302{bottom:502.198667pt;}
.y1f_c00302{bottom:502.865333pt;}
.y1e_c00302{bottom:521.798667pt;}
.y1d_c00302{bottom:540.932000pt;}
.y1c_c00302{bottom:560.132000pt;}
.y1b_c00302{bottom:579.333333pt;}
.y1a_c00302{bottom:598.532000pt;}
.y19_c00302{bottom:616.532000pt;}
.y18_c00302{bottom:618.065333pt;}
.y17_c00302{bottom:637.865333pt;}
.y16_c00302{bottom:655.798667pt;}
.y15_c00302{bottom:675.333333pt;}
.y14_c00302{bottom:694.266667pt;}
.y13_c00302{bottom:713.466667pt;}
.y12_c00302{bottom:715.000000pt;}
.y11_c00302{bottom:729.398667pt;}
.y10_c00302{bottom:733.600000pt;}
.yf_c00302{bottom:752.466667pt;}
.ye_c00302{bottom:771.333333pt;}
.yd_c00302{bottom:788.000000pt;}
.yc_c00302{bottom:789.266667pt;}
.yb_c00302{bottom:791.532000pt;}
.ya_c00302{bottom:805.600000pt;}
.y9_c00302{bottom:810.398667pt;}
.y8_c00302{bottom:828.666667pt;}
.y7_c00302{bottom:847.466667pt;}
.y6_c00302{bottom:866.398667pt;}
.y5_c00302{bottom:885.600000pt;}
.y4_c00302{bottom:905.133333pt;}
.y3_c00302{bottom:952.800000pt;}
.y1_c00302{bottom:958.198667pt;}
.y2_c00302{bottom:965.133333pt;}
.h1_c00302{height:57.578125pt;}
.h2_c00302{height:62.812500pt;}
.h3_c00302{height:73.281250pt;}
.h0_c00302{height:1044.000000pt;}
.w0_c00302{width:650.646400pt;}
.w1_c00302{width:650.666667pt;}
.x0_c00302{left:0.000000pt;}
.x4_c00302{left:49.569067pt;}
.x5_c00302{left:50.835733pt;}
.x17_c00302{left:52.435733pt;}
.x19_c00302{left:53.435733pt;}
.x20_c00302{left:54.369067pt;}
.x22_c00302{left:56.302400pt;}
.xc_c00302{left:78.702400pt;}
.x9_c00302{left:79.635733pt;}
.x10_c00302{left:81.902400pt;}
.x23_c00302{left:85.102400pt;}
.x18_c00302{left:111.969067pt;}
.x21_c00302{left:131.169067pt;}
.xb_c00302{left:134.702400pt;}
.x13_c00302{left:138.569067pt;}
.x1_c00302{left:242.835733pt;}
.x1b_c00302{left:252.769067pt;}
.x11_c00302{left:266.235733pt;}
.xd_c00302{left:288.302400pt;}
.x1c_c00302{left:301.769067pt;}
.x12_c00302{left:315.835733pt;}
.x1d_c00302{left:325.769067pt;}
.xe_c00302{left:343.034400pt;}
.x1e_c00302{left:353.569067pt;}
.x14_c00302{left:399.969067pt;}
.x2_c00302{left:416.969067pt;}
.x7_c00302{left:426.569067pt;}
.x8_c00302{left:454.369067pt;}
.x1a_c00302{left:456.635733pt;}
.x15_c00302{left:460.769067pt;}
.x6_c00302{left:515.169067pt;}
.x1f_c00302{left:530.835733pt;}
.xa_c00302{left:555.169067pt;}
.x3_c00302{left:562.235733pt;}
.x16_c00302{left:570.569067pt;}
.xf_c00302{left:572.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_202c3301c0196fabcdfe189e.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00303{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5_c00303{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me_c00303{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m8_c00303{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb_c00303{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9_c00303{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4_c00303{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.md_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);}
.ma_c00303{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3_c00303{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c00303{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c00303{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6_c00303{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00303{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf_c00303{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00303{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00303{color:transparent;}
.fs1_c00303{font-size:60.000000px;}
.fs2_c00303{font-size:78.000000px;}
.fs0_c00303{font-size:90.000000px;}
.y0_c00303{bottom:0.000000px;}
.y33_c00303{bottom:94.125000px;}
.y32_c00303{bottom:114.298500px;}
.y31_c00303{bottom:135.523500px;}
.y30_c00303{bottom:157.125000px;}
.y2f_c00303{bottom:178.423500px;}
.y2e_c00303{bottom:184.875000px;}
.y2d_c00303{bottom:200.323500px;}
.y2c_c00303{bottom:221.625000px;}
.y2b_c00303{bottom:247.500000px;}
.y2a_c00303{bottom:265.500000px;}
.y29_c00303{bottom:287.098500px;}
.y28_c00303{bottom:308.698500px;}
.y27_c00303{bottom:329.923500px;}
.y26_c00303{bottom:351.525000px;}
.y25_c00303{bottom:370.948500px;}
.y24_c00303{bottom:371.698500px;}
.y23_c00303{bottom:373.500000px;}
.y22_c00303{bottom:395.473500px;}
.y21_c00303{bottom:416.698500px;}
.y20_c00303{bottom:438.673500px;}
.y1f_c00303{bottom:459.898500px;}
.y1e_c00303{bottom:481.500000px;}
.y1d_c00303{bottom:502.723500px;}
.y1c_c00303{bottom:524.023500px;}
.y1b_c00303{bottom:545.250000px;}
.y1a_c00303{bottom:566.773500px;}
.y19_c00303{bottom:588.448500px;}
.y18_c00303{bottom:610.348500px;}
.y17_c00303{bottom:631.948500px;}
.y16_c00303{bottom:653.923500px;}
.y15_c00303{bottom:675.148500px;}
.y14_c00303{bottom:696.750000px;}
.y13_c00303{bottom:718.348500px;}
.y12_c00303{bottom:739.575000px;}
.y11_c00303{bottom:761.173500px;}
.y10_c00303{bottom:782.848500px;}
.yf_c00303{bottom:802.275000px;}
.ye_c00303{bottom:824.925000px;}
.yd_c00303{bottom:846.525000px;}
.yc_c00303{bottom:867.448500px;}
.yb_c00303{bottom:888.973500px;}
.ya_c00303{bottom:908.473500px;}
.y9_c00303{bottom:931.875000px;}
.y8_c00303{bottom:953.473500px;}
.y7_c00303{bottom:975.073500px;}
.y6_c00303{bottom:987.000000px;}
.y5_c00303{bottom:1016.848500px;}
.y4_c00303{bottom:1037.698500px;}
.y1_c00303{bottom:1084.198500px;}
.y3_c00303{bottom:1094.250000px;}
.y2_c00303{bottom:1099.650000px;}
.h2_c00303{height:58.886719px;}
.h3_c00303{height:76.552734px;}
.h1_c00303{height:88.330078px;}
.h0_c00303{height:1174.500000px;}
.w0_c00303{width:731.977200px;}
.w1_c00303{width:732.000000px;}
.x0_c00303{left:0.000000px;}
.x12_c00303{left:37.765200px;}
.xd_c00303{left:38.890200px;}
.xe_c00303{left:39.940200px;}
.xc_c00303{left:40.990200px;}
.xa_c00303{left:42.115200px;}
.x9_c00303{left:43.165200px;}
.x7_c00303{left:44.590200px;}
.x5_c00303{left:45.715200px;}
.x4_c00303{left:46.765200px;}
.x13_c00303{left:61.915200px;}
.x1_c00303{left:68.365200px;}
.xf_c00303{left:70.540200px;}
.xb_c00303{left:73.765200px;}
.x8_c00303{left:75.188700px;}
.x6_c00303{left:77.365200px;}
.x2_c00303{left:94.315200px;}
.x3_c00303{left:274.990200px;}
.x10_c00303{left:565.165200px;}
.x11_c00303{left:614.140200px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls0_c00303{letter-spacing:0.000000pt;}
.ws0_c00303{word-spacing:0.000000pt;}
.fs1_c00303{font-size:53.333333pt;}
.fs2_c00303{font-size:69.333333pt;}
.fs0_c00303{font-size:80.000000pt;}
.y0_c00303{bottom:0.000000pt;}
.y33_c00303{bottom:83.666667pt;}
.y32_c00303{bottom:101.598667pt;}
.y31_c00303{bottom:120.465333pt;}
.y30_c00303{bottom:139.666667pt;}
.y2f_c00303{bottom:158.598667pt;}
.y2e_c00303{bottom:164.333333pt;}
.y2d_c00303{bottom:178.065333pt;}
.y2c_c00303{bottom:197.000000pt;}
.y2b_c00303{bottom:220.000000pt;}
.y2a_c00303{bottom:236.000000pt;}
.y29_c00303{bottom:255.198667pt;}
.y28_c00303{bottom:274.398667pt;}
.y27_c00303{bottom:293.265333pt;}
.y26_c00303{bottom:312.466667pt;}
.y25_c00303{bottom:329.732000pt;}
.y24_c00303{bottom:330.398667pt;}
.y23_c00303{bottom:332.000000pt;}
.y22_c00303{bottom:351.532000pt;}
.y21_c00303{bottom:370.398667pt;}
.y20_c00303{bottom:389.932000pt;}
.y1f_c00303{bottom:408.798667pt;}
.y1e_c00303{bottom:428.000000pt;}
.y1d_c00303{bottom:446.865333pt;}
.y1c_c00303{bottom:465.798667pt;}
.y1b_c00303{bottom:484.666667pt;}
.y1a_c00303{bottom:503.798667pt;}
.y19_c00303{bottom:523.065333pt;}
.y18_c00303{bottom:542.532000pt;}
.y17_c00303{bottom:561.732000pt;}
.y16_c00303{bottom:581.265333pt;}
.y15_c00303{bottom:600.132000pt;}
.y14_c00303{bottom:619.333333pt;}
.y13_c00303{bottom:638.532000pt;}
.y12_c00303{bottom:657.400000pt;}
.y11_c00303{bottom:676.598667pt;}
.y10_c00303{bottom:695.865333pt;}
.yf_c00303{bottom:713.133333pt;}
.ye_c00303{bottom:733.266667pt;}
.yd_c00303{bottom:752.466667pt;}
.yc_c00303{bottom:771.065333pt;}
.yb_c00303{bottom:790.198667pt;}
.ya_c00303{bottom:807.532000pt;}
.y9_c00303{bottom:828.333333pt;}
.y8_c00303{bottom:847.532000pt;}
.y7_c00303{bottom:866.732000pt;}
.y6_c00303{bottom:877.333333pt;}
.y5_c00303{bottom:903.865333pt;}
.y4_c00303{bottom:922.398667pt;}
.y1_c00303{bottom:963.732000pt;}
.y3_c00303{bottom:972.666667pt;}
.y2_c00303{bottom:977.466667pt;}
.h2_c00303{height:52.343750pt;}
.h3_c00303{height:68.046875pt;}
.h1_c00303{height:78.515625pt;}
.h0_c00303{height:1044.000000pt;}
.w0_c00303{width:650.646400pt;}
.w1_c00303{width:650.666667pt;}
.x0_c00303{left:0.000000pt;}
.x12_c00303{left:33.569067pt;}
.xd_c00303{left:34.569067pt;}
.xe_c00303{left:35.502400pt;}
.xc_c00303{left:36.435733pt;}
.xa_c00303{left:37.435733pt;}
.x9_c00303{left:38.369067pt;}
.x7_c00303{left:39.635733pt;}
.x5_c00303{left:40.635733pt;}
.x4_c00303{left:41.569067pt;}
.x13_c00303{left:55.035733pt;}
.x1_c00303{left:60.769067pt;}
.xf_c00303{left:62.702400pt;}
.xb_c00303{left:65.569067pt;}
.x8_c00303{left:66.834400pt;}
.x6_c00303{left:68.769067pt;}
.x2_c00303{left:83.835733pt;}
.x3_c00303{left:244.435733pt;}
.x10_c00303{left:502.369067pt;}
.x11_c00303{left:545.902400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ce44c810361d02201c92862.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00304;src:url('chunks/assets/font_5682648f98b4081c54bae55b.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00304{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md_c00304{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c00304{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb_c00304{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma_c00304{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3_c00304{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4_c00304{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8_c00304{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00304{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0_c00304{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me_c00304{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m9_c00304{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00304{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00304{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1_c00304{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00304{color:transparent;}
.fs0_c00304{font-size:60.000000px;}
.fs1_c00304{font-size:84.000000px;}
.y0_c00304{bottom:0.000000px;}
.y32_c00304{bottom:91.273500px;}
.y31_c00304{bottom:112.875000px;}
.y30_c00304{bottom:133.723500px;}
.y2f_c00304{bottom:155.323500px;}
.y2e_c00304{bottom:172.273500px;}
.y2d_c00304{bottom:196.048500px;}
.y2c_c00304{bottom:216.898500px;}
.y2b_c00304{bottom:237.448500px;}
.y2a_c00304{bottom:258.000000px;}
.y29_c00304{bottom:279.223500px;}
.y28_c00304{bottom:300.448500px;}
.y27_c00304{bottom:322.348500px;}
.y26_c00304{bottom:342.900000px;}
.y25_c00304{bottom:364.500000px;}
.y24_c00304{bottom:385.723500px;}
.y23_c00304{bottom:405.223500px;}
.y22_c00304{bottom:427.875000px;}
.y21_c00304{bottom:449.098500px;}
.y20_c00304{bottom:470.698500px;}
.y1f_c00304{bottom:492.673500px;}
.y1e_c00304{bottom:514.273500px;}
.y1d_c00304{bottom:535.875000px;}
.y1c_c00304{bottom:557.473500px;}
.y1b_c00304{bottom:579.073500px;}
.y1a_c00304{bottom:600.673500px;}
.y19_c00304{bottom:621.898500px;}
.y18_c00304{bottom:644.250000px;}
.y17_c00304{bottom:664.723500px;}
.y16_c00304{bottom:686.323500px;}
.y15_c00304{bottom:707.923500px;}
.y14_c00304{bottom:729.523500px;}
.y13_c00304{bottom:751.125000px;}
.y12_c00304{bottom:772.723500px;}
.y11_c00304{bottom:796.500000px;}
.y10_c00304{bottom:815.925000px;}
.yf_c00304{bottom:837.900000px;}
.ye_c00304{bottom:859.500000px;}
.yd_c00304{bottom:881.848500px;}
.yc_c00304{bottom:903.000000px;}
.yb_c00304{bottom:923.625000px;}
.ya_c00304{bottom:944.848500px;}
.y9_c00304{bottom:966.073500px;}
.y8_c00304{bottom:986.925000px;}
.y7_c00304{bottom:990.525000px;}
.y6_c00304{bottom:992.323500px;}
.y5_c00304{bottom:1009.573500px;}
.y4_c00304{bottom:1030.800000px;}
.y3_c00304{bottom:1085.550000px;}
.y1_c00304{bottom:1091.025000px;}
.y2_c00304{bottom:1099.425000px;}
.h1_c00304{height:60.468750px;}
.h2_c00304{height:82.441406px;}
.h3_c00304{height:84.656250px;}
.h0_c00304{height:1174.500000px;}
.w0_c00304{width:731.977200px;}
.w1_c00304{width:732.000000px;}
.x0_c00304{left:0.000000px;}
.xf_c00304{left:71.965200px;}
.xe_c00304{left:73.390200px;}
.xb_c00304{left:74.515200px;}
.xa_c00304{left:75.563700px;}
.x8_c00304{left:77.740200px;}
.x5_c00304{left:79.165200px;}
.x10_c00304{left:104.740200px;}
.xd_c00304{left:106.540200px;}
.xc_c00304{left:107.590200px;}
.x9_c00304{left:108.715200px;}
.x4_c00304{left:112.690200px;}
.x6_c00304{left:121.315200px;}
.x7_c00304{left:218.140200px;}
.x1_c00304{left:296.290200px;}
.x2_c00304{left:492.490200px;}
.x3_c00304{left:655.915200px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls0_c00304{letter-spacing:0.000000pt;}
.ws0_c00304{word-spacing:0.000000pt;}
.fs0_c00304{font-size:53.333333pt;}
.fs1_c00304{font-size:74.666667pt;}
.y0_c00304{bottom:0.000000pt;}
.y32_c00304{bottom:81.132000pt;}
.y31_c00304{bottom:100.333333pt;}
.y30_c00304{bottom:118.865333pt;}
.y2f_c00304{bottom:138.065333pt;}
.y2e_c00304{bottom:153.132000pt;}
.y2d_c00304{bottom:174.265333pt;}
.y2c_c00304{bottom:192.798667pt;}
.y2b_c00304{bottom:211.065333pt;}
.y2a_c00304{bottom:229.333333pt;}
.y29_c00304{bottom:248.198667pt;}
.y28_c00304{bottom:267.065333pt;}
.y27_c00304{bottom:286.532000pt;}
.y26_c00304{bottom:304.800000pt;}
.y25_c00304{bottom:324.000000pt;}
.y24_c00304{bottom:342.865333pt;}
.y23_c00304{bottom:360.198667pt;}
.y22_c00304{bottom:380.333333pt;}
.y21_c00304{bottom:399.198667pt;}
.y20_c00304{bottom:418.398667pt;}
.y1f_c00304{bottom:437.932000pt;}
.y1e_c00304{bottom:457.132000pt;}
.y1d_c00304{bottom:476.333333pt;}
.y1c_c00304{bottom:495.532000pt;}
.y1b_c00304{bottom:514.732000pt;}
.y1a_c00304{bottom:533.932000pt;}
.y19_c00304{bottom:552.798667pt;}
.y18_c00304{bottom:572.666667pt;}
.y17_c00304{bottom:590.865333pt;}
.y16_c00304{bottom:610.065333pt;}
.y15_c00304{bottom:629.265333pt;}
.y14_c00304{bottom:648.465333pt;}
.y13_c00304{bottom:667.666667pt;}
.y12_c00304{bottom:686.865333pt;}
.y11_c00304{bottom:708.000000pt;}
.y10_c00304{bottom:725.266667pt;}
.yf_c00304{bottom:744.800000pt;}
.ye_c00304{bottom:764.000000pt;}
.yd_c00304{bottom:783.865333pt;}
.yc_c00304{bottom:802.666667pt;}
.yb_c00304{bottom:821.000000pt;}
.ya_c00304{bottom:839.865333pt;}
.y9_c00304{bottom:858.732000pt;}
.y8_c00304{bottom:877.266667pt;}
.y7_c00304{bottom:880.466667pt;}
.y6_c00304{bottom:882.065333pt;}
.y5_c00304{bottom:897.398667pt;}
.y4_c00304{bottom:916.266667pt;}
.y3_c00304{bottom:964.933333pt;}
.y1_c00304{bottom:969.800000pt;}
.y2_c00304{bottom:977.266667pt;}
.h1_c00304{height:53.750000pt;}
.h2_c00304{height:73.281250pt;}
.h3_c00304{height:75.250000pt;}
.h0_c00304{height:1044.000000pt;}
.w0_c00304{width:650.646400pt;}
.w1_c00304{width:650.666667pt;}
.x0_c00304{left:0.000000pt;}
.xf_c00304{left:63.969067pt;}
.xe_c00304{left:65.235733pt;}
.xb_c00304{left:66.235733pt;}
.xa_c00304{left:67.167733pt;}
.x8_c00304{left:69.102400pt;}
.x5_c00304{left:70.369067pt;}
.x10_c00304{left:93.102400pt;}
.xd_c00304{left:94.702400pt;}
.xc_c00304{left:95.635733pt;}
.x9_c00304{left:96.635733pt;}
.x4_c00304{left:100.169067pt;}
.x6_c00304{left:107.835733pt;}
.x7_c00304{left:193.902400pt;}
.x1_c00304{left:263.369067pt;}
.x2_c00304{left:437.769067pt;}
.x3_c00304{left:583.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec8f6f2cd6a90e7342466c5b.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00305;src:url('chunks/assets/font_b64800f4f719aedc792bd487.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00305{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma_c00305{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md_c00305{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8_c00305{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00305{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00305{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00305{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00305{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c00305{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00305{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00305{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m0_c00305{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00305{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1_c00305{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.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;}
}
.ws0_c00305{word-spacing:0.000000px;}
.fc0_c00305{color:transparent;}
.fs0_c00305{font-size:60.000000px;}
.fs1_c00305{font-size:78.000000px;}
.y0_c00305{bottom:0.000000px;}
.y34_c00305{bottom:103.500000px;}
.y32_c00305{bottom:122.923500px;}
.y33_c00305{bottom:123.298500px;}
.y31_c00305{bottom:126.148500px;}
.y30_c00305{bottom:145.948500px;}
.y2f_c00305{bottom:168.298500px;}
.y2e_c00305{bottom:189.148500px;}
.y2d_c00305{bottom:213.673500px;}
.y2c_c00305{bottom:232.723500px;}
.y2b_c00305{bottom:254.323500px;}
.y2a_c00305{bottom:275.173500px;}
.y29_c00305{bottom:276.298500px;}
.y28_c00305{bottom:297.598500px;}
.y27_c00305{bottom:319.500000px;}
.y26_c00305{bottom:340.723500px;}
.y25_c00305{bottom:362.323500px;}
.y24_c00305{bottom:385.723500px;}
.y23_c00305{bottom:405.900000px;}
.y22_c00305{bottom:427.875000px;}
.y21_c00305{bottom:449.848500px;}
.y20_c00305{bottom:471.375000px;}
.y1f_c00305{bottom:492.673500px;}
.y1e_c00305{bottom:514.273500px;}
.y1c_c00305{bottom:535.500000px;}
.y1d_c00305{bottom:535.798500px;}
.y1b_c00305{bottom:556.723500px;}
.y1a_c00305{bottom:578.323500px;}
.y19_c00305{bottom:599.923500px;}
.y18_c00305{bottom:621.898500px;}
.y17_c00305{bottom:643.500000px;}
.y16_c00305{bottom:665.098500px;}
.y15_c00305{bottom:685.648500px;}
.y14_c00305{bottom:707.923500px;}
.y13_c00305{bottom:729.223500px;}
.y12_c00305{bottom:751.125000px;}
.y11_c00305{bottom:772.723500px;}
.y10_c00305{bottom:794.025000px;}
.yf_c00305{bottom:815.550000px;}
.ye_c00305{bottom:836.473500px;}
.yd_c00305{bottom:857.323500px;}
.yc_c00305{bottom:878.250000px;}
.yb_c00305{bottom:898.050000px;}
.ya_c00305{bottom:921.073500px;}
.y9_c00305{bottom:942.675000px;}
.y8_c00305{bottom:964.650000px;}
.y7_c00305{bottom:985.500000px;}
.y6_c00305{bottom:1007.098500px;}
.y5_c00305{bottom:1027.275000px;}
.y4_c00305{bottom:1048.125000px;}
.y1_c00305{bottom:1097.098500px;}
.y2_c00305{bottom:1097.848500px;}
.y3_c00305{bottom:1104.675000px;}
.h1_c00305{height:58.886719px;}
.h2_c00305{height:76.552734px;}
.h3_c00305{height:78.609375px;}
.h0_c00305{height:1174.500000px;}
.w0_c00305{width:731.977200px;}
.w1_c00305{width:732.000000px;}
.x0_c00305{left:0.000000px;}
.x8_c00305{left:36.715200px;}
.x7_c00305{left:37.765200px;}
.x5_c00305{left:38.890200px;}
.x4_c00305{left:40.315200px;}
.x1_c00305{left:59.740200px;}
.x6_c00305{left:67.990200px;}
.x9_c00305{left:69.115200px;}
.xb_c00305{left:71.290200px;}
.x2_c00305{left:86.365200px;}
.x3_c00305{left:262.090200px;}
.xd_c00305{left:569.140200px;}
.xe_c00305{left:589.690200px;}
.xa_c00305{left:636.490200px;}
.xc_c00305{left:639.340200px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls0_c00305{letter-spacing:0.000000pt;}
.ws0_c00305{word-spacing:0.000000pt;}
.fs0_c00305{font-size:53.333333pt;}
.fs1_c00305{font-size:69.333333pt;}
.y0_c00305{bottom:0.000000pt;}
.y34_c00305{bottom:92.000000pt;}
.y32_c00305{bottom:109.265333pt;}
.y33_c00305{bottom:109.598667pt;}
.y31_c00305{bottom:112.132000pt;}
.y30_c00305{bottom:129.732000pt;}
.y2f_c00305{bottom:149.598667pt;}
.y2e_c00305{bottom:168.132000pt;}
.y2d_c00305{bottom:189.932000pt;}
.y2c_c00305{bottom:206.865333pt;}
.y2b_c00305{bottom:226.065333pt;}
.y2a_c00305{bottom:244.598667pt;}
.y29_c00305{bottom:245.598667pt;}
.y28_c00305{bottom:264.532000pt;}
.y27_c00305{bottom:284.000000pt;}
.y26_c00305{bottom:302.865333pt;}
.y25_c00305{bottom:322.065333pt;}
.y24_c00305{bottom:342.865333pt;}
.y23_c00305{bottom:360.800000pt;}
.y22_c00305{bottom:380.333333pt;}
.y21_c00305{bottom:399.865333pt;}
.y20_c00305{bottom:419.000000pt;}
.y1f_c00305{bottom:437.932000pt;}
.y1e_c00305{bottom:457.132000pt;}
.y1c_c00305{bottom:476.000000pt;}
.y1d_c00305{bottom:476.265333pt;}
.y1b_c00305{bottom:494.865333pt;}
.y1a_c00305{bottom:514.065333pt;}
.y19_c00305{bottom:533.265333pt;}
.y18_c00305{bottom:552.798667pt;}
.y17_c00305{bottom:572.000000pt;}
.y16_c00305{bottom:591.198667pt;}
.y15_c00305{bottom:609.465333pt;}
.y14_c00305{bottom:629.265333pt;}
.y13_c00305{bottom:648.198667pt;}
.y12_c00305{bottom:667.666667pt;}
.y11_c00305{bottom:686.865333pt;}
.y10_c00305{bottom:705.800000pt;}
.yf_c00305{bottom:724.933333pt;}
.ye_c00305{bottom:743.532000pt;}
.yd_c00305{bottom:762.065333pt;}
.yc_c00305{bottom:780.666667pt;}
.yb_c00305{bottom:798.266667pt;}
.ya_c00305{bottom:818.732000pt;}
.y9_c00305{bottom:837.933333pt;}
.y8_c00305{bottom:857.466667pt;}
.y7_c00305{bottom:876.000000pt;}
.y6_c00305{bottom:895.198667pt;}
.y5_c00305{bottom:913.133333pt;}
.y4_c00305{bottom:931.666667pt;}
.y1_c00305{bottom:975.198667pt;}
.y2_c00305{bottom:975.865333pt;}
.y3_c00305{bottom:981.933333pt;}
.h1_c00305{height:52.343750pt;}
.h2_c00305{height:68.046875pt;}
.h3_c00305{height:69.875000pt;}
.h0_c00305{height:1044.000000pt;}
.w0_c00305{width:650.646400pt;}
.w1_c00305{width:650.666667pt;}
.x0_c00305{left:0.000000pt;}
.x8_c00305{left:32.635733pt;}
.x7_c00305{left:33.569067pt;}
.x5_c00305{left:34.569067pt;}
.x4_c00305{left:35.835733pt;}
.x1_c00305{left:53.102400pt;}
.x6_c00305{left:60.435733pt;}
.x9_c00305{left:61.435733pt;}
.xb_c00305{left:63.369067pt;}
.x2_c00305{left:76.769067pt;}
.x3_c00305{left:232.969067pt;}
.xd_c00305{left:505.902400pt;}
.xe_c00305{left:524.169067pt;}
.xa_c00305{left:565.769067pt;}
.xc_c00305{left:568.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5ed7c01517784d4b9bd4a12.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00306;src:url('chunks/assets/font_7ba851f0187ca36c4687c638.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00306{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7_c00306{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c00306{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00306{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.md_c00306{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4_c00306{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00306{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c00306{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mf_c00306{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00306{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00306{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00306{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00306{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.me_c00306{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c00306{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m1_c00306{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00306{vertical-align:0.000000px;}
.ls0_c00306{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00306{color:transparent;}
.fs0_c00306{font-size:54.000000px;}
.fs2_c00306{font-size:66.000000px;}
.fs1_c00306{font-size:84.000000px;}
.y0_c00306{bottom:0.000000px;}
.y15_c00306{bottom:741.750000px;}
.y12_c00306{bottom:770.175000px;}
.y13_c00306{bottom:770.250000px;}
.y14_c00306{bottom:770.550000px;}
.y11_c00306{bottom:817.348500px;}
.y10_c00306{bottom:839.323500px;}
.yf_c00306{bottom:859.875000px;}
.ye_c00306{bottom:882.150000px;}
.yb_c00306{bottom:902.323500px;}
.yd_c00306{bottom:903.375000px;}
.yc_c00306{bottom:903.448500px;}
.ya_c00306{bottom:924.300000px;}
.y9_c00306{bottom:945.150000px;}
.y8_c00306{bottom:945.525000px;}
.y7_c00306{bottom:967.500000px;}
.y6_c00306{bottom:988.723500px;}
.y5_c00306{bottom:1010.323500px;}
.y4_c00306{bottom:1032.000000px;}
.y3_c00306{bottom:1089.900000px;}
.y2_c00306{bottom:1091.698500px;}
.y1_c00306{bottom:1092.073500px;}
.h4_c00306{height:52.998047px;}
.h1_c00306{height:54.421875px;}
.h3_c00306{height:64.775391px;}
.h2_c00306{height:82.441406px;}
.h0_c00306{height:1174.500000px;}
.w0_c00306{width:731.977200px;}
.w1_c00306{width:732.000000px;}
.x0_c00306{left:0.000000px;}
.xc_c00306{left:69.490200px;}
.x4_c00306{left:70.540200px;}
.x8_c00306{left:97.540200px;}
.xb_c00306{left:102.565200px;}
.x7_c00306{left:105.115200px;}
.x9_c00306{left:210.190200px;}
.x1_c00306{left:288.340200px;}
.xa_c00306{left:292.990200px;}
.x10_c00306{left:380.515200px;}
.xd_c00306{left:394.913700px;}
.xe_c00306{left:433.090200px;}
.xf_c00306{left:458.965200px;}
.x2_c00306{left:484.540200px;}
.x5_c00306{left:646.540200px;}
.x3_c00306{left:648.340200px;}
.x6_c00306{left:668.890200px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls0_c00306{letter-spacing:0.000000pt;}
.ws0_c00306{word-spacing:0.000000pt;}
.fs0_c00306{font-size:48.000000pt;}
.fs2_c00306{font-size:58.666667pt;}
.fs1_c00306{font-size:74.666667pt;}
.y0_c00306{bottom:0.000000pt;}
.y15_c00306{bottom:659.333333pt;}
.y12_c00306{bottom:684.600000pt;}
.y13_c00306{bottom:684.666667pt;}
.y14_c00306{bottom:684.933333pt;}
.y11_c00306{bottom:726.532000pt;}
.y10_c00306{bottom:746.065333pt;}
.yf_c00306{bottom:764.333333pt;}
.ye_c00306{bottom:784.133333pt;}
.yb_c00306{bottom:802.065333pt;}
.yd_c00306{bottom:803.000000pt;}
.yc_c00306{bottom:803.065333pt;}
.ya_c00306{bottom:821.600000pt;}
.y9_c00306{bottom:840.133333pt;}
.y8_c00306{bottom:840.466667pt;}
.y7_c00306{bottom:860.000000pt;}
.y6_c00306{bottom:878.865333pt;}
.y5_c00306{bottom:898.065333pt;}
.y4_c00306{bottom:917.333333pt;}
.y3_c00306{bottom:968.800000pt;}
.y2_c00306{bottom:970.398667pt;}
.y1_c00306{bottom:970.732000pt;}
.h4_c00306{height:47.109375pt;}
.h1_c00306{height:48.375000pt;}
.h3_c00306{height:57.578125pt;}
.h2_c00306{height:73.281250pt;}
.h0_c00306{height:1044.000000pt;}
.w0_c00306{width:650.646400pt;}
.w1_c00306{width:650.666667pt;}
.x0_c00306{left:0.000000pt;}
.xc_c00306{left:61.769067pt;}
.x4_c00306{left:62.702400pt;}
.x8_c00306{left:86.702400pt;}
.xb_c00306{left:91.169067pt;}
.x7_c00306{left:93.435733pt;}
.x9_c00306{left:186.835733pt;}
.x1_c00306{left:256.302400pt;}
.xa_c00306{left:260.435733pt;}
.x10_c00306{left:338.235733pt;}
.xd_c00306{left:351.034400pt;}
.xe_c00306{left:384.969067pt;}
.xf_c00306{left:407.969067pt;}
.x2_c00306{left:430.702400pt;}
.x5_c00306{left:574.702400pt;}
.x3_c00306{left:576.302400pt;}
.x6_c00306{left:594.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eac7e7e54ed9f327f343d10e.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00307;src:url('chunks/assets/font_2a33fd0fb981642f5cd4cb48.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00307{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m7_c00307{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2_c00307{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6_c00307{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00307{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00307{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00307{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00307{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00307{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00307{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9_c00307{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00307{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00307{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00307{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1_c00307{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.v1_c00307{vertical-align:9.906000px;}
.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;}
}
.ws0_c00307{word-spacing:-16.500000px;}
.ws1_c00307{word-spacing:0.000000px;}
._0_c00307{margin-left:-9.996400px;}
.fc0_c00307{color:transparent;}
.fs0_c00307{font-size:60.000000px;}
.fs2_c00307{font-size:66.000000px;}
.fs3_c00307{font-size:72.000000px;}
.fs1_c00307{font-size:174.000000px;}
.y0_c00307{bottom:0.000000px;}
.y28_c00307{bottom:96.673500px;}
.y27_c00307{bottom:104.923500px;}
.y26_c00307{bottom:105.298500px;}
.y25_c00307{bottom:118.573500px;}
.y24_c00307{bottom:139.875000px;}
.y23_c00307{bottom:160.723500px;}
.y22_c00307{bottom:182.698500px;}
.y21_c00307{bottom:203.923500px;}
.y20_c00307{bottom:225.898500px;}
.y1f_c00307{bottom:247.875000px;}
.y1e_c00307{bottom:269.473500px;}
.y1d_c00307{bottom:291.375000px;}
.y1c_c00307{bottom:312.673500px;}
.y1b_c00307{bottom:334.275000px;}
.y1a_c00307{bottom:355.875000px;}
.y19_c00307{bottom:377.473500px;}
.y18_c00307{bottom:399.073500px;}
.y17_c00307{bottom:421.048500px;}
.y16_c00307{bottom:442.648500px;}
.y15_c00307{bottom:464.250000px;}
.y14_c00307{bottom:485.848500px;}
.y13_c00307{bottom:507.073500px;}
.y12_c00307{bottom:528.673500px;}
.y11_c00307{bottom:550.273500px;}
.y10_c00307{bottom:571.500000px;}
.yf_c00307{bottom:593.473500px;}
.ye_c00307{bottom:614.698500px;}
.yd_c00307{bottom:636.298500px;}
.yc_c00307{bottom:658.273500px;}
.yb_c00307{bottom:679.798500px;}
.ya_c00307{bottom:701.473500px;}
.y9_c00307{bottom:745.723500px;}
.y6_c00307{bottom:764.473500px;}
.y7_c00307{bottom:766.273500px;}
.y8_c00307{bottom:766.648500px;}
.y5_c00307{bottom:785.023500px;}
.y4_c00307{bottom:892.573500px;}
.y1_c00307{bottom:1087.050000px;}
.y3_c00307{bottom:1096.800000px;}
.y2_c00307{bottom:1102.348500px;}
.h2_c00307{height:58.886719px;}
.h1_c00307{height:60.468750px;}
.h4_c00307{height:64.775391px;}
.h6_c00307{height:70.664062px;}
.h7_c00307{height:72.562500px;}
.h5_c00307{height:74.681391px;}
.h3_c00307{height:170.771484px;}
.h0_c00307{height:1174.500000px;}
.w0_c00307{width:731.977200px;}
.w1_c00307{width:732.000000px;}
.x0_c00307{left:0.000000px;}
.x4_c00307{left:35.963700px;}
.xb_c00307{left:37.390200px;}
.xa_c00307{left:38.890200px;}
.xc_c00307{left:40.315200px;}
.xd_c00307{left:41.740200px;}
.xe_c00307{left:42.790200px;}
.xf_c00307{left:43.915200px;}
.x10_c00307{left:45.715200px;}
.x11_c00307{left:47.140200px;}
.x5_c00307{left:51.490200px;}
.x1_c00307{left:53.290200px;}
.x9_c00307{left:69.115200px;}
.x2_c00307{left:82.090200px;}
.x12_c00307{left:86.365200px;}
.x13_c00307{left:103.315200px;}
.x6_c00307{left:246.190200px;}
.x3_c00307{left:256.315200px;}
.x7_c00307{left:257.365200px;}
.x8_c00307{left:265.690200px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.v1_c00307{vertical-align:8.805333pt;}
.ls0_c00307{letter-spacing:0.000000pt;}
.ws0_c00307{word-spacing:-14.666667pt;}
.ws1_c00307{word-spacing:0.000000pt;}
._0_c00307{margin-left:-8.885689pt;}
.fs0_c00307{font-size:53.333333pt;}
.fs2_c00307{font-size:58.666667pt;}
.fs3_c00307{font-size:64.000000pt;}
.fs1_c00307{font-size:154.666667pt;}
.y0_c00307{bottom:0.000000pt;}
.y28_c00307{bottom:85.932000pt;}
.y27_c00307{bottom:93.265333pt;}
.y26_c00307{bottom:93.598667pt;}
.y25_c00307{bottom:105.398667pt;}
.y24_c00307{bottom:124.333333pt;}
.y23_c00307{bottom:142.865333pt;}
.y22_c00307{bottom:162.398667pt;}
.y21_c00307{bottom:181.265333pt;}
.y20_c00307{bottom:200.798667pt;}
.y1f_c00307{bottom:220.333333pt;}
.y1e_c00307{bottom:239.532000pt;}
.y1d_c00307{bottom:259.000000pt;}
.y1c_c00307{bottom:277.932000pt;}
.y1b_c00307{bottom:297.133333pt;}
.y1a_c00307{bottom:316.333333pt;}
.y19_c00307{bottom:335.532000pt;}
.y18_c00307{bottom:354.732000pt;}
.y17_c00307{bottom:374.265333pt;}
.y16_c00307{bottom:393.465333pt;}
.y15_c00307{bottom:412.666667pt;}
.y14_c00307{bottom:431.865333pt;}
.y13_c00307{bottom:450.732000pt;}
.y12_c00307{bottom:469.932000pt;}
.y11_c00307{bottom:489.132000pt;}
.y10_c00307{bottom:508.000000pt;}
.yf_c00307{bottom:527.532000pt;}
.ye_c00307{bottom:546.398667pt;}
.yd_c00307{bottom:565.598667pt;}
.yc_c00307{bottom:585.132000pt;}
.yb_c00307{bottom:604.265333pt;}
.ya_c00307{bottom:623.532000pt;}
.y9_c00307{bottom:662.865333pt;}
.y6_c00307{bottom:679.532000pt;}
.y7_c00307{bottom:681.132000pt;}
.y8_c00307{bottom:681.465333pt;}
.y5_c00307{bottom:697.798667pt;}
.y4_c00307{bottom:793.398667pt;}
.y1_c00307{bottom:966.266667pt;}
.y3_c00307{bottom:974.933333pt;}
.y2_c00307{bottom:979.865333pt;}
.h2_c00307{height:52.343750pt;}
.h1_c00307{height:53.750000pt;}
.h4_c00307{height:57.578125pt;}
.h6_c00307{height:62.812500pt;}
.h7_c00307{height:64.500000pt;}
.h5_c00307{height:66.383458pt;}
.h3_c00307{height:151.796875pt;}
.h0_c00307{height:1044.000000pt;}
.w0_c00307{width:650.646400pt;}
.w1_c00307{width:650.666667pt;}
.x0_c00307{left:0.000000pt;}
.x4_c00307{left:31.967733pt;}
.xb_c00307{left:33.235733pt;}
.xa_c00307{left:34.569067pt;}
.xc_c00307{left:35.835733pt;}
.xd_c00307{left:37.102400pt;}
.xe_c00307{left:38.035733pt;}
.xf_c00307{left:39.035733pt;}
.x10_c00307{left:40.635733pt;}
.x11_c00307{left:41.902400pt;}
.x5_c00307{left:45.769067pt;}
.x1_c00307{left:47.369067pt;}
.x9_c00307{left:61.435733pt;}
.x2_c00307{left:72.969067pt;}
.x12_c00307{left:76.769067pt;}
.x13_c00307{left:91.835733pt;}
.x6_c00307{left:218.835733pt;}
.x3_c00307{left:227.835733pt;}
.x7_c00307{left:228.769067pt;}
.x8_c00307{left:236.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cad467bb96f0cfc2af80b5e4.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00308;src:url('chunks/assets/font_95ed0979512ed6c7d1302ba2.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00308;src:url('chunks/assets/font_c46116ad2dd482bd40317cd5.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00308;src:url('chunks/assets/font_110b9cfa94c3cac4326c4575.woff2')format("woff");}.ff4_c00308{font-family:ff4_c00308;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00308{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c00308{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c00308{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00308{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c00308{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c00308{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00308{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c00308{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00308{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00308{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00308{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c00308{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00308{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00308{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m12_c00308{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00308{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00308{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00308{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00308{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00308{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c00308{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5_c00308{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m17_c00308{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c00308{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.ls0_c00308{letter-spacing:0.000000px;}
.sc__c00308{text-shadow:none;}
.sc0_c00308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00308{-webkit-text-stroke:0px transparent;}
.sc0_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00308{word-spacing:0.000000px;}
.fc0_c00308{color:transparent;}
.fs0_c00308{font-size:60.000000px;}
.fs2_c00308{font-size:66.000000px;}
.fs1_c00308{font-size:72.000000px;}
.y0_c00308{bottom:0.000000px;}
.y39_c00308{bottom:86.923500px;}
.y38_c00308{bottom:103.798500px;}
.y37_c00308{bottom:120.448500px;}
.y34_c00308{bottom:135.148500px;}
.y35_c00308{bottom:136.648500px;}
.y36_c00308{bottom:139.198500px;}
.y33_c00308{bottom:153.598500px;}
.y31_c00308{bottom:170.098500px;}
.y32_c00308{bottom:174.448500px;}
.y30_c00308{bottom:186.973500px;}
.y2e_c00308{bottom:203.250000px;}
.y2f_c00308{bottom:208.573500px;}
.y2d_c00308{bottom:219.823500px;}
.y2c_c00308{bottom:236.698500px;}
.y2b_c00308{bottom:252.898500px;}
.y2a_c00308{bottom:269.848500px;}
.y29_c00308{bottom:302.625000px;}
.y27_c00308{bottom:319.500000px;}
.y28_c00308{bottom:320.923500px;}
.y26_c00308{bottom:362.323500px;}
.y25_c00308{bottom:408.448500px;}
.y24_c00308{bottom:425.698500px;}
.y23_c00308{bottom:442.648500px;}
.y22_c00308{bottom:459.898500px;}
.y21_c00308{bottom:477.223500px;}
.y20_c00308{bottom:494.473500px;}
.y1f_c00308{bottom:511.723500px;}
.y1e_c00308{bottom:529.048500px;}
.y1d_c00308{bottom:546.000000px;}
.y1c_c00308{bottom:563.250000px;}
.y1b_c00308{bottom:580.500000px;}
.y1a_c00308{bottom:597.823500px;}
.y19_c00308{bottom:615.073500px;}
.y18_c00308{bottom:632.023500px;}
.y17_c00308{bottom:649.273500px;}
.y16_c00308{bottom:666.523500px;}
.y15_c00308{bottom:667.648500px;}
.y14_c00308{bottom:701.473500px;}
.y13_c00308{bottom:717.298500px;}
.y12_c00308{bottom:718.723500px;}
.y11_c00308{bottom:760.875000px;}
.y10_c00308{bottom:857.698500px;}
.yf_c00308{bottom:870.675000px;}
.ye_c00308{bottom:872.473500px;}
.yd_c00308{bottom:874.275000px;}
.yc_c00308{bottom:889.800000px;}
.yb_c00308{bottom:891.525000px;}
.ya_c00308{bottom:907.425000px;}
.y9_c00308{bottom:908.848500px;}
.y8_c00308{bottom:924.675000px;}
.y7_c00308{bottom:941.175000px;}
.y6_c00308{bottom:943.425000px;}
.y5_c00308{bottom:1002.750000px;}
.y4_c00308{bottom:1023.973500px;}
.y3_c00308{bottom:1078.348500px;}
.y2_c00308{bottom:1082.323500px;}
.y1_c00308{bottom:1083.375000px;}
.h6_c00308{height:58.886719px;}
.h1_c00308{height:60.468750px;}
.h4_c00308{height:64.775391px;}
.h3_c00308{height:66.515625px;}
.h5_c00308{height:70.628906px;}
.h2_c00308{height:70.664062px;}
.h0_c00308{height:1174.500000px;}
.w0_c00308{width:731.977200px;}
.w1_c00308{width:732.000000px;}
.x0_c00308{left:0.000000px;}
.x4_c00308{left:62.965200px;}
.x7_c00308{left:64.090200px;}
.x13_c00308{left:65.515200px;}
.x15_c00308{left:67.690200px;}
.x1b_c00308{left:70.165200px;}
.x1f_c00308{left:71.290200px;}
.x22_c00308{left:73.390200px;}
.x5_c00308{left:81.340200px;}
.x19_c00308{left:85.688700px;}
.x11_c00308{left:91.390200px;}
.x1a_c00308{left:95.740200px;}
.x8_c00308{left:122.740200px;}
.x9_c00308{left:139.315200px;}
.xa_c00308{left:174.940200px;}
.x6_c00308{left:177.115200px;}
.xb_c00308{left:203.740200px;}
.xc_c00308{left:218.890200px;}
.xf_c00308{left:265.690200px;}
.x16_c00308{left:273.190200px;}
.x1_c00308{left:278.290200px;}
.x12_c00308{left:287.965200px;}
.x14_c00308{left:300.190200px;}
.x17_c00308{left:338.365200px;}
.x18_c00308{left:343.390200px;}
.x10_c00308{left:351.340200px;}
.x20_c00308{left:369.340200px;}
.x21_c00308{left:388.390200px;}
.xd_c00308{left:463.990200px;}
.x2_c00308{left:474.790200px;}
.xe_c00308{left:479.140200px;}
.x1d_c00308{left:631.765200px;}
.x3_c00308{left:637.165200px;}
.x1e_c00308{left:646.540200px;}
.x1c_c00308{left:676.090200px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls0_c00308{letter-spacing:0.000000pt;}
.ws0_c00308{word-spacing:0.000000pt;}
.fs0_c00308{font-size:53.333333pt;}
.fs2_c00308{font-size:58.666667pt;}
.fs1_c00308{font-size:64.000000pt;}
.y0_c00308{bottom:0.000000pt;}
.y39_c00308{bottom:77.265333pt;}
.y38_c00308{bottom:92.265333pt;}
.y37_c00308{bottom:107.065333pt;}
.y34_c00308{bottom:120.132000pt;}
.y35_c00308{bottom:121.465333pt;}
.y36_c00308{bottom:123.732000pt;}
.y33_c00308{bottom:136.532000pt;}
.y31_c00308{bottom:151.198667pt;}
.y32_c00308{bottom:155.065333pt;}
.y30_c00308{bottom:166.198667pt;}
.y2e_c00308{bottom:180.666667pt;}
.y2f_c00308{bottom:185.398667pt;}
.y2d_c00308{bottom:195.398667pt;}
.y2c_c00308{bottom:210.398667pt;}
.y2b_c00308{bottom:224.798667pt;}
.y2a_c00308{bottom:239.865333pt;}
.y29_c00308{bottom:269.000000pt;}
.y27_c00308{bottom:284.000000pt;}
.y28_c00308{bottom:285.265333pt;}
.y26_c00308{bottom:322.065333pt;}
.y25_c00308{bottom:363.065333pt;}
.y24_c00308{bottom:378.398667pt;}
.y23_c00308{bottom:393.465333pt;}
.y22_c00308{bottom:408.798667pt;}
.y21_c00308{bottom:424.198667pt;}
.y20_c00308{bottom:439.532000pt;}
.y1f_c00308{bottom:454.865333pt;}
.y1e_c00308{bottom:470.265333pt;}
.y1d_c00308{bottom:485.333333pt;}
.y1c_c00308{bottom:500.666667pt;}
.y1b_c00308{bottom:516.000000pt;}
.y1a_c00308{bottom:531.398667pt;}
.y19_c00308{bottom:546.732000pt;}
.y18_c00308{bottom:561.798667pt;}
.y17_c00308{bottom:577.132000pt;}
.y16_c00308{bottom:592.465333pt;}
.y15_c00308{bottom:593.465333pt;}
.y14_c00308{bottom:623.532000pt;}
.y13_c00308{bottom:637.598667pt;}
.y12_c00308{bottom:638.865333pt;}
.y11_c00308{bottom:676.333333pt;}
.y10_c00308{bottom:762.398667pt;}
.yf_c00308{bottom:773.933333pt;}
.ye_c00308{bottom:775.532000pt;}
.yd_c00308{bottom:777.133333pt;}
.yc_c00308{bottom:790.933333pt;}
.yb_c00308{bottom:792.466667pt;}
.ya_c00308{bottom:806.600000pt;}
.y9_c00308{bottom:807.865333pt;}
.y8_c00308{bottom:821.933333pt;}
.y7_c00308{bottom:836.600000pt;}
.y6_c00308{bottom:838.600000pt;}
.y5_c00308{bottom:891.333333pt;}
.y4_c00308{bottom:910.198667pt;}
.y3_c00308{bottom:958.532000pt;}
.y2_c00308{bottom:962.065333pt;}
.y1_c00308{bottom:963.000000pt;}
.h6_c00308{height:52.343750pt;}
.h1_c00308{height:53.750000pt;}
.h4_c00308{height:57.578125pt;}
.h3_c00308{height:59.125000pt;}
.h5_c00308{height:62.781250pt;}
.h2_c00308{height:62.812500pt;}
.h0_c00308{height:1044.000000pt;}
.w0_c00308{width:650.646400pt;}
.w1_c00308{width:650.666667pt;}
.x0_c00308{left:0.000000pt;}
.x4_c00308{left:55.969067pt;}
.x7_c00308{left:56.969067pt;}
.x13_c00308{left:58.235733pt;}
.x15_c00308{left:60.169067pt;}
.x1b_c00308{left:62.369067pt;}
.x1f_c00308{left:63.369067pt;}
.x22_c00308{left:65.235733pt;}
.x5_c00308{left:72.302400pt;}
.x19_c00308{left:76.167733pt;}
.x11_c00308{left:81.235733pt;}
.x1a_c00308{left:85.102400pt;}
.x8_c00308{left:109.102400pt;}
.x9_c00308{left:123.835733pt;}
.xa_c00308{left:155.502400pt;}
.x6_c00308{left:157.435733pt;}
.xb_c00308{left:181.102400pt;}
.xc_c00308{left:194.569067pt;}
.xf_c00308{left:236.169067pt;}
.x16_c00308{left:242.835733pt;}
.x1_c00308{left:247.369067pt;}
.x12_c00308{left:255.969067pt;}
.x14_c00308{left:266.835733pt;}
.x17_c00308{left:300.769067pt;}
.x18_c00308{left:305.235733pt;}
.x10_c00308{left:312.302400pt;}
.x20_c00308{left:328.302400pt;}
.x21_c00308{left:345.235733pt;}
.xd_c00308{left:412.435733pt;}
.x2_c00308{left:422.035733pt;}
.xe_c00308{left:425.902400pt;}
.x1d_c00308{left:561.569067pt;}
.x3_c00308{left:566.369067pt;}
.x1e_c00308{left:574.702400pt;}
.x1c_c00308{left:600.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5fdcdd5a55e06528601659b4.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00309;src:url('chunks/assets/font_9bf8bad6aa540db86a45b3ba.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00309;src:url('chunks/assets/font_f03d1e44fe2d29ecda854165.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00309;src:url('chunks/assets/font_c924a8bd5150e709c9fd9de7.woff2')format("woff");}.ff4_c00309{font-family:ff4_c00309;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c00309{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00309{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m14_c00309{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c00309{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m19_c00309{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c00309{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00309{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c00309{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00309{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00309{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00309{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00309{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m15_c00309{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c00309{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c00309{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00309{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00309{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00309{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2_c00309{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00309{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c00309{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00309{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00309{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00309{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c00309{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c00309{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c00309{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00309{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c00309{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00309{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00309{color:transparent;}
.fs1_c00309{font-size:54.000000px;}
.fs2_c00309{font-size:60.000000px;}
.fs0_c00309{font-size:66.000000px;}
.fs3_c00309{font-size:78.000000px;}
.y0_c00309{bottom:0.000000px;}
.y3f_c00309{bottom:95.625000px;}
.y3e_c00309{bottom:108.148500px;}
.y3d_c00309{bottom:112.500000px;}
.y3c_c00309{bottom:135.223500px;}
.y3b_c00309{bottom:170.848500px;}
.y3a_c00309{bottom:180.898500px;}
.y38_c00309{bottom:197.848500px;}
.y39_c00309{bottom:198.523500px;}
.y37_c00309{bottom:199.948500px;}
.y36_c00309{bottom:202.875000px;}
.y35_c00309{bottom:206.098500px;}
.y34_c00309{bottom:242.473500px;}
.y2f_c00309{bottom:292.500000px;}
.y2e_c00309{bottom:310.125000px;}
.y2d_c00309{bottom:327.823500px;}
.y33_c00309{bottom:332.098500px;}
.y2c_c00309{bottom:345.073500px;}
.y32_c00309{bottom:349.048500px;}
.y2b_c00309{bottom:375.298500px;}
.y31_c00309{bottom:381.000000px;}
.y2a_c00309{bottom:392.625000px;}
.y30_c00309{bottom:395.473500px;}
.y29_c00309{bottom:423.523500px;}
.y28_c00309{bottom:440.473500px;}
.y27_c00309{bottom:442.648500px;}
.y26_c00309{bottom:483.298500px;}
.y25_c00309{bottom:485.098500px;}
.y24_c00309{bottom:524.023500px;}
.y23_c00309{bottom:540.523500px;}
.y22_c00309{bottom:558.523500px;}
.y21_c00309{bottom:575.473500px;}
.y20_c00309{bottom:592.423500px;}
.y1f_c00309{bottom:610.048500px;}
.y1d_c00309{bottom:627.298500px;}
.y1c_c00309{bottom:627.673500px;}
.y1e_c00309{bottom:627.973500px;}
.y1b_c00309{bottom:628.048500px;}
.y1a_c00309{bottom:702.223500px;}
.y19_c00309{bottom:719.473500px;}
.y18_c00309{bottom:736.723500px;}
.y17_c00309{bottom:754.348500px;}
.y16_c00309{bottom:771.598500px;}
.y13_c00309{bottom:787.500000px;}
.y14_c00309{bottom:787.875000px;}
.y15_c00309{bottom:789.300000px;}
.y12_c00309{bottom:805.500000px;}
.y11_c00309{bottom:822.448500px;}
.yd_c00309{bottom:836.848500px;}
.ye_c00309{bottom:838.573500px;}
.yf_c00309{bottom:839.323500px;}
.y10_c00309{bottom:840.448500px;}
.yc_c00309{bottom:856.198500px;}
.yb_c00309{bottom:873.223500px;}
.ya_c00309{bottom:890.098500px;}
.y9_c00309{bottom:907.723500px;}
.y8_c00309{bottom:924.675000px;}
.y7_c00309{bottom:942.300000px;}
.y6_c00309{bottom:959.625000px;}
.y5_c00309{bottom:1020.750000px;}
.y4_c00309{bottom:1041.675000px;}
.y1_c00309{bottom:1091.323500px;}
.y3_c00309{bottom:1098.525000px;}
.y2_c00309{bottom:1105.198500px;}
.h2_c00309{height:52.998047px;}
.h4_c00309{height:58.886719px;}
.h5_c00309{height:61.670545px;}
.h3_c00309{height:64.743164px;}
.h1_c00309{height:64.775391px;}
.h6_c00309{height:78.609375px;}
.h0_c00309{height:1174.500000px;}
.w0_c00309{width:731.977200px;}
.w1_c00309{width:732.000000px;}
.x0_c00309{left:0.000000px;}
.x1e_c00309{left:39.190200px;}
.x9_c00309{left:40.690200px;}
.x10_c00309{left:42.490200px;}
.xd_c00309{left:43.915200px;}
.x8_c00309{left:44.965200px;}
.x7_c00309{left:46.090200px;}
.x5_c00309{left:47.890200px;}
.x1c_c00309{left:57.565200px;}
.x17_c00309{left:59.365200px;}
.x23_c00309{left:61.915200px;}
.x22_c00309{left:66.190200px;}
.x14_c00309{left:67.315200px;}
.x1_c00309{left:69.115200px;}
.x6_c00309{left:70.540200px;}
.x4_c00309{left:79.915200px;}
.x2_c00309{left:95.740200px;}
.x15_c00309{left:111.190200px;}
.xa_c00309{left:122.365200px;}
.x11_c00309{left:183.565200px;}
.xe_c00309{left:198.340200px;}
.xf_c00309{left:214.915200px;}
.x1f_c00309{left:217.765200px;}
.x1d_c00309{left:265.690200px;}
.x3_c00309{left:270.340200px;}
.x20_c00309{left:340.540200px;}
.xb_c00309{left:345.565200px;}
.xc_c00309{left:360.715200px;}
.x1b_c00309{left:361.765200px;}
.x19_c00309{left:363.190200px;}
.x1a_c00309{left:380.515200px;}
.x18_c00309{left:381.565200px;}
.x16_c00309{left:443.140200px;}
.x12_c00309{left:452.515200px;}
.x21_c00309{left:594.715200px;}
.x13_c00309{left:636.490200px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls0_c00309{letter-spacing:0.000000pt;}
.ws0_c00309{word-spacing:0.000000pt;}
.fs1_c00309{font-size:48.000000pt;}
.fs2_c00309{font-size:53.333333pt;}
.fs0_c00309{font-size:58.666667pt;}
.fs3_c00309{font-size:69.333333pt;}
.y0_c00309{bottom:0.000000pt;}
.y3f_c00309{bottom:85.000000pt;}
.y3e_c00309{bottom:96.132000pt;}
.y3d_c00309{bottom:100.000000pt;}
.y3c_c00309{bottom:120.198667pt;}
.y3b_c00309{bottom:151.865333pt;}
.y3a_c00309{bottom:160.798667pt;}
.y38_c00309{bottom:175.865333pt;}
.y39_c00309{bottom:176.465333pt;}
.y37_c00309{bottom:177.732000pt;}
.y36_c00309{bottom:180.333333pt;}
.y35_c00309{bottom:183.198667pt;}
.y34_c00309{bottom:215.532000pt;}
.y2f_c00309{bottom:260.000000pt;}
.y2e_c00309{bottom:275.666667pt;}
.y2d_c00309{bottom:291.398667pt;}
.y33_c00309{bottom:295.198667pt;}
.y2c_c00309{bottom:306.732000pt;}
.y32_c00309{bottom:310.265333pt;}
.y2b_c00309{bottom:333.598667pt;}
.y31_c00309{bottom:338.666667pt;}
.y2a_c00309{bottom:349.000000pt;}
.y30_c00309{bottom:351.532000pt;}
.y29_c00309{bottom:376.465333pt;}
.y28_c00309{bottom:391.532000pt;}
.y27_c00309{bottom:393.465333pt;}
.y26_c00309{bottom:429.598667pt;}
.y25_c00309{bottom:431.198667pt;}
.y24_c00309{bottom:465.798667pt;}
.y23_c00309{bottom:480.465333pt;}
.y22_c00309{bottom:496.465333pt;}
.y21_c00309{bottom:511.532000pt;}
.y20_c00309{bottom:526.598667pt;}
.y1f_c00309{bottom:542.265333pt;}
.y1d_c00309{bottom:557.598667pt;}
.y1c_c00309{bottom:557.932000pt;}
.y1e_c00309{bottom:558.198667pt;}
.y1b_c00309{bottom:558.265333pt;}
.y1a_c00309{bottom:624.198667pt;}
.y19_c00309{bottom:639.532000pt;}
.y18_c00309{bottom:654.865333pt;}
.y17_c00309{bottom:670.532000pt;}
.y16_c00309{bottom:685.865333pt;}
.y13_c00309{bottom:700.000000pt;}
.y14_c00309{bottom:700.333333pt;}
.y15_c00309{bottom:701.600000pt;}
.y12_c00309{bottom:716.000000pt;}
.y11_c00309{bottom:731.065333pt;}
.yd_c00309{bottom:743.865333pt;}
.ye_c00309{bottom:745.398667pt;}
.yf_c00309{bottom:746.065333pt;}
.y10_c00309{bottom:747.065333pt;}
.yc_c00309{bottom:761.065333pt;}
.yb_c00309{bottom:776.198667pt;}
.ya_c00309{bottom:791.198667pt;}
.y9_c00309{bottom:806.865333pt;}
.y8_c00309{bottom:821.933333pt;}
.y7_c00309{bottom:837.600000pt;}
.y6_c00309{bottom:853.000000pt;}
.y5_c00309{bottom:907.333333pt;}
.y4_c00309{bottom:925.933333pt;}
.y1_c00309{bottom:970.065333pt;}
.y3_c00309{bottom:976.466667pt;}
.y2_c00309{bottom:982.398667pt;}
.h2_c00309{height:47.109375pt;}
.h4_c00309{height:52.343750pt;}
.h5_c00309{height:54.818262pt;}
.h3_c00309{height:57.549479pt;}
.h1_c00309{height:57.578125pt;}
.h6_c00309{height:69.875000pt;}
.h0_c00309{height:1044.000000pt;}
.w0_c00309{width:650.646400pt;}
.w1_c00309{width:650.666667pt;}
.x0_c00309{left:0.000000pt;}
.x1e_c00309{left:34.835733pt;}
.x9_c00309{left:36.169067pt;}
.x10_c00309{left:37.769067pt;}
.xd_c00309{left:39.035733pt;}
.x8_c00309{left:39.969067pt;}
.x7_c00309{left:40.969067pt;}
.x5_c00309{left:42.569067pt;}
.x1c_c00309{left:51.169067pt;}
.x17_c00309{left:52.769067pt;}
.x23_c00309{left:55.035733pt;}
.x22_c00309{left:58.835733pt;}
.x14_c00309{left:59.835733pt;}
.x1_c00309{left:61.435733pt;}
.x6_c00309{left:62.702400pt;}
.x4_c00309{left:71.035733pt;}
.x2_c00309{left:85.102400pt;}
.x15_c00309{left:98.835733pt;}
.xa_c00309{left:108.769067pt;}
.x11_c00309{left:163.169067pt;}
.xe_c00309{left:176.302400pt;}
.xf_c00309{left:191.035733pt;}
.x1f_c00309{left:193.569067pt;}
.x1d_c00309{left:236.169067pt;}
.x3_c00309{left:240.302400pt;}
.x20_c00309{left:302.702400pt;}
.xb_c00309{left:307.169067pt;}
.xc_c00309{left:320.635733pt;}
.x1b_c00309{left:321.569067pt;}
.x19_c00309{left:322.835733pt;}
.x1a_c00309{left:338.235733pt;}
.x18_c00309{left:339.169067pt;}
.x16_c00309{left:393.902400pt;}
.x12_c00309{left:402.235733pt;}
.x21_c00309{left:528.635733pt;}
.x13_c00309{left:565.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8480dd851f8f477f380e9823.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00310;src:url('chunks/assets/font_a874e3789d68ebd32fcdaa34.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00310;src:url('chunks/assets/font_49730ad2f6368381d067cc95.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00310;src:url('chunks/assets/font_51eb38cf675aa22b6073c36a.woff2')format("woff");}.ff4_c00310{font-family:ff4_c00310;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00310;src:url('chunks/assets/font_db2aae701e1729312f71573f.woff2')format("woff");}.ff5_c00310{font-family:ff5_c00310;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00310;src:url('chunks/assets/font_f2abf2acecca918badca692f.woff2')format("woff");}.ff6_c00310{font-family:ff6_c00310;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00310{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3_c00310{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8_c00310{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c00310{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c00310{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m13_c00310{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m19_c00310{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c00310{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c00310{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00310{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00310{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c00310{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00310{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00310{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c00310{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m12_c00310{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00310{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00310{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c00310{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00310{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00310{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m15_c00310{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00310{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00310{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2_c00310{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c00310{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c00310{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.m1_c00310{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.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;}
}
.ws0_c00310{word-spacing:0.000000px;}
.fc0_c00310{color:transparent;}
.fs0_c00310{font-size:18.000000px;}
.fs4_c00310{font-size:54.000000px;}
.fs1_c00310{font-size:60.000000px;}
.fs3_c00310{font-size:66.000000px;}
.fs2_c00310{font-size:72.000000px;}
.y0_c00310{bottom:0.000000px;}
.y49_c00310{bottom:94.198500px;}
.y48_c00310{bottom:111.000000px;}
.y47_c00310{bottom:129.375000px;}
.y46_c00310{bottom:143.848500px;}
.y45_c00310{bottom:160.723500px;}
.y40_c00310{bottom:176.625000px;}
.y41_c00310{bottom:177.298500px;}
.y42_c00310{bottom:179.098500px;}
.y43_c00310{bottom:183.073500px;}
.y44_c00310{bottom:183.750000px;}
.y3d_c00310{bottom:195.298500px;}
.y3e_c00310{bottom:199.273500px;}
.y3f_c00310{bottom:200.023500px;}
.y3c_c00310{bottom:211.875000px;}
.y3b_c00310{bottom:228.750000px;}
.y39_c00310{bottom:245.323500px;}
.y3a_c00310{bottom:246.073500px;}
.y38_c00310{bottom:277.723500px;}
.y37_c00310{bottom:295.423500px;}
.y35_c00310{bottom:311.923500px;}
.y34_c00310{bottom:312.298500px;}
.y36_c00310{bottom:314.848500px;}
.y33_c00310{bottom:355.125000px;}
.y32_c00310{bottom:400.198500px;}
.y31_c00310{bottom:418.500000px;}
.y30_c00310{bottom:435.823500px;}
.y2f_c00310{bottom:452.698500px;}
.y2e_c00310{bottom:470.023500px;}
.y2d_c00310{bottom:487.273500px;}
.y2c_c00310{bottom:504.898500px;}
.y2b_c00310{bottom:522.523500px;}
.y2a_c00310{bottom:538.723500px;}
.y29_c00310{bottom:556.423500px;}
.y28_c00310{bottom:573.673500px;}
.y27_c00310{bottom:590.923500px;}
.y26_c00310{bottom:608.250000px;}
.y25_c00310{bottom:625.198500px;}
.y24_c00310{bottom:642.448500px;}
.y23_c00310{bottom:660.000000px;}
.y22_c00310{bottom:677.023500px;}
.y21_c00310{bottom:694.273500px;}
.y20_c00310{bottom:711.898500px;}
.y1f_c00310{bottom:728.848500px;}
.y1e_c00310{bottom:746.098500px;}
.y1d_c00310{bottom:763.423500px;}
.y1c_c00310{bottom:780.675000px;}
.y1b_c00310{bottom:797.925000px;}
.y1a_c00310{bottom:815.250000px;}
.y19_c00310{bottom:834.300000px;}
.y18_c00310{bottom:846.525000px;}
.y17_c00310{bottom:850.198500px;}
.y16_c00310{bottom:864.150000px;}
.y15_c00310{bottom:867.823500px;}
.y14_c00310{bottom:885.073500px;}
.y13_c00310{bottom:897.675000px;}
.y12_c00310{bottom:898.723500px;}
.y11_c00310{bottom:902.323500px;}
.y10_c00310{bottom:918.900000px;}
.yf_c00310{bottom:933.300000px;}
.ye_c00310{bottom:934.800000px;}
.yd_c00310{bottom:936.525000px;}
.yc_c00310{bottom:952.723500px;}
.yb_c00310{bottom:1014.973500px;}
.ya_c00310{bottom:1035.598500px;}
.y9_c00310{bottom:1091.323500px;}
.y8_c00310{bottom:1095.300000px;}
.y7_c00310{bottom:1095.973500px;}
.y6_c00310{bottom:1097.098500px;}
.y3_c00310{bottom:1170.150000px;}
.y5_c00310{bottom:1170.823500px;}
.y4_c00310{bottom:1170.900000px;}
.y2_c00310{bottom:1171.275000px;}
.y1_c00310{bottom:1171.573500px;}
.h1_c00310{height:18.773438px;}
.h7_c00310{height:52.998047px;}
.h2_c00310{height:58.886719px;}
.h3_c00310{height:60.468750px;}
.h6_c00310{height:64.743164px;}
.h5_c00310{height:64.775391px;}
.h4_c00310{height:70.664062px;}
.h0_c00310{height:1174.500000px;}
.w0_c00310{width:731.977200px;}
.w1_c00310{width:732.000000px;}
.x0_c00310{left:0.000000px;}
.x19_c00310{left:54.340200px;}
.x18_c00310{left:55.390200px;}
.x16_c00310{left:56.890200px;}
.x15_c00310{left:58.315200px;}
.x12_c00310{left:59.365200px;}
.xb_c00310{left:60.790200px;}
.x1d_c00310{left:73.765200px;}
.x1e_c00310{left:82.390200px;}
.x26_c00310{left:83.515200px;}
.x14_c00310{left:85.688700px;}
.x13_c00310{left:118.390200px;}
.x4_c00310{left:143.290200px;}
.x22_c00310{left:151.165200px;}
.x5_c00310{left:153.340200px;}
.x6_c00310{left:166.690200px;}
.x23_c00310{left:168.115200px;}
.x1b_c00310{left:264.190200px;}
.x7_c00310{left:278.290200px;}
.x1a_c00310{left:290.140200px;}
.x8_c00310{left:303.790200px;}
.x1_c00310{left:335.515200px;}
.x2_c00310{left:348.490200px;}
.x3_c00310{left:384.115200px;}
.xc_c00310{left:391.690200px;}
.x1f_c00310{left:430.163700px;}
.x1c_c00310{left:456.490200px;}
.x9_c00310{left:472.990200px;}
.xd_c00310{left:487.390200px;}
.x20_c00310{left:592.915200px;}
.x24_c00310{left:604.765200px;}
.x21_c00310{left:607.315200px;}
.xe_c00310{left:615.190200px;}
.x25_c00310{left:620.965200px;}
.xf_c00310{left:630.340200px;}
.xa_c00310{left:638.290200px;}
.x11_c00310{left:656.290200px;}
.x17_c00310{left:659.140200px;}
.x10_c00310{left:667.765200px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls0_c00310{letter-spacing:0.000000pt;}
.ws0_c00310{word-spacing:0.000000pt;}
.fs0_c00310{font-size:16.000000pt;}
.fs4_c00310{font-size:48.000000pt;}
.fs1_c00310{font-size:53.333333pt;}
.fs3_c00310{font-size:58.666667pt;}
.fs2_c00310{font-size:64.000000pt;}
.y0_c00310{bottom:0.000000pt;}
.y49_c00310{bottom:83.732000pt;}
.y48_c00310{bottom:98.666667pt;}
.y47_c00310{bottom:115.000000pt;}
.y46_c00310{bottom:127.865333pt;}
.y45_c00310{bottom:142.865333pt;}
.y40_c00310{bottom:157.000000pt;}
.y41_c00310{bottom:157.598667pt;}
.y42_c00310{bottom:159.198667pt;}
.y43_c00310{bottom:162.732000pt;}
.y44_c00310{bottom:163.333333pt;}
.y3d_c00310{bottom:173.598667pt;}
.y3e_c00310{bottom:177.132000pt;}
.y3f_c00310{bottom:177.798667pt;}
.y3c_c00310{bottom:188.333333pt;}
.y3b_c00310{bottom:203.333333pt;}
.y39_c00310{bottom:218.065333pt;}
.y3a_c00310{bottom:218.732000pt;}
.y38_c00310{bottom:246.865333pt;}
.y37_c00310{bottom:262.598667pt;}
.y35_c00310{bottom:277.265333pt;}
.y34_c00310{bottom:277.598667pt;}
.y36_c00310{bottom:279.865333pt;}
.y33_c00310{bottom:315.666667pt;}
.y32_c00310{bottom:355.732000pt;}
.y31_c00310{bottom:372.000000pt;}
.y30_c00310{bottom:387.398667pt;}
.y2f_c00310{bottom:402.398667pt;}
.y2e_c00310{bottom:417.798667pt;}
.y2d_c00310{bottom:433.132000pt;}
.y2c_c00310{bottom:448.798667pt;}
.y2b_c00310{bottom:464.465333pt;}
.y2a_c00310{bottom:478.865333pt;}
.y29_c00310{bottom:494.598667pt;}
.y28_c00310{bottom:509.932000pt;}
.y27_c00310{bottom:525.265333pt;}
.y26_c00310{bottom:540.666667pt;}
.y25_c00310{bottom:555.732000pt;}
.y24_c00310{bottom:571.065333pt;}
.y23_c00310{bottom:586.666667pt;}
.y22_c00310{bottom:601.798667pt;}
.y21_c00310{bottom:617.132000pt;}
.y20_c00310{bottom:632.798667pt;}
.y1f_c00310{bottom:647.865333pt;}
.y1e_c00310{bottom:663.198667pt;}
.y1d_c00310{bottom:678.598667pt;}
.y1c_c00310{bottom:693.933333pt;}
.y1b_c00310{bottom:709.266667pt;}
.y1a_c00310{bottom:724.666667pt;}
.y19_c00310{bottom:741.600000pt;}
.y18_c00310{bottom:752.466667pt;}
.y17_c00310{bottom:755.732000pt;}
.y16_c00310{bottom:768.133333pt;}
.y15_c00310{bottom:771.398667pt;}
.y14_c00310{bottom:786.732000pt;}
.y13_c00310{bottom:797.933333pt;}
.y12_c00310{bottom:798.865333pt;}
.y11_c00310{bottom:802.065333pt;}
.y10_c00310{bottom:816.800000pt;}
.yf_c00310{bottom:829.600000pt;}
.ye_c00310{bottom:830.933333pt;}
.yd_c00310{bottom:832.466667pt;}
.yc_c00310{bottom:846.865333pt;}
.yb_c00310{bottom:902.198667pt;}
.ya_c00310{bottom:920.532000pt;}
.y9_c00310{bottom:970.065333pt;}
.y8_c00310{bottom:973.600000pt;}
.y7_c00310{bottom:974.198667pt;}
.y6_c00310{bottom:975.198667pt;}
.y3_c00310{bottom:1040.133333pt;}
.y5_c00310{bottom:1040.732000pt;}
.y4_c00310{bottom:1040.800000pt;}
.y2_c00310{bottom:1041.133333pt;}
.y1_c00310{bottom:1041.398667pt;}
.h1_c00310{height:16.687500pt;}
.h7_c00310{height:47.109375pt;}
.h2_c00310{height:52.343750pt;}
.h3_c00310{height:53.750000pt;}
.h6_c00310{height:57.549479pt;}
.h5_c00310{height:57.578125pt;}
.h4_c00310{height:62.812500pt;}
.h0_c00310{height:1044.000000pt;}
.w0_c00310{width:650.646400pt;}
.w1_c00310{width:650.666667pt;}
.x0_c00310{left:0.000000pt;}
.x19_c00310{left:48.302400pt;}
.x18_c00310{left:49.235733pt;}
.x16_c00310{left:50.569067pt;}
.x15_c00310{left:51.835733pt;}
.x12_c00310{left:52.769067pt;}
.xb_c00310{left:54.035733pt;}
.x1d_c00310{left:65.569067pt;}
.x1e_c00310{left:73.235733pt;}
.x26_c00310{left:74.235733pt;}
.x14_c00310{left:76.167733pt;}
.x13_c00310{left:105.235733pt;}
.x4_c00310{left:127.369067pt;}
.x22_c00310{left:134.369067pt;}
.x5_c00310{left:136.302400pt;}
.x6_c00310{left:148.169067pt;}
.x23_c00310{left:149.435733pt;}
.x1b_c00310{left:234.835733pt;}
.x7_c00310{left:247.369067pt;}
.x1a_c00310{left:257.902400pt;}
.x8_c00310{left:270.035733pt;}
.x1_c00310{left:298.235733pt;}
.x2_c00310{left:309.769067pt;}
.x3_c00310{left:341.435733pt;}
.xc_c00310{left:348.169067pt;}
.x1f_c00310{left:382.367733pt;}
.x1c_c00310{left:405.769067pt;}
.x9_c00310{left:420.435733pt;}
.xd_c00310{left:433.235733pt;}
.x20_c00310{left:527.035733pt;}
.x24_c00310{left:537.569067pt;}
.x21_c00310{left:539.835733pt;}
.xe_c00310{left:546.835733pt;}
.x25_c00310{left:551.969067pt;}
.xf_c00310{left:560.302400pt;}
.xa_c00310{left:567.369067pt;}
.x11_c00310{left:583.369067pt;}
.x17_c00310{left:585.902400pt;}
.x10_c00310{left:593.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_818432f0370db641ccdcfc6b.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00311;src:url('chunks/assets/font_c924a8bd5150e709c9fd9de7.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00311;src:url('chunks/assets/font_fb74ff9f178b5dd1bf77931b.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00311;src:url('chunks/assets/font_8890d80713b2bdaccc9dc02c.woff2')format("woff");}.ff4_c00311{font-family:ff4_c00311;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19_c00311{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me_c00311{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00311{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00311{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m18_c00311{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00311{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m17_c00311{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m11_c00311{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00311{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c00311{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00311{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00311{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00311{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00311{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m13_c00311{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00311{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c00311{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c00311{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00311{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6_c00311{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c00311{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c00311{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00311{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00311{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00311{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00311{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00311{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00311{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5_c00311{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mc_c00311{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1_c00311{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00311{color:transparent;}
.fs3_c00311{font-size:36.000000px;}
.fs4_c00311{font-size:42.000000px;}
.fs1_c00311{font-size:60.000000px;}
.fs0_c00311{font-size:66.000000px;}
.fs2_c00311{font-size:72.000000px;}
.y0_c00311{bottom:0.000000px;}
.y42_c00311{bottom:82.573500px;}
.y43_c00311{bottom:85.500000px;}
.y44_c00311{bottom:85.875000px;}
.y41_c00311{bottom:90.523500px;}
.y40_c00311{bottom:104.548500px;}
.y3e_c00311{bottom:121.500000px;}
.y3f_c00311{bottom:122.548500px;}
.y3d_c00311{bottom:141.673500px;}
.y3c_c00311{bottom:156.375000px;}
.y3b_c00311{bottom:165.000000px;}
.y3a_c00311{bottom:173.698500px;}
.y39_c00311{bottom:191.023500px;}
.y45_c00311{bottom:202.198500px;}
.y38_c00311{bottom:208.648500px;}
.y37_c00311{bottom:225.898500px;}
.y36_c00311{bottom:243.223500px;}
.y35_c00311{bottom:256.500000px;}
.y34_c00311{bottom:260.098500px;}
.y33_c00311{bottom:264.073500px;}
.y31_c00311{bottom:265.875000px;}
.y32_c00311{bottom:277.723500px;}
.y30_c00311{bottom:283.500000px;}
.y2f_c00311{bottom:295.048500px;}
.y2e_c00311{bottom:312.673500px;}
.y2d_c00311{bottom:329.923500px;}
.y2c_c00311{bottom:346.875000px;}
.y2b_c00311{bottom:364.500000px;}
.y2a_c00311{bottom:383.625000px;}
.y29_c00311{bottom:399.448500px;}
.y28_c00311{bottom:417.073500px;}
.y27_c00311{bottom:434.398500px;}
.y26_c00311{bottom:452.023500px;}
.y25_c00311{bottom:468.898500px;}
.y24_c00311{bottom:486.223500px;}
.y23_c00311{bottom:503.473500px;}
.y22_c00311{bottom:520.423500px;}
.y21_c00311{bottom:537.973500px;}
.y20_c00311{bottom:555.298500px;}
.y1f_c00311{bottom:572.625000px;}
.y1e_c00311{bottom:589.875000px;}
.y1d_c00311{bottom:607.125000px;}
.y1c_c00311{bottom:607.198500px;}
.y1a_c00311{bottom:640.648500px;}
.y1b_c00311{bottom:642.073500px;}
.y19_c00311{bottom:684.598500px;}
.y18_c00311{bottom:729.598500px;}
.y17_c00311{bottom:748.648500px;}
.y15_c00311{bottom:766.273500px;}
.y16_c00311{bottom:768.073500px;}
.y14_c00311{bottom:783.523500px;}
.y13_c00311{bottom:800.473500px;}
.y12_c00311{bottom:817.425000px;}
.y11_c00311{bottom:834.598500px;}
.yf_c00311{bottom:850.875000px;}
.y10_c00311{bottom:854.098500px;}
.ye_c00311{bottom:868.125000px;}
.yd_c00311{bottom:885.073500px;}
.yc_c00311{bottom:902.025000px;}
.yb_c00311{bottom:919.650000px;}
.ya_c00311{bottom:933.598500px;}
.y7_c00311{bottom:948.750000px;}
.y8_c00311{bottom:949.125000px;}
.y9_c00311{bottom:954.525000px;}
.y5_c00311{bottom:1006.425000px;}
.y6_c00311{bottom:1015.050000px;}
.y4_c00311{bottom:1036.573500px;}
.y1_c00311{bottom:1084.500000px;}
.y3_c00311{bottom:1092.750000px;}
.y2_c00311{bottom:1098.750000px;}
.h5_c00311{height:35.332031px;}
.h7_c00311{height:37.546875px;}
.h6_c00311{height:41.220703px;}
.h2_c00311{height:58.886719px;}
.h1_c00311{height:64.775391px;}
.h3_c00311{height:66.515625px;}
.h4_c00311{height:70.628906px;}
.h0_c00311{height:1174.500000px;}
.w0_c00311{width:731.977200px;}
.w1_c00311{width:732.000000px;}
.x0_c00311{left:0.000000px;}
.x18_c00311{left:48.565200px;}
.x11_c00311{left:49.690200px;}
.xd_c00311{left:50.740200px;}
.xc_c00311{left:52.165200px;}
.x9_c00311{left:53.290200px;}
.x5_c00311{left:54.340200px;}
.x19_c00311{left:58.690200px;}
.x1_c00311{left:75.188700px;}
.x12_c00311{left:76.688700px;}
.x6_c00311{left:77.740200px;}
.x7_c00311{left:79.540200px;}
.x4_c00311{left:87.115200px;}
.x13_c00311{left:94.315200px;}
.x14_c00311{left:97.165200px;}
.x2_c00311{left:102.190200px;}
.x8_c00311{left:131.365200px;}
.x17_c00311{left:151.540200px;}
.x15_c00311{left:152.590200px;}
.x16_c00311{left:162.340200px;}
.xf_c00311{left:183.940200px;}
.xe_c00311{left:276.790200px;}
.x3_c00311{left:279.340200px;}
.x10_c00311{left:323.290200px;}
.x1d_c00311{left:416.140200px;}
.x1c_c00311{left:431.965200px;}
.x1e_c00311{left:436.315200px;}
.x1f_c00311{left:443.515200px;}
.xa_c00311{left:658.090200px;}
.x1a_c00311{left:663.790200px;}
.x1b_c00311{left:666.715200px;}
.xb_c00311{left:670.690200px;}
.x20_c00311{left:754.915200px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls0_c00311{letter-spacing:0.000000pt;}
.ws0_c00311{word-spacing:0.000000pt;}
.fs3_c00311{font-size:32.000000pt;}
.fs4_c00311{font-size:37.333333pt;}
.fs1_c00311{font-size:53.333333pt;}
.fs0_c00311{font-size:58.666667pt;}
.fs2_c00311{font-size:64.000000pt;}
.y0_c00311{bottom:0.000000pt;}
.y42_c00311{bottom:73.398667pt;}
.y43_c00311{bottom:76.000000pt;}
.y44_c00311{bottom:76.333333pt;}
.y41_c00311{bottom:80.465333pt;}
.y40_c00311{bottom:92.932000pt;}
.y3e_c00311{bottom:108.000000pt;}
.y3f_c00311{bottom:108.932000pt;}
.y3d_c00311{bottom:125.932000pt;}
.y3c_c00311{bottom:139.000000pt;}
.y3b_c00311{bottom:146.666667pt;}
.y3a_c00311{bottom:154.398667pt;}
.y39_c00311{bottom:169.798667pt;}
.y45_c00311{bottom:179.732000pt;}
.y38_c00311{bottom:185.465333pt;}
.y37_c00311{bottom:200.798667pt;}
.y36_c00311{bottom:216.198667pt;}
.y35_c00311{bottom:228.000000pt;}
.y34_c00311{bottom:231.198667pt;}
.y33_c00311{bottom:234.732000pt;}
.y31_c00311{bottom:236.333333pt;}
.y32_c00311{bottom:246.865333pt;}
.y30_c00311{bottom:252.000000pt;}
.y2f_c00311{bottom:262.265333pt;}
.y2e_c00311{bottom:277.932000pt;}
.y2d_c00311{bottom:293.265333pt;}
.y2c_c00311{bottom:308.333333pt;}
.y2b_c00311{bottom:324.000000pt;}
.y2a_c00311{bottom:341.000000pt;}
.y29_c00311{bottom:355.065333pt;}
.y28_c00311{bottom:370.732000pt;}
.y27_c00311{bottom:386.132000pt;}
.y26_c00311{bottom:401.798667pt;}
.y25_c00311{bottom:416.798667pt;}
.y24_c00311{bottom:432.198667pt;}
.y23_c00311{bottom:447.532000pt;}
.y22_c00311{bottom:462.598667pt;}
.y21_c00311{bottom:478.198667pt;}
.y20_c00311{bottom:493.598667pt;}
.y1f_c00311{bottom:509.000000pt;}
.y1e_c00311{bottom:524.333333pt;}
.y1d_c00311{bottom:539.666667pt;}
.y1c_c00311{bottom:539.732000pt;}
.y1a_c00311{bottom:569.465333pt;}
.y1b_c00311{bottom:570.732000pt;}
.y19_c00311{bottom:608.532000pt;}
.y18_c00311{bottom:648.532000pt;}
.y17_c00311{bottom:665.465333pt;}
.y15_c00311{bottom:681.132000pt;}
.y16_c00311{bottom:682.732000pt;}
.y14_c00311{bottom:696.465333pt;}
.y13_c00311{bottom:711.532000pt;}
.y12_c00311{bottom:726.600000pt;}
.y11_c00311{bottom:741.865333pt;}
.yf_c00311{bottom:756.333333pt;}
.y10_c00311{bottom:759.198667pt;}
.ye_c00311{bottom:771.666667pt;}
.yd_c00311{bottom:786.732000pt;}
.yc_c00311{bottom:801.800000pt;}
.yb_c00311{bottom:817.466667pt;}
.ya_c00311{bottom:829.865333pt;}
.y7_c00311{bottom:843.333333pt;}
.y8_c00311{bottom:843.666667pt;}
.y9_c00311{bottom:848.466667pt;}
.y5_c00311{bottom:894.600000pt;}
.y6_c00311{bottom:902.266667pt;}
.y4_c00311{bottom:921.398667pt;}
.y1_c00311{bottom:964.000000pt;}
.y3_c00311{bottom:971.333333pt;}
.y2_c00311{bottom:976.666667pt;}
.h5_c00311{height:31.406250pt;}
.h7_c00311{height:33.375000pt;}
.h6_c00311{height:36.640625pt;}
.h2_c00311{height:52.343750pt;}
.h1_c00311{height:57.578125pt;}
.h3_c00311{height:59.125000pt;}
.h4_c00311{height:62.781250pt;}
.h0_c00311{height:1044.000000pt;}
.w0_c00311{width:650.646400pt;}
.w1_c00311{width:650.666667pt;}
.x0_c00311{left:0.000000pt;}
.x18_c00311{left:43.169067pt;}
.x11_c00311{left:44.169067pt;}
.xd_c00311{left:45.102400pt;}
.xc_c00311{left:46.369067pt;}
.x9_c00311{left:47.369067pt;}
.x5_c00311{left:48.302400pt;}
.x19_c00311{left:52.169067pt;}
.x1_c00311{left:66.834400pt;}
.x12_c00311{left:68.167733pt;}
.x6_c00311{left:69.102400pt;}
.x7_c00311{left:70.702400pt;}
.x4_c00311{left:77.435733pt;}
.x13_c00311{left:83.835733pt;}
.x14_c00311{left:86.369067pt;}
.x2_c00311{left:90.835733pt;}
.x8_c00311{left:116.769067pt;}
.x17_c00311{left:134.702400pt;}
.x15_c00311{left:135.635733pt;}
.x16_c00311{left:144.302400pt;}
.xf_c00311{left:163.502400pt;}
.xe_c00311{left:246.035733pt;}
.x3_c00311{left:248.302400pt;}
.x10_c00311{left:287.369067pt;}
.x1d_c00311{left:369.902400pt;}
.x1c_c00311{left:383.969067pt;}
.x1e_c00311{left:387.835733pt;}
.x1f_c00311{left:394.235733pt;}
.xa_c00311{left:584.969067pt;}
.x1a_c00311{left:590.035733pt;}
.x1b_c00311{left:592.635733pt;}
.xb_c00311{left:596.169067pt;}
.x20_c00311{left:671.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e0b7d2623bc56b9a8eeaabb4.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00312;src:url('chunks/assets/font_dc62852ffe291df577c67104.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00312;src:url('chunks/assets/font_35c675100afd4ffdc2065c8c.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m33_c00312{transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00312{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m36_c00312{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00312{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1_c00312{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m20_c00312{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m29_c00312{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m19_c00312{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00312{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m21_c00312{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m28_c00312{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m26_c00312{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m27_c00312{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m22_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);}
.m2_c00312{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00312{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4_c00312{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m24_c00312{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00312{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.ma_c00312{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c00312{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00312{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00312{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m14_c00312{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c00312{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00312{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m35_c00312{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c00312{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c00312{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00312{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00312{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c00312{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00312{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m38_c00312{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00312{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c00312{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00312{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00312{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00312{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00312{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00312{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00312{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c00312{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m31_c00312{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00312{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c00312{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m39_c00312{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m13_c00312{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m16_c00312{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m25_c00312{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m30_c00312{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m32_c00312{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m23_c00312{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00312{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.md_c00312{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m34_c00312{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m11_c00312{transform:matrix(2.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.047500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00312{transform:matrix(2.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.212500,0.000000,0.000000,0.250000,0,0);}
.m37_c00312{transform:matrix(4.975000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.975000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.975000,0.000000,0.000000,0.250000,0,0);}
.m3_c00312{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v3_c00312{vertical-align:-4.200000px;}
.v2_c00312{vertical-align:-3.000000px;}
.v1_c00312{vertical-align:-1.500000px;}
.v0_c00312{vertical-align:0.000000px;}
.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;}
}
.ws6_c00312{word-spacing:0.000000px;}
.ws5_c00312{word-spacing:174.213018px;}
.ws1_c00312{word-spacing:198.436810px;}
.ws2_c00312{word-spacing:209.709320px;}
.ws0_c00312{word-spacing:306.378435px;}
.ws4_c00312{word-spacing:358.936599px;}
.ws3_c00312{word-spacing:362.469988px;}
.fc0_c00312{color:transparent;}
.fs5_c00312{font-size:30.000000px;}
.fs4_c00312{font-size:42.000000px;}
.fs3_c00312{font-size:48.000000px;}
.fs7_c00312{font-size:54.000000px;}
.fs0_c00312{font-size:60.000000px;}
.fs2_c00312{font-size:66.000000px;}
.fs1_c00312{font-size:72.000000px;}
.fs6_c00312{font-size:90.000000px;}
.y0_c00312{bottom:0.000000px;}
.y88_c00312{bottom:100.273500px;}
.y89_c00312{bottom:102.073500px;}
.y8a_c00312{bottom:103.875000px;}
.y87_c00312{bottom:118.648500px;}
.y84_c00312{bottom:133.723500px;}
.y85_c00312{bottom:136.573500px;}
.y86_c00312{bottom:138.000000px;}
.y83_c00312{bottom:152.098500px;}
.y80_c00312{bottom:166.500000px;}
.y81_c00312{bottom:169.723500px;}
.y82_c00312{bottom:172.948500px;}
.y7f_c00312{bottom:185.548500px;}
.y7e_c00312{bottom:201.750000px;}
.y7d_c00312{bottom:218.698500px;}
.y7c_c00312{bottom:235.273500px;}
.y7b_c00312{bottom:251.773500px;}
.y7a_c00312{bottom:268.423500px;}
.y79_c00312{bottom:301.500000px;}
.y78_c00312{bottom:368.848500px;}
.y77_c00312{bottom:387.150000px;}
.y75_c00312{bottom:404.098500px;}
.y76_c00312{bottom:405.525000px;}
.y73_c00312{bottom:446.173500px;}
.y74_c00312{bottom:446.250000px;}
.y71_c00312{bottom:461.698500px;}
.y72_c00312{bottom:462.073500px;}
.y6e_c00312{bottom:479.023500px;}
.y6f_c00312{bottom:479.323500px;}
.y70_c00312{bottom:479.398500px;}
.y6d_c00312{bottom:496.273500px;}
.y6b_c00312{bottom:496.648500px;}
.y6c_c00312{bottom:496.948500px;}
.y6a_c00312{bottom:513.223500px;}
.y67_c00312{bottom:513.523500px;}
.y66_c00312{bottom:513.598500px;}
.y69_c00312{bottom:514.273500px;}
.y68_c00312{bottom:514.573500px;}
.y65_c00312{bottom:530.473500px;}
.y64_c00312{bottom:530.773500px;}
.y63_c00312{bottom:530.848500px;}
.y62_c00312{bottom:531.148500px;}
.y61_c00312{bottom:531.523500px;}
.y5f_c00312{bottom:547.723500px;}
.y60_c00312{bottom:547.798500px;}
.y5e_c00312{bottom:548.098500px;}
.y5d_c00312{bottom:548.398500px;}
.y5c_c00312{bottom:548.473500px;}
.y5b_c00312{bottom:564.673500px;}
.y5a_c00312{bottom:565.048500px;}
.y58_c00312{bottom:565.423500px;}
.y57_c00312{bottom:565.798500px;}
.y59_c00312{bottom:572.250000px;}
.y55_c00312{bottom:581.548500px;}
.y56_c00312{bottom:581.923500px;}
.y54_c00312{bottom:582.298500px;}
.y52_c00312{bottom:582.673500px;}
.y51_c00312{bottom:582.973500px;}
.y53_c00312{bottom:583.048500px;}
.y50_c00312{bottom:583.423500px;}
.y4f_c00312{bottom:598.875000px;}
.y4e_c00312{bottom:599.250000px;}
.y4d_c00312{bottom:600.298500px;}
.y4c_c00312{bottom:600.673500px;}
.y4b_c00312{bottom:616.125000px;}
.y4a_c00312{bottom:616.798500px;}
.y49_c00312{bottom:617.250000px;}
.y48_c00312{bottom:617.548500px;}
.y47_c00312{bottom:617.625000px;}
.y46_c00312{bottom:618.298500px;}
.y45_c00312{bottom:633.073500px;}
.y44_c00312{bottom:634.125000px;}
.y43_c00312{bottom:634.500000px;}
.y42_c00312{bottom:635.250000px;}
.y41_c00312{bottom:635.625000px;}
.y3f_c00312{bottom:648.898500px;}
.y40_c00312{bottom:650.323500px;}
.y3e_c00312{bottom:650.398500px;}
.y3d_c00312{bottom:651.073500px;}
.y3c_c00312{bottom:651.448500px;}
.y3b_c00312{bottom:651.823500px;}
.y3a_c00312{bottom:652.198500px;}
.y38_c00312{bottom:652.798500px;}
.y39_c00312{bottom:652.875000px;}
.y37_c00312{bottom:667.273500px;}
.y36_c00312{bottom:668.698500px;}
.y34_c00312{bottom:669.073500px;}
.y33_c00312{bottom:669.448500px;}
.y35_c00312{bottom:669.750000px;}
.y31_c00312{bottom:670.125000px;}
.y32_c00312{bottom:670.198500px;}
.y30_c00312{bottom:684.598500px;}
.y2f_c00312{bottom:685.573500px;}
.y2d_c00312{bottom:686.323500px;}
.y2e_c00312{bottom:686.398500px;}
.y2c_c00312{bottom:686.698500px;}
.y2b_c00312{bottom:687.448500px;}
.y2a_c00312{bottom:701.473500px;}
.y29_c00312{bottom:702.523500px;}
.y28_c00312{bottom:703.648500px;}
.y27_c00312{bottom:704.023500px;}
.y26_c00312{bottom:704.698500px;}
.y25_c00312{bottom:720.223500px;}
.y24_c00312{bottom:720.898500px;}
.y23_c00312{bottom:721.273500px;}
.y21_c00312{bottom:721.950000px;}
.y22_c00312{bottom:722.023500px;}
.y17_c00312{bottom:763.348500px;}
.y20_c00312{bottom:766.575000px;}
.y1f_c00312{bottom:766.648500px;}
.y1d_c00312{bottom:766.950000px;}
.y1c_c00312{bottom:767.325000px;}
.y1a_c00312{bottom:768.448500px;}
.y12_c00312{bottom:770.550000px;}
.y19_c00312{bottom:775.573500px;}
.y16_c00312{bottom:775.948500px;}
.y15_c00312{bottom:776.323500px;}
.y14_c00312{bottom:776.698500px;}
.y1e_c00312{bottom:779.625000px;}
.y1b_c00312{bottom:780.300000px;}
.y11_c00312{bottom:782.473500px;}
.y10_c00312{bottom:782.773500px;}
.yf_c00312{bottom:783.523500px;}
.y18_c00312{bottom:788.550000px;}
.y13_c00312{bottom:789.598500px;}
.ye_c00312{bottom:837.150000px;}
.yd_c00312{bottom:858.375000px;}
.yc_c00312{bottom:860.550000px;}
.yb_c00312{bottom:904.875000px;}
.ya_c00312{bottom:921.073500px;}
.y9_c00312{bottom:939.073500px;}
.y8_c00312{bottom:954.900000px;}
.y7_c00312{bottom:1017.900000px;}
.y6_c00312{bottom:1039.500000px;}
.y5_c00312{bottom:1093.500000px;}
.y3_c00312{bottom:1097.848500px;}
.y2_c00312{bottom:1098.525000px;}
.y1_c00312{bottom:1099.198500px;}
.y4_c00312{bottom:1107.525000px;}
.h9_c00312{height:29.443359px;}
.h7_c00312{height:42.328125px;}
.h5_c00312{height:47.109375px;}
.h6_c00312{height:48.375000px;}
.h8_c00312{height:50.062500px;}
.hb_c00312{height:54.421875px;}
.h2_c00312{height:58.886719px;}
.h1_c00312{height:60.468750px;}
.h4_c00312{height:64.775391px;}
.h3_c00312{height:70.664062px;}
.ha_c00312{height:93.867188px;}
.h0_c00312{height:1174.500000px;}
.w0_c00312{width:731.977200px;}
.w1_c00312{width:732.000000px;}
.x0_c00312{left:0.000000px;}
.x36_c00312{left:56.515200px;}
.xa_c00312{left:58.315200px;}
.x6_c00312{left:59.365200px;}
.x8_c00312{left:60.490200px;}
.x7_c00312{left:62.290200px;}
.xd_c00312{left:63.340200px;}
.x38_c00312{left:83.515200px;}
.x3a_c00312{left:85.313700px;}
.x9_c00312{left:87.790200px;}
.x22_c00312{left:91.090200px;}
.x2d_c00312{left:97.915200px;}
.x11_c00312{left:105.490200px;}
.xe_c00312{left:106.915200px;}
.x23_c00312{left:109.390200px;}
.x2e_c00312{left:111.190200px;}
.xc_c00312{left:121.990200px;}
.x24_c00312{left:141.790200px;}
.x31_c00312{left:143.290200px;}
.xb_c00312{left:162.340200px;}
.xf_c00312{left:163.765200px;}
.x10_c00312{left:185.365200px;}
.x13_c00312{left:209.890200px;}
.x14_c00312{left:235.390200px;}
.x12_c00312{left:239.365200px;}
.x18_c00312{left:244.765200px;}
.x15_c00312{left:247.690200px;}
.x25_c00312{left:251.965200px;}
.x35_c00312{left:260.965200px;}
.x3b_c00312{left:264.190200px;}
.x16_c00312{left:272.140200px;}
.x1_c00312{left:276.790200px;}
.x17_c00312{left:312.490200px;}
.x1a_c00312{left:348.115200px;}
.x1b_c00312{left:365.365200px;}
.x19_c00312{left:373.990200px;}
.x3f_c00312{left:385.163700px;}
.x26_c00312{left:390.940200px;}
.x40_c00312{left:400.990200px;}
.x2_c00312{left:404.965200px;}
.x3_c00312{left:411.490200px;}
.x3d_c00312{left:421.913700px;}
.x37_c00312{left:444.940200px;}
.x3e_c00312{left:464.365200px;}
.x4_c00312{left:472.990200px;}
.x1d_c00312{left:488.140200px;}
.x1c_c00312{left:497.140200px;}
.x32_c00312{left:504.340200px;}
.x33_c00312{left:505.390200px;}
.x29_c00312{left:513.340200px;}
.x27_c00312{left:520.540200px;}
.x1e_c00312{left:545.740200px;}
.x34_c00312{left:587.515200px;}
.x20_c00312{left:591.115200px;}
.x2f_c00312{left:596.140200px;}
.x1f_c00312{left:597.190200px;}
.x30_c00312{left:623.140200px;}
.x28_c00312{left:624.190200px;}
.x2a_c00312{left:625.315200px;}
.x2b_c00312{left:626.365200px;}
.x5_c00312{left:638.290200px;}
.x21_c00312{left:645.490200px;}
.x2c_c00312{left:646.540200px;}
.x3c_c00312{left:649.390200px;}
.x39_c00312{left:663.115200px;}
@media print{
.v3_c00312{vertical-align:-3.733333pt;}
.v2_c00312{vertical-align:-2.666667pt;}
.v1_c00312{vertical-align:-1.333333pt;}
.v0_c00312{vertical-align:0.000000pt;}
.ls0_c00312{letter-spacing:0.000000pt;}
.ws6_c00312{word-spacing:0.000000pt;}
.ws5_c00312{word-spacing:154.856016pt;}
.ws1_c00312{word-spacing:176.388276pt;}
.ws2_c00312{word-spacing:186.408284pt;}
.ws0_c00312{word-spacing:272.336387pt;}
.ws4_c00312{word-spacing:319.054754pt;}
.ws3_c00312{word-spacing:322.195545pt;}
.fs5_c00312{font-size:26.666667pt;}
.fs4_c00312{font-size:37.333333pt;}
.fs3_c00312{font-size:42.666667pt;}
.fs7_c00312{font-size:48.000000pt;}
.fs0_c00312{font-size:53.333333pt;}
.fs2_c00312{font-size:58.666667pt;}
.fs1_c00312{font-size:64.000000pt;}
.fs6_c00312{font-size:80.000000pt;}
.y0_c00312{bottom:0.000000pt;}
.y88_c00312{bottom:89.132000pt;}
.y89_c00312{bottom:90.732000pt;}
.y8a_c00312{bottom:92.333333pt;}
.y87_c00312{bottom:105.465333pt;}
.y84_c00312{bottom:118.865333pt;}
.y85_c00312{bottom:121.398667pt;}
.y86_c00312{bottom:122.666667pt;}
.y83_c00312{bottom:135.198667pt;}
.y80_c00312{bottom:148.000000pt;}
.y81_c00312{bottom:150.865333pt;}
.y82_c00312{bottom:153.732000pt;}
.y7f_c00312{bottom:164.932000pt;}
.y7e_c00312{bottom:179.333333pt;}
.y7d_c00312{bottom:194.398667pt;}
.y7c_c00312{bottom:209.132000pt;}
.y7b_c00312{bottom:223.798667pt;}
.y7a_c00312{bottom:238.598667pt;}
.y79_c00312{bottom:268.000000pt;}
.y78_c00312{bottom:327.865333pt;}
.y77_c00312{bottom:344.133333pt;}
.y75_c00312{bottom:359.198667pt;}
.y76_c00312{bottom:360.466667pt;}
.y73_c00312{bottom:396.598667pt;}
.y74_c00312{bottom:396.666667pt;}
.y71_c00312{bottom:410.398667pt;}
.y72_c00312{bottom:410.732000pt;}
.y6e_c00312{bottom:425.798667pt;}
.y6f_c00312{bottom:426.065333pt;}
.y70_c00312{bottom:426.132000pt;}
.y6d_c00312{bottom:441.132000pt;}
.y6b_c00312{bottom:441.465333pt;}
.y6c_c00312{bottom:441.732000pt;}
.y6a_c00312{bottom:456.198667pt;}
.y67_c00312{bottom:456.465333pt;}
.y66_c00312{bottom:456.532000pt;}
.y69_c00312{bottom:457.132000pt;}
.y68_c00312{bottom:457.398667pt;}
.y65_c00312{bottom:471.532000pt;}
.y64_c00312{bottom:471.798667pt;}
.y63_c00312{bottom:471.865333pt;}
.y62_c00312{bottom:472.132000pt;}
.y61_c00312{bottom:472.465333pt;}
.y5f_c00312{bottom:486.865333pt;}
.y60_c00312{bottom:486.932000pt;}
.y5e_c00312{bottom:487.198667pt;}
.y5d_c00312{bottom:487.465333pt;}
.y5c_c00312{bottom:487.532000pt;}
.y5b_c00312{bottom:501.932000pt;}
.y5a_c00312{bottom:502.265333pt;}
.y58_c00312{bottom:502.598667pt;}
.y57_c00312{bottom:502.932000pt;}
.y59_c00312{bottom:508.666667pt;}
.y55_c00312{bottom:516.932000pt;}
.y56_c00312{bottom:517.265333pt;}
.y54_c00312{bottom:517.598667pt;}
.y52_c00312{bottom:517.932000pt;}
.y51_c00312{bottom:518.198667pt;}
.y53_c00312{bottom:518.265333pt;}
.y50_c00312{bottom:518.598667pt;}
.y4f_c00312{bottom:532.333333pt;}
.y4e_c00312{bottom:532.666667pt;}
.y4d_c00312{bottom:533.598667pt;}
.y4c_c00312{bottom:533.932000pt;}
.y4b_c00312{bottom:547.666667pt;}
.y4a_c00312{bottom:548.265333pt;}
.y49_c00312{bottom:548.666667pt;}
.y48_c00312{bottom:548.932000pt;}
.y47_c00312{bottom:549.000000pt;}
.y46_c00312{bottom:549.598667pt;}
.y45_c00312{bottom:562.732000pt;}
.y44_c00312{bottom:563.666667pt;}
.y43_c00312{bottom:564.000000pt;}
.y42_c00312{bottom:564.666667pt;}
.y41_c00312{bottom:565.000000pt;}
.y3f_c00312{bottom:576.798667pt;}
.y40_c00312{bottom:578.065333pt;}
.y3e_c00312{bottom:578.132000pt;}
.y3d_c00312{bottom:578.732000pt;}
.y3c_c00312{bottom:579.065333pt;}
.y3b_c00312{bottom:579.398667pt;}
.y3a_c00312{bottom:579.732000pt;}
.y38_c00312{bottom:580.265333pt;}
.y39_c00312{bottom:580.333333pt;}
.y37_c00312{bottom:593.132000pt;}
.y36_c00312{bottom:594.398667pt;}
.y34_c00312{bottom:594.732000pt;}
.y33_c00312{bottom:595.065333pt;}
.y35_c00312{bottom:595.333333pt;}
.y31_c00312{bottom:595.666667pt;}
.y32_c00312{bottom:595.732000pt;}
.y30_c00312{bottom:608.532000pt;}
.y2f_c00312{bottom:609.398667pt;}
.y2d_c00312{bottom:610.065333pt;}
.y2e_c00312{bottom:610.132000pt;}
.y2c_c00312{bottom:610.398667pt;}
.y2b_c00312{bottom:611.065333pt;}
.y2a_c00312{bottom:623.532000pt;}
.y29_c00312{bottom:624.465333pt;}
.y28_c00312{bottom:625.465333pt;}
.y27_c00312{bottom:625.798667pt;}
.y26_c00312{bottom:626.398667pt;}
.y25_c00312{bottom:640.198667pt;}
.y24_c00312{bottom:640.798667pt;}
.y23_c00312{bottom:641.132000pt;}
.y21_c00312{bottom:641.733333pt;}
.y22_c00312{bottom:641.798667pt;}
.y17_c00312{bottom:678.532000pt;}
.y20_c00312{bottom:681.400000pt;}
.y1f_c00312{bottom:681.465333pt;}
.y1d_c00312{bottom:681.733333pt;}
.y1c_c00312{bottom:682.066667pt;}
.y1a_c00312{bottom:683.065333pt;}
.y12_c00312{bottom:684.933333pt;}
.y19_c00312{bottom:689.398667pt;}
.y16_c00312{bottom:689.732000pt;}
.y15_c00312{bottom:690.065333pt;}
.y14_c00312{bottom:690.398667pt;}
.y1e_c00312{bottom:693.000000pt;}
.y1b_c00312{bottom:693.600000pt;}
.y11_c00312{bottom:695.532000pt;}
.y10_c00312{bottom:695.798667pt;}
.yf_c00312{bottom:696.465333pt;}
.y18_c00312{bottom:700.933333pt;}
.y13_c00312{bottom:701.865333pt;}
.ye_c00312{bottom:744.133333pt;}
.yd_c00312{bottom:763.000000pt;}
.yc_c00312{bottom:764.933333pt;}
.yb_c00312{bottom:804.333333pt;}
.ya_c00312{bottom:818.732000pt;}
.y9_c00312{bottom:834.732000pt;}
.y8_c00312{bottom:848.800000pt;}
.y7_c00312{bottom:904.800000pt;}
.y6_c00312{bottom:924.000000pt;}
.y5_c00312{bottom:972.000000pt;}
.y3_c00312{bottom:975.865333pt;}
.y2_c00312{bottom:976.466667pt;}
.y1_c00312{bottom:977.065333pt;}
.y4_c00312{bottom:984.466667pt;}
.h9_c00312{height:26.171875pt;}
.h7_c00312{height:37.625000pt;}
.h5_c00312{height:41.875000pt;}
.h6_c00312{height:43.000000pt;}
.h8_c00312{height:44.500000pt;}
.hb_c00312{height:48.375000pt;}
.h2_c00312{height:52.343750pt;}
.h1_c00312{height:53.750000pt;}
.h4_c00312{height:57.578125pt;}
.h3_c00312{height:62.812500pt;}
.ha_c00312{height:83.437500pt;}
.h0_c00312{height:1044.000000pt;}
.w0_c00312{width:650.646400pt;}
.w1_c00312{width:650.666667pt;}
.x0_c00312{left:0.000000pt;}
.x36_c00312{left:50.235733pt;}
.xa_c00312{left:51.835733pt;}
.x6_c00312{left:52.769067pt;}
.x8_c00312{left:53.769067pt;}
.x7_c00312{left:55.369067pt;}
.xd_c00312{left:56.302400pt;}
.x38_c00312{left:74.235733pt;}
.x3a_c00312{left:75.834400pt;}
.x9_c00312{left:78.035733pt;}
.x22_c00312{left:80.969067pt;}
.x2d_c00312{left:87.035733pt;}
.x11_c00312{left:93.769067pt;}
.xe_c00312{left:95.035733pt;}
.x23_c00312{left:97.235733pt;}
.x2e_c00312{left:98.835733pt;}
.xc_c00312{left:108.435733pt;}
.x24_c00312{left:126.035733pt;}
.x31_c00312{left:127.369067pt;}
.xb_c00312{left:144.302400pt;}
.xf_c00312{left:145.569067pt;}
.x10_c00312{left:164.769067pt;}
.x13_c00312{left:186.569067pt;}
.x14_c00312{left:209.235733pt;}
.x12_c00312{left:212.769067pt;}
.x18_c00312{left:217.569067pt;}
.x15_c00312{left:220.169067pt;}
.x25_c00312{left:223.969067pt;}
.x35_c00312{left:231.969067pt;}
.x3b_c00312{left:234.835733pt;}
.x16_c00312{left:241.902400pt;}
.x1_c00312{left:246.035733pt;}
.x17_c00312{left:277.769067pt;}
.x1a_c00312{left:309.435733pt;}
.x1b_c00312{left:324.769067pt;}
.x19_c00312{left:332.435733pt;}
.x3f_c00312{left:342.367733pt;}
.x26_c00312{left:347.502400pt;}
.x40_c00312{left:356.435733pt;}
.x2_c00312{left:359.969067pt;}
.x3_c00312{left:365.769067pt;}
.x3d_c00312{left:375.034400pt;}
.x37_c00312{left:395.502400pt;}
.x3e_c00312{left:412.769067pt;}
.x4_c00312{left:420.435733pt;}
.x1d_c00312{left:433.902400pt;}
.x1c_c00312{left:441.902400pt;}
.x32_c00312{left:448.302400pt;}
.x33_c00312{left:449.235733pt;}
.x29_c00312{left:456.302400pt;}
.x27_c00312{left:462.702400pt;}
.x1e_c00312{left:485.102400pt;}
.x34_c00312{left:522.235733pt;}
.x20_c00312{left:525.435733pt;}
.x2f_c00312{left:529.902400pt;}
.x1f_c00312{left:530.835733pt;}
.x30_c00312{left:553.902400pt;}
.x28_c00312{left:554.835733pt;}
.x2a_c00312{left:555.835733pt;}
.x2b_c00312{left:556.769067pt;}
.x5_c00312{left:567.369067pt;}
.x21_c00312{left:573.769067pt;}
.x2c_c00312{left:574.702400pt;}
.x3c_c00312{left:577.235733pt;}
.x39_c00312{left:589.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_86c3b76b36ec8c9fae8d7798.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00313;src:url('chunks/assets/font_1179290e2015ff2af8a08330.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00313;src:url('chunks/assets/font_2ac3faaea2be914000be3d99.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00313;src:url('chunks/assets/font_5ff9a3da6d893ffb585ff2ea.woff2')format("woff");}.ff4_c00313{font-family:ff4_c00313;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m22_c00313{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00313{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m28_c00313{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m25_c00313{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m17_c00313{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m26_c00313{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00313{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00313{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m29_c00313{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m24_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);}
.m1a_c00313{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18_c00313{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m20_c00313{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m14_c00313{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00313{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m23_c00313{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m21_c00313{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m16_c00313{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m13_c00313{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0_c00313{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m27_c00313{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m30_c00313{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c00313{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m32_c00313{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m31_c00313{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00313{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00313{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00313{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00313{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00313{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf_c00313{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c00313{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00313{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c00313{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00313{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00313{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00313{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00313{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00313{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00313{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00313{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00313{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3_c00313{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c00313{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8_c00313{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00313{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m19_c00313{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c00313{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00313{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md_c00313{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1_c00313{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v1_c00313{vertical-align:-3.000000px;}
.v0_c00313{vertical-align:0.000000px;}
.ls0_c00313{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00313{word-spacing:0.000000px;}
.ws0_c00313{word-spacing:84.306337px;}
.fc0_c00313{color:transparent;}
.fs3_c00313{font-size:42.000000px;}
.fs4_c00313{font-size:48.000000px;}
.fs1_c00313{font-size:54.000000px;}
.fs2_c00313{font-size:60.000000px;}
.fs0_c00313{font-size:66.000000px;}
.fs5_c00313{font-size:90.000000px;}
.y0_c00313{bottom:0.000000px;}
.yb4_c00313{bottom:108.898500px;}
.ya8_c00313{bottom:109.273500px;}
.y9d_c00313{bottom:109.648500px;}
.y8c_c00313{bottom:111.073500px;}
.y7b_c00313{bottom:113.250000px;}
.y6a_c00313{bottom:116.098500px;}
.y59_c00313{bottom:119.698500px;}
.y48_c00313{bottom:122.923500px;}
.yb3_c00313{bottom:126.148500px;}
.ya7_c00313{bottom:126.523500px;}
.y9c_c00313{bottom:127.273500px;}
.y8b_c00313{bottom:128.698500px;}
.y7a_c00313{bottom:130.125000px;}
.y69_c00313{bottom:133.048500px;}
.y58_c00313{bottom:135.898500px;}
.y47_c00313{bottom:139.125000px;}
.yb2_c00313{bottom:143.473500px;}
.ya6_c00313{bottom:144.223500px;}
.y9b_c00313{bottom:144.898500px;}
.y8a_c00313{bottom:145.648500px;}
.y79_c00313{bottom:148.125000px;}
.y68_c00313{bottom:149.923500px;}
.y57_c00313{bottom:152.848500px;}
.y46_c00313{bottom:156.073500px;}
.yb1_c00313{bottom:160.723500px;}
.ya5_c00313{bottom:161.473500px;}
.y9a_c00313{bottom:162.148500px;}
.y89_c00313{bottom:163.273500px;}
.y78_c00313{bottom:165.073500px;}
.y67_c00313{bottom:167.250000px;}
.y56_c00313{bottom:169.348500px;}
.y45_c00313{bottom:172.273500px;}
.yb0_c00313{bottom:178.423500px;}
.y99_c00313{bottom:179.098500px;}
.y88_c00313{bottom:180.223500px;}
.y77_c00313{bottom:183.000000px;}
.y66_c00313{bottom:184.875000px;}
.y55_c00313{bottom:186.673500px;}
.y44_c00313{bottom:189.898500px;}
.y98_c00313{bottom:196.048500px;}
.ya4_c00313{bottom:196.723500px;}
.y87_c00313{bottom:197.473500px;}
.y76_c00313{bottom:199.948500px;}
.y65_c00313{bottom:202.125000px;}
.y54_c00313{bottom:203.548500px;}
.y43_c00313{bottom:206.098500px;}
.y97_c00313{bottom:213.298500px;}
.ya3_c00313{bottom:213.673500px;}
.y86_c00313{bottom:214.723500px;}
.y75_c00313{bottom:217.648500px;}
.y64_c00313{bottom:219.823500px;}
.y53_c00313{bottom:221.548500px;}
.y42_c00313{bottom:223.723500px;}
.ya2_c00313{bottom:230.548500px;}
.y96_c00313{bottom:231.298500px;}
.y85_c00313{bottom:232.723500px;}
.y74_c00313{bottom:234.898500px;}
.y63_c00313{bottom:237.073500px;}
.y52_c00313{bottom:238.500000px;}
.y41_c00313{bottom:240.673500px;}
.yaf_c00313{bottom:247.875000px;}
.ya1_c00313{bottom:248.173500px;}
.y95_c00313{bottom:248.250000px;}
.y84_c00313{bottom:250.423500px;}
.y73_c00313{bottom:252.898500px;}
.y62_c00313{bottom:254.323500px;}
.y51_c00313{bottom:256.500000px;}
.y40_c00313{bottom:258.298500px;}
.y94_c00313{bottom:265.500000px;}
.y83_c00313{bottom:268.048500px;}
.y72_c00313{bottom:269.848500px;}
.y61_c00313{bottom:271.948500px;}
.y50_c00313{bottom:273.823500px;}
.y3f_c00313{bottom:275.923500px;}
.yae_c00313{bottom:282.375000px;}
.ya0_c00313{bottom:282.823500px;}
.y93_c00313{bottom:283.125000px;}
.y82_c00313{bottom:285.673500px;}
.y71_c00313{bottom:287.473500px;}
.y60_c00313{bottom:289.275000px;}
.y4f_c00313{bottom:291.073500px;}
.y3e_c00313{bottom:292.500000px;}
.yad_c00313{bottom:299.698500px;}
.y92_c00313{bottom:300.448500px;}
.y81_c00313{bottom:302.923500px;}
.y70_c00313{bottom:304.723500px;}
.y5f_c00313{bottom:306.150000px;}
.y3d_c00313{bottom:310.198500px;}
.y4e_c00313{bottom:311.625000px;}
.yac_c00313{bottom:316.275000px;}
.y9f_c00313{bottom:318.073500px;}
.y91_c00313{bottom:318.448500px;}
.y80_c00313{bottom:320.250000px;}
.y6f_c00313{bottom:321.673500px;}
.y5e_c00313{bottom:323.400000px;}
.y4d_c00313{bottom:324.525000px;}
.y3c_c00313{bottom:326.698500px;}
.yab_c00313{bottom:333.900000px;}
.y9e_c00313{bottom:335.323500px;}
.y90_c00313{bottom:335.698500px;}
.y7f_c00313{bottom:337.500000px;}
.y6e_c00313{bottom:339.298500px;}
.y5d_c00313{bottom:340.723500px;}
.y4c_c00313{bottom:341.473500px;}
.y3b_c00313{bottom:344.025000px;}
.yaa_c00313{bottom:351.525000px;}
.y8f_c00313{bottom:353.323500px;}
.y7e_c00313{bottom:354.823500px;}
.y6d_c00313{bottom:355.500000px;}
.y5c_c00313{bottom:357.298500px;}
.y4b_c00313{bottom:358.723500px;}
.y3a_c00313{bottom:360.598500px;}
.ya9_c00313{bottom:369.223500px;}
.y8e_c00313{bottom:370.948500px;}
.y7d_c00313{bottom:372.823500px;}
.y6c_c00313{bottom:373.500000px;}
.y5b_c00313{bottom:374.625000px;}
.y4a_c00313{bottom:375.673500px;}
.y39_c00313{bottom:377.473500px;}
.y8d_c00313{bottom:387.900000px;}
.y7c_c00313{bottom:389.698500px;}
.y6b_c00313{bottom:391.125000px;}
.y5a_c00313{bottom:392.625000px;}
.y49_c00313{bottom:393.298500px;}
.y38_c00313{bottom:394.723500px;}
.y37_c00313{bottom:430.048500px;}
.y35_c00313{bottom:430.348500px;}
.y36_c00313{bottom:430.723500px;}
.y33_c00313{bottom:431.098500px;}
.y32_c00313{bottom:431.473500px;}
.y31_c00313{bottom:432.898500px;}
.y2e_c00313{bottom:433.648500px;}
.y2f_c00313{bottom:434.323500px;}
.y2d_c00313{bottom:434.698500px;}
.y2c_c00313{bottom:436.125000px;}
.y2b_c00313{bottom:436.500000px;}
.y28_c00313{bottom:448.423500px;}
.y30_c00313{bottom:458.848500px;}
.y2a_c00313{bottom:459.898500px;}
.y29_c00313{bottom:460.648500px;}
.y27_c00313{bottom:461.398500px;}
.y26_c00313{bottom:462.073500px;}
.y34_c00313{bottom:463.500000px;}
.y25_c00313{bottom:520.423500px;}
.y24_c00313{bottom:535.798500px;}
.y23_c00313{bottom:537.673500px;}
.y22_c00313{bottom:553.198500px;}
.y21_c00313{bottom:571.198500px;}
.y20_c00313{bottom:587.698500px;}
.y1f_c00313{bottom:605.323500px;}
.y1e_c00313{bottom:623.398500px;}
.y1d_c00313{bottom:640.198500px;}
.y1c_c00313{bottom:657.223500px;}
.y1b_c00313{bottom:674.098500px;}
.y19_c00313{bottom:690.673500px;}
.y1a_c00313{bottom:691.348500px;}
.y18_c00313{bottom:708.298500px;}
.y17_c00313{bottom:725.625000px;}
.y16_c00313{bottom:742.500000px;}
.y14_c00313{bottom:742.798500px;}
.y15_c00313{bottom:743.625000px;}
.y13_c00313{bottom:759.075000px;}
.y12_c00313{bottom:760.200000px;}
.y11_c00313{bottom:760.500000px;}
.y10_c00313{bottom:777.823500px;}
.yf_c00313{bottom:794.698500px;}
.ye_c00313{bottom:811.275000px;}
.yd_c00313{bottom:889.425000px;}
.yc_c00313{bottom:911.025000px;}
.yb_c00313{bottom:932.925000px;}
.ya_c00313{bottom:954.223500px;}
.y8_c00313{bottom:973.275000px;}
.y9_c00313{bottom:976.500000px;}
.y6_c00313{bottom:989.848500px;}
.y7_c00313{bottom:997.050000px;}
.y5_c00313{bottom:1017.525000px;}
.y4_c00313{bottom:1038.448500px;}
.y1_c00313{bottom:1088.473500px;}
.y3_c00313{bottom:1095.675000px;}
.y2_c00313{bottom:1102.500000px;}
.h6_c00313{height:42.328125px;}
.h7_c00313{height:47.085938px;}
.h2_c00313{height:52.998047px;}
.h4_c00313{height:58.857422px;}
.h9_c00313{height:58.886719px;}
.h5_c00313{height:60.468750px;}
.h1_c00313{height:64.775391px;}
.h3_c00313{height:66.515625px;}
.h8_c00313{height:88.330078px;}
.h0_c00313{height:1174.500000px;}
.w0_c00313{width:731.977200px;}
.w1_c00313{width:732.000000px;}
.x0_c00313{left:0.000000px;}
.x19_c00313{left:33.490200px;}
.x17_c00313{left:34.540200px;}
.x16_c00313{left:35.588700px;}
.x14_c00313{left:36.715200px;}
.x12_c00313{left:38.890200px;}
.xf_c00313{left:39.940200px;}
.xb_c00313{left:41.740200px;}
.xa_c00313{left:43.165200px;}
.x9_c00313{left:44.965200px;}
.x20_c00313{left:46.765200px;}
.x5_c00313{left:48.190200px;}
.x1b_c00313{left:52.915200px;}
.x31_c00313{left:54.340200px;}
.x30_c00313{left:56.140200px;}
.x18_c00313{left:59.740200px;}
.x15_c00313{left:62.290200px;}
.xc_c00313{left:65.515200px;}
.x13_c00313{left:66.565200px;}
.x21_c00313{left:68.365200px;}
.x1_c00313{left:70.165200px;}
.x7_c00313{left:77.740200px;}
.x4_c00313{left:78.790200px;}
.x1a_c00313{left:84.563700px;}
.x2_c00313{left:97.540200px;}
.x1d_c00313{left:105.490200px;}
.x6_c00313{left:106.915200px;}
.x35_c00313{left:116.965200px;}
.x1c_c00313{left:124.165200px;}
.x34_c00313{left:125.965200px;}
.x33_c00313{left:127.090200px;}
.x32_c00313{left:128.890200px;}
.x1e_c00313{left:188.290200px;}
.x22_c00313{left:197.965200px;}
.x39_c00313{left:208.763700px;}
.x38_c00313{left:209.890200px;}
.x37_c00313{left:211.315200px;}
.x36_c00313{left:212.365200px;}
.x23_c00313{left:237.940200px;}
.x10_c00313{left:240.790200px;}
.x11_c00313{left:255.190200px;}
.x1f_c00313{left:271.765200px;}
.x3_c00313{left:273.565200px;}
.x24_c00313{left:280.765200px;}
.x3d_c00313{left:292.990200px;}
.x3c_c00313{left:294.490200px;}
.x3b_c00313{left:295.540200px;}
.x3a_c00313{left:296.590200px;}
.x8_c00313{left:306.715200px;}
.x25_c00313{left:321.115200px;}
.x26_c00313{left:357.115200px;}
.x27_c00313{left:366.490200px;}
.x41_c00313{left:379.090200px;}
.x40_c00313{left:380.515200px;}
.x3f_c00313{left:381.565200px;}
.x3e_c00313{left:391.315200px;}
.x28_c00313{left:408.190200px;}
.x43_c00313{left:434.140200px;}
.x29_c00313{left:449.290200px;}
.x2b_c00313{left:453.940200px;}
.x46_c00313{left:455.365200px;}
.x45_c00313{left:456.790200px;}
.x44_c00313{left:457.915200px;}
.xd_c00313{left:466.165200px;}
.x42_c00313{left:467.965200px;}
.xe_c00313{left:486.340200px;}
.x2a_c00313{left:487.390200px;}
.x2c_c00313{left:520.540200px;}
.x4c_c00313{left:526.690200px;}
.x4b_c00313{left:528.115200px;}
.x4a_c00313{left:529.165200px;}
.x49_c00313{left:530.290200px;}
.x48_c00313{left:538.915200px;}
.x47_c00313{left:539.965200px;}
.x2d_c00313{left:567.715200px;}
.x2e_c00313{left:579.565200px;}
.x2f_c00313{left:592.165200px;}
.x51_c00313{left:598.690200px;}
.x50_c00313{left:600.115200px;}
.x4f_c00313{left:601.165200px;}
.x4e_c00313{left:602.290200px;}
.x4d_c00313{left:611.590200px;}
@media print{
.v1_c00313{vertical-align:-2.666667pt;}
.v0_c00313{vertical-align:0.000000pt;}
.ls0_c00313{letter-spacing:0.000000pt;}
.ws1_c00313{word-spacing:0.000000pt;}
.ws0_c00313{word-spacing:74.938967pt;}
.fs3_c00313{font-size:37.333333pt;}
.fs4_c00313{font-size:42.666667pt;}
.fs1_c00313{font-size:48.000000pt;}
.fs2_c00313{font-size:53.333333pt;}
.fs0_c00313{font-size:58.666667pt;}
.fs5_c00313{font-size:80.000000pt;}
.y0_c00313{bottom:0.000000pt;}
.yb4_c00313{bottom:96.798667pt;}
.ya8_c00313{bottom:97.132000pt;}
.y9d_c00313{bottom:97.465333pt;}
.y8c_c00313{bottom:98.732000pt;}
.y7b_c00313{bottom:100.666667pt;}
.y6a_c00313{bottom:103.198667pt;}
.y59_c00313{bottom:106.398667pt;}
.y48_c00313{bottom:109.265333pt;}
.yb3_c00313{bottom:112.132000pt;}
.ya7_c00313{bottom:112.465333pt;}
.y9c_c00313{bottom:113.132000pt;}
.y8b_c00313{bottom:114.398667pt;}
.y7a_c00313{bottom:115.666667pt;}
.y69_c00313{bottom:118.265333pt;}
.y58_c00313{bottom:120.798667pt;}
.y47_c00313{bottom:123.666667pt;}
.yb2_c00313{bottom:127.532000pt;}
.ya6_c00313{bottom:128.198667pt;}
.y9b_c00313{bottom:128.798667pt;}
.y8a_c00313{bottom:129.465333pt;}
.y79_c00313{bottom:131.666667pt;}
.y68_c00313{bottom:133.265333pt;}
.y57_c00313{bottom:135.865333pt;}
.y46_c00313{bottom:138.732000pt;}
.yb1_c00313{bottom:142.865333pt;}
.ya5_c00313{bottom:143.532000pt;}
.y9a_c00313{bottom:144.132000pt;}
.y89_c00313{bottom:145.132000pt;}
.y78_c00313{bottom:146.732000pt;}
.y67_c00313{bottom:148.666667pt;}
.y56_c00313{bottom:150.532000pt;}
.y45_c00313{bottom:153.132000pt;}
.yb0_c00313{bottom:158.598667pt;}
.y99_c00313{bottom:159.198667pt;}
.y88_c00313{bottom:160.198667pt;}
.y77_c00313{bottom:162.666667pt;}
.y66_c00313{bottom:164.333333pt;}
.y55_c00313{bottom:165.932000pt;}
.y44_c00313{bottom:168.798667pt;}
.y98_c00313{bottom:174.265333pt;}
.ya4_c00313{bottom:174.865333pt;}
.y87_c00313{bottom:175.532000pt;}
.y76_c00313{bottom:177.732000pt;}
.y65_c00313{bottom:179.666667pt;}
.y54_c00313{bottom:180.932000pt;}
.y43_c00313{bottom:183.198667pt;}
.y97_c00313{bottom:189.598667pt;}
.ya3_c00313{bottom:189.932000pt;}
.y86_c00313{bottom:190.865333pt;}
.y75_c00313{bottom:193.465333pt;}
.y64_c00313{bottom:195.398667pt;}
.y53_c00313{bottom:196.932000pt;}
.y42_c00313{bottom:198.865333pt;}
.ya2_c00313{bottom:204.932000pt;}
.y96_c00313{bottom:205.598667pt;}
.y85_c00313{bottom:206.865333pt;}
.y74_c00313{bottom:208.798667pt;}
.y63_c00313{bottom:210.732000pt;}
.y52_c00313{bottom:212.000000pt;}
.y41_c00313{bottom:213.932000pt;}
.yaf_c00313{bottom:220.333333pt;}
.ya1_c00313{bottom:220.598667pt;}
.y95_c00313{bottom:220.666667pt;}
.y84_c00313{bottom:222.598667pt;}
.y73_c00313{bottom:224.798667pt;}
.y62_c00313{bottom:226.065333pt;}
.y51_c00313{bottom:228.000000pt;}
.y40_c00313{bottom:229.598667pt;}
.y94_c00313{bottom:236.000000pt;}
.y83_c00313{bottom:238.265333pt;}
.y72_c00313{bottom:239.865333pt;}
.y61_c00313{bottom:241.732000pt;}
.y50_c00313{bottom:243.398667pt;}
.y3f_c00313{bottom:245.265333pt;}
.yae_c00313{bottom:251.000000pt;}
.ya0_c00313{bottom:251.398667pt;}
.y93_c00313{bottom:251.666667pt;}
.y82_c00313{bottom:253.932000pt;}
.y71_c00313{bottom:255.532000pt;}
.y60_c00313{bottom:257.133333pt;}
.y4f_c00313{bottom:258.732000pt;}
.y3e_c00313{bottom:260.000000pt;}
.yad_c00313{bottom:266.398667pt;}
.y92_c00313{bottom:267.065333pt;}
.y81_c00313{bottom:269.265333pt;}
.y70_c00313{bottom:270.865333pt;}
.y5f_c00313{bottom:272.133333pt;}
.y3d_c00313{bottom:275.732000pt;}
.y4e_c00313{bottom:277.000000pt;}
.yac_c00313{bottom:281.133333pt;}
.y9f_c00313{bottom:282.732000pt;}
.y91_c00313{bottom:283.065333pt;}
.y80_c00313{bottom:284.666667pt;}
.y6f_c00313{bottom:285.932000pt;}
.y5e_c00313{bottom:287.466667pt;}
.y4d_c00313{bottom:288.466667pt;}
.y3c_c00313{bottom:290.398667pt;}
.yab_c00313{bottom:296.800000pt;}
.y9e_c00313{bottom:298.065333pt;}
.y90_c00313{bottom:298.398667pt;}
.y7f_c00313{bottom:300.000000pt;}
.y6e_c00313{bottom:301.598667pt;}
.y5d_c00313{bottom:302.865333pt;}
.y4c_c00313{bottom:303.532000pt;}
.y3b_c00313{bottom:305.800000pt;}
.yaa_c00313{bottom:312.466667pt;}
.y8f_c00313{bottom:314.065333pt;}
.y7e_c00313{bottom:315.398667pt;}
.y6d_c00313{bottom:316.000000pt;}
.y5c_c00313{bottom:317.598667pt;}
.y4b_c00313{bottom:318.865333pt;}
.y3a_c00313{bottom:320.532000pt;}
.ya9_c00313{bottom:328.198667pt;}
.y8e_c00313{bottom:329.732000pt;}
.y7d_c00313{bottom:331.398667pt;}
.y6c_c00313{bottom:332.000000pt;}
.y5b_c00313{bottom:333.000000pt;}
.y4a_c00313{bottom:333.932000pt;}
.y39_c00313{bottom:335.532000pt;}
.y8d_c00313{bottom:344.800000pt;}
.y7c_c00313{bottom:346.398667pt;}
.y6b_c00313{bottom:347.666667pt;}
.y5a_c00313{bottom:349.000000pt;}
.y49_c00313{bottom:349.598667pt;}
.y38_c00313{bottom:350.865333pt;}
.y37_c00313{bottom:382.265333pt;}
.y35_c00313{bottom:382.532000pt;}
.y36_c00313{bottom:382.865333pt;}
.y33_c00313{bottom:383.198667pt;}
.y32_c00313{bottom:383.532000pt;}
.y31_c00313{bottom:384.798667pt;}
.y2e_c00313{bottom:385.465333pt;}
.y2f_c00313{bottom:386.065333pt;}
.y2d_c00313{bottom:386.398667pt;}
.y2c_c00313{bottom:387.666667pt;}
.y2b_c00313{bottom:388.000000pt;}
.y28_c00313{bottom:398.598667pt;}
.y30_c00313{bottom:407.865333pt;}
.y2a_c00313{bottom:408.798667pt;}
.y29_c00313{bottom:409.465333pt;}
.y27_c00313{bottom:410.132000pt;}
.y26_c00313{bottom:410.732000pt;}
.y34_c00313{bottom:412.000000pt;}
.y25_c00313{bottom:462.598667pt;}
.y24_c00313{bottom:476.265333pt;}
.y23_c00313{bottom:477.932000pt;}
.y22_c00313{bottom:491.732000pt;}
.y21_c00313{bottom:507.732000pt;}
.y20_c00313{bottom:522.398667pt;}
.y1f_c00313{bottom:538.065333pt;}
.y1e_c00313{bottom:554.132000pt;}
.y1d_c00313{bottom:569.065333pt;}
.y1c_c00313{bottom:584.198667pt;}
.y1b_c00313{bottom:599.198667pt;}
.y19_c00313{bottom:613.932000pt;}
.y1a_c00313{bottom:614.532000pt;}
.y18_c00313{bottom:629.598667pt;}
.y17_c00313{bottom:645.000000pt;}
.y16_c00313{bottom:660.000000pt;}
.y14_c00313{bottom:660.265333pt;}
.y15_c00313{bottom:661.000000pt;}
.y13_c00313{bottom:674.733333pt;}
.y12_c00313{bottom:675.733333pt;}
.y11_c00313{bottom:676.000000pt;}
.y10_c00313{bottom:691.398667pt;}
.yf_c00313{bottom:706.398667pt;}
.ye_c00313{bottom:721.133333pt;}
.yd_c00313{bottom:790.600000pt;}
.yc_c00313{bottom:809.800000pt;}
.yb_c00313{bottom:829.266667pt;}
.ya_c00313{bottom:848.198667pt;}
.y8_c00313{bottom:865.133333pt;}
.y9_c00313{bottom:868.000000pt;}
.y6_c00313{bottom:879.865333pt;}
.y7_c00313{bottom:886.266667pt;}
.y5_c00313{bottom:904.466667pt;}
.y4_c00313{bottom:923.065333pt;}
.y1_c00313{bottom:967.532000pt;}
.y3_c00313{bottom:973.933333pt;}
.y2_c00313{bottom:980.000000pt;}
.h6_c00313{height:37.625000pt;}
.h7_c00313{height:41.854167pt;}
.h2_c00313{height:47.109375pt;}
.h4_c00313{height:52.317708pt;}
.h9_c00313{height:52.343750pt;}
.h5_c00313{height:53.750000pt;}
.h1_c00313{height:57.578125pt;}
.h3_c00313{height:59.125000pt;}
.h8_c00313{height:78.515625pt;}
.h0_c00313{height:1044.000000pt;}
.w0_c00313{width:650.646400pt;}
.w1_c00313{width:650.666667pt;}
.x0_c00313{left:0.000000pt;}
.x19_c00313{left:29.769067pt;}
.x17_c00313{left:30.702400pt;}
.x16_c00313{left:31.634400pt;}
.x14_c00313{left:32.635733pt;}
.x12_c00313{left:34.569067pt;}
.xf_c00313{left:35.502400pt;}
.xb_c00313{left:37.102400pt;}
.xa_c00313{left:38.369067pt;}
.x9_c00313{left:39.969067pt;}
.x20_c00313{left:41.569067pt;}
.x5_c00313{left:42.835733pt;}
.x1b_c00313{left:47.035733pt;}
.x31_c00313{left:48.302400pt;}
.x30_c00313{left:49.902400pt;}
.x18_c00313{left:53.102400pt;}
.x15_c00313{left:55.369067pt;}
.xc_c00313{left:58.235733pt;}
.x13_c00313{left:59.169067pt;}
.x21_c00313{left:60.769067pt;}
.x1_c00313{left:62.369067pt;}
.x7_c00313{left:69.102400pt;}
.x4_c00313{left:70.035733pt;}
.x1a_c00313{left:75.167733pt;}
.x2_c00313{left:86.702400pt;}
.x1d_c00313{left:93.769067pt;}
.x6_c00313{left:95.035733pt;}
.x35_c00313{left:103.969067pt;}
.x1c_c00313{left:110.369067pt;}
.x34_c00313{left:111.969067pt;}
.x33_c00313{left:112.969067pt;}
.x32_c00313{left:114.569067pt;}
.x1e_c00313{left:167.369067pt;}
.x22_c00313{left:175.969067pt;}
.x39_c00313{left:185.567733pt;}
.x38_c00313{left:186.569067pt;}
.x37_c00313{left:187.835733pt;}
.x36_c00313{left:188.769067pt;}
.x23_c00313{left:211.502400pt;}
.x10_c00313{left:214.035733pt;}
.x11_c00313{left:226.835733pt;}
.x1f_c00313{left:241.569067pt;}
.x3_c00313{left:243.169067pt;}
.x24_c00313{left:249.569067pt;}
.x3d_c00313{left:260.435733pt;}
.x3c_c00313{left:261.769067pt;}
.x3b_c00313{left:262.702400pt;}
.x3a_c00313{left:263.635733pt;}
.x8_c00313{left:272.635733pt;}
.x25_c00313{left:285.435733pt;}
.x26_c00313{left:317.435733pt;}
.x27_c00313{left:325.769067pt;}
.x41_c00313{left:336.969067pt;}
.x40_c00313{left:338.235733pt;}
.x3f_c00313{left:339.169067pt;}
.x3e_c00313{left:347.835733pt;}
.x28_c00313{left:362.835733pt;}
.x43_c00313{left:385.902400pt;}
.x29_c00313{left:399.369067pt;}
.x2b_c00313{left:403.502400pt;}
.x46_c00313{left:404.769067pt;}
.x45_c00313{left:406.035733pt;}
.x44_c00313{left:407.035733pt;}
.xd_c00313{left:414.369067pt;}
.x42_c00313{left:415.969067pt;}
.xe_c00313{left:432.302400pt;}
.x2a_c00313{left:433.235733pt;}
.x2c_c00313{left:462.702400pt;}
.x4c_c00313{left:468.169067pt;}
.x4b_c00313{left:469.435733pt;}
.x4a_c00313{left:470.369067pt;}
.x49_c00313{left:471.369067pt;}
.x48_c00313{left:479.035733pt;}
.x47_c00313{left:479.969067pt;}
.x2d_c00313{left:504.635733pt;}
.x2e_c00313{left:515.169067pt;}
.x2f_c00313{left:526.369067pt;}
.x51_c00313{left:532.169067pt;}
.x50_c00313{left:533.435733pt;}
.x4f_c00313{left:534.369067pt;}
.x4e_c00313{left:535.369067pt;}
.x4d_c00313{left:543.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_168398ad75ae753f4400eac8.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00314;src:url('chunks/assets/font_b286a33d0c0ef65582f39b9c.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00314;src:url('chunks/assets/font_27fd30e0f396dcec9fbe6761.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00314{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m13_c00314{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf_c00314{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m14_c00314{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c00314{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc_c00314{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me_c00314{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c00314{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c00314{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00314{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c00314{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00314{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c00314{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3_c00314{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00314{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c00314{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00314{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00314{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c00314{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c00314{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00314{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m17_c00314{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c00314{transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);}
.m1_c00314{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.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;}
}
.ws0_c00314{word-spacing:0.000000px;}
.fc0_c00314{color:transparent;}
.fs0_c00314{font-size:60.000000px;}
.fs2_c00314{font-size:66.000000px;}
.fs3_c00314{font-size:72.000000px;}
.fs1_c00314{font-size:78.000000px;}
.y0_c00314{bottom:0.000000px;}
.y41_c00314{bottom:94.875000px;}
.y3d_c00314{bottom:112.500000px;}
.y3e_c00314{bottom:113.250000px;}
.y3f_c00314{bottom:113.923500px;}
.y40_c00314{bottom:114.298500px;}
.y38_c00314{bottom:128.023500px;}
.y39_c00314{bottom:129.073500px;}
.y3a_c00314{bottom:130.125000px;}
.y3b_c00314{bottom:130.500000px;}
.y3c_c00314{bottom:131.923500px;}
.y34_c00314{bottom:145.198500px;}
.y35_c00314{bottom:145.273500px;}
.y36_c00314{bottom:146.323500px;}
.y37_c00314{bottom:148.875000px;}
.y33_c00314{bottom:202.500000px;}
.y2e_c00314{bottom:222.298500px;}
.y2f_c00314{bottom:222.673500px;}
.y31_c00314{bottom:222.973500px;}
.y30_c00314{bottom:223.048500px;}
.y32_c00314{bottom:224.848500px;}
.y2d_c00314{bottom:243.223500px;}
.y2c_c00314{bottom:265.125000px;}
.y2b_c00314{bottom:286.048500px;}
.y2a_c00314{bottom:307.275000px;}
.y29_c00314{bottom:328.500000px;}
.y28_c00314{bottom:349.798500px;}
.y27_c00314{bottom:371.025000px;}
.y26_c00314{bottom:392.250000px;}
.y25_c00314{bottom:413.473500px;}
.y24_c00314{bottom:434.698500px;}
.y23_c00314{bottom:455.923500px;}
.y22_c00314{bottom:477.598500px;}
.y21_c00314{bottom:499.500000px;}
.y20_c00314{bottom:520.723500px;}
.y1f_c00314{bottom:542.323500px;}
.y1e_c00314{bottom:564.000000px;}
.y1d_c00314{bottom:585.523500px;}
.y1c_c00314{bottom:607.125000px;}
.y1b_c00314{bottom:628.723500px;}
.y1a_c00314{bottom:650.023500px;}
.y19_c00314{bottom:671.923500px;}
.y18_c00314{bottom:693.523500px;}
.y17_c00314{bottom:715.125000px;}
.y16_c00314{bottom:736.723500px;}
.y15_c00314{bottom:758.325000px;}
.y14_c00314{bottom:779.925000px;}
.y13_c00314{bottom:801.525000px;}
.y12_c00314{bottom:823.875000px;}
.y11_c00314{bottom:845.473500px;}
.y10_c00314{bottom:867.073500px;}
.yf_c00314{bottom:888.300000px;}
.ye_c00314{bottom:907.050000px;}
.yd_c00314{bottom:908.848500px;}
.yc_c00314{bottom:909.900000px;}
.yb_c00314{bottom:928.650000px;}
.ya_c00314{bottom:931.125000px;}
.y9_c00314{bottom:953.098500px;}
.y8_c00314{bottom:973.650000px;}
.y7_c00314{bottom:995.250000px;}
.y6_c00314{bottom:1017.150000px;}
.y5_c00314{bottom:1037.698500px;}
.y4_c00314{bottom:1039.500000px;}
.y3_c00314{bottom:1093.800000px;}
.y2_c00314{bottom:1096.723500px;}
.y1_c00314{bottom:1097.473500px;}
.h1_c00314{height:58.886719px;}
.h6_c00314{height:64.743164px;}
.h4_c00314{height:64.775391px;}
.h5_c00314{height:70.664062px;}
.h2_c00314{height:76.552734px;}
.h3_c00314{height:78.609375px;}
.h0_c00314{height:1174.500000px;}
.w0_c00314{width:731.977200px;}
.w1_c00314{width:732.000000px;}
.x0_c00314{left:0.000000px;}
.xb_c00314{left:47.890200px;}
.x4_c00314{left:48.940200px;}
.x6_c00314{left:50.365200px;}
.xc_c00314{left:51.490200px;}
.x17_c00314{left:52.915200px;}
.x11_c00314{left:69.115200px;}
.x7_c00314{left:82.765200px;}
.x12_c00314{left:105.790200px;}
.x5_c00314{left:114.790200px;}
.x13_c00314{left:159.115200px;}
.x1_c00314{left:267.490200px;}
.x18_c00314{left:297.340200px;}
.xd_c00314{left:316.090200px;}
.xe_c00314{left:336.940200px;}
.x8_c00314{left:353.890200px;}
.xf_c00314{left:366.490200px;}
.x10_c00314{left:379.390200px;}
.x15_c00314{left:392.365200px;}
.x9_c00314{left:426.190200px;}
.x2_c00314{left:462.190200px;}
.xa_c00314{left:466.915200px;}
.x19_c00314{left:471.565200px;}
.x16_c00314{left:505.390200px;}
.x1a_c00314{left:541.090200px;}
.x1b_c00314{left:564.490200px;}
.x14_c00314{left:567.340200px;}
.x3_c00314{left:625.990200px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls0_c00314{letter-spacing:0.000000pt;}
.ws0_c00314{word-spacing:0.000000pt;}
.fs0_c00314{font-size:53.333333pt;}
.fs2_c00314{font-size:58.666667pt;}
.fs3_c00314{font-size:64.000000pt;}
.fs1_c00314{font-size:69.333333pt;}
.y0_c00314{bottom:0.000000pt;}
.y41_c00314{bottom:84.333333pt;}
.y3d_c00314{bottom:100.000000pt;}
.y3e_c00314{bottom:100.666667pt;}
.y3f_c00314{bottom:101.265333pt;}
.y40_c00314{bottom:101.598667pt;}
.y38_c00314{bottom:113.798667pt;}
.y39_c00314{bottom:114.732000pt;}
.y3a_c00314{bottom:115.666667pt;}
.y3b_c00314{bottom:116.000000pt;}
.y3c_c00314{bottom:117.265333pt;}
.y34_c00314{bottom:129.065333pt;}
.y35_c00314{bottom:129.132000pt;}
.y36_c00314{bottom:130.065333pt;}
.y37_c00314{bottom:132.333333pt;}
.y33_c00314{bottom:180.000000pt;}
.y2e_c00314{bottom:197.598667pt;}
.y2f_c00314{bottom:197.932000pt;}
.y31_c00314{bottom:198.198667pt;}
.y30_c00314{bottom:198.265333pt;}
.y32_c00314{bottom:199.865333pt;}
.y2d_c00314{bottom:216.198667pt;}
.y2c_c00314{bottom:235.666667pt;}
.y2b_c00314{bottom:254.265333pt;}
.y2a_c00314{bottom:273.133333pt;}
.y29_c00314{bottom:292.000000pt;}
.y28_c00314{bottom:310.932000pt;}
.y27_c00314{bottom:329.800000pt;}
.y26_c00314{bottom:348.666667pt;}
.y25_c00314{bottom:367.532000pt;}
.y24_c00314{bottom:386.398667pt;}
.y23_c00314{bottom:405.265333pt;}
.y22_c00314{bottom:424.532000pt;}
.y21_c00314{bottom:444.000000pt;}
.y20_c00314{bottom:462.865333pt;}
.y1f_c00314{bottom:482.065333pt;}
.y1e_c00314{bottom:501.333333pt;}
.y1d_c00314{bottom:520.465333pt;}
.y1c_c00314{bottom:539.666667pt;}
.y1b_c00314{bottom:558.865333pt;}
.y1a_c00314{bottom:577.798667pt;}
.y19_c00314{bottom:597.265333pt;}
.y18_c00314{bottom:616.465333pt;}
.y17_c00314{bottom:635.666667pt;}
.y16_c00314{bottom:654.865333pt;}
.y15_c00314{bottom:674.066667pt;}
.y14_c00314{bottom:693.266667pt;}
.y13_c00314{bottom:712.466667pt;}
.y12_c00314{bottom:732.333333pt;}
.y11_c00314{bottom:751.532000pt;}
.y10_c00314{bottom:770.732000pt;}
.yf_c00314{bottom:789.600000pt;}
.ye_c00314{bottom:806.266667pt;}
.yd_c00314{bottom:807.865333pt;}
.yc_c00314{bottom:808.800000pt;}
.yb_c00314{bottom:825.466667pt;}
.ya_c00314{bottom:827.666667pt;}
.y9_c00314{bottom:847.198667pt;}
.y8_c00314{bottom:865.466667pt;}
.y7_c00314{bottom:884.666667pt;}
.y6_c00314{bottom:904.133333pt;}
.y5_c00314{bottom:922.398667pt;}
.y4_c00314{bottom:924.000000pt;}
.y3_c00314{bottom:972.266667pt;}
.y2_c00314{bottom:974.865333pt;}
.y1_c00314{bottom:975.532000pt;}
.h1_c00314{height:52.343750pt;}
.h6_c00314{height:57.549479pt;}
.h4_c00314{height:57.578125pt;}
.h5_c00314{height:62.812500pt;}
.h2_c00314{height:68.046875pt;}
.h3_c00314{height:69.875000pt;}
.h0_c00314{height:1044.000000pt;}
.w0_c00314{width:650.646400pt;}
.w1_c00314{width:650.666667pt;}
.x0_c00314{left:0.000000pt;}
.xb_c00314{left:42.569067pt;}
.x4_c00314{left:43.502400pt;}
.x6_c00314{left:44.769067pt;}
.xc_c00314{left:45.769067pt;}
.x17_c00314{left:47.035733pt;}
.x11_c00314{left:61.435733pt;}
.x7_c00314{left:73.569067pt;}
.x12_c00314{left:94.035733pt;}
.x5_c00314{left:102.035733pt;}
.x13_c00314{left:141.435733pt;}
.x1_c00314{left:237.769067pt;}
.x18_c00314{left:264.302400pt;}
.xd_c00314{left:280.969067pt;}
.xe_c00314{left:299.502400pt;}
.x8_c00314{left:314.569067pt;}
.xf_c00314{left:325.769067pt;}
.x10_c00314{left:337.235733pt;}
.x15_c00314{left:348.769067pt;}
.x9_c00314{left:378.835733pt;}
.x2_c00314{left:410.835733pt;}
.xa_c00314{left:415.035733pt;}
.x19_c00314{left:419.169067pt;}
.x16_c00314{left:449.235733pt;}
.x1a_c00314{left:480.969067pt;}
.x1b_c00314{left:501.769067pt;}
.x14_c00314{left:504.302400pt;}
.x3_c00314{left:556.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c768719ccb64f2ba473a25f.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00315{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m0_c00315{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m6_c00315{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m9_c00315{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c00315{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m12_c00315{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c00315{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me_c00315{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c00315{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c00315{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00315{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00315{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c00315{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00315{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c00315{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c00315{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c00315{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00315{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c00315{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00315{color:transparent;}
.fs1_c00315{font-size:60.000000px;}
.fs0_c00315{font-size:78.000000px;}
.y0_c00315{bottom:0.000000px;}
.y34_c00315{bottom:102.073500px;}
.y33_c00315{bottom:120.448500px;}
.y32_c00315{bottom:142.048500px;}
.y31_c00315{bottom:163.948500px;}
.y30_c00315{bottom:185.625000px;}
.y2f_c00315{bottom:208.648500px;}
.y2e_c00315{bottom:230.548500px;}
.y2d_c00315{bottom:252.598500px;}
.y2c_c00315{bottom:278.848500px;}
.y2b_c00315{bottom:296.098500px;}
.y2a_c00315{bottom:318.375000px;}
.y29_c00315{bottom:340.348500px;}
.y28_c00315{bottom:362.025000px;}
.y27_c00315{bottom:384.298500px;}
.y26_c00315{bottom:406.275000px;}
.y25_c00315{bottom:427.875000px;}
.y24_c00315{bottom:450.523500px;}
.y23_c00315{bottom:471.823500px;}
.y22_c00315{bottom:493.723500px;}
.y21_c00315{bottom:515.323500px;}
.y20_c00315{bottom:536.625000px;}
.y1f_c00315{bottom:558.523500px;}
.y1e_c00315{bottom:580.125000px;}
.y1d_c00315{bottom:602.098500px;}
.y1c_c00315{bottom:624.073500px;}
.y1b_c00315{bottom:646.048500px;}
.y1a_c00315{bottom:667.648500px;}
.y19_c00315{bottom:688.875000px;}
.y18_c00315{bottom:711.148500px;}
.y17_c00315{bottom:733.125000px;}
.y16_c00315{bottom:754.723500px;}
.y15_c00315{bottom:776.698500px;}
.y14_c00315{bottom:796.125000px;}
.y13_c00315{bottom:819.525000px;}
.y12_c00315{bottom:840.823500px;}
.y11_c00315{bottom:861.675000px;}
.y10_c00315{bottom:882.900000px;}
.yf_c00315{bottom:904.875000px;}
.yc_c00315{bottom:921.448500px;}
.ye_c00315{bottom:926.775000px;}
.yb_c00315{bottom:941.550000px;}
.yd_c00315{bottom:948.073500px;}
.ya_c00315{bottom:969.675000px;}
.y7_c00315{bottom:984.073500px;}
.y8_c00315{bottom:987.675000px;}
.y9_c00315{bottom:991.948500px;}
.y6_c00315{bottom:1012.125000px;}
.y5_c00315{bottom:1033.050000px;}
.y4_c00315{bottom:1053.900000px;}
.y1_c00315{bottom:1100.323500px;}
.y3_c00315{bottom:1110.448500px;}
.y2_c00315{bottom:1115.625000px;}
.h2_c00315{height:58.886719px;}
.h1_c00315{height:76.552734px;}
.h0_c00315{height:1174.500000px;}
.w0_c00315{width:731.977200px;}
.w1_c00315{width:732.000000px;}
.x0_c00315{left:0.000000px;}
.xd_c00315{left:53.290200px;}
.x7_c00315{left:54.715200px;}
.xf_c00315{left:55.765200px;}
.x4_c00315{left:57.190200px;}
.x11_c00315{left:58.315200px;}
.xa_c00315{left:75.938700px;}
.x1_c00315{left:76.990200px;}
.x8_c00315{left:78.790200px;}
.x9_c00315{left:81.340200px;}
.xb_c00315{left:84.188700px;}
.xc_c00315{left:85.313700px;}
.xe_c00315{left:87.115200px;}
.x10_c00315{left:88.915200px;}
.x2_c00315{left:103.690200px;}
.x5_c00315{left:197.965200px;}
.x6_c00315{left:206.290200px;}
.x3_c00315{left:278.590200px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls0_c00315{letter-spacing:0.000000pt;}
.ws0_c00315{word-spacing:0.000000pt;}
.fs1_c00315{font-size:53.333333pt;}
.fs0_c00315{font-size:69.333333pt;}
.y0_c00315{bottom:0.000000pt;}
.y34_c00315{bottom:90.732000pt;}
.y33_c00315{bottom:107.065333pt;}
.y32_c00315{bottom:126.265333pt;}
.y31_c00315{bottom:145.732000pt;}
.y30_c00315{bottom:165.000000pt;}
.y2f_c00315{bottom:185.465333pt;}
.y2e_c00315{bottom:204.932000pt;}
.y2d_c00315{bottom:224.532000pt;}
.y2c_c00315{bottom:247.865333pt;}
.y2b_c00315{bottom:263.198667pt;}
.y2a_c00315{bottom:283.000000pt;}
.y29_c00315{bottom:302.532000pt;}
.y28_c00315{bottom:321.800000pt;}
.y27_c00315{bottom:341.598667pt;}
.y26_c00315{bottom:361.133333pt;}
.y25_c00315{bottom:380.333333pt;}
.y24_c00315{bottom:400.465333pt;}
.y23_c00315{bottom:419.398667pt;}
.y22_c00315{bottom:438.865333pt;}
.y21_c00315{bottom:458.065333pt;}
.y20_c00315{bottom:477.000000pt;}
.y1f_c00315{bottom:496.465333pt;}
.y1e_c00315{bottom:515.666667pt;}
.y1d_c00315{bottom:535.198667pt;}
.y1c_c00315{bottom:554.732000pt;}
.y1b_c00315{bottom:574.265333pt;}
.y1a_c00315{bottom:593.465333pt;}
.y19_c00315{bottom:612.333333pt;}
.y18_c00315{bottom:632.132000pt;}
.y17_c00315{bottom:651.666667pt;}
.y16_c00315{bottom:670.865333pt;}
.y15_c00315{bottom:690.398667pt;}
.y14_c00315{bottom:707.666667pt;}
.y13_c00315{bottom:728.466667pt;}
.y12_c00315{bottom:747.398667pt;}
.y11_c00315{bottom:765.933333pt;}
.y10_c00315{bottom:784.800000pt;}
.yf_c00315{bottom:804.333333pt;}
.yc_c00315{bottom:819.065333pt;}
.ye_c00315{bottom:823.800000pt;}
.yb_c00315{bottom:836.933333pt;}
.yd_c00315{bottom:842.732000pt;}
.ya_c00315{bottom:861.933333pt;}
.y7_c00315{bottom:874.732000pt;}
.y8_c00315{bottom:877.933333pt;}
.y9_c00315{bottom:881.732000pt;}
.y6_c00315{bottom:899.666667pt;}
.y5_c00315{bottom:918.266667pt;}
.y4_c00315{bottom:936.800000pt;}
.y1_c00315{bottom:978.065333pt;}
.y3_c00315{bottom:987.065333pt;}
.y2_c00315{bottom:991.666667pt;}
.h2_c00315{height:52.343750pt;}
.h1_c00315{height:68.046875pt;}
.h0_c00315{height:1044.000000pt;}
.w0_c00315{width:650.646400pt;}
.w1_c00315{width:650.666667pt;}
.x0_c00315{left:0.000000pt;}
.xd_c00315{left:47.369067pt;}
.x7_c00315{left:48.635733pt;}
.xf_c00315{left:49.569067pt;}
.x4_c00315{left:50.835733pt;}
.x11_c00315{left:51.835733pt;}
.xa_c00315{left:67.501067pt;}
.x1_c00315{left:68.435733pt;}
.x8_c00315{left:70.035733pt;}
.x9_c00315{left:72.302400pt;}
.xb_c00315{left:74.834400pt;}
.xc_c00315{left:75.834400pt;}
.xe_c00315{left:77.435733pt;}
.x10_c00315{left:79.035733pt;}
.x2_c00315{left:92.169067pt;}
.x5_c00315{left:175.969067pt;}
.x6_c00315{left:183.369067pt;}
.x3_c00315{left:247.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa98796d2970f1530b8935b2.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00316;src:url('chunks/assets/font_842a442dc2e0d43aadbbbfa2.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00316;src:url('chunks/assets/font_44165abd563f8c4b7ab46beb.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00316;src:url('chunks/assets/font_f16447debed1900bb8903adf.woff2')format("woff");}.ff4_c00316{font-family:ff4_c00316;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00316;src:url('chunks/assets/font_5c478221afd2376d52068032.woff2')format("woff");}.ff5_c00316{font-family:ff5_c00316;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00316{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m0_c00316{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1_c00316{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m7_c00316{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4_c00316{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00316{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9_c00316{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00316{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c00316{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2_c00316{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00316{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00316{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.ls0_c00316{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00316{color:transparent;}
.fs1_c00316{font-size:42.000000px;}
.fs4_c00316{font-size:54.000000px;}
.fs2_c00316{font-size:84.000000px;}
.fs3_c00316{font-size:96.000000px;}
.fs0_c00316{font-size:168.000000px;}
.y0_c00316{bottom:0.000000px;}
.yb_c00316{bottom:73.948500px;}
.ya_c00316{bottom:472.125000px;}
.y8_c00316{bottom:499.500000px;}
.y9_c00316{bottom:502.423500px;}
.y7_c00316{bottom:634.125000px;}
.y6_c00316{bottom:659.698500px;}
.y5_c00316{bottom:794.698500px;}
.y4_c00316{bottom:795.448500px;}
.y3_c00316{bottom:820.650000px;}
.y2_c00316{bottom:900.900000px;}
.y1_c00316{bottom:934.050000px;}
.h2_c00316{height:43.804688px;}
.h5_c00316{height:56.320312px;}
.h3_c00316{height:82.400391px;}
.h4_c00316{height:94.218750px;}
.h1_c00316{height:169.312500px;}
.h0_c00316{height:1174.500000px;}
.w0_c00316{width:731.977200px;}
.w1_c00316{width:732.000000px;}
.x0_c00316{left:0.000000px;}
.x3_c00316{left:58.690200px;}
.x6_c00316{left:59.740200px;}
.x4_c00316{left:84.563700px;}
.x7_c00316{left:86.365200px;}
.x1_c00316{left:89.965200px;}
.x2_c00316{left:212.365200px;}
.x5_c00316{left:309.940200px;}
.x8_c00316{left:397.765200px;}
.x9_c00316{left:533.890200px;}
.xa_c00316{left:605.890200px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls0_c00316{letter-spacing:0.000000pt;}
.ws0_c00316{word-spacing:0.000000pt;}
.fs1_c00316{font-size:37.333333pt;}
.fs4_c00316{font-size:48.000000pt;}
.fs2_c00316{font-size:74.666667pt;}
.fs3_c00316{font-size:85.333333pt;}
.fs0_c00316{font-size:149.333333pt;}
.y0_c00316{bottom:0.000000pt;}
.yb_c00316{bottom:65.732000pt;}
.ya_c00316{bottom:419.666667pt;}
.y8_c00316{bottom:444.000000pt;}
.y9_c00316{bottom:446.598667pt;}
.y7_c00316{bottom:563.666667pt;}
.y6_c00316{bottom:586.398667pt;}
.y5_c00316{bottom:706.398667pt;}
.y4_c00316{bottom:707.065333pt;}
.y3_c00316{bottom:729.466667pt;}
.y2_c00316{bottom:800.800000pt;}
.y1_c00316{bottom:830.266667pt;}
.h2_c00316{height:38.937500pt;}
.h5_c00316{height:50.062500pt;}
.h3_c00316{height:73.244792pt;}
.h4_c00316{height:83.750000pt;}
.h1_c00316{height:150.500000pt;}
.h0_c00316{height:1044.000000pt;}
.w0_c00316{width:650.646400pt;}
.w1_c00316{width:650.666667pt;}
.x0_c00316{left:0.000000pt;}
.x3_c00316{left:52.169067pt;}
.x6_c00316{left:53.102400pt;}
.x4_c00316{left:75.167733pt;}
.x7_c00316{left:76.769067pt;}
.x1_c00316{left:79.969067pt;}
.x2_c00316{left:188.769067pt;}
.x5_c00316{left:275.502400pt;}
.x8_c00316{left:353.569067pt;}
.x9_c00316{left:474.569067pt;}
.xa_c00316{left:538.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e41d88dedcf42f1f9854716.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00317;src:url('chunks/assets/font_fdf605de5961d4767e93bbe0.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00317;src:url('chunks/assets/font_0bd1301c2ce1c329a76591cc.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00317;src:url('chunks/assets/font_e7ca56091232cc2f501c1d81.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00317{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m3_c00317{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m15_c00317{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c00317{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m19_c00317{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m13_c00317{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00317{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m14_c00317{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c00317{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c00317{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00317{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00317{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00317{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00317{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00317{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00317{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00317{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m17_c00317{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00317{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00317{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00317{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c00317{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00317{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m18_c00317{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m16_c00317{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c00317{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.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;}
}
.ws0_c00317{word-spacing:0.000000px;}
.fc0_c00317{color:transparent;}
.fs0_c00317{font-size:60.000000px;}
.fs3_c00317{font-size:66.000000px;}
.fs2_c00317{font-size:72.000000px;}
.fs4_c00317{font-size:84.000000px;}
.fs1_c00317{font-size:156.000000px;}
.y0_c00317{bottom:0.000000px;}
.y30_c00317{bottom:89.773500px;}
.y2f_c00317{bottom:91.648500px;}
.y2e_c00317{bottom:96.298500px;}
.y2d_c00317{bottom:99.898500px;}
.y2c_c00317{bottom:113.250000px;}
.y2b_c00317{bottom:135.148500px;}
.y2a_c00317{bottom:142.723500px;}
.y29_c00317{bottom:155.323500px;}
.y28_c00317{bottom:157.500000px;}
.y27_c00317{bottom:178.048500px;}
.y26_c00317{bottom:199.198500px;}
.y25_c00317{bottom:199.648500px;}
.y24_c00317{bottom:201.073500px;}
.y23_c00317{bottom:222.298500px;}
.y22_c00317{bottom:243.898500px;}
.y21_c00317{bottom:265.875000px;}
.y20_c00317{bottom:287.848500px;}
.y1f_c00317{bottom:309.448500px;}
.y1e_c00317{bottom:331.723500px;}
.y1d_c00317{bottom:352.650000px;}
.y1c_c00317{bottom:374.625000px;}
.y1b_c00317{bottom:396.223500px;}
.y1a_c00317{bottom:418.125000px;}
.y19_c00317{bottom:440.098500px;}
.y18_c00317{bottom:461.323500px;}
.y17_c00317{bottom:482.923500px;}
.y16_c00317{bottom:504.223500px;}
.y15_c00317{bottom:526.125000px;}
.y13_c00317{bottom:547.423500px;}
.y14_c00317{bottom:548.473500px;}
.y12_c00317{bottom:568.273500px;}
.y11_c00317{bottom:590.923500px;}
.y10_c00317{bottom:612.898500px;}
.yf_c00317{bottom:634.125000px;}
.ye_c00317{bottom:656.473500px;}
.yd_c00317{bottom:674.473500px;}
.yc_c00317{bottom:699.298500px;}
.yb_c00317{bottom:720.898500px;}
.ya_c00317{bottom:742.875000px;}
.y9_c00317{bottom:764.098500px;}
.y8_c00317{bottom:785.698500px;}
.y7_c00317{bottom:807.300000px;}
.y4_c00317{bottom:887.175000px;}
.y5_c00317{bottom:890.848500px;}
.y6_c00317{bottom:894.073500px;}
.y1_c00317{bottom:1088.775000px;}
.y3_c00317{bottom:1097.098500px;}
.y2_c00317{bottom:1103.400000px;}
.h2_c00317{height:58.886719px;}
.h1_c00317{height:60.468750px;}
.h5_c00317{height:64.743164px;}
.h7_c00317{height:66.515625px;}
.h4_c00317{height:70.664062px;}
.h6_c00317{height:82.441406px;}
.h3_c00317{height:162.703125px;}
.h0_c00317{height:1174.500000px;}
.w0_c00317{width:731.977200px;}
.w1_c00317{width:732.000000px;}
.x0_c00317{left:0.000000px;}
.x10_c00317{left:51.490200px;}
.xf_c00317{left:52.540200px;}
.xc_c00317{left:53.590200px;}
.xa_c00317{left:55.390200px;}
.x9_c00317{left:58.315200px;}
.x8_c00317{left:59.740200px;}
.x4_c00317{left:61.165200px;}
.x14_c00317{left:74.515200px;}
.x1_c00317{left:79.915200px;}
.x15_c00317{left:82.765200px;}
.xd_c00317{left:83.890200px;}
.xb_c00317{left:85.313700px;}
.x7_c00317{left:89.590200px;}
.x2_c00317{left:109.765200px;}
.x16_c00317{left:190.388700px;}
.x17_c00317{left:223.165200px;}
.x3_c00317{left:283.690200px;}
.x5_c00317{left:409.690200px;}
.x18_c00317{left:553.315200px;}
.x6_c00317{left:555.790200px;}
.x11_c00317{left:562.690200px;}
.x13_c00317{left:597.940200px;}
.x12_c00317{left:632.140200px;}
.xe_c00317{left:656.290200px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls0_c00317{letter-spacing:0.000000pt;}
.ws0_c00317{word-spacing:0.000000pt;}
.fs0_c00317{font-size:53.333333pt;}
.fs3_c00317{font-size:58.666667pt;}
.fs2_c00317{font-size:64.000000pt;}
.fs4_c00317{font-size:74.666667pt;}
.fs1_c00317{font-size:138.666667pt;}
.y0_c00317{bottom:0.000000pt;}
.y30_c00317{bottom:79.798667pt;}
.y2f_c00317{bottom:81.465333pt;}
.y2e_c00317{bottom:85.598667pt;}
.y2d_c00317{bottom:88.798667pt;}
.y2c_c00317{bottom:100.666667pt;}
.y2b_c00317{bottom:120.132000pt;}
.y2a_c00317{bottom:126.865333pt;}
.y29_c00317{bottom:138.065333pt;}
.y28_c00317{bottom:140.000000pt;}
.y27_c00317{bottom:158.265333pt;}
.y26_c00317{bottom:177.065333pt;}
.y25_c00317{bottom:177.465333pt;}
.y24_c00317{bottom:178.732000pt;}
.y23_c00317{bottom:197.598667pt;}
.y22_c00317{bottom:216.798667pt;}
.y21_c00317{bottom:236.333333pt;}
.y20_c00317{bottom:255.865333pt;}
.y1f_c00317{bottom:275.065333pt;}
.y1e_c00317{bottom:294.865333pt;}
.y1d_c00317{bottom:313.466667pt;}
.y1c_c00317{bottom:333.000000pt;}
.y1b_c00317{bottom:352.198667pt;}
.y1a_c00317{bottom:371.666667pt;}
.y19_c00317{bottom:391.198667pt;}
.y18_c00317{bottom:410.065333pt;}
.y17_c00317{bottom:429.265333pt;}
.y16_c00317{bottom:448.198667pt;}
.y15_c00317{bottom:467.666667pt;}
.y13_c00317{bottom:486.598667pt;}
.y14_c00317{bottom:487.532000pt;}
.y12_c00317{bottom:505.132000pt;}
.y11_c00317{bottom:525.265333pt;}
.y10_c00317{bottom:544.798667pt;}
.yf_c00317{bottom:563.666667pt;}
.ye_c00317{bottom:583.532000pt;}
.yd_c00317{bottom:599.532000pt;}
.yc_c00317{bottom:621.598667pt;}
.yb_c00317{bottom:640.798667pt;}
.ya_c00317{bottom:660.333333pt;}
.y9_c00317{bottom:679.198667pt;}
.y8_c00317{bottom:698.398667pt;}
.y7_c00317{bottom:717.600000pt;}
.y4_c00317{bottom:788.600000pt;}
.y5_c00317{bottom:791.865333pt;}
.y6_c00317{bottom:794.732000pt;}
.y1_c00317{bottom:967.800000pt;}
.y3_c00317{bottom:975.198667pt;}
.y2_c00317{bottom:980.800000pt;}
.h2_c00317{height:52.343750pt;}
.h1_c00317{height:53.750000pt;}
.h5_c00317{height:57.549479pt;}
.h7_c00317{height:59.125000pt;}
.h4_c00317{height:62.812500pt;}
.h6_c00317{height:73.281250pt;}
.h3_c00317{height:144.625000pt;}
.h0_c00317{height:1044.000000pt;}
.w0_c00317{width:650.646400pt;}
.w1_c00317{width:650.666667pt;}
.x0_c00317{left:0.000000pt;}
.x10_c00317{left:45.769067pt;}
.xf_c00317{left:46.702400pt;}
.xc_c00317{left:47.635733pt;}
.xa_c00317{left:49.235733pt;}
.x9_c00317{left:51.835733pt;}
.x8_c00317{left:53.102400pt;}
.x4_c00317{left:54.369067pt;}
.x14_c00317{left:66.235733pt;}
.x1_c00317{left:71.035733pt;}
.x15_c00317{left:73.569067pt;}
.xd_c00317{left:74.569067pt;}
.xb_c00317{left:75.834400pt;}
.x7_c00317{left:79.635733pt;}
.x2_c00317{left:97.569067pt;}
.x16_c00317{left:169.234400pt;}
.x17_c00317{left:198.369067pt;}
.x3_c00317{left:252.169067pt;}
.x5_c00317{left:364.169067pt;}
.x18_c00317{left:491.835733pt;}
.x6_c00317{left:494.035733pt;}
.x11_c00317{left:500.169067pt;}
.x13_c00317{left:531.502400pt;}
.x12_c00317{left:561.902400pt;}
.xe_c00317{left:583.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_902b51813ea652a6b38b5a51.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00318;src:url('chunks/assets/font_f932a0b5ed1151b69a3a43d3.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00318{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0_c00318{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00318{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00318{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00318{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00318{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00318{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00318{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00318{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00318{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00318{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00318{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c00318{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00318{color:transparent;}
.fs0_c00318{font-size:60.000000px;}
.fs1_c00318{font-size:72.000000px;}
.y0_c00318{bottom:0.000000px;}
.y30_c00318{bottom:73.948500px;}
.y2f_c00318{bottom:94.875000px;}
.y2e_c00318{bottom:115.723500px;}
.y2d_c00318{bottom:136.573500px;}
.y2c_c00318{bottom:156.448500px;}
.y2b_c00318{bottom:177.298500px;}
.y2a_c00318{bottom:198.523500px;}
.y29_c00318{bottom:219.073500px;}
.y28_c00318{bottom:239.250000px;}
.y27_c00318{bottom:260.098500px;}
.y26_c00318{bottom:280.650000px;}
.y25_c00318{bottom:301.125000px;}
.y24_c00318{bottom:322.798500px;}
.y23_c00318{bottom:341.848500px;}
.y22_c00318{bottom:365.250000px;}
.y21_c00318{bottom:386.098500px;}
.y20_c00318{bottom:406.948500px;}
.y1f_c00318{bottom:426.823500px;}
.y1e_c00318{bottom:449.098500px;}
.y1d_c00318{bottom:470.698500px;}
.y1c_c00318{bottom:491.923500px;}
.y1b_c00318{bottom:513.523500px;}
.y1a_c00318{bottom:534.750000px;}
.y19_c00318{bottom:556.348500px;}
.y18_c00318{bottom:577.273500px;}
.y17_c00318{bottom:599.173500px;}
.y16_c00318{bottom:620.473500px;}
.y15_c00318{bottom:642.000000px;}
.y14_c00318{bottom:663.673500px;}
.y13_c00318{bottom:685.198500px;}
.y12_c00318{bottom:706.798500px;}
.y11_c00318{bottom:728.098500px;}
.y10_c00318{bottom:749.700000px;}
.yf_c00318{bottom:770.925000px;}
.ye_c00318{bottom:792.525000px;}
.yd_c00318{bottom:814.500000px;}
.yc_c00318{bottom:835.425000px;}
.yb_c00318{bottom:858.750000px;}
.ya_c00318{bottom:878.925000px;}
.y9_c00318{bottom:899.848500px;}
.y8_c00318{bottom:920.698500px;}
.y7_c00318{bottom:941.925000px;}
.y6_c00318{bottom:963.525000px;}
.y5_c00318{bottom:984.448500px;}
.y4_c00318{bottom:1005.675000px;}
.y3_c00318{bottom:1058.175000px;}
.y1_c00318{bottom:1064.698500px;}
.y2_c00318{bottom:1072.125000px;}
.h1_c00318{height:60.468750px;}
.h2_c00318{height:70.664062px;}
.h0_c00318{height:1174.500000px;}
.w0_c00318{width:731.977200px;}
.w1_c00318{width:732.000000px;}
.x0_c00318{left:0.000000px;}
.x8_c00318{left:51.790200px;}
.x7_c00318{left:52.915200px;}
.x5_c00318{left:54.340200px;}
.x4_c00318{left:56.140200px;}
.xa_c00318{left:57.190200px;}
.xb_c00318{left:58.315200px;}
.x9_c00318{left:82.765200px;}
.x6_c00318{left:86.365200px;}
.x1_c00318{left:270.340200px;}
.x2_c00318{left:463.990200px;}
.x3_c00318{left:627.115200px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls0_c00318{letter-spacing:0.000000pt;}
.ws0_c00318{word-spacing:0.000000pt;}
.fs0_c00318{font-size:53.333333pt;}
.fs1_c00318{font-size:64.000000pt;}
.y0_c00318{bottom:0.000000pt;}
.y30_c00318{bottom:65.732000pt;}
.y2f_c00318{bottom:84.333333pt;}
.y2e_c00318{bottom:102.865333pt;}
.y2d_c00318{bottom:121.398667pt;}
.y2c_c00318{bottom:139.065333pt;}
.y2b_c00318{bottom:157.598667pt;}
.y2a_c00318{bottom:176.465333pt;}
.y29_c00318{bottom:194.732000pt;}
.y28_c00318{bottom:212.666667pt;}
.y27_c00318{bottom:231.198667pt;}
.y26_c00318{bottom:249.466667pt;}
.y25_c00318{bottom:267.666667pt;}
.y24_c00318{bottom:286.932000pt;}
.y23_c00318{bottom:303.865333pt;}
.y22_c00318{bottom:324.666667pt;}
.y21_c00318{bottom:343.198667pt;}
.y20_c00318{bottom:361.732000pt;}
.y1f_c00318{bottom:379.398667pt;}
.y1e_c00318{bottom:399.198667pt;}
.y1d_c00318{bottom:418.398667pt;}
.y1c_c00318{bottom:437.265333pt;}
.y1b_c00318{bottom:456.465333pt;}
.y1a_c00318{bottom:475.333333pt;}
.y19_c00318{bottom:494.532000pt;}
.y18_c00318{bottom:513.132000pt;}
.y17_c00318{bottom:532.598667pt;}
.y16_c00318{bottom:551.532000pt;}
.y15_c00318{bottom:570.666667pt;}
.y14_c00318{bottom:589.932000pt;}
.y13_c00318{bottom:609.065333pt;}
.y12_c00318{bottom:628.265333pt;}
.y11_c00318{bottom:647.198667pt;}
.y10_c00318{bottom:666.400000pt;}
.yf_c00318{bottom:685.266667pt;}
.ye_c00318{bottom:704.466667pt;}
.yd_c00318{bottom:724.000000pt;}
.yc_c00318{bottom:742.600000pt;}
.yb_c00318{bottom:763.333333pt;}
.ya_c00318{bottom:781.266667pt;}
.y9_c00318{bottom:799.865333pt;}
.y8_c00318{bottom:818.398667pt;}
.y7_c00318{bottom:837.266667pt;}
.y6_c00318{bottom:856.466667pt;}
.y5_c00318{bottom:875.065333pt;}
.y4_c00318{bottom:893.933333pt;}
.y3_c00318{bottom:940.600000pt;}
.y1_c00318{bottom:946.398667pt;}
.y2_c00318{bottom:953.000000pt;}
.h1_c00318{height:53.750000pt;}
.h2_c00318{height:62.812500pt;}
.h0_c00318{height:1044.000000pt;}
.w0_c00318{width:650.646400pt;}
.w1_c00318{width:650.666667pt;}
.x0_c00318{left:0.000000pt;}
.x8_c00318{left:46.035733pt;}
.x7_c00318{left:47.035733pt;}
.x5_c00318{left:48.302400pt;}
.x4_c00318{left:49.902400pt;}
.xa_c00318{left:50.835733pt;}
.xb_c00318{left:51.835733pt;}
.x9_c00318{left:73.569067pt;}
.x6_c00318{left:76.769067pt;}
.x1_c00318{left:240.302400pt;}
.x2_c00318{left:412.435733pt;}
.x3_c00318{left:557.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ae276956868b82021817738.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00319;src:url('chunks/assets/font_b4851464f24d880ea02b8f21.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00319;src:url('chunks/assets/font_f575192cb7ccebce28862bcb.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00319;src:url('chunks/assets/font_de784336e9c6d1fde90834ed.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00319{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4_c00319{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0_c00319{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10_c00319{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c00319{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00319{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c00319{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c00319{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3_c00319{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00319{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00319{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00319{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00319{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00319{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00319{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00319{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00319{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00319{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00319{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00319{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.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;}
}
.ws0_c00319{word-spacing:0.000000px;}
.fc0_c00319{color:transparent;}
.fs1_c00319{font-size:60.000000px;}
.fs0_c00319{font-size:66.000000px;}
.fs2_c00319{font-size:72.000000px;}
.fs3_c00319{font-size:84.000000px;}
.y0_c00319{bottom:0.000000px;}
.y24_c00319{bottom:448.348500px;}
.y23_c00319{bottom:450.523500px;}
.y22_c00319{bottom:450.898500px;}
.y21_c00319{bottom:479.698500px;}
.y20_c00319{bottom:527.625000px;}
.y1f_c00319{bottom:573.298500px;}
.y1e_c00319{bottom:592.423500px;}
.y1d_c00319{bottom:614.698500px;}
.y1c_c00319{bottom:616.198500px;}
.y1b_c00319{bottom:634.125000px;}
.y1a_c00319{bottom:636.673500px;}
.y19_c00319{bottom:659.323500px;}
.y18_c00319{bottom:680.923500px;}
.y17_c00319{bottom:702.148500px;}
.y16_c00319{bottom:724.125000px;}
.y15_c00319{bottom:745.723500px;}
.y14_c00319{bottom:767.700000px;}
.y13_c00319{bottom:789.300000px;}
.y12_c00319{bottom:810.525000px;}
.y11_c00319{bottom:831.823500px;}
.y10_c00319{bottom:852.300000px;}
.yf_c00319{bottom:874.948500px;}
.ye_c00319{bottom:896.625000px;}
.yd_c00319{bottom:918.525000px;}
.yc_c00319{bottom:940.500000px;}
.yb_c00319{bottom:962.098500px;}
.y9_c00319{bottom:977.925000px;}
.ya_c00319{bottom:983.698500px;}
.y7_c00319{bottom:996.300000px;}
.y8_c00319{bottom:1003.198500px;}
.y4_c00319{bottom:1018.275000px;}
.y5_c00319{bottom:1021.875000px;}
.y6_c00319{bottom:1026.598500px;}
.y1_c00319{bottom:1074.448500px;}
.y3_c00319{bottom:1082.323500px;}
.y2_c00319{bottom:1088.848500px;}
.h2_c00319{height:58.886719px;}
.h7_c00319{height:60.468750px;}
.h1_c00319{height:68.835938px;}
.h6_c00319{height:70.628906px;}
.h3_c00319{height:70.664062px;}
.h4_c00319{height:75.093750px;}
.h5_c00319{height:82.441406px;}
.h0_c00319{height:1174.500000px;}
.w0_c00319{width:731.977200px;}
.w1_c00319{width:732.000000px;}
.x0_c00319{left:0.000000px;}
.x17_c00319{left:49.690200px;}
.x15_c00319{left:51.115200px;}
.x11_c00319{left:53.965200px;}
.x10_c00319{left:55.090200px;}
.xe_c00319{left:56.890200px;}
.xd_c00319{left:57.940200px;}
.xb_c00319{left:59.740200px;}
.x7_c00319{left:62.965200px;}
.x8_c00319{left:64.090200px;}
.x4_c00319{left:73.765200px;}
.x18_c00319{left:75.563700px;}
.x13_c00319{left:82.390200px;}
.x1_c00319{left:83.890200px;}
.x12_c00319{left:85.313700px;}
.xf_c00319{left:88.165200px;}
.xc_c00319{left:89.965200px;}
.x9_c00319{left:91.765200px;}
.x2_c00319{left:110.890200px;}
.xa_c00319{left:144.715200px;}
.x16_c00319{left:153.715200px;}
.x5_c00319{left:191.513700px;}
.x6_c00319{left:199.388700px;}
.x1a_c00319{left:277.540200px;}
.x3_c00319{left:286.540200px;}
.x1b_c00319{left:376.538700px;}
.x19_c00319{left:380.140200px;}
.x1c_c00319{left:440.965200px;}
.x14_c00319{left:652.690200px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls0_c00319{letter-spacing:0.000000pt;}
.ws0_c00319{word-spacing:0.000000pt;}
.fs1_c00319{font-size:53.333333pt;}
.fs0_c00319{font-size:58.666667pt;}
.fs2_c00319{font-size:64.000000pt;}
.fs3_c00319{font-size:74.666667pt;}
.y0_c00319{bottom:0.000000pt;}
.y24_c00319{bottom:398.532000pt;}
.y23_c00319{bottom:400.465333pt;}
.y22_c00319{bottom:400.798667pt;}
.y21_c00319{bottom:426.398667pt;}
.y20_c00319{bottom:469.000000pt;}
.y1f_c00319{bottom:509.598667pt;}
.y1e_c00319{bottom:526.598667pt;}
.y1d_c00319{bottom:546.398667pt;}
.y1c_c00319{bottom:547.732000pt;}
.y1b_c00319{bottom:563.666667pt;}
.y1a_c00319{bottom:565.932000pt;}
.y19_c00319{bottom:586.065333pt;}
.y18_c00319{bottom:605.265333pt;}
.y17_c00319{bottom:624.132000pt;}
.y16_c00319{bottom:643.666667pt;}
.y15_c00319{bottom:662.865333pt;}
.y14_c00319{bottom:682.400000pt;}
.y13_c00319{bottom:701.600000pt;}
.y12_c00319{bottom:720.466667pt;}
.y11_c00319{bottom:739.398667pt;}
.y10_c00319{bottom:757.600000pt;}
.yf_c00319{bottom:777.732000pt;}
.ye_c00319{bottom:797.000000pt;}
.yd_c00319{bottom:816.466667pt;}
.yc_c00319{bottom:836.000000pt;}
.yb_c00319{bottom:855.198667pt;}
.y9_c00319{bottom:869.266667pt;}
.ya_c00319{bottom:874.398667pt;}
.y7_c00319{bottom:885.600000pt;}
.y8_c00319{bottom:891.732000pt;}
.y4_c00319{bottom:905.133333pt;}
.y5_c00319{bottom:908.333333pt;}
.y6_c00319{bottom:912.532000pt;}
.y1_c00319{bottom:955.065333pt;}
.y3_c00319{bottom:962.065333pt;}
.y2_c00319{bottom:967.865333pt;}
.h2_c00319{height:52.343750pt;}
.h7_c00319{height:53.750000pt;}
.h1_c00319{height:61.187500pt;}
.h6_c00319{height:62.781250pt;}
.h3_c00319{height:62.812500pt;}
.h4_c00319{height:66.750000pt;}
.h5_c00319{height:73.281250pt;}
.h0_c00319{height:1044.000000pt;}
.w0_c00319{width:650.646400pt;}
.w1_c00319{width:650.666667pt;}
.x0_c00319{left:0.000000pt;}
.x17_c00319{left:44.169067pt;}
.x15_c00319{left:45.435733pt;}
.x11_c00319{left:47.969067pt;}
.x10_c00319{left:48.969067pt;}
.xe_c00319{left:50.569067pt;}
.xd_c00319{left:51.502400pt;}
.xb_c00319{left:53.102400pt;}
.x7_c00319{left:55.969067pt;}
.x8_c00319{left:56.969067pt;}
.x4_c00319{left:65.569067pt;}
.x18_c00319{left:67.167733pt;}
.x13_c00319{left:73.235733pt;}
.x1_c00319{left:74.569067pt;}
.x12_c00319{left:75.834400pt;}
.xf_c00319{left:78.369067pt;}
.xc_c00319{left:79.969067pt;}
.x9_c00319{left:81.569067pt;}
.x2_c00319{left:98.569067pt;}
.xa_c00319{left:128.635733pt;}
.x16_c00319{left:136.635733pt;}
.x5_c00319{left:170.234400pt;}
.x6_c00319{left:177.234400pt;}
.x1a_c00319{left:246.702400pt;}
.x3_c00319{left:254.702400pt;}
.x1b_c00319{left:334.701067pt;}
.x19_c00319{left:337.902400pt;}
.x1c_c00319{left:391.969067pt;}
.x14_c00319{left:580.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_edc9fb4aae1204e08661cb2e.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00320;src:url('chunks/assets/font_788b92464c0b5a03c839a27a.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00320;src:url('chunks/assets/font_5dc5288ebd01de920e02672f.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00320;src:url('chunks/assets/font_e12b31fce1e809442dcbaff2.woff2')format("woff");}.ff4_c00320{font-family:ff4_c00320;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00320{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m3_c00320{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2_c00320{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m16_c00320{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m0_c00320{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c00320{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c00320{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c00320{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00320{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00320{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c00320{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c00320{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00320{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00320{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00320{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c00320{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m18_c00320{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00320{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m17_c00320{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c00320{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m14_c00320{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m15_c00320{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m7_c00320{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mb_c00320{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m1_c00320{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.ls0_c00320{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00320{color:transparent;}
.fs0_c00320{font-size:60.000000px;}
.fs4_c00320{font-size:66.000000px;}
.fs1_c00320{font-size:72.000000px;}
.fs3_c00320{font-size:84.000000px;}
.fs2_c00320{font-size:150.000000px;}
.y0_c00320{bottom:0.000000px;}
.y31_c00320{bottom:99.223500px;}
.y30_c00320{bottom:120.448500px;}
.y2e_c00320{bottom:140.625000px;}
.y2f_c00320{bottom:143.098500px;}
.y2d_c00320{bottom:160.348500px;}
.y2c_c00320{bottom:182.323500px;}
.y28_c00320{bottom:201.448500px;}
.y29_c00320{bottom:202.198500px;}
.y2a_c00320{bottom:203.625000px;}
.y2b_c00320{bottom:206.473500px;}
.y26_c00320{bottom:223.423500px;}
.y27_c00320{bottom:226.273500px;}
.y23_c00320{bottom:243.898500px;}
.y24_c00320{bottom:244.273500px;}
.y25_c00320{bottom:244.648500px;}
.y22_c00320{bottom:265.125000px;}
.y21_c00320{bottom:286.048500px;}
.y20_c00320{bottom:307.275000px;}
.y1f_c00320{bottom:327.823500px;}
.y1e_c00320{bottom:349.723500px;}
.y1d_c00320{bottom:370.573500px;}
.y1c_c00320{bottom:391.500000px;}
.y1b_c00320{bottom:412.723500px;}
.y1a_c00320{bottom:433.648500px;}
.y19_c00320{bottom:454.875000px;}
.y18_c00320{bottom:476.473500px;}
.y17_c00320{bottom:498.073500px;}
.y16_c00320{bottom:519.298500px;}
.y15_c00320{bottom:540.223500px;}
.y14_c00320{bottom:541.273500px;}
.y13_c00320{bottom:541.648500px;}
.y12_c00320{bottom:563.250000px;}
.y11_c00320{bottom:583.423500px;}
.y10_c00320{bottom:604.948500px;}
.yf_c00320{bottom:626.548500px;}
.ye_c00320{bottom:640.273500px;}
.yd_c00320{bottom:647.848500px;}
.yc_c00320{bottom:669.375000px;}
.yb_c00320{bottom:690.673500px;}
.ya_c00320{bottom:709.048500px;}
.y9_c00320{bottom:709.723500px;}
.y8_c00320{bottom:713.023500px;}
.y7_c00320{bottom:714.450000px;}
.y6_c00320{bottom:835.723500px;}
.y5_c00320{bottom:839.323500px;}
.y4_c00320{bottom:841.875000px;}
.y3_c00320{bottom:1086.300000px;}
.y2_c00320{bottom:1090.650000px;}
.y1_c00320{bottom:1091.698500px;}
.h1_c00320{height:60.468750px;}
.h7_c00320{height:64.743164px;}
.h6_c00320{height:64.775391px;}
.h5_c00320{height:70.664062px;}
.h2_c00320{height:72.562500px;}
.h4_c00320{height:82.441406px;}
.h3_c00320{height:156.445312px;}
.h0_c00320{height:1174.500000px;}
.w0_c00320{width:731.977200px;}
.w1_c00320{width:732.000000px;}
.x0_c00320{left:0.000000px;}
.x10_c00320{left:70.165200px;}
.xb_c00320{left:71.590200px;}
.x4_c00320{left:74.890200px;}
.x13_c00320{left:102.190200px;}
.xd_c00320{left:103.690200px;}
.x7_c00320{left:104.740200px;}
.x8_c00320{left:132.490200px;}
.x15_c00320{left:162.715200px;}
.xe_c00320{left:239.365200px;}
.x1_c00320{left:287.965200px;}
.x11_c00320{left:289.765200px;}
.xf_c00320{left:314.290200px;}
.x12_c00320{left:349.165200px;}
.x16_c00320{left:362.140200px;}
.x5_c00320{left:431.288700px;}
.x2_c00320{left:487.090200px;}
.x6_c00320{left:575.290200px;}
.x9_c00320{left:577.390200px;}
.x18_c00320{left:579.190200px;}
.x14_c00320{left:582.490200px;}
.xa_c00320{left:623.515200px;}
.x3_c00320{left:650.140200px;}
.xc_c00320{left:661.990200px;}
.x17_c00320{left:666.340200px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls0_c00320{letter-spacing:0.000000pt;}
.ws0_c00320{word-spacing:0.000000pt;}
.fs0_c00320{font-size:53.333333pt;}
.fs4_c00320{font-size:58.666667pt;}
.fs1_c00320{font-size:64.000000pt;}
.fs3_c00320{font-size:74.666667pt;}
.fs2_c00320{font-size:133.333333pt;}
.y0_c00320{bottom:0.000000pt;}
.y31_c00320{bottom:88.198667pt;}
.y30_c00320{bottom:107.065333pt;}
.y2e_c00320{bottom:125.000000pt;}
.y2f_c00320{bottom:127.198667pt;}
.y2d_c00320{bottom:142.532000pt;}
.y2c_c00320{bottom:162.065333pt;}
.y28_c00320{bottom:179.065333pt;}
.y29_c00320{bottom:179.732000pt;}
.y2a_c00320{bottom:181.000000pt;}
.y2b_c00320{bottom:183.532000pt;}
.y26_c00320{bottom:198.598667pt;}
.y27_c00320{bottom:201.132000pt;}
.y23_c00320{bottom:216.798667pt;}
.y24_c00320{bottom:217.132000pt;}
.y25_c00320{bottom:217.465333pt;}
.y22_c00320{bottom:235.666667pt;}
.y21_c00320{bottom:254.265333pt;}
.y20_c00320{bottom:273.133333pt;}
.y1f_c00320{bottom:291.398667pt;}
.y1e_c00320{bottom:310.865333pt;}
.y1d_c00320{bottom:329.398667pt;}
.y1c_c00320{bottom:348.000000pt;}
.y1b_c00320{bottom:366.865333pt;}
.y1a_c00320{bottom:385.465333pt;}
.y19_c00320{bottom:404.333333pt;}
.y18_c00320{bottom:423.532000pt;}
.y17_c00320{bottom:442.732000pt;}
.y16_c00320{bottom:461.598667pt;}
.y15_c00320{bottom:480.198667pt;}
.y14_c00320{bottom:481.132000pt;}
.y13_c00320{bottom:481.465333pt;}
.y12_c00320{bottom:500.666667pt;}
.y11_c00320{bottom:518.598667pt;}
.y10_c00320{bottom:537.732000pt;}
.yf_c00320{bottom:556.932000pt;}
.ye_c00320{bottom:569.132000pt;}
.yd_c00320{bottom:575.865333pt;}
.yc_c00320{bottom:595.000000pt;}
.yb_c00320{bottom:613.932000pt;}
.ya_c00320{bottom:630.265333pt;}
.y9_c00320{bottom:630.865333pt;}
.y8_c00320{bottom:633.798667pt;}
.y7_c00320{bottom:635.066667pt;}
.y6_c00320{bottom:742.865333pt;}
.y5_c00320{bottom:746.065333pt;}
.y4_c00320{bottom:748.333333pt;}
.y3_c00320{bottom:965.600000pt;}
.y2_c00320{bottom:969.466667pt;}
.y1_c00320{bottom:970.398667pt;}
.h1_c00320{height:53.750000pt;}
.h7_c00320{height:57.549479pt;}
.h6_c00320{height:57.578125pt;}
.h5_c00320{height:62.812500pt;}
.h2_c00320{height:64.500000pt;}
.h4_c00320{height:73.281250pt;}
.h3_c00320{height:139.062500pt;}
.h0_c00320{height:1044.000000pt;}
.w0_c00320{width:650.646400pt;}
.w1_c00320{width:650.666667pt;}
.x0_c00320{left:0.000000pt;}
.x10_c00320{left:62.369067pt;}
.xb_c00320{left:63.635733pt;}
.x4_c00320{left:66.569067pt;}
.x13_c00320{left:90.835733pt;}
.xd_c00320{left:92.169067pt;}
.x7_c00320{left:93.102400pt;}
.x8_c00320{left:117.769067pt;}
.x15_c00320{left:144.635733pt;}
.xe_c00320{left:212.769067pt;}
.x1_c00320{left:255.969067pt;}
.x11_c00320{left:257.569067pt;}
.xf_c00320{left:279.369067pt;}
.x12_c00320{left:310.369067pt;}
.x16_c00320{left:321.902400pt;}
.x5_c00320{left:383.367733pt;}
.x2_c00320{left:432.969067pt;}
.x6_c00320{left:511.369067pt;}
.x9_c00320{left:513.235733pt;}
.x18_c00320{left:514.835733pt;}
.x14_c00320{left:517.769067pt;}
.xa_c00320{left:554.235733pt;}
.x3_c00320{left:577.902400pt;}
.xc_c00320{left:588.435733pt;}
.x17_c00320{left:592.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c399ecfd723000353f816521.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00321{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m8_c00321{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma_c00321{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.mc_c00321{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb_c00321{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m17_c00321{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00321{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c00321{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00321{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16_c00321{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c00321{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00321{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c00321{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00321{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00321{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3_c00321{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00321{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00321{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00321{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c00321{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c00321{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c00321{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c00321{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.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;}
}
.ws0_c00321{word-spacing:0.000000px;}
.fc0_c00321{color:transparent;}
.fs0_c00321{font-size:60.000000px;}
.fs2_c00321{font-size:66.000000px;}
.fs1_c00321{font-size:72.000000px;}
.y0_c00321{bottom:0.000000px;}
.y3a_c00321{bottom:100.273500px;}
.y39_c00321{bottom:117.523500px;}
.y38_c00321{bottom:138.823500px;}
.y37_c00321{bottom:162.148500px;}
.y36_c00321{bottom:182.698500px;}
.y35_c00321{bottom:207.523500px;}
.y34_c00321{bottom:226.948500px;}
.y33_c00321{bottom:249.298500px;}
.y32_c00321{bottom:271.275000px;}
.y31_c00321{bottom:293.250000px;}
.y30_c00321{bottom:314.848500px;}
.y2f_c00321{bottom:336.448500px;}
.y2e_c00321{bottom:358.348500px;}
.y2d_c00321{bottom:380.323500px;}
.y2c_c00321{bottom:405.150000px;}
.y2b_c00321{bottom:423.898500px;}
.y2a_c00321{bottom:445.875000px;}
.y29_c00321{bottom:467.773500px;}
.y28_c00321{bottom:489.073500px;}
.y27_c00321{bottom:490.500000px;}
.y26_c00321{bottom:511.348500px;}
.y25_c00321{bottom:532.648500px;}
.y24_c00321{bottom:533.698500px;}
.y23_c00321{bottom:554.548500px;}
.y22_c00321{bottom:576.523500px;}
.y21_c00321{bottom:598.125000px;}
.y20_c00321{bottom:620.098500px;}
.y1f_c00321{bottom:642.073500px;}
.y1e_c00321{bottom:663.598500px;}
.y1d_c00321{bottom:685.273500px;}
.y1c_c00321{bottom:707.250000px;}
.y1b_c00321{bottom:728.848500px;}
.y1a_c00321{bottom:750.450000px;}
.y19_c00321{bottom:772.050000px;}
.y18_c00321{bottom:793.650000px;}
.y17_c00321{bottom:814.875000px;}
.y16_c00321{bottom:836.098500px;}
.y15_c00321{bottom:855.598500px;}
.y14_c00321{bottom:878.550000px;}
.y13_c00321{bottom:900.525000px;}
.y12_c00321{bottom:921.823500px;}
.yb_c00321{bottom:935.098500px;}
.yd_c00321{bottom:935.775000px;}
.yc_c00321{bottom:935.848500px;}
.ye_c00321{bottom:936.525000px;}
.ya_c00321{bottom:936.900000px;}
.yf_c00321{bottom:940.500000px;}
.y10_c00321{bottom:944.473500px;}
.y11_c00321{bottom:946.948500px;}
.y9_c00321{bottom:965.698500px;}
.y6_c00321{bottom:978.000000px;}
.y7_c00321{bottom:981.223500px;}
.y8_c00321{bottom:988.050000px;}
.y5_c00321{bottom:1007.473500px;}
.y3_c00321{bottom:1023.675000px;}
.y4_c00321{bottom:1032.598500px;}
.y2_c00321{bottom:1047.823500px;}
.y3b_c00321{bottom:1093.500000px;}
.y1_c00321{bottom:1103.925000px;}
.h1_c00321{height:58.886719px;}
.h3_c00321{height:64.775391px;}
.h2_c00321{height:70.664062px;}
.h0_c00321{height:1174.500000px;}
.w0_c00321{width:731.977200px;}
.w1_c00321{width:732.000000px;}
.x0_c00321{left:0.000000px;}
.x12_c00321{left:32.365200px;}
.x11_c00321{left:33.490200px;}
.x10_c00321{left:34.540200px;}
.x4_c00321{left:35.963700px;}
.x13_c00321{left:37.090200px;}
.x2_c00321{left:38.140200px;}
.x16_c00321{left:39.190200px;}
.x17_c00321{left:40.690200px;}
.x8_c00321{left:44.590200px;}
.x9_c00321{left:52.915200px;}
.xa_c00321{left:54.340200px;}
.x18_c00321{left:57.565200px;}
.xb_c00321{left:64.090200px;}
.x15_c00321{left:68.365200px;}
.xc_c00321{left:70.165200px;}
.xd_c00321{left:71.290200px;}
.x7_c00321{left:86.365200px;}
.x5_c00321{left:167.740200px;}
.x6_c00321{left:178.540200px;}
.x1_c00321{left:257.365200px;}
.x14_c00321{left:298.765200px;}
.xe_c00321{left:352.090200px;}
.x3_c00321{left:370.765200px;}
.xf_c00321{left:447.490200px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls0_c00321{letter-spacing:0.000000pt;}
.ws0_c00321{word-spacing:0.000000pt;}
.fs0_c00321{font-size:53.333333pt;}
.fs2_c00321{font-size:58.666667pt;}
.fs1_c00321{font-size:64.000000pt;}
.y0_c00321{bottom:0.000000pt;}
.y3a_c00321{bottom:89.132000pt;}
.y39_c00321{bottom:104.465333pt;}
.y38_c00321{bottom:123.398667pt;}
.y37_c00321{bottom:144.132000pt;}
.y36_c00321{bottom:162.398667pt;}
.y35_c00321{bottom:184.465333pt;}
.y34_c00321{bottom:201.732000pt;}
.y33_c00321{bottom:221.598667pt;}
.y32_c00321{bottom:241.133333pt;}
.y31_c00321{bottom:260.666667pt;}
.y30_c00321{bottom:279.865333pt;}
.y2f_c00321{bottom:299.065333pt;}
.y2e_c00321{bottom:318.532000pt;}
.y2d_c00321{bottom:338.065333pt;}
.y2c_c00321{bottom:360.133333pt;}
.y2b_c00321{bottom:376.798667pt;}
.y2a_c00321{bottom:396.333333pt;}
.y29_c00321{bottom:415.798667pt;}
.y28_c00321{bottom:434.732000pt;}
.y27_c00321{bottom:436.000000pt;}
.y26_c00321{bottom:454.532000pt;}
.y25_c00321{bottom:473.465333pt;}
.y24_c00321{bottom:474.398667pt;}
.y23_c00321{bottom:492.932000pt;}
.y22_c00321{bottom:512.465333pt;}
.y21_c00321{bottom:531.666667pt;}
.y20_c00321{bottom:551.198667pt;}
.y1f_c00321{bottom:570.732000pt;}
.y1e_c00321{bottom:589.865333pt;}
.y1d_c00321{bottom:609.132000pt;}
.y1c_c00321{bottom:628.666667pt;}
.y1b_c00321{bottom:647.865333pt;}
.y1a_c00321{bottom:667.066667pt;}
.y19_c00321{bottom:686.266667pt;}
.y18_c00321{bottom:705.466667pt;}
.y17_c00321{bottom:724.333333pt;}
.y16_c00321{bottom:743.198667pt;}
.y15_c00321{bottom:760.532000pt;}
.y14_c00321{bottom:780.933333pt;}
.y13_c00321{bottom:800.466667pt;}
.y12_c00321{bottom:819.398667pt;}
.yb_c00321{bottom:831.198667pt;}
.yd_c00321{bottom:831.800000pt;}
.yc_c00321{bottom:831.865333pt;}
.ye_c00321{bottom:832.466667pt;}
.ya_c00321{bottom:832.800000pt;}
.yf_c00321{bottom:836.000000pt;}
.y10_c00321{bottom:839.532000pt;}
.y11_c00321{bottom:841.732000pt;}
.y9_c00321{bottom:858.398667pt;}
.y6_c00321{bottom:869.333333pt;}
.y7_c00321{bottom:872.198667pt;}
.y8_c00321{bottom:878.266667pt;}
.y5_c00321{bottom:895.532000pt;}
.y3_c00321{bottom:909.933333pt;}
.y4_c00321{bottom:917.865333pt;}
.y2_c00321{bottom:931.398667pt;}
.y3b_c00321{bottom:972.000000pt;}
.y1_c00321{bottom:981.266667pt;}
.h1_c00321{height:52.343750pt;}
.h3_c00321{height:57.578125pt;}
.h2_c00321{height:62.812500pt;}
.h0_c00321{height:1044.000000pt;}
.w0_c00321{width:650.646400pt;}
.w1_c00321{width:650.666667pt;}
.x0_c00321{left:0.000000pt;}
.x12_c00321{left:28.769067pt;}
.x11_c00321{left:29.769067pt;}
.x10_c00321{left:30.702400pt;}
.x4_c00321{left:31.967733pt;}
.x13_c00321{left:32.969067pt;}
.x2_c00321{left:33.902400pt;}
.x16_c00321{left:34.835733pt;}
.x17_c00321{left:36.169067pt;}
.x8_c00321{left:39.635733pt;}
.x9_c00321{left:47.035733pt;}
.xa_c00321{left:48.302400pt;}
.x18_c00321{left:51.169067pt;}
.xb_c00321{left:56.969067pt;}
.x15_c00321{left:60.769067pt;}
.xc_c00321{left:62.369067pt;}
.xd_c00321{left:63.369067pt;}
.x7_c00321{left:76.769067pt;}
.x5_c00321{left:149.102400pt;}
.x6_c00321{left:158.702400pt;}
.x1_c00321{left:228.769067pt;}
.x14_c00321{left:265.569067pt;}
.xe_c00321{left:312.969067pt;}
.x3_c00321{left:329.569067pt;}
.xf_c00321{left:397.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_463798fae680ad7d2cd808ca.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00322;src:url('chunks/assets/font_20155b0c8696d817e3cef10f.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00322;src:url('chunks/assets/font_e50d2e2a51517a01acb83c26.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00322{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m8_c00322{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00322{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c00322{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00322{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00322{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2_c00322{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00322{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00322{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1_c00322{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00322{color:transparent;}
.fs0_c00322{font-size:54.000000px;}
.fs4_c00322{font-size:60.000000px;}
.fs1_c00322{font-size:66.000000px;}
.fs2_c00322{font-size:72.000000px;}
.fs3_c00322{font-size:78.000000px;}
.y0_c00322{bottom:0.000000px;}
.yb_c00322{bottom:846.900000px;}
.ya_c00322{bottom:875.698500px;}
.y9_c00322{bottom:918.525000px;}
.y8_c00322{bottom:963.150000px;}
.y7_c00322{bottom:984.750000px;}
.y6_c00322{bottom:1006.050000px;}
.y5_c00322{bottom:1006.348500px;}
.y4_c00322{bottom:1027.650000px;}
.y3_c00322{bottom:1086.300000px;}
.y1_c00322{bottom:1087.425000px;}
.y2_c00322{bottom:1098.750000px;}
.h1_c00322{height:54.421875px;}
.h5_c00322{height:58.886719px;}
.h2_c00322{height:66.515625px;}
.h3_c00322{height:70.664062px;}
.h4_c00322{height:76.514648px;}
.h0_c00322{height:1174.500000px;}
.w0_c00322{width:731.977200px;}
.w1_c00322{width:732.000000px;}
.x0_c00322{left:0.000000px;}
.x5_c00322{left:48.565200px;}
.x8_c00322{left:81.340200px;}
.x4_c00322{left:87.115200px;}
.xa_c00322{left:290.515200px;}
.x1_c00322{left:295.540200px;}
.x6_c00322{left:327.190200px;}
.x7_c00322{left:328.990200px;}
.x9_c00322{left:399.190200px;}
.x2_c00322{left:463.990200px;}
.x3_c00322{left:627.115200px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls0_c00322{letter-spacing:0.000000pt;}
.ws0_c00322{word-spacing:0.000000pt;}
.fs0_c00322{font-size:48.000000pt;}
.fs4_c00322{font-size:53.333333pt;}
.fs1_c00322{font-size:58.666667pt;}
.fs2_c00322{font-size:64.000000pt;}
.fs3_c00322{font-size:69.333333pt;}
.y0_c00322{bottom:0.000000pt;}
.yb_c00322{bottom:752.800000pt;}
.ya_c00322{bottom:778.398667pt;}
.y9_c00322{bottom:816.466667pt;}
.y8_c00322{bottom:856.133333pt;}
.y7_c00322{bottom:875.333333pt;}
.y6_c00322{bottom:894.266667pt;}
.y5_c00322{bottom:894.532000pt;}
.y4_c00322{bottom:913.466667pt;}
.y3_c00322{bottom:965.600000pt;}
.y1_c00322{bottom:966.600000pt;}
.y2_c00322{bottom:976.666667pt;}
.h1_c00322{height:48.375000pt;}
.h5_c00322{height:52.343750pt;}
.h2_c00322{height:59.125000pt;}
.h3_c00322{height:62.812500pt;}
.h4_c00322{height:68.013021pt;}
.h0_c00322{height:1044.000000pt;}
.w0_c00322{width:650.646400pt;}
.w1_c00322{width:650.666667pt;}
.x0_c00322{left:0.000000pt;}
.x5_c00322{left:43.169067pt;}
.x8_c00322{left:72.302400pt;}
.x4_c00322{left:77.435733pt;}
.xa_c00322{left:258.235733pt;}
.x1_c00322{left:262.702400pt;}
.x6_c00322{left:290.835733pt;}
.x7_c00322{left:292.435733pt;}
.x9_c00322{left:354.835733pt;}
.x2_c00322{left:412.435733pt;}
.x3_c00322{left:557.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2378abe9dfe899dde519caf7.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00323;src:url('chunks/assets/font_98bd1bc94d66f35543da28e0.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00323{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.md_c00323{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00323{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00323{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00323{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c00323{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00323{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00323{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00323{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00323{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00323{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00323{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00323{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2_c00323{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.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;}
}
.ws0_c00323{word-spacing:0.000000px;}
.fc0_c00323{color:transparent;}
.fs0_c00323{font-size:60.000000px;}
.fs2_c00323{font-size:72.000000px;}
.fs1_c00323{font-size:156.000000px;}
.y0_c00323{bottom:0.000000px;}
.y20_c00323{bottom:103.125000px;}
.y1f_c00323{bottom:122.923500px;}
.y1e_c00323{bottom:145.648500px;}
.y1d_c00323{bottom:167.548500px;}
.y1c_c00323{bottom:189.223500px;}
.y1b_c00323{bottom:211.500000px;}
.y1a_c00323{bottom:233.098500px;}
.y19_c00323{bottom:259.048500px;}
.y18_c00323{bottom:277.048500px;}
.y17_c00323{bottom:298.650000px;}
.y16_c00323{bottom:320.548500px;}
.y15_c00323{bottom:342.150000px;}
.y14_c00323{bottom:364.125000px;}
.y13_c00323{bottom:385.723500px;}
.y12_c00323{bottom:407.698500px;}
.y11_c00323{bottom:430.048500px;}
.y10_c00323{bottom:451.648500px;}
.yf_c00323{bottom:473.250000px;}
.ye_c00323{bottom:494.848500px;}
.yd_c00323{bottom:516.448500px;}
.yc_c00323{bottom:537.298500px;}
.yb_c00323{bottom:559.648500px;}
.ya_c00323{bottom:581.250000px;}
.y9_c00323{bottom:603.148500px;}
.y8_c00323{bottom:625.125000px;}
.y7_c00323{bottom:646.723500px;}
.y6_c00323{bottom:668.323500px;}
.y5_c00323{bottom:689.625000px;}
.y4_c00323{bottom:711.898500px;}
.y3_c00323{bottom:784.648500px;}
.y2_c00323{bottom:899.098500px;}
.y21_c00323{bottom:1091.698500px;}
.y1_c00323{bottom:1103.550000px;}
.h1_c00323{height:58.886719px;}
.h4_c00323{height:62.578125px;}
.h3_c00323{height:70.664062px;}
.h2_c00323{height:153.105469px;}
.h0_c00323{height:1174.500000px;}
.w0_c00323{width:731.977200px;}
.w1_c00323{width:732.000000px;}
.x0_c00323{left:0.000000px;}
.x2_c00323{left:31.315200px;}
.x5_c00323{left:32.740200px;}
.x6_c00323{left:33.790200px;}
.x7_c00323{left:37.090200px;}
.x9_c00323{left:38.140200px;}
.xa_c00323{left:39.565200px;}
.xb_c00323{left:40.690200px;}
.xd_c00323{left:42.115200px;}
.xf_c00323{left:50.365200px;}
.x4_c00323{left:63.715200px;}
.x8_c00323{left:66.565200px;}
.xc_c00323{left:72.715200px;}
.xe_c00323{left:74.140200px;}
.x1_c00323{left:251.965200px;}
.x3_c00323{left:273.940200px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls0_c00323{letter-spacing:0.000000pt;}
.ws0_c00323{word-spacing:0.000000pt;}
.fs0_c00323{font-size:53.333333pt;}
.fs2_c00323{font-size:64.000000pt;}
.fs1_c00323{font-size:138.666667pt;}
.y0_c00323{bottom:0.000000pt;}
.y20_c00323{bottom:91.666667pt;}
.y1f_c00323{bottom:109.265333pt;}
.y1e_c00323{bottom:129.465333pt;}
.y1d_c00323{bottom:148.932000pt;}
.y1c_c00323{bottom:168.198667pt;}
.y1b_c00323{bottom:188.000000pt;}
.y1a_c00323{bottom:207.198667pt;}
.y19_c00323{bottom:230.265333pt;}
.y18_c00323{bottom:246.265333pt;}
.y17_c00323{bottom:265.466667pt;}
.y16_c00323{bottom:284.932000pt;}
.y15_c00323{bottom:304.133333pt;}
.y14_c00323{bottom:323.666667pt;}
.y13_c00323{bottom:342.865333pt;}
.y12_c00323{bottom:362.398667pt;}
.y11_c00323{bottom:382.265333pt;}
.y10_c00323{bottom:401.465333pt;}
.yf_c00323{bottom:420.666667pt;}
.ye_c00323{bottom:439.865333pt;}
.yd_c00323{bottom:459.065333pt;}
.yc_c00323{bottom:477.598667pt;}
.yb_c00323{bottom:497.465333pt;}
.ya_c00323{bottom:516.666667pt;}
.y9_c00323{bottom:536.132000pt;}
.y8_c00323{bottom:555.666667pt;}
.y7_c00323{bottom:574.865333pt;}
.y6_c00323{bottom:594.065333pt;}
.y5_c00323{bottom:613.000000pt;}
.y4_c00323{bottom:632.798667pt;}
.y3_c00323{bottom:697.465333pt;}
.y2_c00323{bottom:799.198667pt;}
.y21_c00323{bottom:970.398667pt;}
.y1_c00323{bottom:980.933333pt;}
.h1_c00323{height:52.343750pt;}
.h4_c00323{height:55.625000pt;}
.h3_c00323{height:62.812500pt;}
.h2_c00323{height:136.093750pt;}
.h0_c00323{height:1044.000000pt;}
.w0_c00323{width:650.646400pt;}
.w1_c00323{width:650.666667pt;}
.x0_c00323{left:0.000000pt;}
.x2_c00323{left:27.835733pt;}
.x5_c00323{left:29.102400pt;}
.x6_c00323{left:30.035733pt;}
.x7_c00323{left:32.969067pt;}
.x9_c00323{left:33.902400pt;}
.xa_c00323{left:35.169067pt;}
.xb_c00323{left:36.169067pt;}
.xd_c00323{left:37.435733pt;}
.xf_c00323{left:44.769067pt;}
.x4_c00323{left:56.635733pt;}
.x8_c00323{left:59.169067pt;}
.xc_c00323{left:64.635733pt;}
.xe_c00323{left:65.902400pt;}
.x1_c00323{left:223.969067pt;}
.x3_c00323{left:243.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b596724b00da5b4734071168.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00324;src:url('chunks/assets/font_e79ea205a1d700ff10103f60.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00324{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2_c00324{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.me_c00324{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00324{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m10_c00324{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5_c00324{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00324{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00324{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00324{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00324{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00324{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00324{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00324{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00324{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00324{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00324{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00324{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00324{color:transparent;}
.fs0_c00324{font-size:60.000000px;}
.fs1_c00324{font-size:72.000000px;}
.fs2_c00324{font-size:114.000000px;}
.y0_c00324{bottom:0.000000px;}
.y35_c00324{bottom:92.323500px;}
.y34_c00324{bottom:113.548500px;}
.y33_c00324{bottom:134.473500px;}
.y32_c00324{bottom:154.273500px;}
.y31_c00324{bottom:175.500000px;}
.y30_c00324{bottom:194.625000px;}
.y2f_c00324{bottom:216.223500px;}
.y2e_c00324{bottom:237.000000px;}
.y2d_c00324{bottom:257.625000px;}
.y2c_c00324{bottom:278.098500px;}
.y2b_c00324{bottom:299.323500px;}
.y2a_c00324{bottom:319.875000px;}
.y29_c00324{bottom:341.098500px;}
.y28_c00324{bottom:362.025000px;}
.y27_c00324{bottom:383.625000px;}
.y26_c00324{bottom:404.775000px;}
.y25_c00324{bottom:425.698500px;}
.y24_c00324{bottom:446.625000px;}
.y23_c00324{bottom:468.223500px;}
.y22_c00324{bottom:489.823500px;}
.y21_c00324{bottom:511.348500px;}
.y20_c00324{bottom:532.648500px;}
.y1f_c00324{bottom:554.548500px;}
.y1e_c00324{bottom:575.098500px;}
.y1d_c00324{bottom:596.398500px;}
.y1c_c00324{bottom:617.625000px;}
.y1b_c00324{bottom:638.848500px;}
.y1a_c00324{bottom:660.073500px;}
.y19_c00324{bottom:682.723500px;}
.y18_c00324{bottom:702.898500px;}
.y17_c00324{bottom:724.500000px;}
.y16_c00324{bottom:745.798500px;}
.y15_c00324{bottom:767.325000px;}
.y14_c00324{bottom:788.625000px;}
.y13_c00324{bottom:808.348500px;}
.y12_c00324{bottom:808.800000px;}
.y11_c00324{bottom:811.275000px;}
.y10_c00324{bottom:834.675000px;}
.yf_c00324{bottom:853.425000px;}
.ye_c00324{bottom:855.900000px;}
.yd_c00324{bottom:874.948500px;}
.yc_c00324{bottom:895.875000px;}
.yb_c00324{bottom:916.723500px;}
.ya_c00324{bottom:938.698500px;}
.y9_c00324{bottom:958.800000px;}
.y8_c00324{bottom:980.775000px;}
.y7_c00324{bottom:1001.698500px;}
.y6_c00324{bottom:1021.875000px;}
.y5_c00324{bottom:1024.425000px;}
.y4_c00324{bottom:1026.150000px;}
.y3_c00324{bottom:1078.348500px;}
.y1_c00324{bottom:1082.698500px;}
.y2_c00324{bottom:1091.323500px;}
.h1_c00324{height:60.468750px;}
.h3_c00324{height:70.664062px;}
.h2_c00324{height:72.562500px;}
.h4_c00324{height:111.884766px;}
.h0_c00324{height:1174.500000px;}
.w0_c00324{width:731.977200px;}
.w1_c00324{width:732.000000px;}
.x0_c00324{left:0.000000px;}
.x7_c00324{left:57.190200px;}
.xc_c00324{left:58.690200px;}
.xe_c00324{left:60.115200px;}
.x10_c00324{left:61.540200px;}
.x11_c00324{left:62.590200px;}
.x13_c00324{left:63.715200px;}
.x14_c00324{left:64.765200px;}
.x16_c00324{left:66.190200px;}
.x4_c00324{left:88.915200px;}
.xd_c00324{left:90.340200px;}
.xf_c00324{left:91.765200px;}
.x12_c00324{left:96.490200px;}
.x15_c00324{left:97.915200px;}
.x8_c00324{left:116.590200px;}
.x9_c00324{left:136.090200px;}
.x5_c00324{left:263.890200px;}
.x1_c00324{left:270.715200px;}
.x6_c00324{left:288.715200px;}
.x2_c00324{left:465.790200px;}
.xa_c00324{left:506.140200px;}
.xb_c00324{left:532.765200px;}
.x3_c00324{left:627.490200px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls0_c00324{letter-spacing:0.000000pt;}
.ws0_c00324{word-spacing:0.000000pt;}
.fs0_c00324{font-size:53.333333pt;}
.fs1_c00324{font-size:64.000000pt;}
.fs2_c00324{font-size:101.333333pt;}
.y0_c00324{bottom:0.000000pt;}
.y35_c00324{bottom:82.065333pt;}
.y34_c00324{bottom:100.932000pt;}
.y33_c00324{bottom:119.532000pt;}
.y32_c00324{bottom:137.132000pt;}
.y31_c00324{bottom:156.000000pt;}
.y30_c00324{bottom:173.000000pt;}
.y2f_c00324{bottom:192.198667pt;}
.y2e_c00324{bottom:210.666667pt;}
.y2d_c00324{bottom:229.000000pt;}
.y2c_c00324{bottom:247.198667pt;}
.y2b_c00324{bottom:266.065333pt;}
.y2a_c00324{bottom:284.333333pt;}
.y29_c00324{bottom:303.198667pt;}
.y28_c00324{bottom:321.800000pt;}
.y27_c00324{bottom:341.000000pt;}
.y26_c00324{bottom:359.800000pt;}
.y25_c00324{bottom:378.398667pt;}
.y24_c00324{bottom:397.000000pt;}
.y23_c00324{bottom:416.198667pt;}
.y22_c00324{bottom:435.398667pt;}
.y21_c00324{bottom:454.532000pt;}
.y20_c00324{bottom:473.465333pt;}
.y1f_c00324{bottom:492.932000pt;}
.y1e_c00324{bottom:511.198667pt;}
.y1d_c00324{bottom:530.132000pt;}
.y1c_c00324{bottom:549.000000pt;}
.y1b_c00324{bottom:567.865333pt;}
.y1a_c00324{bottom:586.732000pt;}
.y19_c00324{bottom:606.865333pt;}
.y18_c00324{bottom:624.798667pt;}
.y17_c00324{bottom:644.000000pt;}
.y16_c00324{bottom:662.932000pt;}
.y15_c00324{bottom:682.066667pt;}
.y14_c00324{bottom:701.000000pt;}
.y13_c00324{bottom:718.532000pt;}
.y12_c00324{bottom:718.933333pt;}
.y11_c00324{bottom:721.133333pt;}
.y10_c00324{bottom:741.933333pt;}
.yf_c00324{bottom:758.600000pt;}
.ye_c00324{bottom:760.800000pt;}
.yd_c00324{bottom:777.732000pt;}
.yc_c00324{bottom:796.333333pt;}
.yb_c00324{bottom:814.865333pt;}
.ya_c00324{bottom:834.398667pt;}
.y9_c00324{bottom:852.266667pt;}
.y8_c00324{bottom:871.800000pt;}
.y7_c00324{bottom:890.398667pt;}
.y6_c00324{bottom:908.333333pt;}
.y5_c00324{bottom:910.600000pt;}
.y4_c00324{bottom:912.133333pt;}
.y3_c00324{bottom:958.532000pt;}
.y1_c00324{bottom:962.398667pt;}
.y2_c00324{bottom:970.065333pt;}
.h1_c00324{height:53.750000pt;}
.h3_c00324{height:62.812500pt;}
.h2_c00324{height:64.500000pt;}
.h4_c00324{height:99.453125pt;}
.h0_c00324{height:1044.000000pt;}
.w0_c00324{width:650.646400pt;}
.w1_c00324{width:650.666667pt;}
.x0_c00324{left:0.000000pt;}
.x7_c00324{left:50.835733pt;}
.xc_c00324{left:52.169067pt;}
.xe_c00324{left:53.435733pt;}
.x10_c00324{left:54.702400pt;}
.x11_c00324{left:55.635733pt;}
.x13_c00324{left:56.635733pt;}
.x14_c00324{left:57.569067pt;}
.x16_c00324{left:58.835733pt;}
.x4_c00324{left:79.035733pt;}
.xd_c00324{left:80.302400pt;}
.xf_c00324{left:81.569067pt;}
.x12_c00324{left:85.769067pt;}
.x15_c00324{left:87.035733pt;}
.x8_c00324{left:103.635733pt;}
.x9_c00324{left:120.969067pt;}
.x5_c00324{left:234.569067pt;}
.x1_c00324{left:240.635733pt;}
.x6_c00324{left:256.635733pt;}
.x2_c00324{left:414.035733pt;}
.xa_c00324{left:449.902400pt;}
.xb_c00324{left:473.569067pt;}
.x3_c00324{left:557.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_122ae8a99b3235fe59424bcd.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00325;src:url('chunks/assets/font_3cc89c7c4b75e713fc802161.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00325;src:url('chunks/assets/font_66d0c78be6fa72ea5a2fa323.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00325;src:url('chunks/assets/font_e946cd9fddce8dcfdb5a7797.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00325{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mf_c00325{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.md_c00325{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1_c00325{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c00325{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8_c00325{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5_c00325{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c00325{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c00325{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4_c00325{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00325{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c00325{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c00325{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me_c00325{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00325{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00325{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00325{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.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;}
}
.ws0_c00325{word-spacing:0.000000px;}
.fc0_c00325{color:transparent;}
.fs0_c00325{font-size:60.000000px;}
.fs2_c00325{font-size:72.000000px;}
.fs3_c00325{font-size:84.000000px;}
.fs1_c00325{font-size:90.000000px;}
.y0_c00325{bottom:0.000000px;}
.y30_c00325{bottom:59.923500px;}
.y2f_c00325{bottom:93.375000px;}
.y2e_c00325{bottom:105.973500px;}
.y2d_c00325{bottom:128.323500px;}
.y2c_c00325{bottom:130.500000px;}
.y2b_c00325{bottom:152.848500px;}
.y2a_c00325{bottom:175.875000px;}
.y29_c00325{bottom:198.898500px;}
.y28_c00325{bottom:222.298500px;}
.y27_c00325{bottom:252.148500px;}
.y26_c00325{bottom:268.798500px;}
.y25_c00325{bottom:292.500000px;}
.y24_c00325{bottom:315.223500px;}
.y23_c00325{bottom:338.548500px;}
.y22_c00325{bottom:365.548500px;}
.y21_c00325{bottom:384.973500px;}
.y20_c00325{bottom:408.375000px;}
.y1f_c00325{bottom:431.473500px;}
.y1e_c00325{bottom:454.875000px;}
.y1d_c00325{bottom:477.523500px;}
.y1c_c00325{bottom:501.298500px;}
.y1b_c00325{bottom:523.573500px;}
.y1a_c00325{bottom:546.598500px;}
.y19_c00325{bottom:569.698500px;}
.y18_c00325{bottom:592.723500px;}
.y17_c00325{bottom:615.750000px;}
.y16_c00325{bottom:638.848500px;}
.y14_c00325{bottom:662.250000px;}
.y15_c00325{bottom:662.923500px;}
.y13_c00325{bottom:685.273500px;}
.y12_c00325{bottom:707.923500px;}
.y11_c00325{bottom:731.023500px;}
.y10_c00325{bottom:753.973500px;}
.yf_c00325{bottom:777.375000px;}
.ye_c00325{bottom:800.400000px;}
.yd_c00325{bottom:823.800000px;}
.yc_c00325{bottom:845.473500px;}
.yb_c00325{bottom:867.750000px;}
.ya_c00325{bottom:890.098500px;}
.y9_c00325{bottom:913.125000px;}
.y8_c00325{bottom:932.550000px;}
.y7_c00325{bottom:959.175000px;}
.y6_c00325{bottom:982.948500px;}
.y5_c00325{bottom:1001.025000px;}
.y4_c00325{bottom:1027.650000px;}
.y3_c00325{bottom:1050.675000px;}
.y2_c00325{bottom:1072.650000px;}
.y31_c00325{bottom:1121.550000px;}
.y1_c00325{bottom:1132.050000px;}
.h1_c00325{height:58.886719px;}
.h3_c00325{height:70.628906px;}
.h5_c00325{height:75.093750px;}
.h4_c00325{height:84.656250px;}
.h2_c00325{height:88.330078px;}
.h0_c00325{height:1174.500000px;}
.w0_c00325{width:731.977200px;}
.w1_c00325{width:732.000000px;}
.x0_c00325{left:0.000000px;}
.xa_c00325{left:26.963700px;}
.x9_c00325{left:28.765200px;}
.x6_c00325{left:29.890200px;}
.x8_c00325{left:30.940200px;}
.x5_c00325{left:31.990200px;}
.x3_c00325{left:34.915200px;}
.x2_c00325{left:37.090200px;}
.x10_c00325{left:58.315200px;}
.xb_c00325{left:61.915200px;}
.xe_c00325{left:62.965200px;}
.x7_c00325{left:64.390200px;}
.x4_c00325{left:65.890200px;}
.xd_c00325{left:204.490200px;}
.x1_c00325{left:271.765200px;}
.xf_c00325{left:597.190200px;}
.xc_c00325{left:680.365200px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls0_c00325{letter-spacing:0.000000pt;}
.ws0_c00325{word-spacing:0.000000pt;}
.fs0_c00325{font-size:53.333333pt;}
.fs2_c00325{font-size:64.000000pt;}
.fs3_c00325{font-size:74.666667pt;}
.fs1_c00325{font-size:80.000000pt;}
.y0_c00325{bottom:0.000000pt;}
.y30_c00325{bottom:53.265333pt;}
.y2f_c00325{bottom:83.000000pt;}
.y2e_c00325{bottom:94.198667pt;}
.y2d_c00325{bottom:114.065333pt;}
.y2c_c00325{bottom:116.000000pt;}
.y2b_c00325{bottom:135.865333pt;}
.y2a_c00325{bottom:156.333333pt;}
.y29_c00325{bottom:176.798667pt;}
.y28_c00325{bottom:197.598667pt;}
.y27_c00325{bottom:224.132000pt;}
.y26_c00325{bottom:238.932000pt;}
.y25_c00325{bottom:260.000000pt;}
.y24_c00325{bottom:280.198667pt;}
.y23_c00325{bottom:300.932000pt;}
.y22_c00325{bottom:324.932000pt;}
.y21_c00325{bottom:342.198667pt;}
.y20_c00325{bottom:363.000000pt;}
.y1f_c00325{bottom:383.532000pt;}
.y1e_c00325{bottom:404.333333pt;}
.y1d_c00325{bottom:424.465333pt;}
.y1c_c00325{bottom:445.598667pt;}
.y1b_c00325{bottom:465.398667pt;}
.y1a_c00325{bottom:485.865333pt;}
.y19_c00325{bottom:506.398667pt;}
.y18_c00325{bottom:526.865333pt;}
.y17_c00325{bottom:547.333333pt;}
.y16_c00325{bottom:567.865333pt;}
.y14_c00325{bottom:588.666667pt;}
.y15_c00325{bottom:589.265333pt;}
.y13_c00325{bottom:609.132000pt;}
.y12_c00325{bottom:629.265333pt;}
.y11_c00325{bottom:649.798667pt;}
.y10_c00325{bottom:670.198667pt;}
.yf_c00325{bottom:691.000000pt;}
.ye_c00325{bottom:711.466667pt;}
.yd_c00325{bottom:732.266667pt;}
.yc_c00325{bottom:751.532000pt;}
.yb_c00325{bottom:771.333333pt;}
.ya_c00325{bottom:791.198667pt;}
.y9_c00325{bottom:811.666667pt;}
.y8_c00325{bottom:828.933333pt;}
.y7_c00325{bottom:852.600000pt;}
.y6_c00325{bottom:873.732000pt;}
.y5_c00325{bottom:889.800000pt;}
.y4_c00325{bottom:913.466667pt;}
.y3_c00325{bottom:933.933333pt;}
.y2_c00325{bottom:953.466667pt;}
.y31_c00325{bottom:996.933333pt;}
.y1_c00325{bottom:1006.266667pt;}
.h1_c00325{height:52.343750pt;}
.h3_c00325{height:62.781250pt;}
.h5_c00325{height:66.750000pt;}
.h4_c00325{height:75.250000pt;}
.h2_c00325{height:78.515625pt;}
.h0_c00325{height:1044.000000pt;}
.w0_c00325{width:650.646400pt;}
.w1_c00325{width:650.666667pt;}
.x0_c00325{left:0.000000pt;}
.xa_c00325{left:23.967733pt;}
.x9_c00325{left:25.569067pt;}
.x6_c00325{left:26.569067pt;}
.x8_c00325{left:27.502400pt;}
.x5_c00325{left:28.435733pt;}
.x3_c00325{left:31.035733pt;}
.x2_c00325{left:32.969067pt;}
.x10_c00325{left:51.835733pt;}
.xb_c00325{left:55.035733pt;}
.xe_c00325{left:55.969067pt;}
.x7_c00325{left:57.235733pt;}
.x4_c00325{left:58.569067pt;}
.xd_c00325{left:181.769067pt;}
.x1_c00325{left:241.569067pt;}
.xf_c00325{left:530.835733pt;}
.xc_c00325{left:604.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_47fec7ef073d979cfbc3d5bb.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00326;src:url('chunks/assets/font_51a5ac005c88794a12f6b67b.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00326{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m0_c00326{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me_c00326{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00326{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00326{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00326{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00326{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00326{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00326{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00326{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00326{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00326{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00326{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3_c00326{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c00326{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00326{color:transparent;}
.fs0_c00326{font-size:60.000000px;}
.fs2_c00326{font-size:66.000000px;}
.fs1_c00326{font-size:72.000000px;}
.y0_c00326{bottom:0.000000px;}
.y32_c00326{bottom:101.323500px;}
.y31_c00326{bottom:122.625000px;}
.y30_c00326{bottom:140.923500px;}
.y2f_c00326{bottom:163.273500px;}
.y2d_c00326{bottom:183.823500px;}
.y2e_c00326{bottom:189.223500px;}
.y2c_c00326{bottom:202.875000px;}
.y2b_c00326{bottom:224.848500px;}
.y2a_c00326{bottom:245.698500px;}
.y29_c00326{bottom:266.548500px;}
.y28_c00326{bottom:287.473500px;}
.y27_c00326{bottom:308.323500px;}
.y26_c00326{bottom:329.250000px;}
.y25_c00326{bottom:350.473500px;}
.y24_c00326{bottom:371.698500px;}
.y23_c00326{bottom:392.625000px;}
.y22_c00326{bottom:413.848500px;}
.y21_c00326{bottom:435.073500px;}
.y20_c00326{bottom:456.298500px;}
.y1f_c00326{bottom:477.898500px;}
.y1e_c00326{bottom:499.500000px;}
.y1d_c00326{bottom:520.723500px;}
.y1c_c00326{bottom:542.023500px;}
.y1b_c00326{bottom:563.250000px;}
.y1a_c00326{bottom:584.473500px;}
.y19_c00326{bottom:605.698500px;}
.y18_c00326{bottom:626.923500px;}
.y17_c00326{bottom:649.648500px;}
.y16_c00326{bottom:669.823500px;}
.y15_c00326{bottom:691.048500px;}
.y14_c00326{bottom:712.273500px;}
.y13_c00326{bottom:736.723500px;}
.y12_c00326{bottom:754.798500px;}
.y11_c00326{bottom:776.698500px;}
.y10_c00326{bottom:797.925000px;}
.yf_c00326{bottom:819.223500px;}
.ye_c00326{bottom:841.125000px;}
.yd_c00326{bottom:862.723500px;}
.yc_c00326{bottom:886.125000px;}
.yb_c00326{bottom:904.875000px;}
.ya_c00326{bottom:925.723500px;}
.y9_c00326{bottom:946.948500px;}
.y8_c00326{bottom:967.500000px;}
.y7_c00326{bottom:995.625000px;}
.y6_c00326{bottom:1010.698500px;}
.y5_c00326{bottom:1031.925000px;}
.y4_c00326{bottom:1039.125000px;}
.y3_c00326{bottom:1086.598500px;}
.y2_c00326{bottom:1089.525000px;}
.y1_c00326{bottom:1091.400000px;}
.h1_c00326{height:60.468750px;}
.h3_c00326{height:66.515625px;}
.h2_c00326{height:70.664062px;}
.h0_c00326{height:1174.500000px;}
.w0_c00326{width:731.977200px;}
.w1_c00326{width:732.000000px;}
.x0_c00326{left:0.000000px;}
.x8_c00326{left:43.915200px;}
.xa_c00326{left:44.965200px;}
.x6_c00326{left:46.090200px;}
.x4_c00326{left:47.515200px;}
.x5_c00326{left:60.490200px;}
.xb_c00326{left:78.490200px;}
.x9_c00326{left:79.915200px;}
.x7_c00326{left:80.965200px;}
.x1_c00326{left:264.940200px;}
.x2_c00326{left:461.515200px;}
.x3_c00326{left:623.515200px;}
.xc_c00326{left:625.990200px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls0_c00326{letter-spacing:0.000000pt;}
.ws0_c00326{word-spacing:0.000000pt;}
.fs0_c00326{font-size:53.333333pt;}
.fs2_c00326{font-size:58.666667pt;}
.fs1_c00326{font-size:64.000000pt;}
.y0_c00326{bottom:0.000000pt;}
.y32_c00326{bottom:90.065333pt;}
.y31_c00326{bottom:109.000000pt;}
.y30_c00326{bottom:125.265333pt;}
.y2f_c00326{bottom:145.132000pt;}
.y2d_c00326{bottom:163.398667pt;}
.y2e_c00326{bottom:168.198667pt;}
.y2c_c00326{bottom:180.333333pt;}
.y2b_c00326{bottom:199.865333pt;}
.y2a_c00326{bottom:218.398667pt;}
.y29_c00326{bottom:236.932000pt;}
.y28_c00326{bottom:255.532000pt;}
.y27_c00326{bottom:274.065333pt;}
.y26_c00326{bottom:292.666667pt;}
.y25_c00326{bottom:311.532000pt;}
.y24_c00326{bottom:330.398667pt;}
.y23_c00326{bottom:349.000000pt;}
.y22_c00326{bottom:367.865333pt;}
.y21_c00326{bottom:386.732000pt;}
.y20_c00326{bottom:405.598667pt;}
.y1f_c00326{bottom:424.798667pt;}
.y1e_c00326{bottom:444.000000pt;}
.y1d_c00326{bottom:462.865333pt;}
.y1c_c00326{bottom:481.798667pt;}
.y1b_c00326{bottom:500.666667pt;}
.y1a_c00326{bottom:519.532000pt;}
.y19_c00326{bottom:538.398667pt;}
.y18_c00326{bottom:557.265333pt;}
.y17_c00326{bottom:577.465333pt;}
.y16_c00326{bottom:595.398667pt;}
.y15_c00326{bottom:614.265333pt;}
.y14_c00326{bottom:633.132000pt;}
.y13_c00326{bottom:654.865333pt;}
.y12_c00326{bottom:670.932000pt;}
.y11_c00326{bottom:690.398667pt;}
.y10_c00326{bottom:709.266667pt;}
.yf_c00326{bottom:728.198667pt;}
.ye_c00326{bottom:747.666667pt;}
.yd_c00326{bottom:766.865333pt;}
.yc_c00326{bottom:787.666667pt;}
.yb_c00326{bottom:804.333333pt;}
.ya_c00326{bottom:822.865333pt;}
.y9_c00326{bottom:841.732000pt;}
.y8_c00326{bottom:860.000000pt;}
.y7_c00326{bottom:885.000000pt;}
.y6_c00326{bottom:898.398667pt;}
.y5_c00326{bottom:917.266667pt;}
.y4_c00326{bottom:923.666667pt;}
.y3_c00326{bottom:965.865333pt;}
.y2_c00326{bottom:968.466667pt;}
.y1_c00326{bottom:970.133333pt;}
.h1_c00326{height:53.750000pt;}
.h3_c00326{height:59.125000pt;}
.h2_c00326{height:62.812500pt;}
.h0_c00326{height:1044.000000pt;}
.w0_c00326{width:650.646400pt;}
.w1_c00326{width:650.666667pt;}
.x0_c00326{left:0.000000pt;}
.x8_c00326{left:39.035733pt;}
.xa_c00326{left:39.969067pt;}
.x6_c00326{left:40.969067pt;}
.x4_c00326{left:42.235733pt;}
.x5_c00326{left:53.769067pt;}
.xb_c00326{left:69.769067pt;}
.x9_c00326{left:71.035733pt;}
.x7_c00326{left:71.969067pt;}
.x1_c00326{left:235.502400pt;}
.x2_c00326{left:410.235733pt;}
.x3_c00326{left:554.235733pt;}
.xc_c00326{left:556.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ad5ab655b96e746536497fc.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00327;src:url('chunks/assets/font_2aa5f09cd52b9bab5ac84f5c.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00327{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m1_c00327{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m4_c00327{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3_c00327{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md_c00327{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m18_c00327{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c00327{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m15_c00327{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6_c00327{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c00327{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c00327{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m17_c00327{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c00327{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c00327{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m19_c00327{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00327{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00327{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00327{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00327{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00327{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00327{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00327{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c00327{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00327{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00327{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c00327{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00327{vertical-align:0.000000px;}
.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;}
}
.ws0_c00327{word-spacing:0.000000px;}
.fc0_c00327{color:transparent;}
.fs0_c00327{font-size:36.000000px;}
.fs1_c00327{font-size:42.000000px;}
.fs2_c00327{font-size:60.000000px;}
.fs3_c00327{font-size:72.000000px;}
.fs5_c00327{font-size:78.000000px;}
.fs4_c00327{font-size:90.000000px;}
.y0_c00327{bottom:0.000000px;}
.y3b_c00327{bottom:92.323500px;}
.y3a_c00327{bottom:110.698500px;}
.y39_c00327{bottom:121.500000px;}
.y38_c00327{bottom:123.973500px;}
.y37_c00327{bottom:132.673500px;}
.y36_c00327{bottom:154.198500px;}
.y35_c00327{bottom:161.473500px;}
.y34_c00327{bottom:163.948500px;}
.y33_c00327{bottom:165.750000px;}
.y32_c00327{bottom:176.548500px;}
.y31_c00327{bottom:183.448500px;}
.y30_c00327{bottom:184.500000px;}
.y2f_c00327{bottom:206.473500px;}
.y2e_c00327{bottom:220.875000px;}
.y2d_c00327{bottom:242.848500px;}
.y2c_c00327{bottom:264.750000px;}
.y2b_c00327{bottom:286.723500px;}
.y2a_c00327{bottom:308.025000px;}
.y29_c00327{bottom:329.923500px;}
.y28_c00327{bottom:352.275000px;}
.y27_c00327{bottom:378.900000px;}
.y26_c00327{bottom:396.150000px;}
.y25_c00327{bottom:418.125000px;}
.y24_c00327{bottom:440.473500px;}
.y23_c00327{bottom:462.448500px;}
.y22_c00327{bottom:486.223500px;}
.y21_c00327{bottom:505.948500px;}
.y20_c00327{bottom:527.923500px;}
.y1f_c00327{bottom:550.273500px;}
.y1e_c00327{bottom:572.250000px;}
.y1d_c00327{bottom:593.848500px;}
.y1c_c00327{bottom:615.750000px;}
.y1b_c00327{bottom:637.048500px;}
.y1a_c00327{bottom:658.648500px;}
.y19_c00327{bottom:680.250000px;}
.y18_c00327{bottom:701.848500px;}
.y17_c00327{bottom:722.023500px;}
.y3_c00327{bottom:735.673500px;}
.y16_c00327{bottom:744.298500px;}
.y15_c00327{bottom:766.273500px;}
.y2_c00327{bottom:783.598500px;}
.y14_c00327{bottom:787.875000px;}
.y13_c00327{bottom:808.800000px;}
.y12_c00327{bottom:830.025000px;}
.y10_c00327{bottom:840.750000px;}
.y11_c00327{bottom:850.500000px;}
.yf_c00327{bottom:871.723500px;}
.ye_c00327{bottom:892.650000px;}
.yd_c00327{bottom:914.625000px;}
.yc_c00327{bottom:932.925000px;}
.yb_c00327{bottom:957.448500px;}
.y1_c00327{bottom:976.800000px;}
.ya_c00327{bottom:979.348500px;}
.y9_c00327{bottom:998.473500px;}
.y8_c00327{bottom:1021.500000px;}
.y7_c00327{bottom:1041.675000px;}
.y4_c00327{bottom:1091.025000px;}
.y6_c00327{bottom:1098.525000px;}
.y5_c00327{bottom:1105.050000px;}
.h1_c00327{height:35.332031px;}
.h3_c00327{height:37.546875px;}
.h2_c00327{height:41.220703px;}
.h4_c00327{height:58.886719px;}
.h5_c00327{height:70.664062px;}
.h7_c00327{height:76.552734px;}
.h6_c00327{height:88.330078px;}
.h0_c00327{height:1174.500000px;}
.w0_c00327{width:731.977200px;}
.w1_c00327{width:732.000000px;}
.x0_c00327{left:0.000000px;}
.x10_c00327{left:49.315200px;}
.x12_c00327{left:50.365200px;}
.xf_c00327{left:51.490200px;}
.xc_c00327{left:52.540200px;}
.xa_c00327{left:55.090200px;}
.x8_c00327{left:56.890200px;}
.xd_c00327{left:59.740200px;}
.x15_c00327{left:61.540200px;}
.x5_c00327{left:76.688700px;}
.x11_c00327{left:81.715200px;}
.xe_c00327{left:83.515200px;}
.xb_c00327{left:85.688700px;}
.x9_c00327{left:87.115200px;}
.x6_c00327{left:104.365200px;}
.x18_c00327{left:112.315200px;}
.x13_c00327{left:118.390200px;}
.x14_c00327{left:129.190200px;}
.x16_c00327{left:138.190200px;}
.x17_c00327{left:147.565200px;}
.x7_c00327{left:278.590200px;}
.x1_c00327{left:748.765200px;}
.x4_c00327{left:753.790200px;}
.x3_c00327{left:755.290200px;}
.x2_c00327{left:759.940200px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls0_c00327{letter-spacing:0.000000pt;}
.ws0_c00327{word-spacing:0.000000pt;}
.fs0_c00327{font-size:32.000000pt;}
.fs1_c00327{font-size:37.333333pt;}
.fs2_c00327{font-size:53.333333pt;}
.fs3_c00327{font-size:64.000000pt;}
.fs5_c00327{font-size:69.333333pt;}
.fs4_c00327{font-size:80.000000pt;}
.y0_c00327{bottom:0.000000pt;}
.y3b_c00327{bottom:82.065333pt;}
.y3a_c00327{bottom:98.398667pt;}
.y39_c00327{bottom:108.000000pt;}
.y38_c00327{bottom:110.198667pt;}
.y37_c00327{bottom:117.932000pt;}
.y36_c00327{bottom:137.065333pt;}
.y35_c00327{bottom:143.532000pt;}
.y34_c00327{bottom:145.732000pt;}
.y33_c00327{bottom:147.333333pt;}
.y32_c00327{bottom:156.932000pt;}
.y31_c00327{bottom:163.065333pt;}
.y30_c00327{bottom:164.000000pt;}
.y2f_c00327{bottom:183.532000pt;}
.y2e_c00327{bottom:196.333333pt;}
.y2d_c00327{bottom:215.865333pt;}
.y2c_c00327{bottom:235.333333pt;}
.y2b_c00327{bottom:254.865333pt;}
.y2a_c00327{bottom:273.800000pt;}
.y29_c00327{bottom:293.265333pt;}
.y28_c00327{bottom:313.133333pt;}
.y27_c00327{bottom:336.800000pt;}
.y26_c00327{bottom:352.133333pt;}
.y25_c00327{bottom:371.666667pt;}
.y24_c00327{bottom:391.532000pt;}
.y23_c00327{bottom:411.065333pt;}
.y22_c00327{bottom:432.198667pt;}
.y21_c00327{bottom:449.732000pt;}
.y20_c00327{bottom:469.265333pt;}
.y1f_c00327{bottom:489.132000pt;}
.y1e_c00327{bottom:508.666667pt;}
.y1d_c00327{bottom:527.865333pt;}
.y1c_c00327{bottom:547.333333pt;}
.y1b_c00327{bottom:566.265333pt;}
.y1a_c00327{bottom:585.465333pt;}
.y19_c00327{bottom:604.666667pt;}
.y18_c00327{bottom:623.865333pt;}
.y17_c00327{bottom:641.798667pt;}
.y3_c00327{bottom:653.932000pt;}
.y16_c00327{bottom:661.598667pt;}
.y15_c00327{bottom:681.132000pt;}
.y2_c00327{bottom:696.532000pt;}
.y14_c00327{bottom:700.333333pt;}
.y13_c00327{bottom:718.933333pt;}
.y12_c00327{bottom:737.800000pt;}
.y10_c00327{bottom:747.333333pt;}
.y11_c00327{bottom:756.000000pt;}
.yf_c00327{bottom:774.865333pt;}
.ye_c00327{bottom:793.466667pt;}
.yd_c00327{bottom:813.000000pt;}
.yc_c00327{bottom:829.266667pt;}
.yb_c00327{bottom:851.065333pt;}
.y1_c00327{bottom:868.266667pt;}
.ya_c00327{bottom:870.532000pt;}
.y9_c00327{bottom:887.532000pt;}
.y8_c00327{bottom:908.000000pt;}
.y7_c00327{bottom:925.933333pt;}
.y4_c00327{bottom:969.800000pt;}
.y6_c00327{bottom:976.466667pt;}
.y5_c00327{bottom:982.266667pt;}
.h1_c00327{height:31.406250pt;}
.h3_c00327{height:33.375000pt;}
.h2_c00327{height:36.640625pt;}
.h4_c00327{height:52.343750pt;}
.h5_c00327{height:62.812500pt;}
.h7_c00327{height:68.046875pt;}
.h6_c00327{height:78.515625pt;}
.h0_c00327{height:1044.000000pt;}
.w0_c00327{width:650.646400pt;}
.w1_c00327{width:650.666667pt;}
.x0_c00327{left:0.000000pt;}
.x10_c00327{left:43.835733pt;}
.x12_c00327{left:44.769067pt;}
.xf_c00327{left:45.769067pt;}
.xc_c00327{left:46.702400pt;}
.xa_c00327{left:48.969067pt;}
.x8_c00327{left:50.569067pt;}
.xd_c00327{left:53.102400pt;}
.x15_c00327{left:54.702400pt;}
.x5_c00327{left:68.167733pt;}
.x11_c00327{left:72.635733pt;}
.xe_c00327{left:74.235733pt;}
.xb_c00327{left:76.167733pt;}
.x9_c00327{left:77.435733pt;}
.x6_c00327{left:92.769067pt;}
.x18_c00327{left:99.835733pt;}
.x13_c00327{left:105.235733pt;}
.x14_c00327{left:114.835733pt;}
.x16_c00327{left:122.835733pt;}
.x17_c00327{left:131.169067pt;}
.x7_c00327{left:247.635733pt;}
.x1_c00327{left:665.569067pt;}
.x4_c00327{left:670.035733pt;}
.x3_c00327{left:671.369067pt;}
.x2_c00327{left:675.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_52968e405ad78ef3e6c636eb.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00328;src:url('chunks/assets/font_dc1ec24db9acbee04522eea0.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00328{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m9_c00328{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11_c00328{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c00328{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m14_c00328{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0_c00328{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00328{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c00328{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c00328{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00328{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c00328{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00328{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00328{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00328{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00328{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00328{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00328{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00328{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c00328{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00328{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00328{color:transparent;}
.fs0_c00328{font-size:60.000000px;}
.fs1_c00328{font-size:72.000000px;}
.fs2_c00328{font-size:78.000000px;}
.y0_c00328{bottom:0.000000px;}
.y37_c00328{bottom:100.573500px;}
.y38_c00328{bottom:101.698500px;}
.y39_c00328{bottom:106.423500px;}
.y36_c00328{bottom:126.898500px;}
.y35_c00328{bottom:143.848500px;}
.y34_c00328{bottom:167.625000px;}
.y33_c00328{bottom:188.098500px;}
.y32_c00328{bottom:208.648500px;}
.y31_c00328{bottom:229.125000px;}
.y30_c00328{bottom:249.673500px;}
.y2f_c00328{bottom:269.848500px;}
.y2e_c00328{bottom:291.073500px;}
.y2c_c00328{bottom:312.000000px;}
.y2d_c00328{bottom:314.098500px;}
.y2a_c00328{bottom:333.150000px;}
.y2b_c00328{bottom:335.698500px;}
.y29_c00328{bottom:354.448500px;}
.y27_c00328{bottom:375.298500px;}
.y28_c00328{bottom:377.400000px;}
.y26_c00328{bottom:396.900000px;}
.y25_c00328{bottom:417.448500px;}
.y24_c00328{bottom:438.298500px;}
.y23_c00328{bottom:459.523500px;}
.y22_c00328{bottom:480.823500px;}
.y21_c00328{bottom:501.673500px;}
.y20_c00328{bottom:523.648500px;}
.y1f_c00328{bottom:544.875000px;}
.y1e_c00328{bottom:566.098500px;}
.y1d_c00328{bottom:587.698500px;}
.y1c_c00328{bottom:609.000000px;}
.y1b_c00328{bottom:630.523500px;}
.y1a_c00328{bottom:651.750000px;}
.y19_c00328{bottom:673.048500px;}
.y18_c00328{bottom:694.948500px;}
.y17_c00328{bottom:715.875000px;}
.y16_c00328{bottom:737.473500px;}
.y15_c00328{bottom:755.098500px;}
.y14_c00328{bottom:758.700000px;}
.y13_c00328{bottom:759.298500px;}
.y12_c00328{bottom:759.450000px;}
.y11_c00328{bottom:776.323500px;}
.y10_c00328{bottom:780.675000px;}
.yf_c00328{bottom:801.223500px;}
.ye_c00328{bottom:823.125000px;}
.yd_c00328{bottom:845.098500px;}
.yc_c00328{bottom:866.025000px;}
.yb_c00328{bottom:888.000000px;}
.ya_c00328{bottom:908.848500px;}
.y9_c00328{bottom:929.698500px;}
.y8_c00328{bottom:952.348500px;}
.y7_c00328{bottom:972.150000px;}
.y6_c00328{bottom:993.448500px;}
.y5_c00328{bottom:1015.348500px;}
.y4_c00328{bottom:1036.275000px;}
.y3_c00328{bottom:1088.473500px;}
.y2_c00328{bottom:1092.073500px;}
.y1_c00328{bottom:1093.875000px;}
.h1_c00328{height:60.468750px;}
.h2_c00328{height:70.664062px;}
.h4_c00328{height:72.562500px;}
.h3_c00328{height:76.552734px;}
.h0_c00328{height:1174.500000px;}
.w0_c00328{width:731.977200px;}
.w1_c00328{width:732.000000px;}
.x0_c00328{left:0.000000px;}
.x5_c00328{left:57.190200px;}
.x6_c00328{left:58.990200px;}
.xd_c00328{left:60.115200px;}
.xf_c00328{left:62.290200px;}
.x12_c00328{left:65.140200px;}
.x13_c00328{left:66.190200px;}
.x4_c00328{left:92.890200px;}
.x8_c00328{left:93.940200px;}
.x7_c00328{left:94.990200px;}
.x11_c00328{left:96.490200px;}
.x14_c00328{left:98.965200px;}
.xa_c00328{left:104.365200px;}
.xb_c00328{left:105.490200px;}
.x15_c00328{left:211.315200px;}
.x1_c00328{left:273.190200px;}
.x2_c00328{left:470.890200px;}
.x10_c00328{left:566.290200px;}
.xe_c00328{left:628.915200px;}
.x3_c00328{left:632.140200px;}
.x9_c00328{left:637.540200px;}
.xc_c00328{left:663.790200px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls0_c00328{letter-spacing:0.000000pt;}
.ws0_c00328{word-spacing:0.000000pt;}
.fs0_c00328{font-size:53.333333pt;}
.fs1_c00328{font-size:64.000000pt;}
.fs2_c00328{font-size:69.333333pt;}
.y0_c00328{bottom:0.000000pt;}
.y37_c00328{bottom:89.398667pt;}
.y38_c00328{bottom:90.398667pt;}
.y39_c00328{bottom:94.598667pt;}
.y36_c00328{bottom:112.798667pt;}
.y35_c00328{bottom:127.865333pt;}
.y34_c00328{bottom:149.000000pt;}
.y33_c00328{bottom:167.198667pt;}
.y32_c00328{bottom:185.465333pt;}
.y31_c00328{bottom:203.666667pt;}
.y30_c00328{bottom:221.932000pt;}
.y2f_c00328{bottom:239.865333pt;}
.y2e_c00328{bottom:258.732000pt;}
.y2c_c00328{bottom:277.333333pt;}
.y2d_c00328{bottom:279.198667pt;}
.y2a_c00328{bottom:296.133333pt;}
.y2b_c00328{bottom:298.398667pt;}
.y29_c00328{bottom:315.065333pt;}
.y27_c00328{bottom:333.598667pt;}
.y28_c00328{bottom:335.466667pt;}
.y26_c00328{bottom:352.800000pt;}
.y25_c00328{bottom:371.065333pt;}
.y24_c00328{bottom:389.598667pt;}
.y23_c00328{bottom:408.465333pt;}
.y22_c00328{bottom:427.398667pt;}
.y21_c00328{bottom:445.932000pt;}
.y20_c00328{bottom:465.465333pt;}
.y1f_c00328{bottom:484.333333pt;}
.y1e_c00328{bottom:503.198667pt;}
.y1d_c00328{bottom:522.398667pt;}
.y1c_c00328{bottom:541.333333pt;}
.y1b_c00328{bottom:560.465333pt;}
.y1a_c00328{bottom:579.333333pt;}
.y19_c00328{bottom:598.265333pt;}
.y18_c00328{bottom:617.732000pt;}
.y17_c00328{bottom:636.333333pt;}
.y16_c00328{bottom:655.532000pt;}
.y15_c00328{bottom:671.198667pt;}
.y14_c00328{bottom:674.400000pt;}
.y13_c00328{bottom:674.932000pt;}
.y12_c00328{bottom:675.066667pt;}
.y11_c00328{bottom:690.065333pt;}
.y10_c00328{bottom:693.933333pt;}
.yf_c00328{bottom:712.198667pt;}
.ye_c00328{bottom:731.666667pt;}
.yd_c00328{bottom:751.198667pt;}
.yc_c00328{bottom:769.800000pt;}
.yb_c00328{bottom:789.333333pt;}
.ya_c00328{bottom:807.865333pt;}
.y9_c00328{bottom:826.398667pt;}
.y8_c00328{bottom:846.532000pt;}
.y7_c00328{bottom:864.133333pt;}
.y6_c00328{bottom:883.065333pt;}
.y5_c00328{bottom:902.532000pt;}
.y4_c00328{bottom:921.133333pt;}
.y3_c00328{bottom:967.532000pt;}
.y2_c00328{bottom:970.732000pt;}
.y1_c00328{bottom:972.333333pt;}
.h1_c00328{height:53.750000pt;}
.h2_c00328{height:62.812500pt;}
.h4_c00328{height:64.500000pt;}
.h3_c00328{height:68.046875pt;}
.h0_c00328{height:1044.000000pt;}
.w0_c00328{width:650.646400pt;}
.w1_c00328{width:650.666667pt;}
.x0_c00328{left:0.000000pt;}
.x5_c00328{left:50.835733pt;}
.x6_c00328{left:52.435733pt;}
.xd_c00328{left:53.435733pt;}
.xf_c00328{left:55.369067pt;}
.x12_c00328{left:57.902400pt;}
.x13_c00328{left:58.835733pt;}
.x4_c00328{left:82.569067pt;}
.x8_c00328{left:83.502400pt;}
.x7_c00328{left:84.435733pt;}
.x11_c00328{left:85.769067pt;}
.x14_c00328{left:87.969067pt;}
.xa_c00328{left:92.769067pt;}
.xb_c00328{left:93.769067pt;}
.x15_c00328{left:187.835733pt;}
.x1_c00328{left:242.835733pt;}
.x2_c00328{left:418.569067pt;}
.x10_c00328{left:503.369067pt;}
.xe_c00328{left:559.035733pt;}
.x3_c00328{left:561.902400pt;}
.x9_c00328{left:566.702400pt;}
.xc_c00328{left:590.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f5a75258a611c326af4490b.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00329{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00329{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c00329{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00329{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c00329{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00329{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00329{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00329{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00329{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00329{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00329{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00329{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00329{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00329{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00329{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m10_c00329{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00329{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00329{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.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;}
}
.ws0_c00329{word-spacing:0.000000px;}
.fc0_c00329{color:transparent;}
.fs1_c00329{font-size:60.000000px;}
.fs0_c00329{font-size:72.000000px;}
.y0_c00329{bottom:0.000000px;}
.y30_c00329{bottom:93.750000px;}
.y2f_c00329{bottom:120.073500px;}
.y2e_c00329{bottom:137.323500px;}
.y2d_c00329{bottom:159.298500px;}
.y2c_c00329{bottom:181.573500px;}
.y2b_c00329{bottom:202.875000px;}
.y2a_c00329{bottom:229.125000px;}
.y29_c00329{bottom:246.823500px;}
.y28_c00329{bottom:269.473500px;}
.y27_c00329{bottom:291.375000px;}
.y26_c00329{bottom:315.150000px;}
.y25_c00329{bottom:334.573500px;}
.y24_c00329{bottom:356.548500px;}
.y23_c00329{bottom:378.150000px;}
.y22_c00329{bottom:400.500000px;}
.y21_c00329{bottom:422.098500px;}
.y20_c00329{bottom:444.073500px;}
.y1f_c00329{bottom:466.348500px;}
.y1e_c00329{bottom:487.648500px;}
.y1d_c00329{bottom:509.173500px;}
.y1c_c00329{bottom:530.773500px;}
.y1b_c00329{bottom:552.448500px;}
.y1a_c00329{bottom:573.298500px;}
.y19_c00329{bottom:595.648500px;}
.y18_c00329{bottom:617.548500px;}
.y17_c00329{bottom:639.598500px;}
.y16_c00329{bottom:661.500000px;}
.y15_c00329{bottom:683.473500px;}
.y14_c00329{bottom:704.698500px;}
.y13_c00329{bottom:726.673500px;}
.y12_c00329{bottom:748.575000px;}
.y11_c00329{bottom:770.550000px;}
.y10_c00329{bottom:792.150000px;}
.yf_c00329{bottom:813.448500px;}
.ye_c00329{bottom:834.675000px;}
.yd_c00329{bottom:855.525000px;}
.yc_c00329{bottom:876.448500px;}
.yb_c00329{bottom:897.675000px;}
.ya_c00329{bottom:919.275000px;}
.y9_c00329{bottom:940.500000px;}
.y8_c00329{bottom:963.223500px;}
.y7_c00329{bottom:984.448500px;}
.y6_c00329{bottom:1003.875000px;}
.y5_c00329{bottom:1027.573500px;}
.y4_c00329{bottom:1048.875000px;}
.y1_c00329{bottom:1102.875000px;}
.y2_c00329{bottom:1103.250000px;}
.y3_c00329{bottom:1107.900000px;}
.h2_c00329{height:58.886719px;}
.h1_c00329{height:70.664062px;}
.h0_c00329{height:1174.500000px;}
.w0_c00329{width:731.977200px;}
.w1_c00329{width:732.000000px;}
.x0_c00329{left:0.000000px;}
.x10_c00329{left:28.390200px;}
.xd_c00329{left:29.515200px;}
.xb_c00329{left:30.940200px;}
.x9_c00329{left:32.365200px;}
.x8_c00329{left:34.540200px;}
.x6_c00329{left:35.963700px;}
.x4_c00329{left:37.390200px;}
.x1_c00329{left:56.890200px;}
.xf_c00329{left:60.790200px;}
.xe_c00329{left:61.915200px;}
.xc_c00329{left:62.965200px;}
.xa_c00329{left:65.140200px;}
.x7_c00329{left:67.690200px;}
.x5_c00329{left:69.115200px;}
.x2_c00329{left:85.688700px;}
.x3_c00329{left:267.490200px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls0_c00329{letter-spacing:0.000000pt;}
.ws0_c00329{word-spacing:0.000000pt;}
.fs1_c00329{font-size:53.333333pt;}
.fs0_c00329{font-size:64.000000pt;}
.y0_c00329{bottom:0.000000pt;}
.y30_c00329{bottom:83.333333pt;}
.y2f_c00329{bottom:106.732000pt;}
.y2e_c00329{bottom:122.065333pt;}
.y2d_c00329{bottom:141.598667pt;}
.y2c_c00329{bottom:161.398667pt;}
.y2b_c00329{bottom:180.333333pt;}
.y2a_c00329{bottom:203.666667pt;}
.y29_c00329{bottom:219.398667pt;}
.y28_c00329{bottom:239.532000pt;}
.y27_c00329{bottom:259.000000pt;}
.y26_c00329{bottom:280.133333pt;}
.y25_c00329{bottom:297.398667pt;}
.y24_c00329{bottom:316.932000pt;}
.y23_c00329{bottom:336.133333pt;}
.y22_c00329{bottom:356.000000pt;}
.y21_c00329{bottom:375.198667pt;}
.y20_c00329{bottom:394.732000pt;}
.y1f_c00329{bottom:414.532000pt;}
.y1e_c00329{bottom:433.465333pt;}
.y1d_c00329{bottom:452.598667pt;}
.y1c_c00329{bottom:471.798667pt;}
.y1b_c00329{bottom:491.065333pt;}
.y1a_c00329{bottom:509.598667pt;}
.y19_c00329{bottom:529.465333pt;}
.y18_c00329{bottom:548.932000pt;}
.y17_c00329{bottom:568.532000pt;}
.y16_c00329{bottom:588.000000pt;}
.y15_c00329{bottom:607.532000pt;}
.y14_c00329{bottom:626.398667pt;}
.y13_c00329{bottom:645.932000pt;}
.y12_c00329{bottom:665.400000pt;}
.y11_c00329{bottom:684.933333pt;}
.y10_c00329{bottom:704.133333pt;}
.yf_c00329{bottom:723.065333pt;}
.ye_c00329{bottom:741.933333pt;}
.yd_c00329{bottom:760.466667pt;}
.yc_c00329{bottom:779.065333pt;}
.yb_c00329{bottom:797.933333pt;}
.ya_c00329{bottom:817.133333pt;}
.y9_c00329{bottom:836.000000pt;}
.y8_c00329{bottom:856.198667pt;}
.y7_c00329{bottom:875.065333pt;}
.y6_c00329{bottom:892.333333pt;}
.y5_c00329{bottom:913.398667pt;}
.y4_c00329{bottom:932.333333pt;}
.y1_c00329{bottom:980.333333pt;}
.y2_c00329{bottom:980.666667pt;}
.y3_c00329{bottom:984.800000pt;}
.h2_c00329{height:52.343750pt;}
.h1_c00329{height:62.812500pt;}
.h0_c00329{height:1044.000000pt;}
.w0_c00329{width:650.646400pt;}
.w1_c00329{width:650.666667pt;}
.x0_c00329{left:0.000000pt;}
.x10_c00329{left:25.235733pt;}
.xd_c00329{left:26.235733pt;}
.xb_c00329{left:27.502400pt;}
.x9_c00329{left:28.769067pt;}
.x8_c00329{left:30.702400pt;}
.x6_c00329{left:31.967733pt;}
.x4_c00329{left:33.235733pt;}
.x1_c00329{left:50.569067pt;}
.xf_c00329{left:54.035733pt;}
.xe_c00329{left:55.035733pt;}
.xc_c00329{left:55.969067pt;}
.xa_c00329{left:57.902400pt;}
.x7_c00329{left:60.169067pt;}
.x5_c00329{left:61.435733pt;}
.x2_c00329{left:76.167733pt;}
.x3_c00329{left:237.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_96974e3106e58c8ccc1a903c.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00330;src:url('chunks/assets/font_ddbed4db97e95e2b96b6a044.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00330{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m9_c00330{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.md_c00330{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00330{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc_c00330{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5_c00330{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00330{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00330{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00330{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00330{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00330{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c00330{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00330{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c00330{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.ls0_c00330{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00330{color:transparent;}
.fs0_c00330{font-size:60.000000px;}
.fs1_c00330{font-size:78.000000px;}
.y0_c00330{bottom:0.000000px;}
.y30_c00330{bottom:103.798500px;}
.y2f_c00330{bottom:122.923500px;}
.y2e_c00330{bottom:145.273500px;}
.y2d_c00330{bottom:165.750000px;}
.y2c_c00330{bottom:187.048500px;}
.y2b_c00330{bottom:203.625000px;}
.y2a_c00330{bottom:227.323500px;}
.y29_c00330{bottom:247.875000px;}
.y28_c00330{bottom:268.723500px;}
.y27_c00330{bottom:289.573500px;}
.y26_c00330{bottom:310.875000px;}
.y25_c00330{bottom:331.723500px;}
.y24_c00330{bottom:352.948500px;}
.y23_c00330{bottom:373.875000px;}
.y22_c00330{bottom:395.098500px;}
.y21_c00330{bottom:416.023500px;}
.y20_c00330{bottom:436.875000px;}
.y1f_c00330{bottom:458.098500px;}
.y1e_c00330{bottom:479.323500px;}
.y1d_c00330{bottom:500.923500px;}
.y1c_c00330{bottom:522.523500px;}
.y1b_c00330{bottom:543.750000px;}
.y1a_c00330{bottom:565.048500px;}
.y19_c00330{bottom:586.648500px;}
.y18_c00330{bottom:608.548500px;}
.y17_c00330{bottom:629.473500px;}
.y16_c00330{bottom:650.323500px;}
.y15_c00330{bottom:672.598500px;}
.y14_c00330{bottom:693.598500px;}
.y13_c00330{bottom:715.125000px;}
.y12_c00330{bottom:736.423500px;}
.y11_c00330{bottom:757.648500px;}
.y10_c00330{bottom:781.348500px;}
.yf_c00330{bottom:800.473500px;}
.ye_c00330{bottom:822.448500px;}
.yd_c00330{bottom:844.050000px;}
.yc_c00330{bottom:865.573500px;}
.yb_c00330{bottom:886.500000px;}
.ya_c00330{bottom:909.223500px;}
.y9_c00330{bottom:927.900000px;}
.y8_c00330{bottom:949.125000px;}
.y7_c00330{bottom:973.573500px;}
.y6_c00330{bottom:991.948500px;}
.y5_c00330{bottom:1016.098500px;}
.y4_c00330{bottom:1035.150000px;}
.y3_c00330{bottom:1087.348500px;}
.y1_c00330{bottom:1094.250000px;}
.y2_c00330{bottom:1101.823500px;}
.h1_c00330{height:60.468750px;}
.h2_c00330{height:76.552734px;}
.h3_c00330{height:78.609375px;}
.h0_c00330{height:1174.500000px;}
.w0_c00330{width:731.977200px;}
.w1_c00330{width:732.000000px;}
.x0_c00330{left:0.000000px;}
.x8_c00330{left:55.390200px;}
.x4_c00330{left:56.515200px;}
.x7_c00330{left:57.565200px;}
.x9_c00330{left:58.990200px;}
.xa_c00330{left:60.490200px;}
.x5_c00330{left:89.590200px;}
.x6_c00330{left:90.715200px;}
.xb_c00330{left:92.140200px;}
.x1_c00330{left:272.890200px;}
.x2_c00330{left:467.965200px;}
.x3_c00330{left:630.340200px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls0_c00330{letter-spacing:0.000000pt;}
.ws0_c00330{word-spacing:0.000000pt;}
.fs0_c00330{font-size:53.333333pt;}
.fs1_c00330{font-size:69.333333pt;}
.y0_c00330{bottom:0.000000pt;}
.y30_c00330{bottom:92.265333pt;}
.y2f_c00330{bottom:109.265333pt;}
.y2e_c00330{bottom:129.132000pt;}
.y2d_c00330{bottom:147.333333pt;}
.y2c_c00330{bottom:166.265333pt;}
.y2b_c00330{bottom:181.000000pt;}
.y2a_c00330{bottom:202.065333pt;}
.y29_c00330{bottom:220.333333pt;}
.y28_c00330{bottom:238.865333pt;}
.y27_c00330{bottom:257.398667pt;}
.y26_c00330{bottom:276.333333pt;}
.y25_c00330{bottom:294.865333pt;}
.y24_c00330{bottom:313.732000pt;}
.y23_c00330{bottom:332.333333pt;}
.y22_c00330{bottom:351.198667pt;}
.y21_c00330{bottom:369.798667pt;}
.y20_c00330{bottom:388.333333pt;}
.y1f_c00330{bottom:407.198667pt;}
.y1e_c00330{bottom:426.065333pt;}
.y1d_c00330{bottom:445.265333pt;}
.y1c_c00330{bottom:464.465333pt;}
.y1b_c00330{bottom:483.333333pt;}
.y1a_c00330{bottom:502.265333pt;}
.y19_c00330{bottom:521.465333pt;}
.y18_c00330{bottom:540.932000pt;}
.y17_c00330{bottom:559.532000pt;}
.y16_c00330{bottom:578.065333pt;}
.y15_c00330{bottom:597.865333pt;}
.y14_c00330{bottom:616.532000pt;}
.y13_c00330{bottom:635.666667pt;}
.y12_c00330{bottom:654.598667pt;}
.y11_c00330{bottom:673.465333pt;}
.y10_c00330{bottom:694.532000pt;}
.yf_c00330{bottom:711.532000pt;}
.ye_c00330{bottom:731.065333pt;}
.yd_c00330{bottom:750.266667pt;}
.yc_c00330{bottom:769.398667pt;}
.yb_c00330{bottom:788.000000pt;}
.ya_c00330{bottom:808.198667pt;}
.y9_c00330{bottom:824.800000pt;}
.y8_c00330{bottom:843.666667pt;}
.y7_c00330{bottom:865.398667pt;}
.y6_c00330{bottom:881.732000pt;}
.y5_c00330{bottom:903.198667pt;}
.y4_c00330{bottom:920.133333pt;}
.y3_c00330{bottom:966.532000pt;}
.y1_c00330{bottom:972.666667pt;}
.y2_c00330{bottom:979.398667pt;}
.h1_c00330{height:53.750000pt;}
.h2_c00330{height:68.046875pt;}
.h3_c00330{height:69.875000pt;}
.h0_c00330{height:1044.000000pt;}
.w0_c00330{width:650.646400pt;}
.w1_c00330{width:650.666667pt;}
.x0_c00330{left:0.000000pt;}
.x8_c00330{left:49.235733pt;}
.x4_c00330{left:50.235733pt;}
.x7_c00330{left:51.169067pt;}
.x9_c00330{left:52.435733pt;}
.xa_c00330{left:53.769067pt;}
.x5_c00330{left:79.635733pt;}
.x6_c00330{left:80.635733pt;}
.xb_c00330{left:81.902400pt;}
.x1_c00330{left:242.569067pt;}
.x2_c00330{left:415.969067pt;}
.x3_c00330{left:560.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af9a5b3527de221693455fa6.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00331{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6_c00331{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c00331{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb_c00331{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c00331{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00331{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c00331{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00331{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00331{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00331{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7_c00331{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00331{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00331{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c00331{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00331{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c00331{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c00331{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.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;}
}
.ws0_c00331{word-spacing:0.000000px;}
.fc0_c00331{color:transparent;}
.fs1_c00331{font-size:60.000000px;}
.fs0_c00331{font-size:66.000000px;}
.fs2_c00331{font-size:78.000000px;}
.y0_c00331{bottom:0.000000px;}
.y30_c00331{bottom:104.250000px;}
.y2f_c00331{bottom:125.473500px;}
.y2e_c00331{bottom:148.125000px;}
.y2d_c00331{bottom:169.723500px;}
.y2c_c00331{bottom:190.648500px;}
.y2b_c00331{bottom:219.448500px;}
.y2a_c00331{bottom:234.898500px;}
.y29_c00331{bottom:257.250000px;}
.y28_c00331{bottom:278.775000px;}
.y27_c00331{bottom:300.750000px;}
.y26_c00331{bottom:322.723500px;}
.y25_c00331{bottom:344.698500px;}
.y24_c00331{bottom:365.625000px;}
.y23_c00331{bottom:388.275000px;}
.y22_c00331{bottom:409.500000px;}
.y21_c00331{bottom:431.473500px;}
.y20_c00331{bottom:453.073500px;}
.y1f_c00331{bottom:474.973500px;}
.y1e_c00331{bottom:496.648500px;}
.y1d_c00331{bottom:517.875000px;}
.y1c_c00331{bottom:539.098500px;}
.y1b_c00331{bottom:560.698500px;}
.y1a_c00331{bottom:582.298500px;}
.y19_c00331{bottom:603.898500px;}
.y18_c00331{bottom:625.500000px;}
.y17_c00331{bottom:647.848500px;}
.y16_c00331{bottom:669.448500px;}
.y15_c00331{bottom:690.973500px;}
.y14_c00331{bottom:710.773500px;}
.y13_c00331{bottom:734.173500px;}
.y12_c00331{bottom:755.848500px;}
.y11_c00331{bottom:777.448500px;}
.y10_c00331{bottom:799.348500px;}
.yf_c00331{bottom:820.650000px;}
.ye_c00331{bottom:841.500000px;}
.yd_c00331{bottom:862.800000px;}
.yc_c00331{bottom:884.400000px;}
.yb_c00331{bottom:902.698500px;}
.ya_c00331{bottom:926.848500px;}
.y9_c00331{bottom:949.125000px;}
.y8_c00331{bottom:962.098500px;}
.y7_c00331{bottom:991.275000px;}
.y6_c00331{bottom:1012.875000px;}
.y5_c00331{bottom:1033.723500px;}
.y4_c00331{bottom:1054.275000px;}
.y1_c00331{bottom:1101.750000px;}
.y3_c00331{bottom:1111.875000px;}
.y2_c00331{bottom:1116.598500px;}
.h2_c00331{height:58.886719px;}
.h1_c00331{height:64.775391px;}
.h3_c00331{height:76.552734px;}
.h0_c00331{height:1174.500000px;}
.w0_c00331{width:731.977200px;}
.w1_c00331{width:732.000000px;}
.x0_c00331{left:0.000000px;}
.xa_c00331{left:43.165200px;}
.x8_c00331{left:44.590200px;}
.x5_c00331{left:46.090200px;}
.x6_c00331{left:47.140200px;}
.x4_c00331{left:48.190200px;}
.x1_c00331{left:68.740200px;}
.x9_c00331{left:75.188700px;}
.x7_c00331{left:76.990200px;}
.x2_c00331{left:95.365200px;}
.x3_c00331{left:271.090200px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls0_c00331{letter-spacing:0.000000pt;}
.ws0_c00331{word-spacing:0.000000pt;}
.fs1_c00331{font-size:53.333333pt;}
.fs0_c00331{font-size:58.666667pt;}
.fs2_c00331{font-size:69.333333pt;}
.y0_c00331{bottom:0.000000pt;}
.y30_c00331{bottom:92.666667pt;}
.y2f_c00331{bottom:111.532000pt;}
.y2e_c00331{bottom:131.666667pt;}
.y2d_c00331{bottom:150.865333pt;}
.y2c_c00331{bottom:169.465333pt;}
.y2b_c00331{bottom:195.065333pt;}
.y2a_c00331{bottom:208.798667pt;}
.y29_c00331{bottom:228.666667pt;}
.y28_c00331{bottom:247.800000pt;}
.y27_c00331{bottom:267.333333pt;}
.y26_c00331{bottom:286.865333pt;}
.y25_c00331{bottom:306.398667pt;}
.y24_c00331{bottom:325.000000pt;}
.y23_c00331{bottom:345.133333pt;}
.y22_c00331{bottom:364.000000pt;}
.y21_c00331{bottom:383.532000pt;}
.y20_c00331{bottom:402.732000pt;}
.y1f_c00331{bottom:422.198667pt;}
.y1e_c00331{bottom:441.465333pt;}
.y1d_c00331{bottom:460.333333pt;}
.y1c_c00331{bottom:479.198667pt;}
.y1b_c00331{bottom:498.398667pt;}
.y1a_c00331{bottom:517.598667pt;}
.y19_c00331{bottom:536.798667pt;}
.y18_c00331{bottom:556.000000pt;}
.y17_c00331{bottom:575.865333pt;}
.y16_c00331{bottom:595.065333pt;}
.y15_c00331{bottom:614.198667pt;}
.y14_c00331{bottom:631.798667pt;}
.y13_c00331{bottom:652.598667pt;}
.y12_c00331{bottom:671.865333pt;}
.y11_c00331{bottom:691.065333pt;}
.y10_c00331{bottom:710.532000pt;}
.yf_c00331{bottom:729.466667pt;}
.ye_c00331{bottom:748.000000pt;}
.yd_c00331{bottom:766.933333pt;}
.yc_c00331{bottom:786.133333pt;}
.yb_c00331{bottom:802.398667pt;}
.ya_c00331{bottom:823.865333pt;}
.y9_c00331{bottom:843.666667pt;}
.y8_c00331{bottom:855.198667pt;}
.y7_c00331{bottom:881.133333pt;}
.y6_c00331{bottom:900.333333pt;}
.y5_c00331{bottom:918.865333pt;}
.y4_c00331{bottom:937.133333pt;}
.y1_c00331{bottom:979.333333pt;}
.y3_c00331{bottom:988.333333pt;}
.y2_c00331{bottom:992.532000pt;}
.h2_c00331{height:52.343750pt;}
.h1_c00331{height:57.578125pt;}
.h3_c00331{height:68.046875pt;}
.h0_c00331{height:1044.000000pt;}
.w0_c00331{width:650.646400pt;}
.w1_c00331{width:650.666667pt;}
.x0_c00331{left:0.000000pt;}
.xa_c00331{left:38.369067pt;}
.x8_c00331{left:39.635733pt;}
.x5_c00331{left:40.969067pt;}
.x6_c00331{left:41.902400pt;}
.x4_c00331{left:42.835733pt;}
.x1_c00331{left:61.102400pt;}
.x9_c00331{left:66.834400pt;}
.x7_c00331{left:68.435733pt;}
.x2_c00331{left:84.769067pt;}
.x3_c00331{left:240.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_12c503fe08d30ba3c8f83f61.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00332;src:url('chunks/assets/font_b82f2c90ac57b98e53c796e5.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00332;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00332{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00332{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m13_c00332{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00332{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m18_c00332{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m10_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);}
.m7_c00332{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc_c00332{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4_c00332{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3_c00332{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00332{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c00332{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00332{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00332{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c00332{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00332{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb_c00332{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00332{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1_c00332{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c00332{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m0_c00332{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c00332{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m19_c00332{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m15_c00332{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00332{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m17_c00332{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c00332{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m14_c00332{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00332{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,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:0.000000px;}
.fc0_c00332{color:transparent;}
.fs0_c00332{font-size:54.000000px;}
.fs3_c00332{font-size:72.000000px;}
.fs2_c00332{font-size:78.000000px;}
.fs1_c00332{font-size:84.000000px;}
.y0_c00332{bottom:0.000000px;}
.y4c_c00332{bottom:74.023500px;}
.y49_c00332{bottom:95.250000px;}
.y4a_c00332{bottom:98.398500px;}
.y4b_c00332{bottom:99.898500px;}
.y45_c00332{bottom:112.500000px;}
.y46_c00332{bottom:114.298500px;}
.y47_c00332{bottom:117.898500px;}
.y48_c00332{bottom:120.750000px;}
.y41_c00332{bottom:135.598500px;}
.y42_c00332{bottom:138.448500px;}
.y43_c00332{bottom:141.298500px;}
.y44_c00332{bottom:144.523500px;}
.y40_c00332{bottom:155.323500px;}
.y3c_c00332{bottom:175.500000px;}
.y3d_c00332{bottom:180.223500px;}
.y3e_c00332{bottom:182.698500px;}
.y3f_c00332{bottom:184.875000px;}
.y39_c00332{bottom:199.573500px;}
.y3a_c00332{bottom:203.625000px;}
.y3b_c00332{bottom:205.723500px;}
.y37_c00332{bottom:220.875000px;}
.y38_c00332{bottom:226.273500px;}
.y34_c00332{bottom:237.448500px;}
.y35_c00332{bottom:238.125000px;}
.y36_c00332{bottom:241.348500px;}
.y33_c00332{bottom:261.900000px;}
.y32_c00332{bottom:282.750000px;}
.y31_c00332{bottom:301.125000px;}
.y2e_c00332{bottom:323.473500px;}
.y2f_c00332{bottom:327.375000px;}
.y30_c00332{bottom:327.750000px;}
.y2d_c00332{bottom:346.125000px;}
.y2c_c00332{bottom:366.298500px;}
.y2b_c00332{bottom:388.275000px;}
.y2a_c00332{bottom:408.448500px;}
.y29_c00332{bottom:429.673500px;}
.y28_c00332{bottom:450.898500px;}
.y27_c00332{bottom:472.125000px;}
.y26_c00332{bottom:493.723500px;}
.y25_c00332{bottom:515.023500px;}
.y24_c00332{bottom:536.625000px;}
.y23_c00332{bottom:557.848500px;}
.y22_c00332{bottom:578.698500px;}
.y21_c00332{bottom:579.000000px;}
.y20_c00332{bottom:579.073500px;}
.y1f_c00332{bottom:599.923500px;}
.y1e_c00332{bottom:600.673500px;}
.y1d_c00332{bottom:621.898500px;}
.y1c_c00332{bottom:643.125000px;}
.y1b_c00332{bottom:664.348500px;}
.y1a_c00332{bottom:685.648500px;}
.y19_c00332{bottom:707.250000px;}
.y18_c00332{bottom:728.848500px;}
.y17_c00332{bottom:750.075000px;}
.y16_c00332{bottom:771.300000px;}
.y15_c00332{bottom:785.323500px;}
.y14_c00332{bottom:795.750000px;}
.y13_c00332{bottom:814.500000px;}
.y12_c00332{bottom:836.098500px;}
.y11_c00332{bottom:859.800000px;}
.y10_c00332{bottom:879.300000px;}
.yf_c00332{bottom:898.348500px;}
.ye_c00332{bottom:900.900000px;}
.yd_c00332{bottom:901.948500px;}
.yc_c00332{bottom:902.698500px;}
.yb_c00332{bottom:903.073500px;}
.ya_c00332{bottom:921.448500px;}
.y9_c00332{bottom:941.925000px;}
.y8_c00332{bottom:962.848500px;}
.y7_c00332{bottom:968.925000px;}
.y6_c00332{bottom:969.300000px;}
.y5_c00332{bottom:984.375000px;}
.y4_c00332{bottom:1007.473500px;}
.y3_c00332{bottom:1027.275000px;}
.y2_c00332{bottom:1086.300000px;}
.y1_c00332{bottom:1087.348500px;}
.h2_c00332{height:52.998047px;}
.h1_c00332{height:54.421875px;}
.h6_c00332{height:70.664062px;}
.h7_c00332{height:72.562500px;}
.h5_c00332{height:76.514648px;}
.h3_c00332{height:82.441406px;}
.h4_c00332{height:84.656250px;}
.h0_c00332{height:1174.500000px;}
.w0_c00332{width:731.977200px;}
.w1_c00332{width:732.000000px;}
.x0_c00332{left:0.000000px;}
.xb_c00332{left:48.565200px;}
.x3_c00332{left:49.690200px;}
.xd_c00332{left:50.740200px;}
.xe_c00332{left:52.915200px;}
.x12_c00332{left:53.965200px;}
.x16_c00332{left:55.090200px;}
.x17_c00332{left:56.140200px;}
.x19_c00332{left:58.990200px;}
.x1c_c00332{left:60.115200px;}
.x1e_c00332{left:61.540200px;}
.x1f_c00332{left:62.590200px;}
.x24_c00332{left:64.090200px;}
.x28_c00332{left:65.890200px;}
.x5_c00332{left:68.365200px;}
.x4_c00332{left:82.090200px;}
.xf_c00332{left:85.990200px;}
.x15_c00332{left:87.790200px;}
.x18_c00332{left:88.915200px;}
.x6_c00332{left:91.765200px;}
.x1d_c00332{left:94.315200px;}
.x29_c00332{left:97.915200px;}
.x7_c00332{left:103.690200px;}
.x8_c00332{left:123.490200px;}
.x20_c00332{left:133.165200px;}
.x2c_c00332{left:138.565200px;}
.x21_c00332{left:152.590200px;}
.x25_c00332{left:241.540200px;}
.x9_c00332{left:283.990200px;}
.x1_c00332{left:289.390200px;}
.x2a_c00332{left:313.165200px;}
.xa_c00332{left:314.965200px;}
.x2_c00332{left:396.715200px;}
.x2e_c00332{left:441.715200px;}
.x2d_c00332{left:462.940200px;}
.x2f_c00332{left:474.790200px;}
.x10_c00332{left:494.290200px;}
.x26_c00332{left:510.790200px;}
.x11_c00332{left:511.915200px;}
.xc_c00332{left:541.090200px;}
.x13_c00332{left:542.515200px;}
.x27_c00332{left:555.490200px;}
.x14_c00332{left:563.365200px;}
.x23_c00332{left:583.915200px;}
.x1a_c00332{left:593.290200px;}
.x30_c00332{left:600.115200px;}
.x22_c00332{left:612.715200px;}
.x1b_c00332{left:631.390200px;}
.x2b_c00332{left:660.565200px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls0_c00332{letter-spacing:0.000000pt;}
.ws0_c00332{word-spacing:0.000000pt;}
.fs0_c00332{font-size:48.000000pt;}
.fs3_c00332{font-size:64.000000pt;}
.fs2_c00332{font-size:69.333333pt;}
.fs1_c00332{font-size:74.666667pt;}
.y0_c00332{bottom:0.000000pt;}
.y4c_c00332{bottom:65.798667pt;}
.y49_c00332{bottom:84.666667pt;}
.y4a_c00332{bottom:87.465333pt;}
.y4b_c00332{bottom:88.798667pt;}
.y45_c00332{bottom:100.000000pt;}
.y46_c00332{bottom:101.598667pt;}
.y47_c00332{bottom:104.798667pt;}
.y48_c00332{bottom:107.333333pt;}
.y41_c00332{bottom:120.532000pt;}
.y42_c00332{bottom:123.065333pt;}
.y43_c00332{bottom:125.598667pt;}
.y44_c00332{bottom:128.465333pt;}
.y40_c00332{bottom:138.065333pt;}
.y3c_c00332{bottom:156.000000pt;}
.y3d_c00332{bottom:160.198667pt;}
.y3e_c00332{bottom:162.398667pt;}
.y3f_c00332{bottom:164.333333pt;}
.y39_c00332{bottom:177.398667pt;}
.y3a_c00332{bottom:181.000000pt;}
.y3b_c00332{bottom:182.865333pt;}
.y37_c00332{bottom:196.333333pt;}
.y38_c00332{bottom:201.132000pt;}
.y34_c00332{bottom:211.065333pt;}
.y35_c00332{bottom:211.666667pt;}
.y36_c00332{bottom:214.532000pt;}
.y33_c00332{bottom:232.800000pt;}
.y32_c00332{bottom:251.333333pt;}
.y31_c00332{bottom:267.666667pt;}
.y2e_c00332{bottom:287.532000pt;}
.y2f_c00332{bottom:291.000000pt;}
.y30_c00332{bottom:291.333333pt;}
.y2d_c00332{bottom:307.666667pt;}
.y2c_c00332{bottom:325.598667pt;}
.y2b_c00332{bottom:345.133333pt;}
.y2a_c00332{bottom:363.065333pt;}
.y29_c00332{bottom:381.932000pt;}
.y28_c00332{bottom:400.798667pt;}
.y27_c00332{bottom:419.666667pt;}
.y26_c00332{bottom:438.865333pt;}
.y25_c00332{bottom:457.798667pt;}
.y24_c00332{bottom:477.000000pt;}
.y23_c00332{bottom:495.865333pt;}
.y22_c00332{bottom:514.398667pt;}
.y21_c00332{bottom:514.666667pt;}
.y20_c00332{bottom:514.732000pt;}
.y1f_c00332{bottom:533.265333pt;}
.y1e_c00332{bottom:533.932000pt;}
.y1d_c00332{bottom:552.798667pt;}
.y1c_c00332{bottom:571.666667pt;}
.y1b_c00332{bottom:590.532000pt;}
.y1a_c00332{bottom:609.465333pt;}
.y19_c00332{bottom:628.666667pt;}
.y18_c00332{bottom:647.865333pt;}
.y17_c00332{bottom:666.733333pt;}
.y16_c00332{bottom:685.600000pt;}
.y15_c00332{bottom:698.065333pt;}
.y14_c00332{bottom:707.333333pt;}
.y13_c00332{bottom:724.000000pt;}
.y12_c00332{bottom:743.198667pt;}
.y11_c00332{bottom:764.266667pt;}
.y10_c00332{bottom:781.600000pt;}
.yf_c00332{bottom:798.532000pt;}
.ye_c00332{bottom:800.800000pt;}
.yd_c00332{bottom:801.732000pt;}
.yc_c00332{bottom:802.398667pt;}
.yb_c00332{bottom:802.732000pt;}
.ya_c00332{bottom:819.065333pt;}
.y9_c00332{bottom:837.266667pt;}
.y8_c00332{bottom:855.865333pt;}
.y7_c00332{bottom:861.266667pt;}
.y6_c00332{bottom:861.600000pt;}
.y5_c00332{bottom:875.000000pt;}
.y4_c00332{bottom:895.532000pt;}
.y3_c00332{bottom:913.133333pt;}
.y2_c00332{bottom:965.600000pt;}
.y1_c00332{bottom:966.532000pt;}
.h2_c00332{height:47.109375pt;}
.h1_c00332{height:48.375000pt;}
.h6_c00332{height:62.812500pt;}
.h7_c00332{height:64.500000pt;}
.h5_c00332{height:68.013021pt;}
.h3_c00332{height:73.281250pt;}
.h4_c00332{height:75.250000pt;}
.h0_c00332{height:1044.000000pt;}
.w0_c00332{width:650.646400pt;}
.w1_c00332{width:650.666667pt;}
.x0_c00332{left:0.000000pt;}
.xb_c00332{left:43.169067pt;}
.x3_c00332{left:44.169067pt;}
.xd_c00332{left:45.102400pt;}
.xe_c00332{left:47.035733pt;}
.x12_c00332{left:47.969067pt;}
.x16_c00332{left:48.969067pt;}
.x17_c00332{left:49.902400pt;}
.x19_c00332{left:52.435733pt;}
.x1c_c00332{left:53.435733pt;}
.x1e_c00332{left:54.702400pt;}
.x1f_c00332{left:55.635733pt;}
.x24_c00332{left:56.969067pt;}
.x28_c00332{left:58.569067pt;}
.x5_c00332{left:60.769067pt;}
.x4_c00332{left:72.969067pt;}
.xf_c00332{left:76.435733pt;}
.x15_c00332{left:78.035733pt;}
.x18_c00332{left:79.035733pt;}
.x6_c00332{left:81.569067pt;}
.x1d_c00332{left:83.835733pt;}
.x29_c00332{left:87.035733pt;}
.x7_c00332{left:92.169067pt;}
.x8_c00332{left:109.769067pt;}
.x20_c00332{left:118.369067pt;}
.x2c_c00332{left:123.169067pt;}
.x21_c00332{left:135.635733pt;}
.x25_c00332{left:214.702400pt;}
.x9_c00332{left:252.435733pt;}
.x1_c00332{left:257.235733pt;}
.x2a_c00332{left:278.369067pt;}
.xa_c00332{left:279.969067pt;}
.x2_c00332{left:352.635733pt;}
.x2e_c00332{left:392.635733pt;}
.x2d_c00332{left:411.502400pt;}
.x2f_c00332{left:422.035733pt;}
.x10_c00332{left:439.369067pt;}
.x26_c00332{left:454.035733pt;}
.x11_c00332{left:455.035733pt;}
.xc_c00332{left:480.969067pt;}
.x13_c00332{left:482.235733pt;}
.x27_c00332{left:493.769067pt;}
.x14_c00332{left:500.769067pt;}
.x23_c00332{left:519.035733pt;}
.x1a_c00332{left:527.369067pt;}
.x30_c00332{left:533.435733pt;}
.x22_c00332{left:544.635733pt;}
.x1b_c00332{left:561.235733pt;}
.x2b_c00332{left:587.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9cd683f12170bac1863f7d07.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00333{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m11_c00333{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00333{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc_c00333{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00333{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00333{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c00333{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c00333{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00333{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00333{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00333{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9_c00333{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00333{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00333{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00333{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00333{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00333{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c00333{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00333{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00333{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00333{vertical-align:0.000000px;}
.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;}
}
.ws0_c00333{word-spacing:0.000000px;}
.fc0_c00333{color:transparent;}
.fs1_c00333{font-size:60.000000px;}
.fs2_c00333{font-size:66.000000px;}
.fs0_c00333{font-size:72.000000px;}
.fs3_c00333{font-size:78.000000px;}
.y0_c00333{bottom:0.000000px;}
.y32_c00333{bottom:95.173500px;}
.y31_c00333{bottom:97.348500px;}
.y30_c00333{bottom:123.298500px;}
.y2f_c00333{bottom:141.673500px;}
.y2e_c00333{bottom:162.898500px;}
.y2d_c00333{bottom:184.125000px;}
.y2c_c00333{bottom:208.273500px;}
.y2b_c00333{bottom:228.750000px;}
.y2a_c00333{bottom:250.423500px;}
.y29_c00333{bottom:273.448500px;}
.y28_c00333{bottom:294.673500px;}
.y27_c00333{bottom:318.448500px;}
.y26_c00333{bottom:338.250000px;}
.y25_c00333{bottom:359.848500px;}
.y24_c00333{bottom:381.448500px;}
.y23_c00333{bottom:403.423500px;}
.y22_c00333{bottom:425.323500px;}
.y21_c00333{bottom:447.673500px;}
.y20_c00333{bottom:469.273500px;}
.y1f_c00333{bottom:490.500000px;}
.y1e_c00333{bottom:512.098500px;}
.y1d_c00333{bottom:533.698500px;}
.y1c_c00333{bottom:554.923500px;}
.y1b_c00333{bottom:576.223500px;}
.y1a_c00333{bottom:598.500000px;}
.y19_c00333{bottom:620.473500px;}
.y18_c00333{bottom:642.073500px;}
.y17_c00333{bottom:663.673500px;}
.y16_c00333{bottom:685.273500px;}
.y14_c00333{bottom:704.398500px;}
.y15_c00333{bottom:705.448500px;}
.y13_c00333{bottom:728.098500px;}
.y12_c00333{bottom:750.075000px;}
.y11_c00333{bottom:769.500000px;}
.y10_c00333{bottom:792.900000px;}
.yf_c00333{bottom:814.125000px;}
.ye_c00333{bottom:835.050000px;}
.yd_c00333{bottom:856.198500px;}
.yc_c00333{bottom:873.900000px;}
.yb_c00333{bottom:897.675000px;}
.ya_c00333{bottom:919.573500px;}
.y9_c00333{bottom:941.925000px;}
.y8_c00333{bottom:957.448500px;}
.y7_c00333{bottom:984.448500px;}
.y6_c00333{bottom:1006.050000px;}
.y5_c00333{bottom:1026.900000px;}
.y4_c00333{bottom:1048.125000px;}
.y1_c00333{bottom:1095.675000px;}
.y3_c00333{bottom:1104.675000px;}
.y2_c00333{bottom:1110.073500px;}
.h2_c00333{height:58.886719px;}
.h3_c00333{height:64.775391px;}
.h1_c00333{height:70.664062px;}
.h4_c00333{height:76.552734px;}
.h0_c00333{height:1174.500000px;}
.w0_c00333{width:731.977200px;}
.w1_c00333{width:732.000000px;}
.x0_c00333{left:0.000000px;}
.x10_c00333{left:37.090200px;}
.xd_c00333{left:38.140200px;}
.xc_c00333{left:39.190200px;}
.xa_c00333{left:40.315200px;}
.x8_c00333{left:41.365200px;}
.x7_c00333{left:42.490200px;}
.x5_c00333{left:43.915200px;}
.x4_c00333{left:45.715200px;}
.x1_c00333{left:65.515200px;}
.xf_c00333{left:68.740200px;}
.xe_c00333{left:69.790200px;}
.x9_c00333{left:71.590200px;}
.x6_c00333{left:74.140200px;}
.x2_c00333{left:92.140200px;}
.xb_c00333{left:135.340200px;}
.x3_c00333{left:265.990200px;}
.x11_c00333{left:649.390200px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls0_c00333{letter-spacing:0.000000pt;}
.ws0_c00333{word-spacing:0.000000pt;}
.fs1_c00333{font-size:53.333333pt;}
.fs2_c00333{font-size:58.666667pt;}
.fs0_c00333{font-size:64.000000pt;}
.fs3_c00333{font-size:69.333333pt;}
.y0_c00333{bottom:0.000000pt;}
.y32_c00333{bottom:84.598667pt;}
.y31_c00333{bottom:86.532000pt;}
.y30_c00333{bottom:109.598667pt;}
.y2f_c00333{bottom:125.932000pt;}
.y2e_c00333{bottom:144.798667pt;}
.y2d_c00333{bottom:163.666667pt;}
.y2c_c00333{bottom:185.132000pt;}
.y2b_c00333{bottom:203.333333pt;}
.y2a_c00333{bottom:222.598667pt;}
.y29_c00333{bottom:243.065333pt;}
.y28_c00333{bottom:261.932000pt;}
.y27_c00333{bottom:283.065333pt;}
.y26_c00333{bottom:300.666667pt;}
.y25_c00333{bottom:319.865333pt;}
.y24_c00333{bottom:339.065333pt;}
.y23_c00333{bottom:358.598667pt;}
.y22_c00333{bottom:378.065333pt;}
.y21_c00333{bottom:397.932000pt;}
.y20_c00333{bottom:417.132000pt;}
.y1f_c00333{bottom:436.000000pt;}
.y1e_c00333{bottom:455.198667pt;}
.y1d_c00333{bottom:474.398667pt;}
.y1c_c00333{bottom:493.265333pt;}
.y1b_c00333{bottom:512.198667pt;}
.y1a_c00333{bottom:532.000000pt;}
.y19_c00333{bottom:551.532000pt;}
.y18_c00333{bottom:570.732000pt;}
.y17_c00333{bottom:589.932000pt;}
.y16_c00333{bottom:609.132000pt;}
.y14_c00333{bottom:626.132000pt;}
.y15_c00333{bottom:627.065333pt;}
.y13_c00333{bottom:647.198667pt;}
.y12_c00333{bottom:666.733333pt;}
.y11_c00333{bottom:684.000000pt;}
.y10_c00333{bottom:704.800000pt;}
.yf_c00333{bottom:723.666667pt;}
.ye_c00333{bottom:742.266667pt;}
.yd_c00333{bottom:761.065333pt;}
.yc_c00333{bottom:776.800000pt;}
.yb_c00333{bottom:797.933333pt;}
.ya_c00333{bottom:817.398667pt;}
.y9_c00333{bottom:837.266667pt;}
.y8_c00333{bottom:851.065333pt;}
.y7_c00333{bottom:875.065333pt;}
.y6_c00333{bottom:894.266667pt;}
.y5_c00333{bottom:912.800000pt;}
.y4_c00333{bottom:931.666667pt;}
.y1_c00333{bottom:973.933333pt;}
.y3_c00333{bottom:981.933333pt;}
.y2_c00333{bottom:986.732000pt;}
.h2_c00333{height:52.343750pt;}
.h3_c00333{height:57.578125pt;}
.h1_c00333{height:62.812500pt;}
.h4_c00333{height:68.046875pt;}
.h0_c00333{height:1044.000000pt;}
.w0_c00333{width:650.646400pt;}
.w1_c00333{width:650.666667pt;}
.x0_c00333{left:0.000000pt;}
.x10_c00333{left:32.969067pt;}
.xd_c00333{left:33.902400pt;}
.xc_c00333{left:34.835733pt;}
.xa_c00333{left:35.835733pt;}
.x8_c00333{left:36.769067pt;}
.x7_c00333{left:37.769067pt;}
.x5_c00333{left:39.035733pt;}
.x4_c00333{left:40.635733pt;}
.x1_c00333{left:58.235733pt;}
.xf_c00333{left:61.102400pt;}
.xe_c00333{left:62.035733pt;}
.x9_c00333{left:63.635733pt;}
.x6_c00333{left:65.902400pt;}
.x2_c00333{left:81.902400pt;}
.xb_c00333{left:120.302400pt;}
.x3_c00333{left:236.435733pt;}
.x11_c00333{left:577.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e4a089502ef336e251e7c13.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00334;src:url('chunks/assets/font_5093fdbe12183245b8b338a2.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00334;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00334{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00334{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8_c00334{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c00334{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00334{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5_c00334{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m0_c00334{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00334{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00334{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00334{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00334{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00334{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9_c00334{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00334{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00334{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00334{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00334{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m11_c00334{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c00334{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00334{color:transparent;}
.fs0_c00334{font-size:54.000000px;}
.fs1_c00334{font-size:72.000000px;}
.fs2_c00334{font-size:78.000000px;}
.y0_c00334{bottom:0.000000px;}
.y3b_c00334{bottom:87.298500px;}
.y3a_c00334{bottom:107.473500px;}
.y37_c00334{bottom:127.198500px;}
.y38_c00334{bottom:130.500000px;}
.y39_c00334{bottom:130.875000px;}
.y36_c00334{bottom:148.798500px;}
.y35_c00334{bottom:169.723500px;}
.y34_c00334{bottom:185.250000px;}
.y33_c00334{bottom:211.198500px;}
.y32_c00334{bottom:231.673500px;}
.y31_c00334{bottom:251.773500px;}
.y30_c00334{bottom:272.025000px;}
.y2f_c00334{bottom:292.875000px;}
.y2e_c00334{bottom:313.048500px;}
.y2d_c00334{bottom:334.650000px;}
.y2c_c00334{bottom:355.500000px;}
.y2b_c00334{bottom:377.098500px;}
.y2a_c00334{bottom:397.948500px;}
.y29_c00334{bottom:417.448500px;}
.y28_c00334{bottom:439.348500px;}
.y27_c00334{bottom:460.273500px;}
.y25_c00334{bottom:481.125000px;}
.y26_c00334{bottom:481.500000px;}
.y24_c00334{bottom:481.875000px;}
.y23_c00334{bottom:503.098500px;}
.y22_c00334{bottom:524.323500px;}
.y21_c00334{bottom:545.625000px;}
.y20_c00334{bottom:567.148500px;}
.y1f_c00334{bottom:588.448500px;}
.y1e_c00334{bottom:609.598500px;}
.y1d_c00334{bottom:630.898500px;}
.y1c_c00334{bottom:652.125000px;}
.y1b_c00334{bottom:674.098500px;}
.y1a_c00334{bottom:694.948500px;}
.y19_c00334{bottom:713.323500px;}
.y18_c00334{bottom:715.125000px;}
.y17_c00334{bottom:716.923500px;}
.y16_c00334{bottom:737.473500px;}
.y15_c00334{bottom:758.700000px;}
.y14_c00334{bottom:780.675000px;}
.y13_c00334{bottom:801.598500px;}
.y12_c00334{bottom:825.000000px;}
.y11_c00334{bottom:839.323500px;}
.y10_c00334{bottom:839.698500px;}
.yf_c00334{bottom:845.098500px;}
.ye_c00334{bottom:866.323500px;}
.yd_c00334{bottom:887.550000px;}
.yc_c00334{bottom:908.473500px;}
.yb_c00334{bottom:929.025000px;}
.ya_c00334{bottom:950.550000px;}
.y9_c00334{bottom:964.650000px;}
.y8_c00334{bottom:971.848500px;}
.y7_c00334{bottom:996.300000px;}
.y6_c00334{bottom:1008.900000px;}
.y5_c00334{bottom:1009.650000px;}
.y4_c00334{bottom:1015.348500px;}
.y3_c00334{bottom:1066.500000px;}
.y1_c00334{bottom:1072.948500px;}
.y2_c00334{bottom:1080.900000px;}
.h1_c00334{height:54.421875px;}
.h3_c00334{height:70.664062px;}
.h2_c00334{height:72.562500px;}
.h4_c00334{height:76.514648px;}
.h0_c00334{height:1174.500000px;}
.w0_c00334{width:731.977200px;}
.w1_c00334{width:732.000000px;}
.x0_c00334{left:0.000000px;}
.xf_c00334{left:26.590200px;}
.x7_c00334{left:29.890200px;}
.x4_c00334{left:30.940200px;}
.xa_c00334{left:31.990200px;}
.x12_c00334{left:33.115200px;}
.x14_c00334{left:35.588700px;}
.x15_c00334{left:36.715200px;}
.x16_c00334{left:37.765200px;}
.x1a_c00334{left:38.890200px;}
.x8_c00334{left:63.340200px;}
.xc_c00334{left:66.565200px;}
.x13_c00334{left:67.690200px;}
.x17_c00334{left:70.540200px;}
.x1_c00334{left:246.190200px;}
.x2_c00334{left:442.090200px;}
.xd_c00334{left:475.165200px;}
.xe_c00334{left:494.290200px;}
.x18_c00334{left:515.140200px;}
.x5_c00334{left:528.490200px;}
.x19_c00334{left:547.540200px;}
.x10_c00334{left:560.140200px;}
.x9_c00334{left:568.090200px;}
.x11_c00334{left:584.290200px;}
.x3_c00334{left:605.140200px;}
.xb_c00334{left:606.565200px;}
.x6_c00334{left:642.190200px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls0_c00334{letter-spacing:0.000000pt;}
.ws0_c00334{word-spacing:0.000000pt;}
.fs0_c00334{font-size:48.000000pt;}
.fs1_c00334{font-size:64.000000pt;}
.fs2_c00334{font-size:69.333333pt;}
.y0_c00334{bottom:0.000000pt;}
.y3b_c00334{bottom:77.598667pt;}
.y3a_c00334{bottom:95.532000pt;}
.y37_c00334{bottom:113.065333pt;}
.y38_c00334{bottom:116.000000pt;}
.y39_c00334{bottom:116.333333pt;}
.y36_c00334{bottom:132.265333pt;}
.y35_c00334{bottom:150.865333pt;}
.y34_c00334{bottom:164.666667pt;}
.y33_c00334{bottom:187.732000pt;}
.y32_c00334{bottom:205.932000pt;}
.y31_c00334{bottom:223.798667pt;}
.y30_c00334{bottom:241.800000pt;}
.y2f_c00334{bottom:260.333333pt;}
.y2e_c00334{bottom:278.265333pt;}
.y2d_c00334{bottom:297.466667pt;}
.y2c_c00334{bottom:316.000000pt;}
.y2b_c00334{bottom:335.198667pt;}
.y2a_c00334{bottom:353.732000pt;}
.y29_c00334{bottom:371.065333pt;}
.y28_c00334{bottom:390.532000pt;}
.y27_c00334{bottom:409.132000pt;}
.y25_c00334{bottom:427.666667pt;}
.y26_c00334{bottom:428.000000pt;}
.y24_c00334{bottom:428.333333pt;}
.y23_c00334{bottom:447.198667pt;}
.y22_c00334{bottom:466.065333pt;}
.y21_c00334{bottom:485.000000pt;}
.y20_c00334{bottom:504.132000pt;}
.y1f_c00334{bottom:523.065333pt;}
.y1e_c00334{bottom:541.865333pt;}
.y1d_c00334{bottom:560.798667pt;}
.y1c_c00334{bottom:579.666667pt;}
.y1b_c00334{bottom:599.198667pt;}
.y1a_c00334{bottom:617.732000pt;}
.y19_c00334{bottom:634.065333pt;}
.y18_c00334{bottom:635.666667pt;}
.y17_c00334{bottom:637.265333pt;}
.y16_c00334{bottom:655.532000pt;}
.y15_c00334{bottom:674.400000pt;}
.y14_c00334{bottom:693.933333pt;}
.y13_c00334{bottom:712.532000pt;}
.y12_c00334{bottom:733.333333pt;}
.y11_c00334{bottom:746.065333pt;}
.y10_c00334{bottom:746.398667pt;}
.yf_c00334{bottom:751.198667pt;}
.ye_c00334{bottom:770.065333pt;}
.yd_c00334{bottom:788.933333pt;}
.yc_c00334{bottom:807.532000pt;}
.yb_c00334{bottom:825.800000pt;}
.ya_c00334{bottom:844.933333pt;}
.y9_c00334{bottom:857.466667pt;}
.y8_c00334{bottom:863.865333pt;}
.y7_c00334{bottom:885.600000pt;}
.y6_c00334{bottom:896.800000pt;}
.y5_c00334{bottom:897.466667pt;}
.y4_c00334{bottom:902.532000pt;}
.y3_c00334{bottom:948.000000pt;}
.y1_c00334{bottom:953.732000pt;}
.y2_c00334{bottom:960.800000pt;}
.h1_c00334{height:48.375000pt;}
.h3_c00334{height:62.812500pt;}
.h2_c00334{height:64.500000pt;}
.h4_c00334{height:68.013021pt;}
.h0_c00334{height:1044.000000pt;}
.w0_c00334{width:650.646400pt;}
.w1_c00334{width:650.666667pt;}
.x0_c00334{left:0.000000pt;}
.xf_c00334{left:23.635733pt;}
.x7_c00334{left:26.569067pt;}
.x4_c00334{left:27.502400pt;}
.xa_c00334{left:28.435733pt;}
.x12_c00334{left:29.435733pt;}
.x14_c00334{left:31.634400pt;}
.x15_c00334{left:32.635733pt;}
.x16_c00334{left:33.569067pt;}
.x1a_c00334{left:34.569067pt;}
.x8_c00334{left:56.302400pt;}
.xc_c00334{left:59.169067pt;}
.x13_c00334{left:60.169067pt;}
.x17_c00334{left:62.702400pt;}
.x1_c00334{left:218.835733pt;}
.x2_c00334{left:392.969067pt;}
.xd_c00334{left:422.369067pt;}
.xe_c00334{left:439.369067pt;}
.x18_c00334{left:457.902400pt;}
.x5_c00334{left:469.769067pt;}
.x19_c00334{left:486.702400pt;}
.x10_c00334{left:497.902400pt;}
.x9_c00334{left:504.969067pt;}
.x11_c00334{left:519.369067pt;}
.x3_c00334{left:537.902400pt;}
.xb_c00334{left:539.169067pt;}
.x6_c00334{left:570.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0491416e9032f0062c576ea7.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00335;src:url('chunks/assets/font_8d15b1e277a826f1648b9785.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00335{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m17_c00335{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00335{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c00335{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c00335{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00335{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c00335{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00335{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00335{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00335{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c00335{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c00335{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00335{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00335{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00335{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00335{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00335{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00335{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00335{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00335{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00335{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00335{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c00335{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00335{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00335{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00335{word-spacing:0.000000px;}
.fc0_c00335{color:transparent;}
.fs1_c00335{font-size:60.000000px;}
.fs0_c00335{font-size:72.000000px;}
.fs2_c00335{font-size:78.000000px;}
.y0_c00335{bottom:0.000000px;}
.y47_c00335{bottom:92.698500px;}
.y46_c00335{bottom:104.923500px;}
.y45_c00335{bottom:125.848500px;}
.y44_c00335{bottom:147.823500px;}
.y42_c00335{bottom:168.298500px;}
.y43_c00335{bottom:168.673500px;}
.y41_c00335{bottom:169.798500px;}
.y40_c00335{bottom:192.750000px;}
.y3f_c00335{bottom:196.723500px;}
.y3e_c00335{bottom:211.500000px;}
.y3d_c00335{bottom:214.348500px;}
.y3c_c00335{bottom:217.948500px;}
.y3b_c00335{bottom:233.773500px;}
.y3a_c00335{bottom:234.898500px;}
.y39_c00335{bottom:240.673500px;}
.y38_c00335{bottom:241.423500px;}
.y36_c00335{bottom:255.073500px;}
.y37_c00335{bottom:255.750000px;}
.y35_c00335{bottom:256.500000px;}
.y34_c00335{bottom:261.900000px;}
.y32_c00335{bottom:276.298500px;}
.y33_c00335{bottom:276.973500px;}
.y31_c00335{bottom:279.223500px;}
.y30_c00335{bottom:300.073500px;}
.y2f_c00335{bottom:322.348500px;}
.y2e_c00335{bottom:326.698500px;}
.y2d_c00335{bottom:343.573500px;}
.y2c_c00335{bottom:368.098500px;}
.y2b_c00335{bottom:387.150000px;}
.y2a_c00335{bottom:409.125000px;}
.y29_c00335{bottom:430.723500px;}
.y28_c00335{bottom:452.323500px;}
.y27_c00335{bottom:473.923500px;}
.y26_c00335{bottom:475.723500px;}
.y25_c00335{bottom:496.273500px;}
.y24_c00335{bottom:517.500000px;}
.y23_c00335{bottom:538.798500px;}
.y22_c00335{bottom:560.323500px;}
.y21_c00335{bottom:581.923500px;}
.y20_c00335{bottom:603.898500px;}
.y1f_c00335{bottom:625.875000px;}
.y1e_c00335{bottom:647.473500px;}
.y1d_c00335{bottom:669.073500px;}
.y1c_c00335{bottom:690.673500px;}
.y1b_c00335{bottom:712.273500px;}
.y1a_c00335{bottom:733.875000px;}
.y19_c00335{bottom:754.048500px;}
.y18_c00335{bottom:777.375000px;}
.y15_c00335{bottom:795.073500px;}
.y16_c00335{bottom:795.823500px;}
.y17_c00335{bottom:797.925000px;}
.y14_c00335{bottom:819.900000px;}
.y11_c00335{bottom:837.900000px;}
.y12_c00335{bottom:838.948500px;}
.y13_c00335{bottom:841.500000px;}
.yf_c00335{bottom:857.323500px;}
.y10_c00335{bottom:860.625000px;}
.yd_c00335{bottom:878.250000px;}
.ye_c00335{bottom:883.573500px;}
.yc_c00335{bottom:905.175000px;}
.yb_c00335{bottom:927.150000px;}
.ya_c00335{bottom:949.125000px;}
.y9_c00335{bottom:970.050000px;}
.y6_c00335{bottom:983.025000px;}
.y8_c00335{bottom:990.900000px;}
.y7_c00335{bottom:1003.875000px;}
.y5_c00335{bottom:1013.250000px;}
.y4_c00335{bottom:1033.723500px;}
.y1_c00335{bottom:1080.900000px;}
.y3_c00335{bottom:1090.275000px;}
.y2_c00335{bottom:1095.900000px;}
.h2_c00335{height:58.886719px;}
.h1_c00335{height:70.664062px;}
.h3_c00335{height:72.562500px;}
.h4_c00335{height:76.552734px;}
.h5_c00335{height:78.609375px;}
.h0_c00335{height:1174.500000px;}
.w0_c00335{width:731.977200px;}
.w1_c00335{width:732.000000px;}
.x0_c00335{left:0.000000px;}
.x2a_c00335{left:68.365200px;}
.x25_c00335{left:69.790200px;}
.x18_c00335{left:71.290200px;}
.x14_c00335{left:72.715200px;}
.x15_c00335{left:73.765200px;}
.x10_c00335{left:74.890200px;}
.xa_c00335{left:75.938700px;}
.xb_c00335{left:76.990200px;}
.x6_c00335{left:78.490200px;}
.x4_c00335{left:80.965200px;}
.x19_c00335{left:88.540200px;}
.x5_c00335{left:92.140200px;}
.x11_c00335{left:93.563700px;}
.xc_c00335{left:98.965200px;}
.x1_c00335{left:101.140200px;}
.x27_c00335{left:102.190200px;}
.x13_c00335{left:103.990200px;}
.x16_c00335{left:105.115200px;}
.xd_c00335{left:106.540200px;}
.x9_c00335{left:107.590200px;}
.x8_c00335{left:108.715200px;}
.x1f_c00335{left:110.890200px;}
.x12_c00335{left:123.115200px;}
.x2_c00335{left:128.515200px;}
.x7_c00335{left:137.515200px;}
.x1c_c00335{left:161.290200px;}
.x20_c00335{left:172.090200px;}
.x17_c00335{left:181.388700px;}
.xe_c00335{left:192.565200px;}
.xf_c00335{left:209.140200px;}
.x26_c00335{left:215.965200px;}
.x22_c00335{left:221.365200px;}
.x3_c00335{left:303.790200px;}
.x23_c00335{left:418.315200px;}
.x21_c00335{left:541.390200px;}
.x1a_c00335{left:556.165200px;}
.x28_c00335{left:583.540200px;}
.x1d_c00335{left:599.740200px;}
.x1e_c00335{left:619.165200px;}
.x29_c00335{left:620.290200px;}
.x1b_c00335{left:675.715200px;}
.x24_c00335{left:683.290200px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls0_c00335{letter-spacing:0.000000pt;}
.ws0_c00335{word-spacing:0.000000pt;}
.fs1_c00335{font-size:53.333333pt;}
.fs0_c00335{font-size:64.000000pt;}
.fs2_c00335{font-size:69.333333pt;}
.y0_c00335{bottom:0.000000pt;}
.y47_c00335{bottom:82.398667pt;}
.y46_c00335{bottom:93.265333pt;}
.y45_c00335{bottom:111.865333pt;}
.y44_c00335{bottom:131.398667pt;}
.y42_c00335{bottom:149.598667pt;}
.y43_c00335{bottom:149.932000pt;}
.y41_c00335{bottom:150.932000pt;}
.y40_c00335{bottom:171.333333pt;}
.y3f_c00335{bottom:174.865333pt;}
.y3e_c00335{bottom:188.000000pt;}
.y3d_c00335{bottom:190.532000pt;}
.y3c_c00335{bottom:193.732000pt;}
.y3b_c00335{bottom:207.798667pt;}
.y3a_c00335{bottom:208.798667pt;}
.y39_c00335{bottom:213.932000pt;}
.y38_c00335{bottom:214.598667pt;}
.y36_c00335{bottom:226.732000pt;}
.y37_c00335{bottom:227.333333pt;}
.y35_c00335{bottom:228.000000pt;}
.y34_c00335{bottom:232.800000pt;}
.y32_c00335{bottom:245.598667pt;}
.y33_c00335{bottom:246.198667pt;}
.y31_c00335{bottom:248.198667pt;}
.y30_c00335{bottom:266.732000pt;}
.y2f_c00335{bottom:286.532000pt;}
.y2e_c00335{bottom:290.398667pt;}
.y2d_c00335{bottom:305.398667pt;}
.y2c_c00335{bottom:327.198667pt;}
.y2b_c00335{bottom:344.133333pt;}
.y2a_c00335{bottom:363.666667pt;}
.y29_c00335{bottom:382.865333pt;}
.y28_c00335{bottom:402.065333pt;}
.y27_c00335{bottom:421.265333pt;}
.y26_c00335{bottom:422.865333pt;}
.y25_c00335{bottom:441.132000pt;}
.y24_c00335{bottom:460.000000pt;}
.y23_c00335{bottom:478.932000pt;}
.y22_c00335{bottom:498.065333pt;}
.y21_c00335{bottom:517.265333pt;}
.y20_c00335{bottom:536.798667pt;}
.y1f_c00335{bottom:556.333333pt;}
.y1e_c00335{bottom:575.532000pt;}
.y1d_c00335{bottom:594.732000pt;}
.y1c_c00335{bottom:613.932000pt;}
.y1b_c00335{bottom:633.132000pt;}
.y1a_c00335{bottom:652.333333pt;}
.y19_c00335{bottom:670.265333pt;}
.y18_c00335{bottom:691.000000pt;}
.y15_c00335{bottom:706.732000pt;}
.y16_c00335{bottom:707.398667pt;}
.y17_c00335{bottom:709.266667pt;}
.y14_c00335{bottom:728.800000pt;}
.y11_c00335{bottom:744.800000pt;}
.y12_c00335{bottom:745.732000pt;}
.y13_c00335{bottom:748.000000pt;}
.yf_c00335{bottom:762.065333pt;}
.y10_c00335{bottom:765.000000pt;}
.yd_c00335{bottom:780.666667pt;}
.ye_c00335{bottom:785.398667pt;}
.yc_c00335{bottom:804.600000pt;}
.yb_c00335{bottom:824.133333pt;}
.ya_c00335{bottom:843.666667pt;}
.y9_c00335{bottom:862.266667pt;}
.y6_c00335{bottom:873.800000pt;}
.y8_c00335{bottom:880.800000pt;}
.y7_c00335{bottom:892.333333pt;}
.y5_c00335{bottom:900.666667pt;}
.y4_c00335{bottom:918.865333pt;}
.y1_c00335{bottom:960.800000pt;}
.y3_c00335{bottom:969.133333pt;}
.y2_c00335{bottom:974.133333pt;}
.h2_c00335{height:52.343750pt;}
.h1_c00335{height:62.812500pt;}
.h3_c00335{height:64.500000pt;}
.h4_c00335{height:68.046875pt;}
.h5_c00335{height:69.875000pt;}
.h0_c00335{height:1044.000000pt;}
.w0_c00335{width:650.646400pt;}
.w1_c00335{width:650.666667pt;}
.x0_c00335{left:0.000000pt;}
.x2a_c00335{left:60.769067pt;}
.x25_c00335{left:62.035733pt;}
.x18_c00335{left:63.369067pt;}
.x14_c00335{left:64.635733pt;}
.x15_c00335{left:65.569067pt;}
.x10_c00335{left:66.569067pt;}
.xa_c00335{left:67.501067pt;}
.xb_c00335{left:68.435733pt;}
.x6_c00335{left:69.769067pt;}
.x4_c00335{left:71.969067pt;}
.x19_c00335{left:78.702400pt;}
.x5_c00335{left:81.902400pt;}
.x11_c00335{left:83.167733pt;}
.xc_c00335{left:87.969067pt;}
.x1_c00335{left:89.902400pt;}
.x27_c00335{left:90.835733pt;}
.x13_c00335{left:92.435733pt;}
.x16_c00335{left:93.435733pt;}
.xd_c00335{left:94.702400pt;}
.x9_c00335{left:95.635733pt;}
.x8_c00335{left:96.635733pt;}
.x1f_c00335{left:98.569067pt;}
.x12_c00335{left:109.435733pt;}
.x2_c00335{left:114.235733pt;}
.x7_c00335{left:122.235733pt;}
.x1c_c00335{left:143.369067pt;}
.x20_c00335{left:152.969067pt;}
.x17_c00335{left:161.234400pt;}
.xe_c00335{left:171.169067pt;}
.xf_c00335{left:185.902400pt;}
.x26_c00335{left:191.969067pt;}
.x22_c00335{left:196.769067pt;}
.x3_c00335{left:270.035733pt;}
.x23_c00335{left:371.835733pt;}
.x21_c00335{left:481.235733pt;}
.x1a_c00335{left:494.369067pt;}
.x28_c00335{left:518.702400pt;}
.x1d_c00335{left:533.102400pt;}
.x1e_c00335{left:550.369067pt;}
.x29_c00335{left:551.369067pt;}
.x1b_c00335{left:600.635733pt;}
.x24_c00335{left:607.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3dad8d0b5c0d7e2a4bc711e2.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00336;src:url('chunks/assets/font_6e58f2fef83ef9f6f9912de4.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00336;src:url('chunks/assets/font_b8f07979d36a87ccbb5a3426.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00336{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c00336{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf_c00336{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c00336{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c00336{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c00336{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00336{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00336{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00336{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c00336{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00336{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00336{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00336{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md_c00336{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2_c00336{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c00336{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00336{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00336{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m0_c00336{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me_c00336{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.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;}
}
.ws0_c00336{word-spacing:0.000000px;}
.fc0_c00336{color:transparent;}
.fs1_c00336{font-size:54.000000px;}
.fs0_c00336{font-size:60.000000px;}
.fs3_c00336{font-size:66.000000px;}
.fs2_c00336{font-size:72.000000px;}
.y0_c00336{bottom:0.000000px;}
.y3c_c00336{bottom:94.125000px;}
.y3b_c00336{bottom:114.598500px;}
.y3a_c00336{bottom:135.523500px;}
.y38_c00336{bottom:152.098500px;}
.y39_c00336{bottom:155.698500px;}
.y36_c00336{bottom:176.173500px;}
.y37_c00336{bottom:180.898500px;}
.y35_c00336{bottom:193.125000px;}
.y34_c00336{bottom:217.273500px;}
.y33_c00336{bottom:234.598500px;}
.y32_c00336{bottom:258.000000px;}
.y31_c00336{bottom:278.848500px;}
.y30_c00336{bottom:299.698500px;}
.y2e_c00336{bottom:319.500000px;}
.y2f_c00336{bottom:322.423500px;}
.y2d_c00336{bottom:341.098500px;}
.y2c_c00336{bottom:362.698500px;}
.y2a_c00336{bottom:381.750000px;}
.y2b_c00336{bottom:383.923500px;}
.y28_c00336{bottom:404.848500px;}
.y29_c00336{bottom:406.275000px;}
.y27_c00336{bottom:425.698500px;}
.y26_c00336{bottom:446.548500px;}
.y25_c00336{bottom:468.148500px;}
.y24_c00336{bottom:489.750000px;}
.y23_c00336{bottom:510.298500px;}
.y22_c00336{bottom:531.898500px;}
.y21_c00336{bottom:553.500000px;}
.y20_c00336{bottom:574.723500px;}
.y1f_c00336{bottom:595.948500px;}
.y1e_c00336{bottom:617.250000px;}
.y1d_c00336{bottom:638.473500px;}
.y1c_c00336{bottom:659.698500px;}
.y1b_c00336{bottom:681.298500px;}
.y1a_c00336{bottom:702.898500px;}
.y19_c00336{bottom:724.125000px;}
.y18_c00336{bottom:745.348500px;}
.y17_c00336{bottom:763.348500px;}
.y16_c00336{bottom:766.648500px;}
.y15_c00336{bottom:783.523500px;}
.y14_c00336{bottom:784.198500px;}
.y13_c00336{bottom:788.550000px;}
.y12_c00336{bottom:810.900000px;}
.y11_c00336{bottom:831.073500px;}
.y10_c00336{bottom:832.875000px;}
.yf_c00336{bottom:847.948500px;}
.ye_c00336{bottom:852.675000px;}
.yd_c00336{bottom:874.948500px;}
.yc_c00336{bottom:894.448500px;}
.yb_c00336{bottom:917.473500px;}
.ya_c00336{bottom:932.550000px;}
.y9_c00336{bottom:937.275000px;}
.y8_c00336{bottom:958.125000px;}
.y7_c00336{bottom:978.973500px;}
.y6_c00336{bottom:982.650000px;}
.y5_c00336{bottom:996.300000px;}
.y4_c00336{bottom:1001.025000px;}
.y3_c00336{bottom:1021.500000px;}
.y2_c00336{bottom:1080.900000px;}
.y1_c00336{bottom:1082.025000px;}
.h2_c00336{height:54.421875px;}
.h1_c00336{height:60.468750px;}
.h7_c00336{height:64.775391px;}
.h5_c00336{height:66.515625px;}
.h6_c00336{height:70.628906px;}
.h3_c00336{height:70.664062px;}
.h4_c00336{height:72.562500px;}
.h0_c00336{height:1174.500000px;}
.w0_c00336{width:731.977200px;}
.w1_c00336{width:732.000000px;}
.x0_c00336{left:0.000000px;}
.x18_c00336{left:47.890200px;}
.x17_c00336{left:48.940200px;}
.x14_c00336{left:50.365200px;}
.x16_c00336{left:51.490200px;}
.x13_c00336{left:52.540200px;}
.xd_c00336{left:53.965200px;}
.x11_c00336{left:55.765200px;}
.x6_c00336{left:57.565200px;}
.x4_c00336{left:58.990200px;}
.xc_c00336{left:80.590200px;}
.x19_c00336{left:82.765200px;}
.x15_c00336{left:84.938700px;}
.x12_c00336{left:87.115200px;}
.xe_c00336{left:88.915200px;}
.xa_c00336{left:89.965200px;}
.x9_c00336{left:92.140200px;}
.x3_c00336{left:93.563700px;}
.x1c_c00336{left:108.715200px;}
.x7_c00336{left:119.140200px;}
.x1_c00336{left:276.490200px;}
.x2_c00336{left:301.690200px;}
.x1a_c00336{left:356.740200px;}
.x8_c00336{left:503.290200px;}
.x5_c00336{left:583.915200px;}
.xb_c00336{left:600.490200px;}
.xf_c00336{left:627.115200px;}
.x1b_c00336{left:633.565200px;}
.x10_c00336{left:651.940200px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls0_c00336{letter-spacing:0.000000pt;}
.ws0_c00336{word-spacing:0.000000pt;}
.fs1_c00336{font-size:48.000000pt;}
.fs0_c00336{font-size:53.333333pt;}
.fs3_c00336{font-size:58.666667pt;}
.fs2_c00336{font-size:64.000000pt;}
.y0_c00336{bottom:0.000000pt;}
.y3c_c00336{bottom:83.666667pt;}
.y3b_c00336{bottom:101.865333pt;}
.y3a_c00336{bottom:120.465333pt;}
.y38_c00336{bottom:135.198667pt;}
.y39_c00336{bottom:138.398667pt;}
.y36_c00336{bottom:156.598667pt;}
.y37_c00336{bottom:160.798667pt;}
.y35_c00336{bottom:171.666667pt;}
.y34_c00336{bottom:193.132000pt;}
.y33_c00336{bottom:208.532000pt;}
.y32_c00336{bottom:229.333333pt;}
.y31_c00336{bottom:247.865333pt;}
.y30_c00336{bottom:266.398667pt;}
.y2e_c00336{bottom:284.000000pt;}
.y2f_c00336{bottom:286.598667pt;}
.y2d_c00336{bottom:303.198667pt;}
.y2c_c00336{bottom:322.398667pt;}
.y2a_c00336{bottom:339.333333pt;}
.y2b_c00336{bottom:341.265333pt;}
.y28_c00336{bottom:359.865333pt;}
.y29_c00336{bottom:361.133333pt;}
.y27_c00336{bottom:378.398667pt;}
.y26_c00336{bottom:396.932000pt;}
.y25_c00336{bottom:416.132000pt;}
.y24_c00336{bottom:435.333333pt;}
.y23_c00336{bottom:453.598667pt;}
.y22_c00336{bottom:472.798667pt;}
.y21_c00336{bottom:492.000000pt;}
.y20_c00336{bottom:510.865333pt;}
.y1f_c00336{bottom:529.732000pt;}
.y1e_c00336{bottom:548.666667pt;}
.y1d_c00336{bottom:567.532000pt;}
.y1c_c00336{bottom:586.398667pt;}
.y1b_c00336{bottom:605.598667pt;}
.y1a_c00336{bottom:624.798667pt;}
.y19_c00336{bottom:643.666667pt;}
.y18_c00336{bottom:662.532000pt;}
.y17_c00336{bottom:678.532000pt;}
.y16_c00336{bottom:681.465333pt;}
.y15_c00336{bottom:696.465333pt;}
.y14_c00336{bottom:697.065333pt;}
.y13_c00336{bottom:700.933333pt;}
.y12_c00336{bottom:720.800000pt;}
.y11_c00336{bottom:738.732000pt;}
.y10_c00336{bottom:740.333333pt;}
.yf_c00336{bottom:753.732000pt;}
.ye_c00336{bottom:757.933333pt;}
.yd_c00336{bottom:777.732000pt;}
.yc_c00336{bottom:795.065333pt;}
.yb_c00336{bottom:815.532000pt;}
.ya_c00336{bottom:828.933333pt;}
.y9_c00336{bottom:833.133333pt;}
.y8_c00336{bottom:851.666667pt;}
.y7_c00336{bottom:870.198667pt;}
.y6_c00336{bottom:873.466667pt;}
.y5_c00336{bottom:885.600000pt;}
.y4_c00336{bottom:889.800000pt;}
.y3_c00336{bottom:908.000000pt;}
.y2_c00336{bottom:960.800000pt;}
.y1_c00336{bottom:961.800000pt;}
.h2_c00336{height:48.375000pt;}
.h1_c00336{height:53.750000pt;}
.h7_c00336{height:57.578125pt;}
.h5_c00336{height:59.125000pt;}
.h6_c00336{height:62.781250pt;}
.h3_c00336{height:62.812500pt;}
.h4_c00336{height:64.500000pt;}
.h0_c00336{height:1044.000000pt;}
.w0_c00336{width:650.646400pt;}
.w1_c00336{width:650.666667pt;}
.x0_c00336{left:0.000000pt;}
.x18_c00336{left:42.569067pt;}
.x17_c00336{left:43.502400pt;}
.x14_c00336{left:44.769067pt;}
.x16_c00336{left:45.769067pt;}
.x13_c00336{left:46.702400pt;}
.xd_c00336{left:47.969067pt;}
.x11_c00336{left:49.569067pt;}
.x6_c00336{left:51.169067pt;}
.x4_c00336{left:52.435733pt;}
.xc_c00336{left:71.635733pt;}
.x19_c00336{left:73.569067pt;}
.x15_c00336{left:75.501067pt;}
.x12_c00336{left:77.435733pt;}
.xe_c00336{left:79.035733pt;}
.xa_c00336{left:79.969067pt;}
.x9_c00336{left:81.902400pt;}
.x3_c00336{left:83.167733pt;}
.x1c_c00336{left:96.635733pt;}
.x7_c00336{left:105.902400pt;}
.x1_c00336{left:245.769067pt;}
.x2_c00336{left:268.169067pt;}
.x1a_c00336{left:317.102400pt;}
.x8_c00336{left:447.369067pt;}
.x5_c00336{left:519.035733pt;}
.xb_c00336{left:533.769067pt;}
.xf_c00336{left:557.435733pt;}
.x1b_c00336{left:563.169067pt;}
.x10_c00336{left:579.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc68426a2ccd00182504dff2.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00337;src:url('chunks/assets/font_6cb7e81ccad60203c4a11a60.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c00337{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00337{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m5_c00337{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m13_c00337{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00337{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00337{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m17_c00337{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me_c00337{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00337{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00337{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00337{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c00337{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c00337{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c00337{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c00337{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c00337{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00337{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00337{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c00337{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma_c00337{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00337{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c00337{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00337{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00337{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00337{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00337{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00337{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m19_c00337{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11_c00337{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c00337{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00337{color:transparent;}
.fs0_c00337{font-size:60.000000px;}
.fs1_c00337{font-size:72.000000px;}
.fs2_c00337{font-size:84.000000px;}
.fs3_c00337{font-size:216.000000px;}
.y0_c00337{bottom:0.000000px;}
.y44_c00337{bottom:207.523500px;}
.y40_c00337{bottom:211.125000px;}
.y43_c00337{bottom:228.448500px;}
.y42_c00337{bottom:232.723500px;}
.y41_c00337{bottom:234.898500px;}
.y3f_c00337{bottom:254.323500px;}
.y3e_c00337{bottom:271.948500px;}
.y3d_c00337{bottom:276.673500px;}
.y3c_c00337{bottom:279.525000px;}
.y3b_c00337{bottom:294.673500px;}
.y3a_c00337{bottom:317.025000px;}
.y39_c00337{bottom:319.875000px;}
.y38_c00337{bottom:322.048500px;}
.y37_c00337{bottom:323.098500px;}
.y36_c00337{bottom:338.923500px;}
.y35_c00337{bottom:364.500000px;}
.y34_c00337{bottom:382.125000px;}
.y33_c00337{bottom:403.348500px;}
.y32_c00337{bottom:405.900000px;}
.y31_c00337{bottom:407.323500px;}
.y30_c00337{bottom:425.023500px;}
.y2f_c00337{bottom:427.500000px;}
.y2e_c00337{bottom:428.923500px;}
.y2d_c00337{bottom:447.298500px;}
.y2c_c00337{bottom:449.773500px;}
.y2b_c00337{bottom:450.523500px;}
.y2a_c00337{bottom:469.648500px;}
.y29_c00337{bottom:492.298500px;}
.y28_c00337{bottom:512.473500px;}
.y27_c00337{bottom:513.523500px;}
.y26_c00337{bottom:514.273500px;}
.y25_c00337{bottom:534.073500px;}
.y24_c00337{bottom:556.723500px;}
.y23_c00337{bottom:577.273500px;}
.y21_c00337{bottom:577.948500px;}
.y22_c00337{bottom:578.323500px;}
.y20_c00337{bottom:599.250000px;}
.y1f_c00337{bottom:620.848500px;}
.y1e_c00337{bottom:642.448500px;}
.y1d_c00337{bottom:642.750000px;}
.y1c_c00337{bottom:663.298500px;}
.y1b_c00337{bottom:685.648500px;}
.y1a_c00337{bottom:707.548500px;}
.y19_c00337{bottom:729.148500px;}
.y16_c00337{bottom:748.950000px;}
.y17_c00337{bottom:750.075000px;}
.y18_c00337{bottom:750.750000px;}
.y15_c00337{bottom:772.723500px;}
.y14_c00337{bottom:794.025000px;}
.y13_c00337{bottom:815.250000px;}
.y12_c00337{bottom:836.098500px;}
.y10_c00337{bottom:854.098500px;}
.y11_c00337{bottom:857.323500px;}
.yf_c00337{bottom:874.573500px;}
.ye_c00337{bottom:899.848500px;}
.yd_c00337{bottom:921.750000px;}
.yc_c00337{bottom:943.723500px;}
.yb_c00337{bottom:964.948500px;}
.ya_c00337{bottom:986.925000px;}
.y9_c00337{bottom:998.473500px;}
.y7_c00337{bottom:1019.400000px;}
.y8_c00337{bottom:1029.073500px;}
.y6_c00337{bottom:1034.775000px;}
.y4_c00337{bottom:1040.925000px;}
.y5_c00337{bottom:1050.598500px;}
.y1_c00337{bottom:1097.098500px;}
.y3_c00337{bottom:1106.473500px;}
.y2_c00337{bottom:1111.875000px;}
.h1_c00337{height:58.886719px;}
.h3_c00337{height:70.664062px;}
.h2_c00337{height:72.562500px;}
.h4_c00337{height:82.441406px;}
.h5_c00337{height:211.992188px;}
.h0_c00337{height:1174.500000px;}
.w0_c00337{width:731.977200px;}
.w1_c00337{width:732.000000px;}
.x0_c00337{left:0.000000px;}
.xb_c00337{left:70.165200px;}
.x9_c00337{left:71.590200px;}
.x7_c00337{left:72.715200px;}
.x6_c00337{left:74.140200px;}
.x1f_c00337{left:78.790200px;}
.x4_c00337{left:84.938700px;}
.x1_c00337{left:92.890200px;}
.xa_c00337{left:102.190200px;}
.x10_c00337{left:103.690200px;}
.x1b_c00337{left:105.490200px;}
.x8_c00337{left:106.915200px;}
.x11_c00337{left:118.765200px;}
.x2_c00337{left:120.565200px;}
.xc_c00337{left:138.940200px;}
.xd_c00337{left:166.690200px;}
.x12_c00337{left:167.740200px;}
.x5_c00337{left:175.690200px;}
.xf_c00337{left:191.888700px;}
.xe_c00337{left:194.740200px;}
.x1c_c00337{left:215.590200px;}
.x13_c00337{left:218.890200px;}
.x15_c00337{left:227.515200px;}
.x16_c00337{left:231.115200px;}
.x17_c00337{left:233.590200px;}
.x19_c00337{left:234.715200px;}
.x1e_c00337{left:244.765200px;}
.x14_c00337{left:251.965200px;}
.x1a_c00337{left:262.390200px;}
.x18_c00337{left:271.390200px;}
.x1d_c00337{left:274.315200px;}
.x3_c00337{left:298.090200px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls0_c00337{letter-spacing:0.000000pt;}
.ws0_c00337{word-spacing:0.000000pt;}
.fs0_c00337{font-size:53.333333pt;}
.fs1_c00337{font-size:64.000000pt;}
.fs2_c00337{font-size:74.666667pt;}
.fs3_c00337{font-size:192.000000pt;}
.y0_c00337{bottom:0.000000pt;}
.y44_c00337{bottom:184.465333pt;}
.y40_c00337{bottom:187.666667pt;}
.y43_c00337{bottom:203.065333pt;}
.y42_c00337{bottom:206.865333pt;}
.y41_c00337{bottom:208.798667pt;}
.y3f_c00337{bottom:226.065333pt;}
.y3e_c00337{bottom:241.732000pt;}
.y3d_c00337{bottom:245.932000pt;}
.y3c_c00337{bottom:248.466667pt;}
.y3b_c00337{bottom:261.932000pt;}
.y3a_c00337{bottom:281.800000pt;}
.y39_c00337{bottom:284.333333pt;}
.y38_c00337{bottom:286.265333pt;}
.y37_c00337{bottom:287.198667pt;}
.y36_c00337{bottom:301.265333pt;}
.y35_c00337{bottom:324.000000pt;}
.y34_c00337{bottom:339.666667pt;}
.y33_c00337{bottom:358.532000pt;}
.y32_c00337{bottom:360.800000pt;}
.y31_c00337{bottom:362.065333pt;}
.y30_c00337{bottom:377.798667pt;}
.y2f_c00337{bottom:380.000000pt;}
.y2e_c00337{bottom:381.265333pt;}
.y2d_c00337{bottom:397.598667pt;}
.y2c_c00337{bottom:399.798667pt;}
.y2b_c00337{bottom:400.465333pt;}
.y2a_c00337{bottom:417.465333pt;}
.y29_c00337{bottom:437.598667pt;}
.y28_c00337{bottom:455.532000pt;}
.y27_c00337{bottom:456.465333pt;}
.y26_c00337{bottom:457.132000pt;}
.y25_c00337{bottom:474.732000pt;}
.y24_c00337{bottom:494.865333pt;}
.y23_c00337{bottom:513.132000pt;}
.y21_c00337{bottom:513.732000pt;}
.y22_c00337{bottom:514.065333pt;}
.y20_c00337{bottom:532.666667pt;}
.y1f_c00337{bottom:551.865333pt;}
.y1e_c00337{bottom:571.065333pt;}
.y1d_c00337{bottom:571.333333pt;}
.y1c_c00337{bottom:589.598667pt;}
.y1b_c00337{bottom:609.465333pt;}
.y1a_c00337{bottom:628.932000pt;}
.y19_c00337{bottom:648.132000pt;}
.y16_c00337{bottom:665.733333pt;}
.y17_c00337{bottom:666.733333pt;}
.y18_c00337{bottom:667.333333pt;}
.y15_c00337{bottom:686.865333pt;}
.y14_c00337{bottom:705.800000pt;}
.y13_c00337{bottom:724.666667pt;}
.y12_c00337{bottom:743.198667pt;}
.y10_c00337{bottom:759.198667pt;}
.y11_c00337{bottom:762.065333pt;}
.yf_c00337{bottom:777.398667pt;}
.ye_c00337{bottom:799.865333pt;}
.yd_c00337{bottom:819.333333pt;}
.yc_c00337{bottom:838.865333pt;}
.yb_c00337{bottom:857.732000pt;}
.ya_c00337{bottom:877.266667pt;}
.y9_c00337{bottom:887.532000pt;}
.y7_c00337{bottom:906.133333pt;}
.y8_c00337{bottom:914.732000pt;}
.y6_c00337{bottom:919.800000pt;}
.y4_c00337{bottom:925.266667pt;}
.y5_c00337{bottom:933.865333pt;}
.y1_c00337{bottom:975.198667pt;}
.y3_c00337{bottom:983.532000pt;}
.y2_c00337{bottom:988.333333pt;}
.h1_c00337{height:52.343750pt;}
.h3_c00337{height:62.812500pt;}
.h2_c00337{height:64.500000pt;}
.h4_c00337{height:73.281250pt;}
.h5_c00337{height:188.437500pt;}
.h0_c00337{height:1044.000000pt;}
.w0_c00337{width:650.646400pt;}
.w1_c00337{width:650.666667pt;}
.x0_c00337{left:0.000000pt;}
.xb_c00337{left:62.369067pt;}
.x9_c00337{left:63.635733pt;}
.x7_c00337{left:64.635733pt;}
.x6_c00337{left:65.902400pt;}
.x1f_c00337{left:70.035733pt;}
.x4_c00337{left:75.501067pt;}
.x1_c00337{left:82.569067pt;}
.xa_c00337{left:90.835733pt;}
.x10_c00337{left:92.169067pt;}
.x1b_c00337{left:93.769067pt;}
.x8_c00337{left:95.035733pt;}
.x11_c00337{left:105.569067pt;}
.x2_c00337{left:107.169067pt;}
.xc_c00337{left:123.502400pt;}
.xd_c00337{left:148.169067pt;}
.x12_c00337{left:149.102400pt;}
.x5_c00337{left:156.169067pt;}
.xf_c00337{left:170.567733pt;}
.xe_c00337{left:173.102400pt;}
.x1c_c00337{left:191.635733pt;}
.x13_c00337{left:194.569067pt;}
.x15_c00337{left:202.235733pt;}
.x16_c00337{left:205.435733pt;}
.x17_c00337{left:207.635733pt;}
.x19_c00337{left:208.635733pt;}
.x1e_c00337{left:217.569067pt;}
.x14_c00337{left:223.969067pt;}
.x1a_c00337{left:233.235733pt;}
.x18_c00337{left:241.235733pt;}
.x1d_c00337{left:243.835733pt;}
.x3_c00337{left:264.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c107682410e77d54f4b83e6.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00338;src:url('chunks/assets/font_3481d47aa001856cc7ce4f2f.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me_c00338{transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);}
.m2_c00338{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf_c00338{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00338{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c00338{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00338{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c00338{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00338{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00338{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00338{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00338{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00338{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00338{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00338{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00338{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00338{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00338{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c00338{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00338{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c00338{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10_c00338{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m18_c00338{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14_c00338{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m16_c00338{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1_c00338{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00338{word-spacing:0.000000px;}
.fc0_c00338{color:transparent;}
.fs0_c00338{font-size:60.000000px;}
.fs2_c00338{font-size:66.000000px;}
.fs1_c00338{font-size:72.000000px;}
.y0_c00338{bottom:0.000000px;}
.y35_c00338{bottom:83.698500px;}
.y34_c00338{bottom:106.048500px;}
.y33_c00338{bottom:126.148500px;}
.y30_c00338{bottom:143.473500px;}
.y31_c00338{bottom:147.375000px;}
.y32_c00338{bottom:150.298500px;}
.y2d_c00338{bottom:164.323500px;}
.y2e_c00338{bottom:165.823500px;}
.y2f_c00338{bottom:170.098500px;}
.y2c_c00338{bottom:185.923500px;}
.y2b_c00338{bottom:206.848500px;}
.y2a_c00338{bottom:228.823500px;}
.y29_c00338{bottom:249.298500px;}
.y28_c00338{bottom:269.098500px;}
.y27_c00338{bottom:290.025000px;}
.y26_c00338{bottom:311.625000px;}
.y25_c00338{bottom:332.848500px;}
.y24_c00338{bottom:353.698500px;}
.y23_c00338{bottom:374.923500px;}
.y22_c00338{bottom:395.098500px;}
.y21_c00338{bottom:416.698500px;}
.y20_c00338{bottom:437.625000px;}
.y1d_c00338{bottom:458.848500px;}
.y1e_c00338{bottom:459.523500px;}
.y1f_c00338{bottom:460.273500px;}
.y1c_c00338{bottom:480.448500px;}
.y19_c00338{bottom:501.673500px;}
.y1a_c00338{bottom:501.973500px;}
.y1b_c00338{bottom:502.048500px;}
.y18_c00338{bottom:523.198500px;}
.y17_c00338{bottom:545.250000px;}
.y16_c00338{bottom:565.723500px;}
.y15_c00338{bottom:587.023500px;}
.y14_c00338{bottom:608.173500px;}
.y13_c00338{bottom:629.848500px;}
.y12_c00338{bottom:651.073500px;}
.y11_c00338{bottom:672.298500px;}
.y10_c00338{bottom:693.898500px;}
.yf_c00338{bottom:717.298500px;}
.ye_c00338{bottom:736.723500px;}
.yd_c00338{bottom:757.648500px;}
.yc_c00338{bottom:779.175000px;}
.yb_c00338{bottom:801.223500px;}
.ya_c00338{bottom:822.823500px;}
.y9_c00338{bottom:845.098500px;}
.y8_c00338{bottom:865.275000px;}
.y7_c00338{bottom:886.875000px;}
.y6_c00338{bottom:908.098500px;}
.y5_c00338{bottom:928.573500px;}
.y4_c00338{bottom:949.500000px;}
.y3_c00338{bottom:1067.925000px;}
.y1_c00338{bottom:1072.650000px;}
.y2_c00338{bottom:1081.125000px;}
.h1_c00338{height:58.886719px;}
.h3_c00338{height:60.468750px;}
.h4_c00338{height:64.775391px;}
.h2_c00338{height:70.664062px;}
.h0_c00338{height:1174.500000px;}
.w0_c00338{width:731.977200px;}
.w1_c00338{width:732.000000px;}
.x0_c00338{left:0.000000px;}
.x7_c00338{left:61.915200px;}
.x5_c00338{left:62.965200px;}
.x8_c00338{left:64.390200px;}
.xd_c00338{left:86.740200px;}
.xc_c00338{left:88.165200px;}
.x6_c00338{left:95.365200px;}
.x4_c00338{left:97.915200px;}
.xe_c00338{left:164.890200px;}
.x1_c00338{left:303.790200px;}
.xf_c00338{left:321.790200px;}
.x10_c00338{left:348.115200px;}
.x11_c00338{left:423.715200px;}
.x2_c00338{left:471.565200px;}
.xb_c00338{left:571.990200px;}
.x9_c00338{left:603.340200px;}
.xa_c00338{left:606.940200px;}
.x3_c00338{left:636.115200px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls0_c00338{letter-spacing:0.000000pt;}
.ws0_c00338{word-spacing:0.000000pt;}
.fs0_c00338{font-size:53.333333pt;}
.fs2_c00338{font-size:58.666667pt;}
.fs1_c00338{font-size:64.000000pt;}
.y0_c00338{bottom:0.000000pt;}
.y35_c00338{bottom:74.398667pt;}
.y34_c00338{bottom:94.265333pt;}
.y33_c00338{bottom:112.132000pt;}
.y30_c00338{bottom:127.532000pt;}
.y31_c00338{bottom:131.000000pt;}
.y32_c00338{bottom:133.598667pt;}
.y2d_c00338{bottom:146.065333pt;}
.y2e_c00338{bottom:147.398667pt;}
.y2f_c00338{bottom:151.198667pt;}
.y2c_c00338{bottom:165.265333pt;}
.y2b_c00338{bottom:183.865333pt;}
.y2a_c00338{bottom:203.398667pt;}
.y29_c00338{bottom:221.598667pt;}
.y28_c00338{bottom:239.198667pt;}
.y27_c00338{bottom:257.800000pt;}
.y26_c00338{bottom:277.000000pt;}
.y25_c00338{bottom:295.865333pt;}
.y24_c00338{bottom:314.398667pt;}
.y23_c00338{bottom:333.265333pt;}
.y22_c00338{bottom:351.198667pt;}
.y21_c00338{bottom:370.398667pt;}
.y20_c00338{bottom:389.000000pt;}
.y1d_c00338{bottom:407.865333pt;}
.y1e_c00338{bottom:408.465333pt;}
.y1f_c00338{bottom:409.132000pt;}
.y1c_c00338{bottom:427.065333pt;}
.y19_c00338{bottom:445.932000pt;}
.y1a_c00338{bottom:446.198667pt;}
.y1b_c00338{bottom:446.265333pt;}
.y18_c00338{bottom:465.065333pt;}
.y17_c00338{bottom:484.666667pt;}
.y16_c00338{bottom:502.865333pt;}
.y15_c00338{bottom:521.798667pt;}
.y14_c00338{bottom:540.598667pt;}
.y13_c00338{bottom:559.865333pt;}
.y12_c00338{bottom:578.732000pt;}
.y11_c00338{bottom:597.598667pt;}
.y10_c00338{bottom:616.798667pt;}
.yf_c00338{bottom:637.598667pt;}
.ye_c00338{bottom:654.865333pt;}
.yd_c00338{bottom:673.465333pt;}
.yc_c00338{bottom:692.600000pt;}
.yb_c00338{bottom:712.198667pt;}
.ya_c00338{bottom:731.398667pt;}
.y9_c00338{bottom:751.198667pt;}
.y8_c00338{bottom:769.133333pt;}
.y7_c00338{bottom:788.333333pt;}
.y6_c00338{bottom:807.198667pt;}
.y5_c00338{bottom:825.398667pt;}
.y4_c00338{bottom:844.000000pt;}
.y3_c00338{bottom:949.266667pt;}
.y1_c00338{bottom:953.466667pt;}
.y2_c00338{bottom:961.000000pt;}
.h1_c00338{height:52.343750pt;}
.h3_c00338{height:53.750000pt;}
.h4_c00338{height:57.578125pt;}
.h2_c00338{height:62.812500pt;}
.h0_c00338{height:1044.000000pt;}
.w0_c00338{width:650.646400pt;}
.w1_c00338{width:650.666667pt;}
.x0_c00338{left:0.000000pt;}
.x7_c00338{left:55.035733pt;}
.x5_c00338{left:55.969067pt;}
.x8_c00338{left:57.235733pt;}
.xd_c00338{left:77.102400pt;}
.xc_c00338{left:78.369067pt;}
.x6_c00338{left:84.769067pt;}
.x4_c00338{left:87.035733pt;}
.xe_c00338{left:146.569067pt;}
.x1_c00338{left:270.035733pt;}
.xf_c00338{left:286.035733pt;}
.x10_c00338{left:309.435733pt;}
.x11_c00338{left:376.635733pt;}
.x2_c00338{left:419.169067pt;}
.xb_c00338{left:508.435733pt;}
.x9_c00338{left:536.302400pt;}
.xa_c00338{left:539.502400pt;}
.x3_c00338{left:565.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_24b7e1d9c9f87c9dce82410c.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.432129;font-style:normal;font-weight:normal;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_a20c6aa900c341abcdb8f03f.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00339{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m0_c00339{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2_c00339{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00339{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7_c00339{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m14_c00339{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m11_c00339{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00339{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00339{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00339{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00339{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00339{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00339{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c00339{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00339{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00339{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c00339{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13_c00339{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00339{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c00339{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1_c00339{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.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;}
}
.ws0_c00339{word-spacing:0.000000px;}
.fc0_c00339{color:transparent;}
.fs1_c00339{font-size:60.000000px;}
.fs0_c00339{font-size:66.000000px;}
.fs2_c00339{font-size:72.000000px;}
.y0_c00339{bottom:0.000000px;}
.y37_c00339{bottom:88.723500px;}
.y36_c00339{bottom:109.948500px;}
.y35_c00339{bottom:135.898500px;}
.y34_c00339{bottom:153.148500px;}
.y33_c00339{bottom:175.198500px;}
.y32_c00339{bottom:197.098500px;}
.y31_c00339{bottom:219.448500px;}
.y30_c00339{bottom:241.348500px;}
.y2f_c00339{bottom:264.073500px;}
.y2e_c00339{bottom:285.673500px;}
.y2d_c00339{bottom:306.525000px;}
.y2c_c00339{bottom:330.298500px;}
.y2b_c00339{bottom:350.098500px;}
.y2a_c00339{bottom:370.573500px;}
.y29_c00339{bottom:370.650000px;}
.y28_c00339{bottom:372.750000px;}
.y27_c00339{bottom:392.923500px;}
.y26_c00339{bottom:393.673500px;}
.y25_c00339{bottom:395.098500px;}
.y24_c00339{bottom:416.023500px;}
.y23_c00339{bottom:437.923500px;}
.y22_c00339{bottom:459.898500px;}
.y21_c00339{bottom:481.125000px;}
.y20_c00339{bottom:502.723500px;}
.y1f_c00339{bottom:524.323500px;}
.y1e_c00339{bottom:545.548500px;}
.y1d_c00339{bottom:567.148500px;}
.y1c_c00339{bottom:588.750000px;}
.y1b_c00339{bottom:609.673500px;}
.y1a_c00339{bottom:632.323500px;}
.y19_c00339{bottom:654.598500px;}
.y18_c00339{bottom:675.898500px;}
.y17_c00339{bottom:697.875000px;}
.y16_c00339{bottom:719.773500px;}
.y15_c00339{bottom:741.075000px;}
.y14_c00339{bottom:762.973500px;}
.y13_c00339{bottom:784.273500px;}
.y12_c00339{bottom:806.250000px;}
.y11_c00339{bottom:826.800000px;}
.ye_c00339{bottom:844.050000px;}
.yf_c00339{bottom:846.525000px;}
.y10_c00339{bottom:848.698500px;}
.yd_c00339{bottom:868.875000px;}
.yc_c00339{bottom:890.098500px;}
.yb_c00339{bottom:912.073500px;}
.ya_c00339{bottom:934.050000px;}
.y9_c00339{bottom:956.323500px;}
.y8_c00339{bottom:972.598500px;}
.y7_c00339{bottom:998.473500px;}
.y6_c00339{bottom:1018.275000px;}
.y4_c00339{bottom:1031.250000px;}
.y5_c00339{bottom:1040.550000px;}
.y1_c00339{bottom:1085.925000px;}
.y3_c00339{bottom:1096.348500px;}
.y2_c00339{bottom:1101.448500px;}
.h2_c00339{height:58.886719px;}
.h3_c00339{height:64.775391px;}
.h1_c00339{height:68.835938px;}
.h4_c00339{height:70.664062px;}
.h0_c00339{height:1174.500000px;}
.w0_c00339{width:731.977200px;}
.w1_c00339{width:732.000000px;}
.x0_c00339{left:0.000000px;}
.x8_c00339{left:46.090200px;}
.xb_c00339{left:47.140200px;}
.x5_c00339{left:48.190200px;}
.xc_c00339{left:49.315200px;}
.xd_c00339{left:51.115200px;}
.x12_c00339{left:52.165200px;}
.xf_c00339{left:53.290200px;}
.x16_c00339{left:54.340200px;}
.x1_c00339{left:67.690200px;}
.x6_c00339{left:69.790200px;}
.x7_c00339{left:77.740200px;}
.xe_c00339{left:83.140200px;}
.x15_c00339{left:86.365200px;}
.x2_c00339{left:94.315200px;}
.x4_c00339{left:110.515200px;}
.x9_c00339{left:213.490200px;}
.xa_c00339{left:251.290200px;}
.x3_c00339{left:271.390200px;}
.x10_c00339{left:393.788700px;}
.x11_c00339{left:400.990200px;}
.x13_c00339{left:485.965200px;}
.x14_c00339{left:521.290200px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls0_c00339{letter-spacing:0.000000pt;}
.ws0_c00339{word-spacing:0.000000pt;}
.fs1_c00339{font-size:53.333333pt;}
.fs0_c00339{font-size:58.666667pt;}
.fs2_c00339{font-size:64.000000pt;}
.y0_c00339{bottom:0.000000pt;}
.y37_c00339{bottom:78.865333pt;}
.y36_c00339{bottom:97.732000pt;}
.y35_c00339{bottom:120.798667pt;}
.y34_c00339{bottom:136.132000pt;}
.y33_c00339{bottom:155.732000pt;}
.y32_c00339{bottom:175.198667pt;}
.y31_c00339{bottom:195.065333pt;}
.y30_c00339{bottom:214.532000pt;}
.y2f_c00339{bottom:234.732000pt;}
.y2e_c00339{bottom:253.932000pt;}
.y2d_c00339{bottom:272.466667pt;}
.y2c_c00339{bottom:293.598667pt;}
.y2b_c00339{bottom:311.198667pt;}
.y2a_c00339{bottom:329.398667pt;}
.y29_c00339{bottom:329.466667pt;}
.y28_c00339{bottom:331.333333pt;}
.y27_c00339{bottom:349.265333pt;}
.y26_c00339{bottom:349.932000pt;}
.y25_c00339{bottom:351.198667pt;}
.y24_c00339{bottom:369.798667pt;}
.y23_c00339{bottom:389.265333pt;}
.y22_c00339{bottom:408.798667pt;}
.y21_c00339{bottom:427.666667pt;}
.y20_c00339{bottom:446.865333pt;}
.y1f_c00339{bottom:466.065333pt;}
.y1e_c00339{bottom:484.932000pt;}
.y1d_c00339{bottom:504.132000pt;}
.y1c_c00339{bottom:523.333333pt;}
.y1b_c00339{bottom:541.932000pt;}
.y1a_c00339{bottom:562.065333pt;}
.y19_c00339{bottom:581.865333pt;}
.y18_c00339{bottom:600.798667pt;}
.y17_c00339{bottom:620.333333pt;}
.y16_c00339{bottom:639.798667pt;}
.y15_c00339{bottom:658.733333pt;}
.y14_c00339{bottom:678.198667pt;}
.y13_c00339{bottom:697.132000pt;}
.y12_c00339{bottom:716.666667pt;}
.y11_c00339{bottom:734.933333pt;}
.ye_c00339{bottom:750.266667pt;}
.yf_c00339{bottom:752.466667pt;}
.y10_c00339{bottom:754.398667pt;}
.yd_c00339{bottom:772.333333pt;}
.yc_c00339{bottom:791.198667pt;}
.yb_c00339{bottom:810.732000pt;}
.ya_c00339{bottom:830.266667pt;}
.y9_c00339{bottom:850.065333pt;}
.y8_c00339{bottom:864.532000pt;}
.y7_c00339{bottom:887.532000pt;}
.y6_c00339{bottom:905.133333pt;}
.y4_c00339{bottom:916.666667pt;}
.y5_c00339{bottom:924.933333pt;}
.y1_c00339{bottom:965.266667pt;}
.y3_c00339{bottom:974.532000pt;}
.y2_c00339{bottom:979.065333pt;}
.h2_c00339{height:52.343750pt;}
.h3_c00339{height:57.578125pt;}
.h1_c00339{height:61.187500pt;}
.h4_c00339{height:62.812500pt;}
.h0_c00339{height:1044.000000pt;}
.w0_c00339{width:650.646400pt;}
.w1_c00339{width:650.666667pt;}
.x0_c00339{left:0.000000pt;}
.x8_c00339{left:40.969067pt;}
.xb_c00339{left:41.902400pt;}
.x5_c00339{left:42.835733pt;}
.xc_c00339{left:43.835733pt;}
.xd_c00339{left:45.435733pt;}
.x12_c00339{left:46.369067pt;}
.xf_c00339{left:47.369067pt;}
.x16_c00339{left:48.302400pt;}
.x1_c00339{left:60.169067pt;}
.x6_c00339{left:62.035733pt;}
.x7_c00339{left:69.102400pt;}
.xe_c00339{left:73.902400pt;}
.x15_c00339{left:76.769067pt;}
.x2_c00339{left:83.835733pt;}
.x4_c00339{left:98.235733pt;}
.x9_c00339{left:189.769067pt;}
.xa_c00339{left:223.369067pt;}
.x3_c00339{left:241.235733pt;}
.x10_c00339{left:350.034400pt;}
.x11_c00339{left:356.435733pt;}
.x13_c00339{left:431.969067pt;}
.x14_c00339{left:463.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_067be7345e11c10b6e04c914.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00340;src:url('chunks/assets/font_e79d7c4e521de83948495283.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00340;src:url('chunks/assets/font_76eea4c277054acf99481bf7.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00340{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m7_c00340{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2_c00340{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m9_c00340{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mc_c00340{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00340{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m19_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);}
.ma_c00340{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c00340{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c00340{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00340{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m8_c00340{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c00340{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c00340{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c00340{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5_c00340{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me_c00340{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c00340{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00340{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00340{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00340{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c00340{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m16_c00340{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m17_c00340{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c00340{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m18_c00340{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1_c00340{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00340{color:transparent;}
.fs0_c00340{font-size:54.000000px;}
.fs2_c00340{font-size:72.000000px;}
.fs1_c00340{font-size:84.000000px;}
.y0_c00340{bottom:0.000000px;}
.y46_c00340{bottom:90.523500px;}
.y45_c00340{bottom:111.750000px;}
.y42_c00340{bottom:131.250000px;}
.y43_c00340{bottom:136.948500px;}
.y44_c00340{bottom:137.323500px;}
.y41_c00340{bottom:152.473500px;}
.y3f_c00340{bottom:170.473500px;}
.y40_c00340{bottom:173.698500px;}
.y3e_c00340{bottom:193.875000px;}
.y3d_c00340{bottom:213.298500px;}
.y3b_c00340{bottom:233.398500px;}
.y3c_c00340{bottom:235.273500px;}
.y3a_c00340{bottom:254.698500px;}
.y39_c00340{bottom:275.625000px;}
.y38_c00340{bottom:296.473500px;}
.y37_c00340{bottom:317.323500px;}
.y36_c00340{bottom:338.548500px;}
.y35_c00340{bottom:358.798500px;}
.y32_c00340{bottom:379.650000px;}
.y33_c00340{bottom:379.948500px;}
.y34_c00340{bottom:381.073500px;}
.y30_c00340{bottom:400.875000px;}
.y31_c00340{bottom:402.298500px;}
.y2e_c00340{bottom:422.098500px;}
.y2f_c00340{bottom:423.523500px;}
.y2c_c00340{bottom:442.948500px;}
.y2b_c00340{bottom:443.023500px;}
.y2d_c00340{bottom:444.073500px;}
.y2a_c00340{bottom:464.923500px;}
.y29_c00340{bottom:486.148500px;}
.y28_c00340{bottom:507.750000px;}
.y27_c00340{bottom:528.673500px;}
.y26_c00340{bottom:549.523500px;}
.y25_c00340{bottom:550.273500px;}
.y24_c00340{bottom:550.648500px;}
.y23_c00340{bottom:570.823500px;}
.y22_c00340{bottom:591.673500px;}
.y21_c00340{bottom:592.048500px;}
.y20_c00340{bottom:612.523500px;}
.y1f_c00340{bottom:613.648500px;}
.y1e_c00340{bottom:634.125000px;}
.y1d_c00340{bottom:655.423500px;}
.y1c_c00340{bottom:676.948500px;}
.y1b_c00340{bottom:698.250000px;}
.y1a_c00340{bottom:722.023500px;}
.y19_c00340{bottom:741.075000px;}
.y18_c00340{bottom:759.075000px;}
.y17_c00340{bottom:762.673500px;}
.y16_c00340{bottom:780.675000px;}
.y15_c00340{bottom:784.273500px;}
.y14_c00340{bottom:805.875000px;}
.y13_c00340{bottom:826.723500px;}
.y12_c00340{bottom:848.698500px;}
.y11_c00340{bottom:869.925000px;}
.y10_c00340{bottom:892.948500px;}
.yf_c00340{bottom:911.400000px;}
.ye_c00340{bottom:931.125000px;}
.yd_c00340{bottom:936.150000px;}
.yc_c00340{bottom:950.925000px;}
.yb_c00340{bottom:956.323500px;}
.ya_c00340{bottom:974.698500px;}
.y9_c00340{bottom:991.275000px;}
.y8_c00340{bottom:992.698500px;}
.y7_c00340{bottom:994.125000px;}
.y6_c00340{bottom:997.800000px;}
.y5_c00340{bottom:1014.300000px;}
.y4_c00340{bottom:1018.650000px;}
.y3_c00340{bottom:1071.223500px;}
.y2_c00340{bottom:1075.198500px;}
.y1_c00340{bottom:1076.250000px;}
.h1_c00340{height:54.421875px;}
.h5_c00340{height:70.664062px;}
.h4_c00340{height:82.400391px;}
.h3_c00340{height:82.441406px;}
.h2_c00340{height:84.656250px;}
.h0_c00340{height:1174.500000px;}
.w0_c00340{width:731.977200px;}
.w1_c00340{width:732.000000px;}
.x0_c00340{left:0.000000px;}
.xc_c00340{left:64.765200px;}
.x10_c00340{left:65.890200px;}
.x9_c00340{left:67.315200px;}
.x4_c00340{left:68.365200px;}
.x1e_c00340{left:70.165200px;}
.x21_c00340{left:71.290200px;}
.x17_c00340{left:91.390200px;}
.xd_c00340{left:101.140200px;}
.x15_c00340{left:102.190200px;}
.x20_c00340{left:172.090200px;}
.xb_c00340{left:244.390200px;}
.x1c_c00340{left:251.965200px;}
.x1_c00340{left:285.115200px;}
.x1d_c00340{left:288.715200px;}
.x13_c00340{left:315.340200px;}
.x18_c00340{left:319.690200px;}
.xa_c00340{left:341.290200px;}
.x1f_c00340{left:348.490200px;}
.x1b_c00340{left:431.288700px;}
.x2_c00340{left:478.090200px;}
.x5_c00340{left:489.940200px;}
.x6_c00340{left:493.165200px;}
.x7_c00340{left:516.940200px;}
.x1a_c00340{left:519.790200px;}
.x14_c00340{left:533.140200px;}
.x19_c00340{left:572.740200px;}
.x11_c00340{left:609.790200px;}
.xf_c00340{left:626.365200px;}
.x8_c00340{left:629.290200px;}
.x16_c00340{left:637.915200px;}
.x3_c00340{left:639.340200px;}
.xe_c00340{left:647.290200px;}
.x22_c00340{left:658.090200px;}
.x12_c00340{left:659.515200px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls0_c00340{letter-spacing:0.000000pt;}
.ws0_c00340{word-spacing:0.000000pt;}
.fs0_c00340{font-size:48.000000pt;}
.fs2_c00340{font-size:64.000000pt;}
.fs1_c00340{font-size:74.666667pt;}
.y0_c00340{bottom:0.000000pt;}
.y46_c00340{bottom:80.465333pt;}
.y45_c00340{bottom:99.333333pt;}
.y42_c00340{bottom:116.666667pt;}
.y43_c00340{bottom:121.732000pt;}
.y44_c00340{bottom:122.065333pt;}
.y41_c00340{bottom:135.532000pt;}
.y3f_c00340{bottom:151.532000pt;}
.y40_c00340{bottom:154.398667pt;}
.y3e_c00340{bottom:172.333333pt;}
.y3d_c00340{bottom:189.598667pt;}
.y3b_c00340{bottom:207.465333pt;}
.y3c_c00340{bottom:209.132000pt;}
.y3a_c00340{bottom:226.398667pt;}
.y39_c00340{bottom:245.000000pt;}
.y38_c00340{bottom:263.532000pt;}
.y37_c00340{bottom:282.065333pt;}
.y36_c00340{bottom:300.932000pt;}
.y35_c00340{bottom:318.932000pt;}
.y32_c00340{bottom:337.466667pt;}
.y33_c00340{bottom:337.732000pt;}
.y34_c00340{bottom:338.732000pt;}
.y30_c00340{bottom:356.333333pt;}
.y31_c00340{bottom:357.598667pt;}
.y2e_c00340{bottom:375.198667pt;}
.y2f_c00340{bottom:376.465333pt;}
.y2c_c00340{bottom:393.732000pt;}
.y2b_c00340{bottom:393.798667pt;}
.y2d_c00340{bottom:394.732000pt;}
.y2a_c00340{bottom:413.265333pt;}
.y29_c00340{bottom:432.132000pt;}
.y28_c00340{bottom:451.333333pt;}
.y27_c00340{bottom:469.932000pt;}
.y26_c00340{bottom:488.465333pt;}
.y25_c00340{bottom:489.132000pt;}
.y24_c00340{bottom:489.465333pt;}
.y23_c00340{bottom:507.398667pt;}
.y22_c00340{bottom:525.932000pt;}
.y21_c00340{bottom:526.265333pt;}
.y20_c00340{bottom:544.465333pt;}
.y1f_c00340{bottom:545.465333pt;}
.y1e_c00340{bottom:563.666667pt;}
.y1d_c00340{bottom:582.598667pt;}
.y1c_c00340{bottom:601.732000pt;}
.y1b_c00340{bottom:620.666667pt;}
.y1a_c00340{bottom:641.798667pt;}
.y19_c00340{bottom:658.733333pt;}
.y18_c00340{bottom:674.733333pt;}
.y17_c00340{bottom:677.932000pt;}
.y16_c00340{bottom:693.933333pt;}
.y15_c00340{bottom:697.132000pt;}
.y14_c00340{bottom:716.333333pt;}
.y13_c00340{bottom:734.865333pt;}
.y12_c00340{bottom:754.398667pt;}
.y11_c00340{bottom:773.266667pt;}
.y10_c00340{bottom:793.732000pt;}
.yf_c00340{bottom:810.133333pt;}
.ye_c00340{bottom:827.666667pt;}
.yd_c00340{bottom:832.133333pt;}
.yc_c00340{bottom:845.266667pt;}
.yb_c00340{bottom:850.065333pt;}
.ya_c00340{bottom:866.398667pt;}
.y9_c00340{bottom:881.133333pt;}
.y8_c00340{bottom:882.398667pt;}
.y7_c00340{bottom:883.666667pt;}
.y6_c00340{bottom:886.933333pt;}
.y5_c00340{bottom:901.600000pt;}
.y4_c00340{bottom:905.466667pt;}
.y3_c00340{bottom:952.198667pt;}
.y2_c00340{bottom:955.732000pt;}
.y1_c00340{bottom:956.666667pt;}
.h1_c00340{height:48.375000pt;}
.h5_c00340{height:62.812500pt;}
.h4_c00340{height:73.244792pt;}
.h3_c00340{height:73.281250pt;}
.h2_c00340{height:75.250000pt;}
.h0_c00340{height:1044.000000pt;}
.w0_c00340{width:650.646400pt;}
.w1_c00340{width:650.666667pt;}
.x0_c00340{left:0.000000pt;}
.xc_c00340{left:57.569067pt;}
.x10_c00340{left:58.569067pt;}
.x9_c00340{left:59.835733pt;}
.x4_c00340{left:60.769067pt;}
.x1e_c00340{left:62.369067pt;}
.x21_c00340{left:63.369067pt;}
.x17_c00340{left:81.235733pt;}
.xd_c00340{left:89.902400pt;}
.x15_c00340{left:90.835733pt;}
.x20_c00340{left:152.969067pt;}
.xb_c00340{left:217.235733pt;}
.x1c_c00340{left:223.969067pt;}
.x1_c00340{left:253.435733pt;}
.x1d_c00340{left:256.635733pt;}
.x13_c00340{left:280.302400pt;}
.x18_c00340{left:284.169067pt;}
.xa_c00340{left:303.369067pt;}
.x1f_c00340{left:309.769067pt;}
.x1b_c00340{left:383.367733pt;}
.x2_c00340{left:424.969067pt;}
.x5_c00340{left:435.502400pt;}
.x6_c00340{left:438.369067pt;}
.x7_c00340{left:459.502400pt;}
.x1a_c00340{left:462.035733pt;}
.x14_c00340{left:473.902400pt;}
.x19_c00340{left:509.102400pt;}
.x11_c00340{left:542.035733pt;}
.xf_c00340{left:556.769067pt;}
.x8_c00340{left:559.369067pt;}
.x16_c00340{left:567.035733pt;}
.x3_c00340{left:568.302400pt;}
.xe_c00340{left:575.369067pt;}
.x22_c00340{left:584.969067pt;}
.x12_c00340{left:586.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f53290462228c6dad4157e53.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00341;src:url('chunks/assets/font_c85254b16f3c1e6c140b137c.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00341;src:url('chunks/assets/font_a9aad07a8a72a7e83e43c437.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00341{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mc_c00341{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00341{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00341{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00341{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00341{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00341{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00341{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00341{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00341{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00341{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00341{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00341{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7_c00341{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m10_c00341{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00341{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00341{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00341{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00341{word-spacing:0.000000px;}
.fc0_c00341{color:transparent;}
.fs1_c00341{font-size:60.000000px;}
.fs3_c00341{font-size:66.000000px;}
.fs0_c00341{font-size:72.000000px;}
.fs2_c00341{font-size:84.000000px;}
.y0_c00341{bottom:0.000000px;}
.y33_c00341{bottom:93.073500px;}
.y32_c00341{bottom:114.673500px;}
.y31_c00341{bottom:136.273500px;}
.y30_c00341{bottom:157.875000px;}
.y2f_c00341{bottom:180.148500px;}
.y2e_c00341{bottom:202.500000px;}
.y2d_c00341{bottom:224.473500px;}
.y2c_c00341{bottom:246.375000px;}
.y2b_c00341{bottom:268.048500px;}
.y2a_c00341{bottom:289.948500px;}
.y29_c00341{bottom:311.548500px;}
.y28_c00341{bottom:316.948500px;}
.y27_c00341{bottom:333.223500px;}
.y26_c00341{bottom:355.198500px;}
.y25_c00341{bottom:378.525000px;}
.y24_c00341{bottom:399.448500px;}
.y23_c00341{bottom:421.348500px;}
.y22_c00341{bottom:442.948500px;}
.y21_c00341{bottom:444.000000px;}
.y20_c00341{bottom:445.500000px;}
.y1f_c00341{bottom:466.723500px;}
.y1e_c00341{bottom:486.898500px;}
.y1d_c00341{bottom:508.500000px;}
.y1c_c00341{bottom:530.098500px;}
.y1b_c00341{bottom:551.698500px;}
.y1a_c00341{bottom:573.673500px;}
.y19_c00341{bottom:595.648500px;}
.y18_c00341{bottom:617.250000px;}
.y17_c00341{bottom:639.148500px;}
.y16_c00341{bottom:660.750000px;}
.y15_c00341{bottom:682.348500px;}
.y14_c00341{bottom:704.323500px;}
.y13_c00341{bottom:725.923500px;}
.y12_c00341{bottom:747.898500px;}
.y11_c00341{bottom:769.500000px;}
.y10_c00341{bottom:791.098500px;}
.yf_c00341{bottom:812.323500px;}
.ye_c00341{bottom:832.875000px;}
.yd_c00341{bottom:854.848500px;}
.yc_c00341{bottom:876.375000px;}
.yb_c00341{bottom:897.675000px;}
.ya_c00341{bottom:919.650000px;}
.y9_c00341{bottom:941.250000px;}
.y8_c00341{bottom:962.848500px;}
.y7_c00341{bottom:985.125000px;}
.y6_c00341{bottom:1001.400000px;}
.y5_c00341{bottom:1026.900000px;}
.y4_c00341{bottom:1048.500000px;}
.y1_c00341{bottom:1098.223500px;}
.y3_c00341{bottom:1105.723500px;}
.y2_c00341{bottom:1112.400000px;}
.h2_c00341{height:58.886719px;}
.h5_c00341{height:64.775391px;}
.h3_c00341{height:70.664062px;}
.h1_c00341{height:75.093750px;}
.h4_c00341{height:82.400391px;}
.h0_c00341{height:1174.500000px;}
.w0_c00341{width:731.977200px;}
.w1_c00341{width:732.000000px;}
.x0_c00341{left:0.000000px;}
.xc_c00341{left:43.915200px;}
.xb_c00341{left:45.715200px;}
.x9_c00341{left:46.765200px;}
.x7_c00341{left:48.190200px;}
.x6_c00341{left:49.990200px;}
.x4_c00341{left:51.115200px;}
.xd_c00341{left:67.690200px;}
.x1_c00341{left:69.115200px;}
.xa_c00341{left:75.938700px;}
.x8_c00341{left:78.490200px;}
.x5_c00341{left:81.715200px;}
.x2_c00341{left:97.165200px;}
.x10_c00341{left:104.740200px;}
.xe_c00341{left:148.990200px;}
.x3_c00341{left:276.490200px;}
.xf_c00341{left:310.990200px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls0_c00341{letter-spacing:0.000000pt;}
.ws0_c00341{word-spacing:0.000000pt;}
.fs1_c00341{font-size:53.333333pt;}
.fs3_c00341{font-size:58.666667pt;}
.fs0_c00341{font-size:64.000000pt;}
.fs2_c00341{font-size:74.666667pt;}
.y0_c00341{bottom:0.000000pt;}
.y33_c00341{bottom:82.732000pt;}
.y32_c00341{bottom:101.932000pt;}
.y31_c00341{bottom:121.132000pt;}
.y30_c00341{bottom:140.333333pt;}
.y2f_c00341{bottom:160.132000pt;}
.y2e_c00341{bottom:180.000000pt;}
.y2d_c00341{bottom:199.532000pt;}
.y2c_c00341{bottom:219.000000pt;}
.y2b_c00341{bottom:238.265333pt;}
.y2a_c00341{bottom:257.732000pt;}
.y29_c00341{bottom:276.932000pt;}
.y28_c00341{bottom:281.732000pt;}
.y27_c00341{bottom:296.198667pt;}
.y26_c00341{bottom:315.732000pt;}
.y25_c00341{bottom:336.466667pt;}
.y24_c00341{bottom:355.065333pt;}
.y23_c00341{bottom:374.532000pt;}
.y22_c00341{bottom:393.732000pt;}
.y21_c00341{bottom:394.666667pt;}
.y20_c00341{bottom:396.000000pt;}
.y1f_c00341{bottom:414.865333pt;}
.y1e_c00341{bottom:432.798667pt;}
.y1d_c00341{bottom:452.000000pt;}
.y1c_c00341{bottom:471.198667pt;}
.y1b_c00341{bottom:490.398667pt;}
.y1a_c00341{bottom:509.932000pt;}
.y19_c00341{bottom:529.465333pt;}
.y18_c00341{bottom:548.666667pt;}
.y17_c00341{bottom:568.132000pt;}
.y16_c00341{bottom:587.333333pt;}
.y15_c00341{bottom:606.532000pt;}
.y14_c00341{bottom:626.065333pt;}
.y13_c00341{bottom:645.265333pt;}
.y12_c00341{bottom:664.798667pt;}
.y11_c00341{bottom:684.000000pt;}
.y10_c00341{bottom:703.198667pt;}
.yf_c00341{bottom:722.065333pt;}
.ye_c00341{bottom:740.333333pt;}
.yd_c00341{bottom:759.865333pt;}
.yc_c00341{bottom:779.000000pt;}
.yb_c00341{bottom:797.933333pt;}
.ya_c00341{bottom:817.466667pt;}
.y9_c00341{bottom:836.666667pt;}
.y8_c00341{bottom:855.865333pt;}
.y7_c00341{bottom:875.666667pt;}
.y6_c00341{bottom:890.133333pt;}
.y5_c00341{bottom:912.800000pt;}
.y4_c00341{bottom:932.000000pt;}
.y1_c00341{bottom:976.198667pt;}
.y3_c00341{bottom:982.865333pt;}
.y2_c00341{bottom:988.800000pt;}
.h2_c00341{height:52.343750pt;}
.h5_c00341{height:57.578125pt;}
.h3_c00341{height:62.812500pt;}
.h1_c00341{height:66.750000pt;}
.h4_c00341{height:73.244792pt;}
.h0_c00341{height:1044.000000pt;}
.w0_c00341{width:650.646400pt;}
.w1_c00341{width:650.666667pt;}
.x0_c00341{left:0.000000pt;}
.xc_c00341{left:39.035733pt;}
.xb_c00341{left:40.635733pt;}
.x9_c00341{left:41.569067pt;}
.x7_c00341{left:42.835733pt;}
.x6_c00341{left:44.435733pt;}
.x4_c00341{left:45.435733pt;}
.xd_c00341{left:60.169067pt;}
.x1_c00341{left:61.435733pt;}
.xa_c00341{left:67.501067pt;}
.x8_c00341{left:69.769067pt;}
.x5_c00341{left:72.635733pt;}
.x2_c00341{left:86.369067pt;}
.x10_c00341{left:93.102400pt;}
.xe_c00341{left:132.435733pt;}
.x3_c00341{left:245.769067pt;}
.xf_c00341{left:276.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_48df850f27b7833e2a0d7634.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00342;src:url('chunks/assets/font_da43720a9066bb4a5bc551c2.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00342{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.md_c00342{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m15_c00342{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c00342{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c00342{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8_c00342{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9_c00342{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb_c00342{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c00342{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c00342{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00342{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c00342{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c00342{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c00342{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c00342{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c00342{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00342{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c00342{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17_c00342{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c00342{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m0_c00342{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00342{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c00342{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c00342{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.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;}
}
.ws0_c00342{word-spacing:0.000000px;}
.fc0_c00342{color:transparent;}
.fs0_c00342{font-size:54.000000px;}
.fs2_c00342{font-size:72.000000px;}
.fs1_c00342{font-size:78.000000px;}
.y0_c00342{bottom:0.000000px;}
.y45_c00342{bottom:113.173500px;}
.y46_c00342{bottom:113.625000px;}
.y47_c00342{bottom:114.298500px;}
.y48_c00342{bottom:116.473500px;}
.y43_c00342{bottom:134.398500px;}
.y44_c00342{bottom:136.273500px;}
.y41_c00342{bottom:155.323500px;}
.y42_c00342{bottom:160.723500px;}
.y3f_c00342{bottom:175.500000px;}
.y40_c00342{bottom:180.898500px;}
.y3c_c00342{bottom:195.298500px;}
.y3d_c00342{bottom:198.148500px;}
.y3e_c00342{bottom:202.875000px;}
.y3a_c00342{bottom:217.273500px;}
.y3b_c00342{bottom:223.048500px;}
.y38_c00342{bottom:237.823500px;}
.y39_c00342{bottom:240.673500px;}
.y37_c00342{bottom:258.598500px;}
.y36_c00342{bottom:279.223500px;}
.y35_c00342{bottom:300.073500px;}
.y34_c00342{bottom:320.625000px;}
.y31_c00342{bottom:342.150000px;}
.y32_c00342{bottom:344.025000px;}
.y33_c00342{bottom:346.125000px;}
.y30_c00342{bottom:363.448500px;}
.y2f_c00342{bottom:384.298500px;}
.y2d_c00342{bottom:404.775000px;}
.y2c_c00342{bottom:404.848500px;}
.y2e_c00342{bottom:406.648500px;}
.y2b_c00342{bottom:426.375000px;}
.y2a_c00342{bottom:447.298500px;}
.y29_c00342{bottom:468.523500px;}
.y28_c00342{bottom:490.125000px;}
.y27_c00342{bottom:511.423500px;}
.y26_c00342{bottom:532.648500px;}
.y25_c00342{bottom:553.875000px;}
.y24_c00342{bottom:574.723500px;}
.y23_c00342{bottom:596.398500px;}
.y22_c00342{bottom:617.625000px;}
.y21_c00342{bottom:638.473500px;}
.y20_c00342{bottom:639.223500px;}
.y1f_c00342{bottom:660.073500px;}
.y1e_c00342{bottom:680.923500px;}
.y1d_c00342{bottom:702.223500px;}
.y1c_c00342{bottom:725.548500px;}
.y1b_c00342{bottom:744.673500px;}
.y1a_c00342{bottom:766.648500px;}
.y19_c00342{bottom:787.500000px;}
.y18_c00342{bottom:807.300000px;}
.y17_c00342{bottom:807.598500px;}
.y16_c00342{bottom:809.098500px;}
.y15_c00342{bottom:830.323500px;}
.y14_c00342{bottom:852.300000px;}
.y13_c00342{bottom:854.473500px;}
.y12_c00342{bottom:854.848500px;}
.y11_c00342{bottom:873.900000px;}
.y10_c00342{bottom:894.448500px;}
.yf_c00342{bottom:915.300000px;}
.ye_c00342{bottom:936.525000px;}
.yd_c00342{bottom:954.150000px;}
.yc_c00342{bottom:954.525000px;}
.yb_c00342{bottom:957.448500px;}
.ya_c00342{bottom:978.300000px;}
.y9_c00342{bottom:983.698500px;}
.y8_c00342{bottom:999.525000px;}
.y7_c00342{bottom:1021.875000px;}
.y6_c00342{bottom:1025.848500px;}
.y5_c00342{bottom:1038.448500px;}
.y4_c00342{bottom:1042.425000px;}
.y3_c00342{bottom:1097.098500px;}
.y1_c00342{bottom:1101.750000px;}
.y2_c00342{bottom:1110.598500px;}
.h1_c00342{height:52.998047px;}
.h4_c00342{height:70.664062px;}
.h2_c00342{height:76.552734px;}
.h3_c00342{height:78.609375px;}
.h0_c00342{height:1174.500000px;}
.w0_c00342{width:731.977200px;}
.w1_c00342{width:732.000000px;}
.x0_c00342{left:0.000000px;}
.xc_c00342{left:52.540200px;}
.x12_c00342{left:53.590200px;}
.x9_c00342{left:54.715200px;}
.x4_c00342{left:55.765200px;}
.x8_c00342{left:76.990200px;}
.x1b_c00342{left:82.390200px;}
.xf_c00342{left:85.688700px;}
.x7_c00342{left:87.790200px;}
.x6_c00342{left:108.340200px;}
.x20_c00342{left:127.390200px;}
.xd_c00342{left:146.515200px;}
.xe_c00342{left:173.888700px;}
.x1c_c00342{left:205.165200px;}
.x21_c00342{left:228.565200px;}
.x1_c00342{left:269.590200px;}
.x13_c00342{left:314.965200px;}
.x22_c00342{left:329.740200px;}
.x14_c00342{left:342.715200px;}
.x15_c00342{left:369.340200px;}
.x16_c00342{left:387.340200px;}
.x19_c00342{left:436.315200px;}
.x2_c00342{left:463.990200px;}
.x17_c00342{left:484.165200px;}
.x1e_c00342{left:486.715200px;}
.x18_c00342{left:502.915200px;}
.x1f_c00342{left:560.890200px;}
.xa_c00342{left:571.315200px;}
.x10_c00342{left:577.090200px;}
.x1a_c00342{left:605.140200px;}
.x11_c00342{left:607.990200px;}
.xb_c00342{left:614.890200px;}
.x3_c00342{left:625.690200px;}
.x5_c00342{left:646.915200px;}
.x1d_c00342{left:649.090200px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls0_c00342{letter-spacing:0.000000pt;}
.ws0_c00342{word-spacing:0.000000pt;}
.fs0_c00342{font-size:48.000000pt;}
.fs2_c00342{font-size:64.000000pt;}
.fs1_c00342{font-size:69.333333pt;}
.y0_c00342{bottom:0.000000pt;}
.y45_c00342{bottom:100.598667pt;}
.y46_c00342{bottom:101.000000pt;}
.y47_c00342{bottom:101.598667pt;}
.y48_c00342{bottom:103.532000pt;}
.y43_c00342{bottom:119.465333pt;}
.y44_c00342{bottom:121.132000pt;}
.y41_c00342{bottom:138.065333pt;}
.y42_c00342{bottom:142.865333pt;}
.y3f_c00342{bottom:156.000000pt;}
.y40_c00342{bottom:160.798667pt;}
.y3c_c00342{bottom:173.598667pt;}
.y3d_c00342{bottom:176.132000pt;}
.y3e_c00342{bottom:180.333333pt;}
.y3a_c00342{bottom:193.132000pt;}
.y3b_c00342{bottom:198.265333pt;}
.y38_c00342{bottom:211.398667pt;}
.y39_c00342{bottom:213.932000pt;}
.y37_c00342{bottom:229.865333pt;}
.y36_c00342{bottom:248.198667pt;}
.y35_c00342{bottom:266.732000pt;}
.y34_c00342{bottom:285.000000pt;}
.y31_c00342{bottom:304.133333pt;}
.y32_c00342{bottom:305.800000pt;}
.y33_c00342{bottom:307.666667pt;}
.y30_c00342{bottom:323.065333pt;}
.y2f_c00342{bottom:341.598667pt;}
.y2d_c00342{bottom:359.800000pt;}
.y2c_c00342{bottom:359.865333pt;}
.y2e_c00342{bottom:361.465333pt;}
.y2b_c00342{bottom:379.000000pt;}
.y2a_c00342{bottom:397.598667pt;}
.y29_c00342{bottom:416.465333pt;}
.y28_c00342{bottom:435.666667pt;}
.y27_c00342{bottom:454.598667pt;}
.y26_c00342{bottom:473.465333pt;}
.y25_c00342{bottom:492.333333pt;}
.y24_c00342{bottom:510.865333pt;}
.y23_c00342{bottom:530.132000pt;}
.y22_c00342{bottom:549.000000pt;}
.y21_c00342{bottom:567.532000pt;}
.y20_c00342{bottom:568.198667pt;}
.y1f_c00342{bottom:586.732000pt;}
.y1e_c00342{bottom:605.265333pt;}
.y1d_c00342{bottom:624.198667pt;}
.y1c_c00342{bottom:644.932000pt;}
.y1b_c00342{bottom:661.932000pt;}
.y1a_c00342{bottom:681.465333pt;}
.y19_c00342{bottom:700.000000pt;}
.y18_c00342{bottom:717.600000pt;}
.y17_c00342{bottom:717.865333pt;}
.y16_c00342{bottom:719.198667pt;}
.y15_c00342{bottom:738.065333pt;}
.y14_c00342{bottom:757.600000pt;}
.y13_c00342{bottom:759.532000pt;}
.y12_c00342{bottom:759.865333pt;}
.y11_c00342{bottom:776.800000pt;}
.y10_c00342{bottom:795.065333pt;}
.yf_c00342{bottom:813.600000pt;}
.ye_c00342{bottom:832.466667pt;}
.yd_c00342{bottom:848.133333pt;}
.yc_c00342{bottom:848.466667pt;}
.yb_c00342{bottom:851.065333pt;}
.ya_c00342{bottom:869.600000pt;}
.y9_c00342{bottom:874.398667pt;}
.y8_c00342{bottom:888.466667pt;}
.y7_c00342{bottom:908.333333pt;}
.y6_c00342{bottom:911.865333pt;}
.y5_c00342{bottom:923.065333pt;}
.y4_c00342{bottom:926.600000pt;}
.y3_c00342{bottom:975.198667pt;}
.y1_c00342{bottom:979.333333pt;}
.y2_c00342{bottom:987.198667pt;}
.h1_c00342{height:47.109375pt;}
.h4_c00342{height:62.812500pt;}
.h2_c00342{height:68.046875pt;}
.h3_c00342{height:69.875000pt;}
.h0_c00342{height:1044.000000pt;}
.w0_c00342{width:650.646400pt;}
.w1_c00342{width:650.666667pt;}
.x0_c00342{left:0.000000pt;}
.xc_c00342{left:46.702400pt;}
.x12_c00342{left:47.635733pt;}
.x9_c00342{left:48.635733pt;}
.x4_c00342{left:49.569067pt;}
.x8_c00342{left:68.435733pt;}
.x1b_c00342{left:73.235733pt;}
.xf_c00342{left:76.167733pt;}
.x7_c00342{left:78.035733pt;}
.x6_c00342{left:96.302400pt;}
.x20_c00342{left:113.235733pt;}
.xd_c00342{left:130.235733pt;}
.xe_c00342{left:154.567733pt;}
.x1c_c00342{left:182.369067pt;}
.x21_c00342{left:203.169067pt;}
.x1_c00342{left:239.635733pt;}
.x13_c00342{left:279.969067pt;}
.x22_c00342{left:293.102400pt;}
.x14_c00342{left:304.635733pt;}
.x15_c00342{left:328.302400pt;}
.x16_c00342{left:344.302400pt;}
.x19_c00342{left:387.835733pt;}
.x2_c00342{left:412.435733pt;}
.x17_c00342{left:430.369067pt;}
.x1e_c00342{left:432.635733pt;}
.x18_c00342{left:447.035733pt;}
.x1f_c00342{left:498.569067pt;}
.xa_c00342{left:507.835733pt;}
.x10_c00342{left:512.969067pt;}
.x1a_c00342{left:537.902400pt;}
.x11_c00342{left:540.435733pt;}
.xb_c00342{left:546.569067pt;}
.x3_c00342{left:556.169067pt;}
.x5_c00342{left:575.035733pt;}
.x1d_c00342{left:576.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0168d7c52a97578eae031a11.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00343;src:url('chunks/assets/font_f6dcaee08c82cf84cffe4698.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00343;src:url('chunks/assets/font_e410d00cdd693bd485f3329d.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00343;src:url('chunks/assets/font_4c5b94e94b90b6fe08ebae8f.woff2')format("woff");}.ff4_c00343{font-family:ff4_c00343;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00343{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf_c00343{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00343{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m11_c00343{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00343{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c00343{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00343{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00343{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00343{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00343{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00343{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md_c00343{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00343{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00343{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00343{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00343{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00343{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m1_c00343{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00343{color:transparent;}
.fs1_c00343{font-size:60.000000px;}
.fs0_c00343{font-size:66.000000px;}
.fs2_c00343{font-size:72.000000px;}
.fs3_c00343{font-size:78.000000px;}
.y0_c00343{bottom:0.000000px;}
.y3a_c00343{bottom:93.823500px;}
.y39_c00343{bottom:115.348500px;}
.y38_c00343{bottom:136.948500px;}
.y37_c00343{bottom:147.073500px;}
.y36_c00343{bottom:148.198500px;}
.y35_c00343{bottom:158.923500px;}
.y34_c00343{bottom:167.250000px;}
.y33_c00343{bottom:167.923500px;}
.y32_c00343{bottom:180.898500px;}
.y31_c00343{bottom:202.875000px;}
.y30_c00343{bottom:224.773500px;}
.y2f_c00343{bottom:246.823500px;}
.y2e_c00343{bottom:268.423500px;}
.y2d_c00343{bottom:289.948500px;}
.y2c_c00343{bottom:311.923500px;}
.y2b_c00343{bottom:333.598500px;}
.y2a_c00343{bottom:355.500000px;}
.y29_c00343{bottom:377.473500px;}
.y28_c00343{bottom:399.375000px;}
.y25_c00343{bottom:399.448500px;}
.y27_c00343{bottom:399.750000px;}
.y26_c00343{bottom:399.823500px;}
.y24_c00343{bottom:421.723500px;}
.y23_c00343{bottom:443.323500px;}
.y22_c00343{bottom:465.000000px;}
.y21_c00343{bottom:486.523500px;}
.y20_c00343{bottom:508.125000px;}
.y1f_c00343{bottom:530.098500px;}
.y1e_c00343{bottom:551.323500px;}
.y1d_c00343{bottom:573.298500px;}
.y1c_c00343{bottom:595.273500px;}
.y1b_c00343{bottom:617.173500px;}
.y1a_c00343{bottom:638.473500px;}
.y19_c00343{bottom:660.448500px;}
.y18_c00343{bottom:681.673500px;}
.y17_c00343{bottom:703.273500px;}
.y16_c00343{bottom:725.250000px;}
.y15_c00343{bottom:746.848500px;}
.y14_c00343{bottom:769.125000px;}
.y13_c00343{bottom:790.348500px;}
.y12_c00343{bottom:812.025000px;}
.y11_c00343{bottom:832.875000px;}
.y10_c00343{bottom:854.098500px;}
.yf_c00343{bottom:875.698500px;}
.ye_c00343{bottom:892.948500px;}
.yd_c00343{bottom:918.150000px;}
.yc_c00343{bottom:939.823500px;}
.yb_c00343{bottom:962.098500px;}
.y8_c00343{bottom:981.525000px;}
.ya_c00343{bottom:985.125000px;}
.y9_c00343{bottom:985.875000px;}
.y7_c00343{bottom:1004.250000px;}
.y6_c00343{bottom:1025.473500px;}
.y4_c00343{bottom:1037.698500px;}
.y5_c00343{bottom:1046.323500px;}
.y1_c00343{bottom:1094.550000px;}
.y3_c00343{bottom:1102.875000px;}
.y2_c00343{bottom:1108.800000px;}
.h2_c00343{height:58.886719px;}
.h3_c00343{height:64.775391px;}
.h1_c00343{height:68.835938px;}
.h4_c00343{height:70.664062px;}
.h5_c00343{height:72.562500px;}
.h6_c00343{height:76.514648px;}
.h7_c00343{height:76.552734px;}
.h0_c00343{height:1174.500000px;}
.w0_c00343{width:731.977200px;}
.w1_c00343{width:732.000000px;}
.x0_c00343{left:0.000000px;}
.x18_c00343{left:30.190200px;}
.x17_c00343{left:31.315200px;}
.x16_c00343{left:32.740200px;}
.x12_c00343{left:33.790200px;}
.x11_c00343{left:35.588700px;}
.xf_c00343{left:37.090200px;}
.xc_c00343{left:38.515200px;}
.x10_c00343{left:39.565200px;}
.xb_c00343{left:40.990200px;}
.x8_c00343{left:42.790200px;}
.x7_c00343{left:44.290200px;}
.x6_c00343{left:45.715200px;}
.x4_c00343{left:47.515200px;}
.x13_c00343{left:55.765200px;}
.x1a_c00343{left:64.765200px;}
.x1_c00343{left:66.940200px;}
.x5_c00343{left:68.365200px;}
.xe_c00343{left:70.165200px;}
.xd_c00343{left:73.765200px;}
.x19_c00343{left:85.688700px;}
.x2_c00343{left:93.940200px;}
.x14_c00343{left:98.965200px;}
.x3_c00343{left:269.965200px;}
.x15_c00343{left:430.538700px;}
.x9_c00343{left:479.890200px;}
.xa_c00343{left:522.340200px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls0_c00343{letter-spacing:0.000000pt;}
.ws0_c00343{word-spacing:0.000000pt;}
.fs1_c00343{font-size:53.333333pt;}
.fs0_c00343{font-size:58.666667pt;}
.fs2_c00343{font-size:64.000000pt;}
.fs3_c00343{font-size:69.333333pt;}
.y0_c00343{bottom:0.000000pt;}
.y3a_c00343{bottom:83.398667pt;}
.y39_c00343{bottom:102.532000pt;}
.y38_c00343{bottom:121.732000pt;}
.y37_c00343{bottom:130.732000pt;}
.y36_c00343{bottom:131.732000pt;}
.y35_c00343{bottom:141.265333pt;}
.y34_c00343{bottom:148.666667pt;}
.y33_c00343{bottom:149.265333pt;}
.y32_c00343{bottom:160.798667pt;}
.y31_c00343{bottom:180.333333pt;}
.y30_c00343{bottom:199.798667pt;}
.y2f_c00343{bottom:219.398667pt;}
.y2e_c00343{bottom:238.598667pt;}
.y2d_c00343{bottom:257.732000pt;}
.y2c_c00343{bottom:277.265333pt;}
.y2b_c00343{bottom:296.532000pt;}
.y2a_c00343{bottom:316.000000pt;}
.y29_c00343{bottom:335.532000pt;}
.y28_c00343{bottom:355.000000pt;}
.y25_c00343{bottom:355.065333pt;}
.y27_c00343{bottom:355.333333pt;}
.y26_c00343{bottom:355.398667pt;}
.y24_c00343{bottom:374.865333pt;}
.y23_c00343{bottom:394.065333pt;}
.y22_c00343{bottom:413.333333pt;}
.y21_c00343{bottom:432.465333pt;}
.y20_c00343{bottom:451.666667pt;}
.y1f_c00343{bottom:471.198667pt;}
.y1e_c00343{bottom:490.065333pt;}
.y1d_c00343{bottom:509.598667pt;}
.y1c_c00343{bottom:529.132000pt;}
.y1b_c00343{bottom:548.598667pt;}
.y1a_c00343{bottom:567.532000pt;}
.y19_c00343{bottom:587.065333pt;}
.y18_c00343{bottom:605.932000pt;}
.y17_c00343{bottom:625.132000pt;}
.y16_c00343{bottom:644.666667pt;}
.y15_c00343{bottom:663.865333pt;}
.y14_c00343{bottom:683.666667pt;}
.y13_c00343{bottom:702.532000pt;}
.y12_c00343{bottom:721.800000pt;}
.y11_c00343{bottom:740.333333pt;}
.y10_c00343{bottom:759.198667pt;}
.yf_c00343{bottom:778.398667pt;}
.ye_c00343{bottom:793.732000pt;}
.yd_c00343{bottom:816.133333pt;}
.yc_c00343{bottom:835.398667pt;}
.yb_c00343{bottom:855.198667pt;}
.y8_c00343{bottom:872.466667pt;}
.ya_c00343{bottom:875.666667pt;}
.y9_c00343{bottom:876.333333pt;}
.y7_c00343{bottom:892.666667pt;}
.y6_c00343{bottom:911.532000pt;}
.y4_c00343{bottom:922.398667pt;}
.y5_c00343{bottom:930.065333pt;}
.y1_c00343{bottom:972.933333pt;}
.y3_c00343{bottom:980.333333pt;}
.y2_c00343{bottom:985.600000pt;}
.h2_c00343{height:52.343750pt;}
.h3_c00343{height:57.578125pt;}
.h1_c00343{height:61.187500pt;}
.h4_c00343{height:62.812500pt;}
.h5_c00343{height:64.500000pt;}
.h6_c00343{height:68.013021pt;}
.h7_c00343{height:68.046875pt;}
.h0_c00343{height:1044.000000pt;}
.w0_c00343{width:650.646400pt;}
.w1_c00343{width:650.666667pt;}
.x0_c00343{left:0.000000pt;}
.x18_c00343{left:26.835733pt;}
.x17_c00343{left:27.835733pt;}
.x16_c00343{left:29.102400pt;}
.x12_c00343{left:30.035733pt;}
.x11_c00343{left:31.634400pt;}
.xf_c00343{left:32.969067pt;}
.xc_c00343{left:34.235733pt;}
.x10_c00343{left:35.169067pt;}
.xb_c00343{left:36.435733pt;}
.x8_c00343{left:38.035733pt;}
.x7_c00343{left:39.369067pt;}
.x6_c00343{left:40.635733pt;}
.x4_c00343{left:42.235733pt;}
.x13_c00343{left:49.569067pt;}
.x1a_c00343{left:57.569067pt;}
.x1_c00343{left:59.502400pt;}
.x5_c00343{left:60.769067pt;}
.xe_c00343{left:62.369067pt;}
.xd_c00343{left:65.569067pt;}
.x19_c00343{left:76.167733pt;}
.x2_c00343{left:83.502400pt;}
.x14_c00343{left:87.969067pt;}
.x3_c00343{left:239.969067pt;}
.x15_c00343{left:382.701067pt;}
.x9_c00343{left:426.569067pt;}
.xa_c00343{left:464.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e05e2c819a13d6cb75d66348.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00344;src:url('chunks/assets/font_cd057fc8b9e5db0ad69bcbfd.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00344;src:url('chunks/assets/font_85921b88ae892a269bddfd34.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00344{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m11_c00344{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12_c00344{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m15_c00344{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1_c00344{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m8_c00344{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c00344{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00344{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9_c00344{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c00344{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c00344{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00344{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c00344{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c00344{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c00344{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c00344{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c00344{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c00344{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00344{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00344{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.me_c00344{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2_c00344{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00344{word-spacing:0.000000px;}
.fc0_c00344{color:transparent;}
.fs0_c00344{font-size:60.000000px;}
.fs2_c00344{font-size:66.000000px;}
.fs1_c00344{font-size:78.000000px;}
.fs3_c00344{font-size:84.000000px;}
.y0_c00344{bottom:0.000000px;}
.y3c_c00344{bottom:90.148500px;}
.y3d_c00344{bottom:92.698500px;}
.y3e_c00344{bottom:94.500000px;}
.y3b_c00344{bottom:113.250000px;}
.y3a_c00344{bottom:134.473500px;}
.y37_c00344{bottom:153.223500px;}
.y38_c00344{bottom:157.875000px;}
.y39_c00344{bottom:158.250000px;}
.y36_c00344{bottom:174.823500px;}
.y35_c00344{bottom:192.073500px;}
.y34_c00344{bottom:214.798500px;}
.y33_c00344{bottom:235.273500px;}
.y32_c00344{bottom:256.125000px;}
.y31_c00344{bottom:276.298500px;}
.y30_c00344{bottom:297.598500px;}
.y2f_c00344{bottom:318.750000px;}
.y2e_c00344{bottom:337.500000px;}
.y2d_c00344{bottom:360.223500px;}
.y2c_c00344{bottom:381.073500px;}
.y2b_c00344{bottom:401.923500px;}
.y28_c00344{bottom:421.348500px;}
.y29_c00344{bottom:422.098500px;}
.y2a_c00344{bottom:422.848500px;}
.y27_c00344{bottom:443.698500px;}
.y26_c00344{bottom:464.923500px;}
.y25_c00344{bottom:486.523500px;}
.y24_c00344{bottom:507.750000px;}
.y23_c00344{bottom:529.048500px;}
.y22_c00344{bottom:549.898500px;}
.y21_c00344{bottom:571.500000px;}
.y20_c00344{bottom:592.723500px;}
.y1f_c00344{bottom:613.948500px;}
.y1e_c00344{bottom:632.698500px;}
.y1d_c00344{bottom:635.250000px;}
.y1c_c00344{bottom:656.473500px;}
.y1b_c00344{bottom:677.698500px;}
.y1a_c00344{bottom:699.000000px;}
.y19_c00344{bottom:720.523500px;}
.y18_c00344{bottom:741.750000px;}
.y17_c00344{bottom:763.423500px;}
.y16_c00344{bottom:784.648500px;}
.y15_c00344{bottom:802.275000px;}
.y14_c00344{bottom:804.750000px;}
.y13_c00344{bottom:805.875000px;}
.y12_c00344{bottom:806.175000px;}
.y11_c00344{bottom:806.925000px;}
.y10_c00344{bottom:808.050000px;}
.yf_c00344{bottom:828.900000px;}
.ye_c00344{bottom:848.698500px;}
.yd_c00344{bottom:870.675000px;}
.yc_c00344{bottom:891.223500px;}
.yb_c00344{bottom:912.750000px;}
.ya_c00344{bottom:933.300000px;}
.y9_c00344{bottom:948.375000px;}
.y8_c00344{bottom:954.525000px;}
.y7_c00344{bottom:975.375000px;}
.y6_c00344{bottom:996.675000px;}
.y5_c00344{bottom:1018.275000px;}
.y4_c00344{bottom:1071.150000px;}
.y3_c00344{bottom:1075.198500px;}
.y2_c00344{bottom:1076.925000px;}
.y1_c00344{bottom:1077.675000px;}
.h1_c00344{height:58.886719px;}
.h2_c00344{height:60.468750px;}
.h6_c00344{height:64.775391px;}
.h5_c00344{height:76.514648px;}
.h3_c00344{height:76.552734px;}
.h4_c00344{height:78.609375px;}
.h7_c00344{height:82.400391px;}
.h0_c00344{height:1174.500000px;}
.w0_c00344{width:731.977200px;}
.w1_c00344{width:732.000000px;}
.x0_c00344{left:0.000000px;}
.x8_c00344{left:52.165200px;}
.x5_c00344{left:53.590200px;}
.x11_c00344{left:55.390200px;}
.x12_c00344{left:56.515200px;}
.x14_c00344{left:57.940200px;}
.x16_c00344{left:59.365200px;}
.x19_c00344{left:60.490200px;}
.x15_c00344{left:61.915200px;}
.x7_c00344{left:84.938700px;}
.xe_c00344{left:86.740200px;}
.x13_c00344{left:89.965200px;}
.x9_c00344{left:110.890200px;}
.xf_c00344{left:125.590200px;}
.x1_c00344{left:284.740200px;}
.x2_c00344{left:296.290200px;}
.x10_c00344{left:312.790200px;}
.xa_c00344{left:325.090200px;}
.xb_c00344{left:361.390200px;}
.x1a_c00344{left:381.565200px;}
.x1b_c00344{left:415.090200px;}
.x3_c00344{left:463.690200px;}
.xc_c00344{left:472.315200px;}
.xd_c00344{left:492.790200px;}
.x17_c00344{left:590.740200px;}
.x4_c00344{left:625.315200px;}
.x18_c00344{left:649.390200px;}
.x6_c00344{left:660.190200px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls0_c00344{letter-spacing:0.000000pt;}
.ws0_c00344{word-spacing:0.000000pt;}
.fs0_c00344{font-size:53.333333pt;}
.fs2_c00344{font-size:58.666667pt;}
.fs1_c00344{font-size:69.333333pt;}
.fs3_c00344{font-size:74.666667pt;}
.y0_c00344{bottom:0.000000pt;}
.y3c_c00344{bottom:80.132000pt;}
.y3d_c00344{bottom:82.398667pt;}
.y3e_c00344{bottom:84.000000pt;}
.y3b_c00344{bottom:100.666667pt;}
.y3a_c00344{bottom:119.532000pt;}
.y37_c00344{bottom:136.198667pt;}
.y38_c00344{bottom:140.333333pt;}
.y39_c00344{bottom:140.666667pt;}
.y36_c00344{bottom:155.398667pt;}
.y35_c00344{bottom:170.732000pt;}
.y34_c00344{bottom:190.932000pt;}
.y33_c00344{bottom:209.132000pt;}
.y32_c00344{bottom:227.666667pt;}
.y31_c00344{bottom:245.598667pt;}
.y30_c00344{bottom:264.532000pt;}
.y2f_c00344{bottom:283.333333pt;}
.y2e_c00344{bottom:300.000000pt;}
.y2d_c00344{bottom:320.198667pt;}
.y2c_c00344{bottom:338.732000pt;}
.y2b_c00344{bottom:357.265333pt;}
.y28_c00344{bottom:374.532000pt;}
.y29_c00344{bottom:375.198667pt;}
.y2a_c00344{bottom:375.865333pt;}
.y27_c00344{bottom:394.398667pt;}
.y26_c00344{bottom:413.265333pt;}
.y25_c00344{bottom:432.465333pt;}
.y24_c00344{bottom:451.333333pt;}
.y23_c00344{bottom:470.265333pt;}
.y22_c00344{bottom:488.798667pt;}
.y21_c00344{bottom:508.000000pt;}
.y20_c00344{bottom:526.865333pt;}
.y1f_c00344{bottom:545.732000pt;}
.y1e_c00344{bottom:562.398667pt;}
.y1d_c00344{bottom:564.666667pt;}
.y1c_c00344{bottom:583.532000pt;}
.y1b_c00344{bottom:602.398667pt;}
.y1a_c00344{bottom:621.333333pt;}
.y19_c00344{bottom:640.465333pt;}
.y18_c00344{bottom:659.333333pt;}
.y17_c00344{bottom:678.598667pt;}
.y16_c00344{bottom:697.465333pt;}
.y15_c00344{bottom:713.133333pt;}
.y14_c00344{bottom:715.333333pt;}
.y13_c00344{bottom:716.333333pt;}
.y12_c00344{bottom:716.600000pt;}
.y11_c00344{bottom:717.266667pt;}
.y10_c00344{bottom:718.266667pt;}
.yf_c00344{bottom:736.800000pt;}
.ye_c00344{bottom:754.398667pt;}
.yd_c00344{bottom:773.933333pt;}
.yc_c00344{bottom:792.198667pt;}
.yb_c00344{bottom:811.333333pt;}
.ya_c00344{bottom:829.600000pt;}
.y9_c00344{bottom:843.000000pt;}
.y8_c00344{bottom:848.466667pt;}
.y7_c00344{bottom:867.000000pt;}
.y6_c00344{bottom:885.933333pt;}
.y5_c00344{bottom:905.133333pt;}
.y4_c00344{bottom:952.133333pt;}
.y3_c00344{bottom:955.732000pt;}
.y2_c00344{bottom:957.266667pt;}
.y1_c00344{bottom:957.933333pt;}
.h1_c00344{height:52.343750pt;}
.h2_c00344{height:53.750000pt;}
.h6_c00344{height:57.578125pt;}
.h5_c00344{height:68.013021pt;}
.h3_c00344{height:68.046875pt;}
.h4_c00344{height:69.875000pt;}
.h7_c00344{height:73.244792pt;}
.h0_c00344{height:1044.000000pt;}
.w0_c00344{width:650.646400pt;}
.w1_c00344{width:650.666667pt;}
.x0_c00344{left:0.000000pt;}
.x8_c00344{left:46.369067pt;}
.x5_c00344{left:47.635733pt;}
.x11_c00344{left:49.235733pt;}
.x12_c00344{left:50.235733pt;}
.x14_c00344{left:51.502400pt;}
.x16_c00344{left:52.769067pt;}
.x19_c00344{left:53.769067pt;}
.x15_c00344{left:55.035733pt;}
.x7_c00344{left:75.501067pt;}
.xe_c00344{left:77.102400pt;}
.x13_c00344{left:79.969067pt;}
.x9_c00344{left:98.569067pt;}
.xf_c00344{left:111.635733pt;}
.x1_c00344{left:253.102400pt;}
.x2_c00344{left:263.369067pt;}
.x10_c00344{left:278.035733pt;}
.xa_c00344{left:288.969067pt;}
.xb_c00344{left:321.235733pt;}
.x1a_c00344{left:339.169067pt;}
.x1b_c00344{left:368.969067pt;}
.x3_c00344{left:412.169067pt;}
.xc_c00344{left:419.835733pt;}
.xd_c00344{left:438.035733pt;}
.x17_c00344{left:525.102400pt;}
.x4_c00344{left:555.835733pt;}
.x18_c00344{left:577.235733pt;}
.x6_c00344{left:586.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a2dab31725ff016b16d27e0.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00345;src:url('chunks/assets/font_5fac35398cbdea57e748c9c1.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00345;src:url('chunks/assets/font_6fd617409ceb16de8cc2e19c.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00345;src:url('chunks/assets/font_22583ff908e3766ad49ab547.woff2')format("woff");}.ff4_c00345{font-family:ff4_c00345;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00345;src:url('chunks/assets/font_d05956e97f9c14c93d6252db.woff2')format("woff");}.ff5_c00345{font-family:ff5_c00345;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00345{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m13_c00345{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m14_c00345{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00345{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00345{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c00345{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c00345{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00345{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00345{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00345{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00345{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00345{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00345{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00345{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00345{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00345{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c00345{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m10_c00345{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c00345{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m11_c00345{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c00345{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1_c00345{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.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;}
}
.ws0_c00345{word-spacing:0.000000px;}
.fc0_c00345{color:transparent;}
.fs1_c00345{font-size:60.000000px;}
.fs0_c00345{font-size:66.000000px;}
.fs2_c00345{font-size:72.000000px;}
.fs3_c00345{font-size:84.000000px;}
.y0_c00345{bottom:0.000000px;}
.y3d_c00345{bottom:88.048500px;}
.y3c_c00345{bottom:109.948500px;}
.y3b_c00345{bottom:130.875000px;}
.y3a_c00345{bottom:152.398500px;}
.y39_c00345{bottom:178.723500px;}
.y38_c00345{bottom:196.348500px;}
.y37_c00345{bottom:217.273500px;}
.y36_c00345{bottom:221.548500px;}
.y35_c00345{bottom:237.448500px;}
.y34_c00345{bottom:241.798500px;}
.y33_c00345{bottom:262.198500px;}
.y32_c00345{bottom:284.173500px;}
.y31_c00345{bottom:305.848500px;}
.y30_c00345{bottom:325.650000px;}
.y2f_c00345{bottom:327.750000px;}
.y2e_c00345{bottom:328.500000px;}
.y2d_c00345{bottom:349.423500px;}
.y2c_c00345{bottom:351.598500px;}
.y2b_c00345{bottom:370.948500px;}
.y2a_c00345{bottom:372.375000px;}
.y29_c00345{bottom:392.923500px;}
.y28_c00345{bottom:414.898500px;}
.y27_c00345{bottom:436.500000px;}
.y26_c00345{bottom:458.473500px;}
.y25_c00345{bottom:480.448500px;}
.y24_c00345{bottom:501.673500px;}
.y23_c00345{bottom:521.473500px;}
.y22_c00345{bottom:523.273500px;}
.y21_c00345{bottom:544.500000px;}
.y20_c00345{bottom:566.473500px;}
.y1f_c00345{bottom:588.375000px;}
.y1d_c00345{bottom:609.298500px;}
.y1e_c00345{bottom:610.348500px;}
.y1b_c00345{bottom:631.198500px;}
.y1c_c00345{bottom:632.323500px;}
.y1a_c00345{bottom:653.923500px;}
.y19_c00345{bottom:675.898500px;}
.y18_c00345{bottom:697.500000px;}
.y17_c00345{bottom:719.098500px;}
.y16_c00345{bottom:741.075000px;}
.y15_c00345{bottom:763.348500px;}
.y14_c00345{bottom:782.848500px;}
.y13_c00345{bottom:806.250000px;}
.y12_c00345{bottom:827.473500px;}
.y11_c00345{bottom:849.073500px;}
.y10_c00345{bottom:870.675000px;}
.yf_c00345{bottom:891.900000px;}
.ye_c00345{bottom:914.550000px;}
.yd_c00345{bottom:935.775000px;}
.yc_c00345{bottom:957.750000px;}
.ya_c00345{bottom:971.473500px;}
.yb_c00345{bottom:979.425000px;}
.y6_c00345{bottom:991.948500px;}
.y8_c00345{bottom:992.323500px;}
.y9_c00345{bottom:1000.650000px;}
.y7_c00345{bottom:1012.875000px;}
.y5_c00345{bottom:1021.500000px;}
.y4_c00345{bottom:1043.098500px;}
.y1_c00345{bottom:1090.650000px;}
.y3_c00345{bottom:1099.948500px;}
.y2_c00345{bottom:1105.573500px;}
.h2_c00345{height:58.886719px;}
.h4_c00345{height:64.775391px;}
.h5_c00345{height:66.515625px;}
.h1_c00345{height:68.835938px;}
.h3_c00345{height:70.664062px;}
.h6_c00345{height:82.400391px;}
.h0_c00345{height:1174.500000px;}
.w0_c00345{width:731.977200px;}
.w1_c00345{width:732.000000px;}
.x0_c00345{left:0.000000px;}
.x12_c00345{left:24.790200px;}
.x10_c00345{left:26.290200px;}
.xe_c00345{left:27.338700px;}
.xc_c00345{left:28.390200px;}
.xb_c00345{left:29.890200px;}
.xa_c00345{left:30.940200px;}
.x8_c00345{left:32.365200px;}
.x6_c00345{left:33.490200px;}
.x4_c00345{left:35.290200px;}
.xf_c00345{left:53.590200px;}
.x1_c00345{left:55.390200px;}
.x13_c00345{left:56.890200px;}
.xd_c00345{left:58.990200px;}
.x9_c00345{left:68.740200px;}
.x7_c00345{left:70.540200px;}
.x2_c00345{left:82.090200px;}
.x5_c00345{left:83.140200px;}
.x17_c00345{left:129.190200px;}
.x14_c00345{left:184.315200px;}
.x3_c00345{left:259.165200px;}
.x15_c00345{left:394.538700px;}
.x16_c00345{left:473.365200px;}
.x11_c00345{left:605.515200px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls0_c00345{letter-spacing:0.000000pt;}
.ws0_c00345{word-spacing:0.000000pt;}
.fs1_c00345{font-size:53.333333pt;}
.fs0_c00345{font-size:58.666667pt;}
.fs2_c00345{font-size:64.000000pt;}
.fs3_c00345{font-size:74.666667pt;}
.y0_c00345{bottom:0.000000pt;}
.y3d_c00345{bottom:78.265333pt;}
.y3c_c00345{bottom:97.732000pt;}
.y3b_c00345{bottom:116.333333pt;}
.y3a_c00345{bottom:135.465333pt;}
.y39_c00345{bottom:158.865333pt;}
.y38_c00345{bottom:174.532000pt;}
.y37_c00345{bottom:193.132000pt;}
.y36_c00345{bottom:196.932000pt;}
.y35_c00345{bottom:211.065333pt;}
.y34_c00345{bottom:214.932000pt;}
.y33_c00345{bottom:233.065333pt;}
.y32_c00345{bottom:252.598667pt;}
.y31_c00345{bottom:271.865333pt;}
.y30_c00345{bottom:289.466667pt;}
.y2f_c00345{bottom:291.333333pt;}
.y2e_c00345{bottom:292.000000pt;}
.y2d_c00345{bottom:310.598667pt;}
.y2c_c00345{bottom:312.532000pt;}
.y2b_c00345{bottom:329.732000pt;}
.y2a_c00345{bottom:331.000000pt;}
.y29_c00345{bottom:349.265333pt;}
.y28_c00345{bottom:368.798667pt;}
.y27_c00345{bottom:388.000000pt;}
.y26_c00345{bottom:407.532000pt;}
.y25_c00345{bottom:427.065333pt;}
.y24_c00345{bottom:445.932000pt;}
.y23_c00345{bottom:463.532000pt;}
.y22_c00345{bottom:465.132000pt;}
.y21_c00345{bottom:484.000000pt;}
.y20_c00345{bottom:503.532000pt;}
.y1f_c00345{bottom:523.000000pt;}
.y1d_c00345{bottom:541.598667pt;}
.y1e_c00345{bottom:542.532000pt;}
.y1b_c00345{bottom:561.065333pt;}
.y1c_c00345{bottom:562.065333pt;}
.y1a_c00345{bottom:581.265333pt;}
.y19_c00345{bottom:600.798667pt;}
.y18_c00345{bottom:620.000000pt;}
.y17_c00345{bottom:639.198667pt;}
.y16_c00345{bottom:658.733333pt;}
.y15_c00345{bottom:678.532000pt;}
.y14_c00345{bottom:695.865333pt;}
.y13_c00345{bottom:716.666667pt;}
.y12_c00345{bottom:735.532000pt;}
.y11_c00345{bottom:754.732000pt;}
.y10_c00345{bottom:773.933333pt;}
.yf_c00345{bottom:792.800000pt;}
.ye_c00345{bottom:812.933333pt;}
.yd_c00345{bottom:831.800000pt;}
.yc_c00345{bottom:851.333333pt;}
.ya_c00345{bottom:863.532000pt;}
.yb_c00345{bottom:870.600000pt;}
.y6_c00345{bottom:881.732000pt;}
.y8_c00345{bottom:882.065333pt;}
.y9_c00345{bottom:889.466667pt;}
.y7_c00345{bottom:900.333333pt;}
.y5_c00345{bottom:908.000000pt;}
.y4_c00345{bottom:927.198667pt;}
.y1_c00345{bottom:969.466667pt;}
.y3_c00345{bottom:977.732000pt;}
.y2_c00345{bottom:982.732000pt;}
.h2_c00345{height:52.343750pt;}
.h4_c00345{height:57.578125pt;}
.h5_c00345{height:59.125000pt;}
.h1_c00345{height:61.187500pt;}
.h3_c00345{height:62.812500pt;}
.h6_c00345{height:73.244792pt;}
.h0_c00345{height:1044.000000pt;}
.w0_c00345{width:650.646400pt;}
.w1_c00345{width:650.666667pt;}
.x0_c00345{left:0.000000pt;}
.x12_c00345{left:22.035733pt;}
.x10_c00345{left:23.369067pt;}
.xe_c00345{left:24.301067pt;}
.xc_c00345{left:25.235733pt;}
.xb_c00345{left:26.569067pt;}
.xa_c00345{left:27.502400pt;}
.x8_c00345{left:28.769067pt;}
.x6_c00345{left:29.769067pt;}
.x4_c00345{left:31.369067pt;}
.xf_c00345{left:47.635733pt;}
.x1_c00345{left:49.235733pt;}
.x13_c00345{left:50.569067pt;}
.xd_c00345{left:52.435733pt;}
.x9_c00345{left:61.102400pt;}
.x7_c00345{left:62.702400pt;}
.x2_c00345{left:72.969067pt;}
.x5_c00345{left:73.902400pt;}
.x17_c00345{left:114.835733pt;}
.x14_c00345{left:163.835733pt;}
.x3_c00345{left:230.369067pt;}
.x15_c00345{left:350.701067pt;}
.x16_c00345{left:420.769067pt;}
.x11_c00345{left:538.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a45423209230c6ea2495e68f.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00346;src:url('chunks/assets/font_895a220101c3c0143c5b27d0.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00346;src:url('chunks/assets/font_c0643f2c3963b4e0c6183573.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00346{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mf_c00346{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00346{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14_c00346{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c00346{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c00346{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00346{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c00346{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00346{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c00346{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00346{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00346{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00346{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00346{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00346{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00346{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00346{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c00346{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00346{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c00346{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00346{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m17_c00346{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m12_c00346{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m1_c00346{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00346{vertical-align:0.000000px;}
.ls0_c00346{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00346{color:transparent;}
.fs2_c00346{font-size:60.000000px;}
.fs0_c00346{font-size:66.000000px;}
.fs1_c00346{font-size:72.000000px;}
.y0_c00346{bottom:0.000000px;}
.y45_c00346{bottom:97.723500px;}
.y44_c00346{bottom:117.898500px;}
.y43_c00346{bottom:138.750000px;}
.y42_c00346{bottom:159.298500px;}
.y41_c00346{bottom:179.848500px;}
.y40_c00346{bottom:200.323500px;}
.y3f_c00346{bottom:220.500000px;}
.y3e_c00346{bottom:241.048500px;}
.y3d_c00346{bottom:260.400000px;}
.y3c_c00346{bottom:281.698500px;}
.y3b_c00346{bottom:302.625000px;}
.y3a_c00346{bottom:323.848500px;}
.y39_c00346{bottom:343.573500px;}
.y38_c00346{bottom:365.625000px;}
.y35_c00346{bottom:386.098500px;}
.y36_c00346{bottom:388.650000px;}
.y37_c00346{bottom:389.698500px;}
.y34_c00346{bottom:407.698500px;}
.y33_c00346{bottom:428.250000px;}
.y30_c00346{bottom:449.473500px;}
.y31_c00346{bottom:450.148500px;}
.y32_c00346{bottom:450.898500px;}
.y2f_c00346{bottom:470.698500px;}
.y2e_c00346{bottom:491.923500px;}
.y2d_c00346{bottom:513.148500px;}
.y2c_c00346{bottom:513.523500px;}
.y2b_c00346{bottom:534.750000px;}
.y2a_c00346{bottom:555.673500px;}
.y29_c00346{bottom:556.048500px;}
.y28_c00346{bottom:576.523500px;}
.y27_c00346{bottom:577.273500px;}
.y26_c00346{bottom:598.125000px;}
.y25_c00346{bottom:619.723500px;}
.y24_c00346{bottom:641.023500px;}
.y23_c00346{bottom:662.250000px;}
.y22_c00346{bottom:683.473500px;}
.y21_c00346{bottom:702.598500px;}
.y20_c00346{bottom:703.198500px;}
.y1f_c00346{bottom:705.448500px;}
.y1e_c00346{bottom:726.298500px;}
.y1d_c00346{bottom:747.523500px;}
.y1c_c00346{bottom:768.448500px;}
.y1b_c00346{bottom:790.348500px;}
.y1a_c00346{bottom:808.723500px;}
.y19_c00346{bottom:811.650000px;}
.y18_c00346{bottom:813.823500px;}
.y17_c00346{bottom:829.948500px;}
.y16_c00346{bottom:833.925000px;}
.y15_c00346{bottom:835.425000px;}
.y14_c00346{bottom:850.125000px;}
.y13_c00346{bottom:851.250000px;}
.y12_c00346{bottom:855.900000px;}
.y11_c00346{bottom:876.073500px;}
.y10_c00346{bottom:896.925000px;}
.yf_c00346{bottom:917.848500px;}
.ye_c00346{bottom:939.448500px;}
.yd_c00346{bottom:942.300000px;}
.yc_c00346{bottom:956.698500px;}
.yb_c00346{bottom:961.723500px;}
.ya_c00346{bottom:977.625000px;}
.y9_c00346{bottom:982.275000px;}
.y8_c00346{bottom:1000.198500px;}
.y7_c00346{bottom:1005.300000px;}
.y6_c00346{bottom:1018.573500px;}
.y5_c00346{bottom:1020.750000px;}
.y4_c00346{bottom:1025.473500px;}
.y3_c00346{bottom:1077.300000px;}
.y1_c00346{bottom:1083.750000px;}
.y2_c00346{bottom:1090.948500px;}
.h4_c00346{height:58.857422px;}
.h5_c00346{height:60.468750px;}
.h1_c00346{height:64.775391px;}
.h6_c00346{height:66.515625px;}
.h2_c00346{height:70.664062px;}
.h3_c00346{height:72.562500px;}
.h0_c00346{height:1174.500000px;}
.w0_c00346{width:731.977200px;}
.w1_c00346{width:732.000000px;}
.x0_c00346{left:0.000000px;}
.x14_c00346{left:41.365200px;}
.x11_c00346{left:43.165200px;}
.x4_c00346{left:44.290200px;}
.x17_c00346{left:45.715200px;}
.x1c_c00346{left:46.765200px;}
.x1f_c00346{left:47.890200px;}
.x20_c00346{left:49.315200px;}
.x22_c00346{left:50.365200px;}
.x23_c00346{left:51.490200px;}
.xb_c00346{left:77.365200px;}
.x1a_c00346{left:79.540200px;}
.x21_c00346{left:81.715200px;}
.xe_c00346{left:87.115200px;}
.xf_c00346{left:138.190200px;}
.xa_c00346{left:148.315200px;}
.x12_c00346{left:234.715200px;}
.x1_c00346{left:259.915200px;}
.x7_c00346{left:361.765200px;}
.x9_c00346{left:447.790200px;}
.x2_c00346{left:454.690200px;}
.x5_c00346{left:485.290200px;}
.x13_c00346{left:486.715200px;}
.x10_c00346{left:494.965200px;}
.x8_c00346{left:513.340200px;}
.xc_c00346{left:527.740200px;}
.x1e_c00346{left:538.540200px;}
.x15_c00346{left:541.390200px;}
.x1b_c00346{left:546.115200px;}
.x16_c00346{left:563.740200px;}
.x18_c00346{left:611.290200px;}
.x3_c00346{left:616.990200px;}
.xd_c00346{left:627.790200px;}
.x1d_c00346{left:636.490200px;}
.x19_c00346{left:638.290200px;}
.x6_c00346{left:641.140200px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls0_c00346{letter-spacing:0.000000pt;}
.ws0_c00346{word-spacing:0.000000pt;}
.fs2_c00346{font-size:53.333333pt;}
.fs0_c00346{font-size:58.666667pt;}
.fs1_c00346{font-size:64.000000pt;}
.y0_c00346{bottom:0.000000pt;}
.y45_c00346{bottom:86.865333pt;}
.y44_c00346{bottom:104.798667pt;}
.y43_c00346{bottom:123.333333pt;}
.y42_c00346{bottom:141.598667pt;}
.y41_c00346{bottom:159.865333pt;}
.y40_c00346{bottom:178.065333pt;}
.y3f_c00346{bottom:196.000000pt;}
.y3e_c00346{bottom:214.265333pt;}
.y3d_c00346{bottom:231.466667pt;}
.y3c_c00346{bottom:250.398667pt;}
.y3b_c00346{bottom:269.000000pt;}
.y3a_c00346{bottom:287.865333pt;}
.y39_c00346{bottom:305.398667pt;}
.y38_c00346{bottom:325.000000pt;}
.y35_c00346{bottom:343.198667pt;}
.y36_c00346{bottom:345.466667pt;}
.y37_c00346{bottom:346.398667pt;}
.y34_c00346{bottom:362.398667pt;}
.y33_c00346{bottom:380.666667pt;}
.y30_c00346{bottom:399.532000pt;}
.y31_c00346{bottom:400.132000pt;}
.y32_c00346{bottom:400.798667pt;}
.y2f_c00346{bottom:418.398667pt;}
.y2e_c00346{bottom:437.265333pt;}
.y2d_c00346{bottom:456.132000pt;}
.y2c_c00346{bottom:456.465333pt;}
.y2b_c00346{bottom:475.333333pt;}
.y2a_c00346{bottom:493.932000pt;}
.y29_c00346{bottom:494.265333pt;}
.y28_c00346{bottom:512.465333pt;}
.y27_c00346{bottom:513.132000pt;}
.y26_c00346{bottom:531.666667pt;}
.y25_c00346{bottom:550.865333pt;}
.y24_c00346{bottom:569.798667pt;}
.y23_c00346{bottom:588.666667pt;}
.y22_c00346{bottom:607.532000pt;}
.y21_c00346{bottom:624.532000pt;}
.y20_c00346{bottom:625.065333pt;}
.y1f_c00346{bottom:627.065333pt;}
.y1e_c00346{bottom:645.598667pt;}
.y1d_c00346{bottom:664.465333pt;}
.y1c_c00346{bottom:683.065333pt;}
.y1b_c00346{bottom:702.532000pt;}
.y1a_c00346{bottom:718.865333pt;}
.y19_c00346{bottom:721.466667pt;}
.y18_c00346{bottom:723.398667pt;}
.y17_c00346{bottom:737.732000pt;}
.y16_c00346{bottom:741.266667pt;}
.y15_c00346{bottom:742.600000pt;}
.y14_c00346{bottom:755.666667pt;}
.y13_c00346{bottom:756.666667pt;}
.y12_c00346{bottom:760.800000pt;}
.y11_c00346{bottom:778.732000pt;}
.y10_c00346{bottom:797.266667pt;}
.yf_c00346{bottom:815.865333pt;}
.ye_c00346{bottom:835.065333pt;}
.yd_c00346{bottom:837.600000pt;}
.yc_c00346{bottom:850.398667pt;}
.yb_c00346{bottom:854.865333pt;}
.ya_c00346{bottom:869.000000pt;}
.y9_c00346{bottom:873.133333pt;}
.y8_c00346{bottom:889.065333pt;}
.y7_c00346{bottom:893.600000pt;}
.y6_c00346{bottom:905.398667pt;}
.y5_c00346{bottom:907.333333pt;}
.y4_c00346{bottom:911.532000pt;}
.y3_c00346{bottom:957.600000pt;}
.y1_c00346{bottom:963.333333pt;}
.y2_c00346{bottom:969.732000pt;}
.h4_c00346{height:52.317708pt;}
.h5_c00346{height:53.750000pt;}
.h1_c00346{height:57.578125pt;}
.h6_c00346{height:59.125000pt;}
.h2_c00346{height:62.812500pt;}
.h3_c00346{height:64.500000pt;}
.h0_c00346{height:1044.000000pt;}
.w0_c00346{width:650.646400pt;}
.w1_c00346{width:650.666667pt;}
.x0_c00346{left:0.000000pt;}
.x14_c00346{left:36.769067pt;}
.x11_c00346{left:38.369067pt;}
.x4_c00346{left:39.369067pt;}
.x17_c00346{left:40.635733pt;}
.x1c_c00346{left:41.569067pt;}
.x1f_c00346{left:42.569067pt;}
.x20_c00346{left:43.835733pt;}
.x22_c00346{left:44.769067pt;}
.x23_c00346{left:45.769067pt;}
.xb_c00346{left:68.769067pt;}
.x1a_c00346{left:70.702400pt;}
.x21_c00346{left:72.635733pt;}
.xe_c00346{left:77.435733pt;}
.xf_c00346{left:122.835733pt;}
.xa_c00346{left:131.835733pt;}
.x12_c00346{left:208.635733pt;}
.x1_c00346{left:231.035733pt;}
.x7_c00346{left:321.569067pt;}
.x9_c00346{left:398.035733pt;}
.x2_c00346{left:404.169067pt;}
.x5_c00346{left:431.369067pt;}
.x13_c00346{left:432.635733pt;}
.x10_c00346{left:439.969067pt;}
.x8_c00346{left:456.302400pt;}
.xc_c00346{left:469.102400pt;}
.x1e_c00346{left:478.702400pt;}
.x15_c00346{left:481.235733pt;}
.x1b_c00346{left:485.435733pt;}
.x16_c00346{left:501.102400pt;}
.x18_c00346{left:543.369067pt;}
.x3_c00346{left:548.435733pt;}
.xd_c00346{left:558.035733pt;}
.x1d_c00346{left:565.769067pt;}
.x19_c00346{left:567.369067pt;}
.x6_c00346{left:569.902400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7842f33d3b03955e930890d9.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00347;src:url('chunks/assets/font_9310d1cb946c4ebbaadf26f5.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00347;src:url('chunks/assets/font_45ac37c3ede8220f65c93a08.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00347;src:url('chunks/assets/font_137666d25f3d8f4081d0849d.woff2')format("woff");}.ff4_c00347{font-family:ff4_c00347;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00347{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00347{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1_c00347{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00347{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc_c00347{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m10_c00347{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c00347{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c00347{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00347{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c00347{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m16_c00347{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00347{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c00347{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c00347{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00347{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c00347{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00347{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00347{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00347{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c00347{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00347{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00347{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c00347{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00347{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8_c00347{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00347{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c00347{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m19_c00347{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m2_c00347{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00347{word-spacing:0.000000px;}
.fc0_c00347{color:transparent;}
.fs1_c00347{font-size:60.000000px;}
.fs4_c00347{font-size:66.000000px;}
.fs0_c00347{font-size:72.000000px;}
.fs3_c00347{font-size:78.000000px;}
.fs2_c00347{font-size:96.000000px;}
.y0_c00347{bottom:0.000000px;}
.y46_c00347{bottom:102.073500px;}
.y45_c00347{bottom:104.250000px;}
.y44_c00347{bottom:124.798500px;}
.y43_c00347{bottom:146.323500px;}
.y42_c00347{bottom:170.773500px;}
.y41_c00347{bottom:174.448500px;}
.y40_c00347{bottom:190.273500px;}
.y3f_c00347{bottom:206.773500px;}
.y3e_c00347{bottom:210.375000px;}
.y3d_c00347{bottom:214.723500px;}
.y3c_c00347{bottom:217.648500px;}
.y3b_c00347{bottom:234.898500px;}
.y3a_c00347{bottom:256.500000px;}
.y39_c00347{bottom:277.723500px;}
.y37_c00347{bottom:282.750000px;}
.y38_c00347{bottom:282.823500px;}
.y36_c00347{bottom:297.150000px;}
.y35_c00347{bottom:300.750000px;}
.y34_c00347{bottom:321.673500px;}
.y33_c00347{bottom:343.948500px;}
.y32_c00347{bottom:365.250000px;}
.y31_c00347{bottom:387.150000px;}
.y30_c00347{bottom:389.323500px;}
.y2f_c00347{bottom:410.625000px;}
.y2e_c00347{bottom:431.098500px;}
.y2d_c00347{bottom:432.223500px;}
.y2c_c00347{bottom:451.948500px;}
.y2b_c00347{bottom:453.448500px;}
.y2a_c00347{bottom:454.125000px;}
.y1_c00347{bottom:461.323500px;}
.y29_c00347{bottom:475.348500px;}
.y28_c00347{bottom:496.273500px;}
.y27_c00347{bottom:517.500000px;}
.y26_c00347{bottom:539.098500px;}
.y25_c00347{bottom:560.698500px;}
.y24_c00347{bottom:582.298500px;}
.y23_c00347{bottom:604.573500px;}
.y22_c00347{bottom:626.173500px;}
.y21_c00347{bottom:647.098500px;}
.y20_c00347{bottom:647.848500px;}
.y1f_c00347{bottom:669.750000px;}
.y1e_c00347{bottom:691.348500px;}
.y1d_c00347{bottom:713.023500px;}
.y1c_c00347{bottom:734.923500px;}
.y1b_c00347{bottom:756.523500px;}
.y1a_c00347{bottom:778.500000px;}
.y19_c00347{bottom:799.723500px;}
.y18_c00347{bottom:820.948500px;}
.y15_c00347{bottom:837.150000px;}
.y16_c00347{bottom:838.650000px;}
.y17_c00347{bottom:842.550000px;}
.y14_c00347{bottom:863.775000px;}
.y12_c00347{bottom:879.300000px;}
.y13_c00347{bottom:885.448500px;}
.y11_c00347{bottom:906.973500px;}
.yf_c00347{bottom:922.875000px;}
.y10_c00347{bottom:929.323500px;}
.ye_c00347{bottom:950.625000px;}
.yb_c00347{bottom:963.150000px;}
.yc_c00347{bottom:966.448500px;}
.yd_c00347{bottom:972.223500px;}
.ya_c00347{bottom:993.448500px;}
.y8_c00347{bottom:1004.925000px;}
.y9_c00347{bottom:1015.050000px;}
.y6_c00347{bottom:1019.323500px;}
.y7_c00347{bottom:1035.525000px;}
.y5_c00347{bottom:1056.448500px;}
.y2_c00347{bottom:1103.250000px;}
.y4_c00347{bottom:1113.300000px;}
.y3_c00347{bottom:1118.175000px;}
.h3_c00347{height:58.886719px;}
.h7_c00347{height:64.743164px;}
.h8_c00347{height:66.515625px;}
.h2_c00347{height:70.664062px;}
.h1_c00347{height:72.562500px;}
.h6_c00347{height:76.514648px;}
.h5_c00347{height:78.609375px;}
.h4_c00347{height:94.218750px;}
.h0_c00347{height:1174.500000px;}
.w0_c00347{width:731.977200px;}
.w1_c00347{width:732.000000px;}
.x0_c00347{left:0.000000px;}
.xc_c00347{left:56.140200px;}
.xb_c00347{left:57.565200px;}
.x6_c00347{left:59.365200px;}
.x7_c00347{left:60.490200px;}
.x1e_c00347{left:61.540200px;}
.x2_c00347{left:80.965200px;}
.x9_c00347{left:85.990200px;}
.x12_c00347{left:88.915200px;}
.x10_c00347{left:89.965200px;}
.x5_c00347{left:91.390200px;}
.x13_c00347{left:92.890200px;}
.xe_c00347{left:95.365200px;}
.x16_c00347{left:97.540200px;}
.x1b_c00347{left:99.340200px;}
.x19_c00347{left:100.390200px;}
.x3_c00347{left:109.090200px;}
.xd_c00347{left:114.490200px;}
.x1a_c00347{left:122.740200px;}
.x14_c00347{left:130.315200px;}
.x1f_c00347{left:134.590200px;}
.x8_c00347{left:137.140200px;}
.xf_c00347{left:156.940200px;}
.xa_c00347{left:194.365200px;}
.x4_c00347{left:284.740200px;}
.x15_c00347{left:358.540200px;}
.x1c_c00347{left:420.490200px;}
.x1d_c00347{left:478.765200px;}
.x17_c00347{left:543.940200px;}
.x18_c00347{left:589.690200px;}
.x20_c00347{left:597.190200px;}
.x11_c00347{left:671.365200px;}
.x1_c00347{left:754.540200px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls0_c00347{letter-spacing:0.000000pt;}
.ws0_c00347{word-spacing:0.000000pt;}
.fs1_c00347{font-size:53.333333pt;}
.fs4_c00347{font-size:58.666667pt;}
.fs0_c00347{font-size:64.000000pt;}
.fs3_c00347{font-size:69.333333pt;}
.fs2_c00347{font-size:85.333333pt;}
.y0_c00347{bottom:0.000000pt;}
.y46_c00347{bottom:90.732000pt;}
.y45_c00347{bottom:92.666667pt;}
.y44_c00347{bottom:110.932000pt;}
.y43_c00347{bottom:130.065333pt;}
.y42_c00347{bottom:151.798667pt;}
.y41_c00347{bottom:155.065333pt;}
.y40_c00347{bottom:169.132000pt;}
.y3f_c00347{bottom:183.798667pt;}
.y3e_c00347{bottom:187.000000pt;}
.y3d_c00347{bottom:190.865333pt;}
.y3c_c00347{bottom:193.465333pt;}
.y3b_c00347{bottom:208.798667pt;}
.y3a_c00347{bottom:228.000000pt;}
.y39_c00347{bottom:246.865333pt;}
.y37_c00347{bottom:251.333333pt;}
.y38_c00347{bottom:251.398667pt;}
.y36_c00347{bottom:264.133333pt;}
.y35_c00347{bottom:267.333333pt;}
.y34_c00347{bottom:285.932000pt;}
.y33_c00347{bottom:305.732000pt;}
.y32_c00347{bottom:324.666667pt;}
.y31_c00347{bottom:344.133333pt;}
.y30_c00347{bottom:346.065333pt;}
.y2f_c00347{bottom:365.000000pt;}
.y2e_c00347{bottom:383.198667pt;}
.y2d_c00347{bottom:384.198667pt;}
.y2c_c00347{bottom:401.732000pt;}
.y2b_c00347{bottom:403.065333pt;}
.y2a_c00347{bottom:403.666667pt;}
.y1_c00347{bottom:410.065333pt;}
.y29_c00347{bottom:422.532000pt;}
.y28_c00347{bottom:441.132000pt;}
.y27_c00347{bottom:460.000000pt;}
.y26_c00347{bottom:479.198667pt;}
.y25_c00347{bottom:498.398667pt;}
.y24_c00347{bottom:517.598667pt;}
.y23_c00347{bottom:537.398667pt;}
.y22_c00347{bottom:556.598667pt;}
.y21_c00347{bottom:575.198667pt;}
.y20_c00347{bottom:575.865333pt;}
.y1f_c00347{bottom:595.333333pt;}
.y1e_c00347{bottom:614.532000pt;}
.y1d_c00347{bottom:633.798667pt;}
.y1c_c00347{bottom:653.265333pt;}
.y1b_c00347{bottom:672.465333pt;}
.y1a_c00347{bottom:692.000000pt;}
.y19_c00347{bottom:710.865333pt;}
.y18_c00347{bottom:729.732000pt;}
.y15_c00347{bottom:744.133333pt;}
.y16_c00347{bottom:745.466667pt;}
.y17_c00347{bottom:748.933333pt;}
.y14_c00347{bottom:767.800000pt;}
.y12_c00347{bottom:781.600000pt;}
.y13_c00347{bottom:787.065333pt;}
.y11_c00347{bottom:806.198667pt;}
.yf_c00347{bottom:820.333333pt;}
.y10_c00347{bottom:826.065333pt;}
.ye_c00347{bottom:845.000000pt;}
.yb_c00347{bottom:856.133333pt;}
.yc_c00347{bottom:859.065333pt;}
.yd_c00347{bottom:864.198667pt;}
.ya_c00347{bottom:883.065333pt;}
.y8_c00347{bottom:893.266667pt;}
.y9_c00347{bottom:902.266667pt;}
.y6_c00347{bottom:906.065333pt;}
.y7_c00347{bottom:920.466667pt;}
.y5_c00347{bottom:939.065333pt;}
.y2_c00347{bottom:980.666667pt;}
.y4_c00347{bottom:989.600000pt;}
.y3_c00347{bottom:993.933333pt;}
.h3_c00347{height:52.343750pt;}
.h7_c00347{height:57.549479pt;}
.h8_c00347{height:59.125000pt;}
.h2_c00347{height:62.812500pt;}
.h1_c00347{height:64.500000pt;}
.h6_c00347{height:68.013021pt;}
.h5_c00347{height:69.875000pt;}
.h4_c00347{height:83.750000pt;}
.h0_c00347{height:1044.000000pt;}
.w0_c00347{width:650.646400pt;}
.w1_c00347{width:650.666667pt;}
.x0_c00347{left:0.000000pt;}
.xc_c00347{left:49.902400pt;}
.xb_c00347{left:51.169067pt;}
.x6_c00347{left:52.769067pt;}
.x7_c00347{left:53.769067pt;}
.x1e_c00347{left:54.702400pt;}
.x2_c00347{left:71.969067pt;}
.x9_c00347{left:76.435733pt;}
.x12_c00347{left:79.035733pt;}
.x10_c00347{left:79.969067pt;}
.x5_c00347{left:81.235733pt;}
.x13_c00347{left:82.569067pt;}
.xe_c00347{left:84.769067pt;}
.x16_c00347{left:86.702400pt;}
.x1b_c00347{left:88.302400pt;}
.x19_c00347{left:89.235733pt;}
.x3_c00347{left:96.969067pt;}
.xd_c00347{left:101.769067pt;}
.x1a_c00347{left:109.102400pt;}
.x14_c00347{left:115.835733pt;}
.x1f_c00347{left:119.635733pt;}
.x8_c00347{left:121.902400pt;}
.xf_c00347{left:139.502400pt;}
.xa_c00347{left:172.769067pt;}
.x4_c00347{left:253.102400pt;}
.x15_c00347{left:318.702400pt;}
.x1c_c00347{left:373.769067pt;}
.x1d_c00347{left:425.569067pt;}
.x17_c00347{left:483.502400pt;}
.x18_c00347{left:524.169067pt;}
.x20_c00347{left:530.835733pt;}
.x11_c00347{left:596.769067pt;}
.x1_c00347{left:670.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_91903f1461fb33251a2d6660.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00348;src:url('chunks/assets/font_496aea9ce22c3abe75319789.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00348{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00348{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c00348{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6_c00348{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf_c00348{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c00348{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00348{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00348{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00348{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00348{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00348{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00348{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00348{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00348{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00348{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c00348{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00348{vertical-align:0.000000px;}
.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;}
}
.ws0_c00348{word-spacing:0.000000px;}
.fc0_c00348{color:transparent;}
.fs0_c00348{font-size:60.000000px;}
.fs1_c00348{font-size:72.000000px;}
.y0_c00348{bottom:0.000000px;}
.y35_c00348{bottom:69.000000px;}
.y34_c00348{bottom:94.125000px;}
.y33_c00348{bottom:114.673500px;}
.y32_c00348{bottom:135.223500px;}
.y31_c00348{bottom:156.448500px;}
.y30_c00348{bottom:173.398500px;}
.y2f_c00348{bottom:197.473500px;}
.y2e_c00348{bottom:217.648500px;}
.y2d_c00348{bottom:238.125000px;}
.y2c_c00348{bottom:258.298500px;}
.y2b_c00348{bottom:279.223500px;}
.y2a_c00348{bottom:300.073500px;}
.y29_c00348{bottom:321.298500px;}
.y28_c00348{bottom:342.525000px;}
.y27_c00348{bottom:363.750000px;}
.y26_c00348{bottom:384.673500px;}
.y25_c00348{bottom:405.525000px;}
.y24_c00348{bottom:426.448500px;}
.y23_c00348{bottom:447.298500px;}
.y22_c00348{bottom:468.523500px;}
.y21_c00348{bottom:489.750000px;}
.y20_c00348{bottom:511.048500px;}
.y1f_c00348{bottom:532.273500px;}
.y1e_c00348{bottom:553.875000px;}
.y1d_c00348{bottom:575.098500px;}
.y1c_c00348{bottom:596.323500px;}
.y1b_c00348{bottom:617.923500px;}
.y1a_c00348{bottom:639.223500px;}
.y19_c00348{bottom:660.750000px;}
.y18_c00348{bottom:681.673500px;}
.y17_c00348{bottom:703.273500px;}
.y16_c00348{bottom:724.500000px;}
.y15_c00348{bottom:746.098500px;}
.y14_c00348{bottom:767.325000px;}
.y13_c00348{bottom:788.625000px;}
.y12_c00348{bottom:810.150000px;}
.y11_c00348{bottom:831.823500px;}
.y10_c00348{bottom:853.050000px;}
.yf_c00348{bottom:853.723500px;}
.ye_c00348{bottom:854.098500px;}
.yd_c00348{bottom:874.650000px;}
.yc_c00348{bottom:895.875000px;}
.yb_c00348{bottom:916.348500px;}
.ya_c00348{bottom:936.900000px;}
.y9_c00348{bottom:960.675000px;}
.y8_c00348{bottom:977.175000px;}
.y7_c00348{bottom:981.598500px;}
.y6_c00348{bottom:1000.948500px;}
.y5_c00348{bottom:1016.775000px;}
.y4_c00348{bottom:1023.300000px;}
.y3_c00348{bottom:1076.175000px;}
.y2_c00348{bottom:1080.525000px;}
.y1_c00348{bottom:1081.650000px;}
.h4_c00348{height:58.886719px;}
.h1_c00348{height:60.468750px;}
.h3_c00348{height:70.664062px;}
.h2_c00348{height:72.562500px;}
.h0_c00348{height:1174.500000px;}
.w0_c00348{width:731.977200px;}
.w1_c00348{width:732.000000px;}
.x0_c00348{left:0.000000px;}
.xe_c00348{left:44.590200px;}
.xd_c00348{left:46.090200px;}
.x4_c00348{left:47.140200px;}
.x6_c00348{left:48.940200px;}
.x10_c00348{left:49.990200px;}
.x8_c00348{left:51.115200px;}
.x11_c00348{left:52.165200px;}
.x13_c00348{left:53.590200px;}
.xf_c00348{left:80.290200px;}
.x14_c00348{left:81.715200px;}
.x9_c00348{left:82.765200px;}
.xa_c00348{left:83.890200px;}
.x12_c00348{left:85.313700px;}
.xb_c00348{left:90.340200px;}
.xc_c00348{left:112.690200px;}
.x1_c00348{left:264.940200px;}
.x7_c00348{left:385.538700px;}
.x2_c00348{left:459.340200px;}
.x15_c00348{left:586.390200px;}
.x3_c00348{left:624.565200px;}
.x5_c00348{left:655.165200px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls0_c00348{letter-spacing:0.000000pt;}
.ws0_c00348{word-spacing:0.000000pt;}
.fs0_c00348{font-size:53.333333pt;}
.fs1_c00348{font-size:64.000000pt;}
.y0_c00348{bottom:0.000000pt;}
.y35_c00348{bottom:61.333333pt;}
.y34_c00348{bottom:83.666667pt;}
.y33_c00348{bottom:101.932000pt;}
.y32_c00348{bottom:120.198667pt;}
.y31_c00348{bottom:139.065333pt;}
.y30_c00348{bottom:154.132000pt;}
.y2f_c00348{bottom:175.532000pt;}
.y2e_c00348{bottom:193.465333pt;}
.y2d_c00348{bottom:211.666667pt;}
.y2c_c00348{bottom:229.598667pt;}
.y2b_c00348{bottom:248.198667pt;}
.y2a_c00348{bottom:266.732000pt;}
.y29_c00348{bottom:285.598667pt;}
.y28_c00348{bottom:304.466667pt;}
.y27_c00348{bottom:323.333333pt;}
.y26_c00348{bottom:341.932000pt;}
.y25_c00348{bottom:360.466667pt;}
.y24_c00348{bottom:379.065333pt;}
.y23_c00348{bottom:397.598667pt;}
.y22_c00348{bottom:416.465333pt;}
.y21_c00348{bottom:435.333333pt;}
.y20_c00348{bottom:454.265333pt;}
.y1f_c00348{bottom:473.132000pt;}
.y1e_c00348{bottom:492.333333pt;}
.y1d_c00348{bottom:511.198667pt;}
.y1c_c00348{bottom:530.065333pt;}
.y1b_c00348{bottom:549.265333pt;}
.y1a_c00348{bottom:568.198667pt;}
.y19_c00348{bottom:587.333333pt;}
.y18_c00348{bottom:605.932000pt;}
.y17_c00348{bottom:625.132000pt;}
.y16_c00348{bottom:644.000000pt;}
.y15_c00348{bottom:663.198667pt;}
.y14_c00348{bottom:682.066667pt;}
.y13_c00348{bottom:701.000000pt;}
.y12_c00348{bottom:720.133333pt;}
.y11_c00348{bottom:739.398667pt;}
.y10_c00348{bottom:758.266667pt;}
.yf_c00348{bottom:758.865333pt;}
.ye_c00348{bottom:759.198667pt;}
.yd_c00348{bottom:777.466667pt;}
.yc_c00348{bottom:796.333333pt;}
.yb_c00348{bottom:814.532000pt;}
.ya_c00348{bottom:832.800000pt;}
.y9_c00348{bottom:853.933333pt;}
.y8_c00348{bottom:868.600000pt;}
.y7_c00348{bottom:872.532000pt;}
.y6_c00348{bottom:889.732000pt;}
.y5_c00348{bottom:903.800000pt;}
.y4_c00348{bottom:909.600000pt;}
.y3_c00348{bottom:956.600000pt;}
.y2_c00348{bottom:960.466667pt;}
.y1_c00348{bottom:961.466667pt;}
.h4_c00348{height:52.343750pt;}
.h1_c00348{height:53.750000pt;}
.h3_c00348{height:62.812500pt;}
.h2_c00348{height:64.500000pt;}
.h0_c00348{height:1044.000000pt;}
.w0_c00348{width:650.646400pt;}
.w1_c00348{width:650.666667pt;}
.x0_c00348{left:0.000000pt;}
.xe_c00348{left:39.635733pt;}
.xd_c00348{left:40.969067pt;}
.x4_c00348{left:41.902400pt;}
.x6_c00348{left:43.502400pt;}
.x10_c00348{left:44.435733pt;}
.x8_c00348{left:45.435733pt;}
.x11_c00348{left:46.369067pt;}
.x13_c00348{left:47.635733pt;}
.xf_c00348{left:71.369067pt;}
.x14_c00348{left:72.635733pt;}
.x9_c00348{left:73.569067pt;}
.xa_c00348{left:74.569067pt;}
.x12_c00348{left:75.834400pt;}
.xb_c00348{left:80.302400pt;}
.xc_c00348{left:100.169067pt;}
.x1_c00348{left:235.502400pt;}
.x7_c00348{left:342.701067pt;}
.x2_c00348{left:408.302400pt;}
.x15_c00348{left:521.235733pt;}
.x3_c00348{left:555.169067pt;}
.x5_c00348{left:582.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05b246ab5745081ae96754a7.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00349;src:url('chunks/assets/font_8dadfc0d86212d90c7f5ed3d.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00349;src:url('chunks/assets/font_182f21ff38dee32ca1795959.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00349{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2_c00349{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00349{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00349{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c00349{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00349{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c00349{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00349{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00349{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00349{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00349{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00349{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c00349{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00349{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00349{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00349{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00349{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c00349{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c00349{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1_c00349{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00349{color:transparent;}
.fs1_c00349{font-size:60.000000px;}
.fs2_c00349{font-size:66.000000px;}
.fs0_c00349{font-size:72.000000px;}
.y0_c00349{bottom:0.000000px;}
.y34_c00349{bottom:94.875000px;}
.y33_c00349{bottom:116.473500px;}
.y32_c00349{bottom:124.348500px;}
.y31_c00349{bottom:125.848500px;}
.y30_c00349{bottom:138.750000px;}
.y2f_c00349{bottom:160.723500px;}
.y2e_c00349{bottom:182.698500px;}
.y2d_c00349{bottom:204.673500px;}
.y2c_c00349{bottom:226.573500px;}
.y2b_c00349{bottom:251.848500px;}
.y2a_c00349{bottom:270.900000px;}
.y29_c00349{bottom:292.875000px;}
.y28_c00349{bottom:314.848500px;}
.y27_c00349{bottom:336.375000px;}
.y26_c00349{bottom:358.423500px;}
.y25_c00349{bottom:380.025000px;}
.y24_c00349{bottom:404.098500px;}
.y23_c00349{bottom:424.273500px;}
.y22_c00349{bottom:446.173500px;}
.y21_c00349{bottom:448.048500px;}
.y20_c00349{bottom:468.148500px;}
.y1f_c00349{bottom:489.750000px;}
.y1e_c00349{bottom:511.048500px;}
.y1d_c00349{bottom:533.023500px;}
.y1c_c00349{bottom:554.548500px;}
.y1b_c00349{bottom:576.523500px;}
.y1a_c00349{bottom:598.500000px;}
.y19_c00349{bottom:620.098500px;}
.y18_c00349{bottom:642.073500px;}
.y17_c00349{bottom:664.048500px;}
.y16_c00349{bottom:685.648500px;}
.y15_c00349{bottom:707.548500px;}
.y14_c00349{bottom:729.148500px;}
.y13_c00349{bottom:751.500000px;}
.y12_c00349{bottom:773.098500px;}
.y11_c00349{bottom:795.073500px;}
.y10_c00349{bottom:816.300000px;}
.yf_c00349{bottom:835.050000px;}
.ye_c00349{bottom:858.448500px;}
.yd_c00349{bottom:879.675000px;}
.yc_c00349{bottom:901.650000px;}
.yb_c00349{bottom:923.550000px;}
.ya_c00349{bottom:945.525000px;}
.y9_c00349{bottom:967.500000px;}
.y8_c00349{bottom:980.848500px;}
.y7_c00349{bottom:1010.323500px;}
.y6_c00349{bottom:1031.625000px;}
.y4_c00349{bottom:1042.723500px;}
.y5_c00349{bottom:1052.400000px;}
.y1_c00349{bottom:1099.948500px;}
.y3_c00349{bottom:1109.323500px;}
.y2_c00349{bottom:1115.098500px;}
.h2_c00349{height:58.886719px;}
.h5_c00349{height:64.775391px;}
.h3_c00349{height:66.515625px;}
.h4_c00349{height:70.664062px;}
.h1_c00349{height:75.093750px;}
.h0_c00349{height:1174.500000px;}
.w0_c00349{width:731.977200px;}
.w1_c00349{width:732.000000px;}
.x0_c00349{left:0.000000px;}
.x13_c00349{left:57.565200px;}
.x14_c00349{left:58.690200px;}
.x10_c00349{left:59.740200px;}
.x12_c00349{left:60.790200px;}
.xe_c00349{left:61.915200px;}
.xd_c00349{left:62.965200px;}
.xb_c00349{left:64.090200px;}
.xa_c00349{left:65.515200px;}
.x8_c00349{left:66.565200px;}
.x7_c00349{left:67.690200px;}
.x6_c00349{left:69.115200px;}
.x4_c00349{left:71.590200px;}
.x1_c00349{left:88.165200px;}
.x11_c00349{left:91.090200px;}
.xc_c00349{left:94.690200px;}
.x9_c00349{left:97.165200px;}
.x15_c00349{left:108.340200px;}
.x2_c00349{left:116.965200px;}
.x5_c00349{left:122.365200px;}
.x3_c00349{left:300.190200px;}
.xf_c00349{left:640.390200px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls0_c00349{letter-spacing:0.000000pt;}
.ws0_c00349{word-spacing:0.000000pt;}
.fs1_c00349{font-size:53.333333pt;}
.fs2_c00349{font-size:58.666667pt;}
.fs0_c00349{font-size:64.000000pt;}
.y0_c00349{bottom:0.000000pt;}
.y34_c00349{bottom:84.333333pt;}
.y33_c00349{bottom:103.532000pt;}
.y32_c00349{bottom:110.532000pt;}
.y31_c00349{bottom:111.865333pt;}
.y30_c00349{bottom:123.333333pt;}
.y2f_c00349{bottom:142.865333pt;}
.y2e_c00349{bottom:162.398667pt;}
.y2d_c00349{bottom:181.932000pt;}
.y2c_c00349{bottom:201.398667pt;}
.y2b_c00349{bottom:223.865333pt;}
.y2a_c00349{bottom:240.800000pt;}
.y29_c00349{bottom:260.333333pt;}
.y28_c00349{bottom:279.865333pt;}
.y27_c00349{bottom:299.000000pt;}
.y26_c00349{bottom:318.598667pt;}
.y25_c00349{bottom:337.800000pt;}
.y24_c00349{bottom:359.198667pt;}
.y23_c00349{bottom:377.132000pt;}
.y22_c00349{bottom:396.598667pt;}
.y21_c00349{bottom:398.265333pt;}
.y20_c00349{bottom:416.132000pt;}
.y1f_c00349{bottom:435.333333pt;}
.y1e_c00349{bottom:454.265333pt;}
.y1d_c00349{bottom:473.798667pt;}
.y1c_c00349{bottom:492.932000pt;}
.y1b_c00349{bottom:512.465333pt;}
.y1a_c00349{bottom:532.000000pt;}
.y19_c00349{bottom:551.198667pt;}
.y18_c00349{bottom:570.732000pt;}
.y17_c00349{bottom:590.265333pt;}
.y16_c00349{bottom:609.465333pt;}
.y15_c00349{bottom:628.932000pt;}
.y14_c00349{bottom:648.132000pt;}
.y13_c00349{bottom:668.000000pt;}
.y12_c00349{bottom:687.198667pt;}
.y11_c00349{bottom:706.732000pt;}
.y10_c00349{bottom:725.600000pt;}
.yf_c00349{bottom:742.266667pt;}
.ye_c00349{bottom:763.065333pt;}
.yd_c00349{bottom:781.933333pt;}
.yc_c00349{bottom:801.466667pt;}
.yb_c00349{bottom:820.933333pt;}
.ya_c00349{bottom:840.466667pt;}
.y9_c00349{bottom:860.000000pt;}
.y8_c00349{bottom:871.865333pt;}
.y7_c00349{bottom:898.065333pt;}
.y6_c00349{bottom:917.000000pt;}
.y4_c00349{bottom:926.865333pt;}
.y5_c00349{bottom:935.466667pt;}
.y1_c00349{bottom:977.732000pt;}
.y3_c00349{bottom:986.065333pt;}
.y2_c00349{bottom:991.198667pt;}
.h2_c00349{height:52.343750pt;}
.h5_c00349{height:57.578125pt;}
.h3_c00349{height:59.125000pt;}
.h4_c00349{height:62.812500pt;}
.h1_c00349{height:66.750000pt;}
.h0_c00349{height:1044.000000pt;}
.w0_c00349{width:650.646400pt;}
.w1_c00349{width:650.666667pt;}
.x0_c00349{left:0.000000pt;}
.x13_c00349{left:51.169067pt;}
.x14_c00349{left:52.169067pt;}
.x10_c00349{left:53.102400pt;}
.x12_c00349{left:54.035733pt;}
.xe_c00349{left:55.035733pt;}
.xd_c00349{left:55.969067pt;}
.xb_c00349{left:56.969067pt;}
.xa_c00349{left:58.235733pt;}
.x8_c00349{left:59.169067pt;}
.x7_c00349{left:60.169067pt;}
.x6_c00349{left:61.435733pt;}
.x4_c00349{left:63.635733pt;}
.x1_c00349{left:78.369067pt;}
.x11_c00349{left:80.969067pt;}
.xc_c00349{left:84.169067pt;}
.x9_c00349{left:86.369067pt;}
.x15_c00349{left:96.302400pt;}
.x2_c00349{left:103.969067pt;}
.x5_c00349{left:108.769067pt;}
.x3_c00349{left:266.835733pt;}
.xf_c00349{left:569.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac527acd51bb9dcb83582931.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00350;src:url('chunks/assets/font_806155e1a81401313b9370db.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00350{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9_c00350{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c00350{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00350{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00350{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c00350{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c00350{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00350{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00350{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mc_c00350{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00350{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c00350{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1_c00350{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00350{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2_c00350{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00350{word-spacing:0.000000px;}
.fc0_c00350{color:transparent;}
.fs1_c00350{font-size:54.000000px;}
.fs0_c00350{font-size:72.000000px;}
.fs2_c00350{font-size:78.000000px;}
.y0_c00350{bottom:0.000000px;}
.y2e_c00350{bottom:88.423500px;}
.y2d_c00350{bottom:109.273500px;}
.y2c_c00350{bottom:129.823500px;}
.y2b_c00350{bottom:150.298500px;}
.y2a_c00350{bottom:171.223500px;}
.y29_c00350{bottom:191.698500px;}
.y28_c00350{bottom:212.173500px;}
.y27_c00350{bottom:232.423500px;}
.y26_c00350{bottom:252.898500px;}
.y25_c00350{bottom:273.448500px;}
.y24_c00350{bottom:294.298500px;}
.y23_c00350{bottom:315.525000px;}
.y22_c00350{bottom:336.750000px;}
.y21_c00350{bottom:482.548500px;}
.y20_c00350{bottom:504.223500px;}
.y1f_c00350{bottom:525.823500px;}
.y1e_c00350{bottom:547.048500px;}
.y1d_c00350{bottom:568.273500px;}
.y1c_c00350{bottom:589.500000px;}
.y1b_c00350{bottom:611.098500px;}
.y1a_c00350{bottom:632.698500px;}
.y19_c00350{bottom:653.625000px;}
.y18_c00350{bottom:674.848500px;}
.y17_c00350{bottom:697.500000px;}
.y16_c00350{bottom:718.048500px;}
.y15_c00350{bottom:739.273500px;}
.y14_c00350{bottom:760.500000px;}
.y13_c00350{bottom:761.625000px;}
.y12_c00350{bottom:782.473500px;}
.y11_c00350{bottom:803.698500px;}
.y10_c00350{bottom:825.675000px;}
.yf_c00350{bottom:847.275000px;}
.ye_c00350{bottom:868.800000px;}
.yd_c00350{bottom:889.723500px;}
.yc_c00350{bottom:910.650000px;}
.yb_c00350{bottom:931.875000px;}
.ya_c00350{bottom:952.723500px;}
.y9_c00350{bottom:974.323500px;}
.y8_c00350{bottom:995.625000px;}
.y7_c00350{bottom:1015.348500px;}
.y6_c00350{bottom:1018.650000px;}
.y5_c00350{bottom:1020.073500px;}
.y4_c00350{bottom:1070.473500px;}
.y2_c00350{bottom:1075.500000px;}
.y1_c00350{bottom:1076.550000px;}
.y3_c00350{bottom:1083.973500px;}
.h2_c00350{height:52.998047px;}
.h1_c00350{height:70.664062px;}
.h3_c00350{height:76.552734px;}
.h4_c00350{height:78.609375px;}
.h0_c00350{height:1174.500000px;}
.w0_c00350{width:731.977200px;}
.w1_c00350{width:732.000000px;}
.x0_c00350{left:0.000000px;}
.x5_c00350{left:34.165200px;}
.x8_c00350{left:35.588700px;}
.xb_c00350{left:36.715200px;}
.xc_c00350{left:40.315200px;}
.xd_c00350{left:41.365200px;}
.xe_c00350{left:42.490200px;}
.xf_c00350{left:43.540200px;}
.xa_c00350{left:66.940200px;}
.x9_c00350{left:72.340200px;}
.x6_c00350{left:240.790200px;}
.x1_c00350{left:249.490200px;}
.x7_c00350{left:263.890200px;}
.x2_c00350{left:273.940200px;}
.x3_c00350{left:443.890200px;}
.x4_c00350{left:606.565200px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls0_c00350{letter-spacing:0.000000pt;}
.ws0_c00350{word-spacing:0.000000pt;}
.fs1_c00350{font-size:48.000000pt;}
.fs0_c00350{font-size:64.000000pt;}
.fs2_c00350{font-size:69.333333pt;}
.y0_c00350{bottom:0.000000pt;}
.y2e_c00350{bottom:78.598667pt;}
.y2d_c00350{bottom:97.132000pt;}
.y2c_c00350{bottom:115.398667pt;}
.y2b_c00350{bottom:133.598667pt;}
.y2a_c00350{bottom:152.198667pt;}
.y29_c00350{bottom:170.398667pt;}
.y28_c00350{bottom:188.598667pt;}
.y27_c00350{bottom:206.598667pt;}
.y26_c00350{bottom:224.798667pt;}
.y25_c00350{bottom:243.065333pt;}
.y24_c00350{bottom:261.598667pt;}
.y23_c00350{bottom:280.466667pt;}
.y22_c00350{bottom:299.333333pt;}
.y21_c00350{bottom:428.932000pt;}
.y20_c00350{bottom:448.198667pt;}
.y1f_c00350{bottom:467.398667pt;}
.y1e_c00350{bottom:486.265333pt;}
.y1d_c00350{bottom:505.132000pt;}
.y1c_c00350{bottom:524.000000pt;}
.y1b_c00350{bottom:543.198667pt;}
.y1a_c00350{bottom:562.398667pt;}
.y19_c00350{bottom:581.000000pt;}
.y18_c00350{bottom:599.865333pt;}
.y17_c00350{bottom:620.000000pt;}
.y16_c00350{bottom:638.265333pt;}
.y15_c00350{bottom:657.132000pt;}
.y14_c00350{bottom:676.000000pt;}
.y13_c00350{bottom:677.000000pt;}
.y12_c00350{bottom:695.532000pt;}
.y11_c00350{bottom:714.398667pt;}
.y10_c00350{bottom:733.933333pt;}
.yf_c00350{bottom:753.133333pt;}
.ye_c00350{bottom:772.266667pt;}
.yd_c00350{bottom:790.865333pt;}
.yc_c00350{bottom:809.466667pt;}
.yb_c00350{bottom:828.333333pt;}
.ya_c00350{bottom:846.865333pt;}
.y9_c00350{bottom:866.065333pt;}
.y8_c00350{bottom:885.000000pt;}
.y7_c00350{bottom:902.532000pt;}
.y6_c00350{bottom:905.466667pt;}
.y5_c00350{bottom:906.732000pt;}
.y4_c00350{bottom:951.532000pt;}
.y2_c00350{bottom:956.000000pt;}
.y1_c00350{bottom:956.933333pt;}
.y3_c00350{bottom:963.532000pt;}
.h2_c00350{height:47.109375pt;}
.h1_c00350{height:62.812500pt;}
.h3_c00350{height:68.046875pt;}
.h4_c00350{height:69.875000pt;}
.h0_c00350{height:1044.000000pt;}
.w0_c00350{width:650.646400pt;}
.w1_c00350{width:650.666667pt;}
.x0_c00350{left:0.000000pt;}
.x5_c00350{left:30.369067pt;}
.x8_c00350{left:31.634400pt;}
.xb_c00350{left:32.635733pt;}
.xc_c00350{left:35.835733pt;}
.xd_c00350{left:36.769067pt;}
.xe_c00350{left:37.769067pt;}
.xf_c00350{left:38.702400pt;}
.xa_c00350{left:59.502400pt;}
.x9_c00350{left:64.302400pt;}
.x6_c00350{left:214.035733pt;}
.x1_c00350{left:221.769067pt;}
.x7_c00350{left:234.569067pt;}
.x2_c00350{left:243.502400pt;}
.x3_c00350{left:394.569067pt;}
.x4_c00350{left:539.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa51411b3776b8b1297604b0.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00351;src:url('chunks/assets/font_0cd038308f68f0753865023e.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00351;src:url('chunks/assets/font_83a098ac087dd48403793108.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00351{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m0_c00351{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m15_c00351{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m14_c00351{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c00351{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00351{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c00351{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00351{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00351{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00351{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma_c00351{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00351{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00351{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00351{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c00351{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00351{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00351{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c00351{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00351{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c00351{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m11_c00351{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m1_c00351{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00351{color:transparent;}
.fs1_c00351{font-size:60.000000px;}
.fs0_c00351{font-size:66.000000px;}
.fs2_c00351{font-size:72.000000px;}
.fs3_c00351{font-size:78.000000px;}
.y0_c00351{bottom:0.000000px;}
.y34_c00351{bottom:89.398500px;}
.y33_c00351{bottom:91.948500px;}
.y32_c00351{bottom:94.500000px;}
.y31_c00351{bottom:96.598500px;}
.y30_c00351{bottom:98.098500px;}
.y2f_c00351{bottom:126.898500px;}
.y2e_c00351{bottom:170.848500px;}
.y2d_c00351{bottom:198.898500px;}
.y2c_c00351{bottom:221.173500px;}
.y2b_c00351{bottom:243.223500px;}
.y2a_c00351{bottom:265.500000px;}
.y29_c00351{bottom:287.473500px;}
.y28_c00351{bottom:309.073500px;}
.y27_c00351{bottom:313.723500px;}
.y26_c00351{bottom:314.098500px;}
.y25_c00351{bottom:333.525000px;}
.y24_c00351{bottom:352.948500px;}
.y23_c00351{bottom:375.298500px;}
.y22_c00351{bottom:397.948500px;}
.y21_c00351{bottom:419.250000px;}
.y20_c00351{bottom:441.148500px;}
.y1f_c00351{bottom:463.125000px;}
.y1e_c00351{bottom:484.723500px;}
.y1d_c00351{bottom:506.323500px;}
.y1c_c00351{bottom:527.923500px;}
.y1b_c00351{bottom:549.523500px;}
.y1a_c00351{bottom:571.500000px;}
.y19_c00351{bottom:593.098500px;}
.y18_c00351{bottom:615.073500px;}
.y17_c00351{bottom:637.048500px;}
.y16_c00351{bottom:658.948500px;}
.y15_c00351{bottom:680.625000px;}
.y14_c00351{bottom:701.848500px;}
.y13_c00351{bottom:724.125000px;}
.y12_c00351{bottom:745.723500px;}
.y11_c00351{bottom:767.700000px;}
.y10_c00351{bottom:789.300000px;}
.yf_c00351{bottom:810.900000px;}
.ye_c00351{bottom:831.750000px;}
.yd_c00351{bottom:853.050000px;}
.yc_c00351{bottom:874.275000px;}
.yb_c00351{bottom:892.275000px;}
.ya_c00351{bottom:917.473500px;}
.y9_c00351{bottom:939.823500px;}
.y8_c00351{bottom:961.348500px;}
.y7_c00351{bottom:983.025000px;}
.y6_c00351{bottom:1004.925000px;}
.y5_c00351{bottom:1019.025000px;}
.y4_c00351{bottom:1046.698500px;}
.y1_c00351{bottom:1096.050000px;}
.y3_c00351{bottom:1104.000000px;}
.y2_c00351{bottom:1110.598500px;}
.h2_c00351{height:58.886719px;}
.h1_c00351{height:68.835938px;}
.h3_c00351{height:70.664062px;}
.h4_c00351{height:76.514648px;}
.h0_c00351{height:1174.500000px;}
.w0_c00351{width:731.977200px;}
.w1_c00351{width:732.000000px;}
.x0_c00351{left:0.000000px;}
.xd_c00351{left:60.790200px;}
.xa_c00351{left:62.290200px;}
.xb_c00351{left:63.340200px;}
.x7_c00351{left:64.765200px;}
.x6_c00351{left:65.890200px;}
.x4_c00351{left:67.690200px;}
.x10_c00351{left:85.688700px;}
.x1_c00351{left:88.915200px;}
.xe_c00351{left:94.690200px;}
.x9_c00351{left:95.740200px;}
.x8_c00351{left:98.590200px;}
.x5_c00351{left:100.390200px;}
.x12_c00351{left:103.990200px;}
.xf_c00351{left:110.140200px;}
.x2_c00351{left:115.915200px;}
.xc_c00351{left:137.515200px;}
.x13_c00351{left:142.165200px;}
.x14_c00351{left:164.890200px;}
.x11_c00351{left:279.340200px;}
.x3_c00351{left:293.740200px;}
.x15_c00351{left:300.190200px;}
.x16_c00351{left:413.288700px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls0_c00351{letter-spacing:0.000000pt;}
.ws0_c00351{word-spacing:0.000000pt;}
.fs1_c00351{font-size:53.333333pt;}
.fs0_c00351{font-size:58.666667pt;}
.fs2_c00351{font-size:64.000000pt;}
.fs3_c00351{font-size:69.333333pt;}
.y0_c00351{bottom:0.000000pt;}
.y34_c00351{bottom:79.465333pt;}
.y33_c00351{bottom:81.732000pt;}
.y32_c00351{bottom:84.000000pt;}
.y31_c00351{bottom:85.865333pt;}
.y30_c00351{bottom:87.198667pt;}
.y2f_c00351{bottom:112.798667pt;}
.y2e_c00351{bottom:151.865333pt;}
.y2d_c00351{bottom:176.798667pt;}
.y2c_c00351{bottom:196.598667pt;}
.y2b_c00351{bottom:216.198667pt;}
.y2a_c00351{bottom:236.000000pt;}
.y29_c00351{bottom:255.532000pt;}
.y28_c00351{bottom:274.732000pt;}
.y27_c00351{bottom:278.865333pt;}
.y26_c00351{bottom:279.198667pt;}
.y25_c00351{bottom:296.466667pt;}
.y24_c00351{bottom:313.732000pt;}
.y23_c00351{bottom:333.598667pt;}
.y22_c00351{bottom:353.732000pt;}
.y21_c00351{bottom:372.666667pt;}
.y20_c00351{bottom:392.132000pt;}
.y1f_c00351{bottom:411.666667pt;}
.y1e_c00351{bottom:430.865333pt;}
.y1d_c00351{bottom:450.065333pt;}
.y1c_c00351{bottom:469.265333pt;}
.y1b_c00351{bottom:488.465333pt;}
.y1a_c00351{bottom:508.000000pt;}
.y19_c00351{bottom:527.198667pt;}
.y18_c00351{bottom:546.732000pt;}
.y17_c00351{bottom:566.265333pt;}
.y16_c00351{bottom:585.732000pt;}
.y15_c00351{bottom:605.000000pt;}
.y14_c00351{bottom:623.865333pt;}
.y13_c00351{bottom:643.666667pt;}
.y12_c00351{bottom:662.865333pt;}
.y11_c00351{bottom:682.400000pt;}
.y10_c00351{bottom:701.600000pt;}
.yf_c00351{bottom:720.800000pt;}
.ye_c00351{bottom:739.333333pt;}
.yd_c00351{bottom:758.266667pt;}
.yc_c00351{bottom:777.133333pt;}
.yb_c00351{bottom:793.133333pt;}
.ya_c00351{bottom:815.532000pt;}
.y9_c00351{bottom:835.398667pt;}
.y8_c00351{bottom:854.532000pt;}
.y7_c00351{bottom:873.800000pt;}
.y6_c00351{bottom:893.266667pt;}
.y5_c00351{bottom:905.800000pt;}
.y4_c00351{bottom:930.398667pt;}
.y1_c00351{bottom:974.266667pt;}
.y3_c00351{bottom:981.333333pt;}
.y2_c00351{bottom:987.198667pt;}
.h2_c00351{height:52.343750pt;}
.h1_c00351{height:61.187500pt;}
.h3_c00351{height:62.812500pt;}
.h4_c00351{height:68.013021pt;}
.h0_c00351{height:1044.000000pt;}
.w0_c00351{width:650.646400pt;}
.w1_c00351{width:650.666667pt;}
.x0_c00351{left:0.000000pt;}
.xd_c00351{left:54.035733pt;}
.xa_c00351{left:55.369067pt;}
.xb_c00351{left:56.302400pt;}
.x7_c00351{left:57.569067pt;}
.x6_c00351{left:58.569067pt;}
.x4_c00351{left:60.169067pt;}
.x10_c00351{left:76.167733pt;}
.x1_c00351{left:79.035733pt;}
.xe_c00351{left:84.169067pt;}
.x9_c00351{left:85.102400pt;}
.x8_c00351{left:87.635733pt;}
.x5_c00351{left:89.235733pt;}
.x12_c00351{left:92.435733pt;}
.xf_c00351{left:97.902400pt;}
.x2_c00351{left:103.035733pt;}
.xc_c00351{left:122.235733pt;}
.x13_c00351{left:126.369067pt;}
.x14_c00351{left:146.569067pt;}
.x11_c00351{left:248.302400pt;}
.x3_c00351{left:261.102400pt;}
.x15_c00351{left:266.835733pt;}
.x16_c00351{left:367.367733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_775be60002c913eeffea850a.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00352;src:url('chunks/assets/font_9597ec141186817967b70e6e.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00352;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00352{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m4_c00352{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m1_c00352{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m15_c00352{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c00352{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00352{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c00352{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00352{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00352{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m13_c00352{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00352{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00352{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00352{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00352{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00352{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00352{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c00352{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00352{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c00352{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.md_c00352{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12_c00352{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c00352{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m3_c00352{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00352{color:transparent;}
.fs4_c00352{font-size:54.000000px;}
.fs0_c00352{font-size:60.000000px;}
.fs3_c00352{font-size:66.000000px;}
.fs2_c00352{font-size:72.000000px;}
.fs1_c00352{font-size:198.000000px;}
.y0_c00352{bottom:0.000000px;}
.y30_c00352{bottom:134.098500px;}
.y2f_c00352{bottom:156.448500px;}
.y2d_c00352{bottom:175.500000px;}
.y2e_c00352{bottom:177.598500px;}
.y2c_c00352{bottom:196.723500px;}
.y2a_c00352{bottom:217.648500px;}
.y2b_c00352{bottom:221.173500px;}
.y29_c00352{bottom:238.125000px;}
.y26_c00352{bottom:258.298500px;}
.y27_c00352{bottom:258.673500px;}
.y28_c00352{bottom:260.098500px;}
.y25_c00352{bottom:279.900000px;}
.y23_c00352{bottom:300.750000px;}
.y24_c00352{bottom:300.823500px;}
.y21_c00352{bottom:321.673500px;}
.y22_c00352{bottom:323.473500px;}
.y20_c00352{bottom:342.525000px;}
.y1e_c00352{bottom:363.375000px;}
.y1f_c00352{bottom:364.125000px;}
.y1c_c00352{bottom:384.298500px;}
.y1d_c00352{bottom:385.723500px;}
.y1b_c00352{bottom:405.525000px;}
.y1a_c00352{bottom:426.448500px;}
.y19_c00352{bottom:447.673500px;}
.y18_c00352{bottom:468.898500px;}
.y17_c00352{bottom:490.500000px;}
.y16_c00352{bottom:510.598500px;}
.y15_c00352{bottom:511.723500px;}
.y14_c00352{bottom:533.023500px;}
.y13_c00352{bottom:553.875000px;}
.y12_c00352{bottom:554.250000px;}
.y11_c00352{bottom:555.673500px;}
.y10_c00352{bottom:556.723500px;}
.yf_c00352{bottom:575.473500px;}
.ye_c00352{bottom:577.273500px;}
.yd_c00352{bottom:622.648500px;}
.yc_c00352{bottom:638.098500px;}
.yb_c00352{bottom:655.048500px;}
.ya_c00352{bottom:671.250000px;}
.y9_c00352{bottom:673.423500px;}
.y8_c00352{bottom:674.773500px;}
.y7_c00352{bottom:689.625000px;}
.y6_c00352{bottom:740.700000px;}
.y5_c00352{bottom:840.448500px;}
.y3_c00352{bottom:845.473500px;}
.y4_c00352{bottom:881.625000px;}
.y2_c00352{bottom:1053.900000px;}
.y1_c00352{bottom:1055.323500px;}
.h7_c00352{height:52.998047px;}
.h1_c00352{height:58.886719px;}
.h2_c00352{height:60.468750px;}
.h5_c00352{height:64.775391px;}
.h6_c00352{height:70.628906px;}
.h4_c00352{height:70.664062px;}
.h3_c00352{height:194.326172px;}
.h0_c00352{height:1174.500000px;}
.w0_c00352{width:731.977200px;}
.w1_c00352{width:732.000000px;}
.x0_c00352{left:0.000000px;}
.x12_c00352{left:61.915200px;}
.x10_c00352{left:62.965200px;}
.x7_c00352{left:64.090200px;}
.xb_c00352{left:80.290200px;}
.x8_c00352{left:81.340200px;}
.x1a_c00352{left:93.563700px;}
.xc_c00352{left:95.740200px;}
.x3_c00352{left:116.290200px;}
.xd_c00352{left:123.115200px;}
.x1b_c00352{left:126.715200px;}
.x14_c00352{left:195.115200px;}
.x16_c00352{left:226.090200px;}
.x4_c00352{left:256.990200px;}
.x9_c00352{left:270.715200px;}
.x1_c00352{left:283.990200px;}
.xa_c00352{left:287.965200px;}
.x2_c00352{left:311.365200px;}
.x6_c00352{left:317.515200px;}
.xe_c00352{left:331.915200px;}
.x5_c00352{left:342.715200px;}
.x17_c00352{left:410.365200px;}
.x18_c00352{left:441.715200px;}
.xf_c00352{left:445.690200px;}
.x13_c00352{left:635.365200px;}
.x19_c00352{left:647.965200px;}
.x15_c00352{left:657.715200px;}
.x11_c00352{left:665.290200px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls0_c00352{letter-spacing:0.000000pt;}
.ws0_c00352{word-spacing:0.000000pt;}
.fs4_c00352{font-size:48.000000pt;}
.fs0_c00352{font-size:53.333333pt;}
.fs3_c00352{font-size:58.666667pt;}
.fs2_c00352{font-size:64.000000pt;}
.fs1_c00352{font-size:176.000000pt;}
.y0_c00352{bottom:0.000000pt;}
.y30_c00352{bottom:119.198667pt;}
.y2f_c00352{bottom:139.065333pt;}
.y2d_c00352{bottom:156.000000pt;}
.y2e_c00352{bottom:157.865333pt;}
.y2c_c00352{bottom:174.865333pt;}
.y2a_c00352{bottom:193.465333pt;}
.y2b_c00352{bottom:196.598667pt;}
.y29_c00352{bottom:211.666667pt;}
.y26_c00352{bottom:229.598667pt;}
.y27_c00352{bottom:229.932000pt;}
.y28_c00352{bottom:231.198667pt;}
.y25_c00352{bottom:248.800000pt;}
.y23_c00352{bottom:267.333333pt;}
.y24_c00352{bottom:267.398667pt;}
.y21_c00352{bottom:285.932000pt;}
.y22_c00352{bottom:287.532000pt;}
.y20_c00352{bottom:304.466667pt;}
.y1e_c00352{bottom:323.000000pt;}
.y1f_c00352{bottom:323.666667pt;}
.y1c_c00352{bottom:341.598667pt;}
.y1d_c00352{bottom:342.865333pt;}
.y1b_c00352{bottom:360.466667pt;}
.y1a_c00352{bottom:379.065333pt;}
.y19_c00352{bottom:397.932000pt;}
.y18_c00352{bottom:416.798667pt;}
.y17_c00352{bottom:436.000000pt;}
.y16_c00352{bottom:453.865333pt;}
.y15_c00352{bottom:454.865333pt;}
.y14_c00352{bottom:473.798667pt;}
.y13_c00352{bottom:492.333333pt;}
.y12_c00352{bottom:492.666667pt;}
.y11_c00352{bottom:493.932000pt;}
.y10_c00352{bottom:494.865333pt;}
.yf_c00352{bottom:511.532000pt;}
.ye_c00352{bottom:513.132000pt;}
.yd_c00352{bottom:553.465333pt;}
.yc_c00352{bottom:567.198667pt;}
.yb_c00352{bottom:582.265333pt;}
.ya_c00352{bottom:596.666667pt;}
.y9_c00352{bottom:598.598667pt;}
.y8_c00352{bottom:599.798667pt;}
.y7_c00352{bottom:613.000000pt;}
.y6_c00352{bottom:658.400000pt;}
.y5_c00352{bottom:747.065333pt;}
.y3_c00352{bottom:751.532000pt;}
.y4_c00352{bottom:783.666667pt;}
.y2_c00352{bottom:936.800000pt;}
.y1_c00352{bottom:938.065333pt;}
.h7_c00352{height:47.109375pt;}
.h1_c00352{height:52.343750pt;}
.h2_c00352{height:53.750000pt;}
.h5_c00352{height:57.578125pt;}
.h6_c00352{height:62.781250pt;}
.h4_c00352{height:62.812500pt;}
.h3_c00352{height:172.734375pt;}
.h0_c00352{height:1044.000000pt;}
.w0_c00352{width:650.646400pt;}
.w1_c00352{width:650.666667pt;}
.x0_c00352{left:0.000000pt;}
.x12_c00352{left:55.035733pt;}
.x10_c00352{left:55.969067pt;}
.x7_c00352{left:56.969067pt;}
.xb_c00352{left:71.369067pt;}
.x8_c00352{left:72.302400pt;}
.x1a_c00352{left:83.167733pt;}
.xc_c00352{left:85.102400pt;}
.x3_c00352{left:103.369067pt;}
.xd_c00352{left:109.435733pt;}
.x1b_c00352{left:112.635733pt;}
.x14_c00352{left:173.435733pt;}
.x16_c00352{left:200.969067pt;}
.x4_c00352{left:228.435733pt;}
.x9_c00352{left:240.635733pt;}
.x1_c00352{left:252.435733pt;}
.xa_c00352{left:255.969067pt;}
.x2_c00352{left:276.769067pt;}
.x6_c00352{left:282.235733pt;}
.xe_c00352{left:295.035733pt;}
.x5_c00352{left:304.635733pt;}
.x17_c00352{left:364.769067pt;}
.x18_c00352{left:392.635733pt;}
.xf_c00352{left:396.169067pt;}
.x13_c00352{left:564.769067pt;}
.x19_c00352{left:575.969067pt;}
.x15_c00352{left:584.635733pt;}
.x11_c00352{left:591.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5b2e84bebc07d6bdb6dc6c4f.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00353;src:url('chunks/assets/font_eeec5309edda5f424e527e7e.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00353;src:url('chunks/assets/font_6734b1c594c0eeaf08521602.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00353;src:url('chunks/assets/font_bb2bd9dc3b6dfeec242b2104.woff2')format("woff");}.ff4_c00353{font-family:ff4_c00353;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00353{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00353{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m24_c00353{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m16_c00353{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00353{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m11_c00353{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m20_c00353{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00353{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma_c00353{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c00353{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00353{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00353{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mf_c00353{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00353{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m26_c00353{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00353{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c00353{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m29_c00353{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00353{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m23_c00353{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c00353{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m28_c00353{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00353{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m22_c00353{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m19_c00353{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c00353{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c00353{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00353{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00353{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00353{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m13_c00353{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00353{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3_c00353{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m21_c00353{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00353{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00353{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00353{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m10_c00353{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00353{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7_c00353{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00353{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00353{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00353{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m18_c00353{transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);}
.m27_c00353{transform:matrix(1.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.130000,0.000000,0.000000,0.250000,0,0);}
.m25_c00353{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m1_c00353{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v1_c00353{vertical-align:-14.394000px;}
.v0_c00353{vertical-align:0.000000px;}
.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;}
}
.ws0_c00353{word-spacing:-16.500000px;}
.ws1_c00353{word-spacing:0.000000px;}
.fc0_c00353{color:transparent;}
.fs1_c00353{font-size:60.000000px;}
.fs0_c00353{font-size:66.000000px;}
.fs2_c00353{font-size:72.000000px;}
.fs3_c00353{font-size:84.000000px;}
.y0_c00353{bottom:0.000000px;}
.y50_c00353{bottom:93.448500px;}
.y4f_c00353{bottom:101.698500px;}
.y4e_c00353{bottom:109.648500px;}
.y4d_c00353{bottom:110.398500px;}
.y4c_c00353{bottom:125.473500px;}
.y4b_c00353{bottom:126.148500px;}
.y4a_c00353{bottom:128.698500px;}
.y49_c00353{bottom:129.000000px;}
.y48_c00353{bottom:137.698500px;}
.y47_c00353{bottom:144.898500px;}
.y46_c00353{bottom:156.073500px;}
.y45_c00353{bottom:161.473500px;}
.y44_c00353{bottom:175.875000px;}
.y42_c00353{bottom:178.348500px;}
.y43_c00353{bottom:178.423500px;}
.y41_c00353{bottom:192.448500px;}
.y40_c00353{bottom:194.625000px;}
.y3f_c00353{bottom:206.473500px;}
.y3e_c00353{bottom:207.898500px;}
.y3d_c00353{bottom:224.848500px;}
.y3c_c00353{bottom:229.875000px;}
.y3b_c00353{bottom:247.198500px;}
.y39_c00353{bottom:257.923500px;}
.y3a_c00353{bottom:259.348500px;}
.y38_c00353{bottom:261.525000px;}
.y37_c00353{bottom:278.098500px;}
.y36_c00353{bottom:294.598500px;}
.y35_c00353{bottom:299.025000px;}
.y34_c00353{bottom:299.323500px;}
.y33_c00353{bottom:376.348500px;}
.y32_c00353{bottom:398.025000px;}
.y31_c00353{bottom:419.923500px;}
.y2a_c00353{bottom:465.298500px;}
.y29_c00353{bottom:482.923500px;}
.y28_c00353{bottom:483.598500px;}
.y27_c00353{bottom:499.875000px;}
.y26_c00353{bottom:500.625000px;}
.y2e_c00353{bottom:509.548500px;}
.y25_c00353{bottom:518.250000px;}
.y24_c00353{bottom:535.125000px;}
.y23_c00353{bottom:552.823500px;}
.y2d_c00353{bottom:567.898500px;}
.y22_c00353{bottom:587.698500px;}
.y30_c00353{bottom:596.323500px;}
.y2f_c00353{bottom:596.698500px;}
.y21_c00353{bottom:604.948500px;}
.y2c_c00353{bottom:622.273500px;}
.y2b_c00353{bottom:639.523500px;}
.y20_c00353{bottom:640.273500px;}
.y1f_c00353{bottom:649.273500px;}
.y1e_c00353{bottom:657.898500px;}
.y1d_c00353{bottom:658.273500px;}
.y1c_c00353{bottom:691.348500px;}
.y1b_c00353{bottom:737.773500px;}
.y1a_c00353{bottom:760.125000px;}
.y19_c00353{bottom:782.098500px;}
.y14_c00353{bottom:801.223500px;}
.y15_c00353{bottom:802.948500px;}
.y16_c00353{bottom:803.323500px;}
.y17_c00353{bottom:803.698500px;}
.y18_c00353{bottom:804.750000px;}
.y13_c00353{bottom:825.598500px;}
.y12_c00353{bottom:846.900000px;}
.yf_c00353{bottom:867.750000px;}
.y11_c00353{bottom:869.175000px;}
.y10_c00353{bottom:869.625000px;}
.yc_c00353{bottom:888.973500px;}
.yd_c00353{bottom:890.775000px;}
.ye_c00353{bottom:890.848500px;}
.yb_c00353{bottom:911.698500px;}
.y6_c00353{bottom:931.500000px;}
.y7_c00353{bottom:933.300000px;}
.y8_c00353{bottom:933.675000px;}
.y9_c00353{bottom:934.348500px;}
.ya_c00353{bottom:935.098500px;}
.y5_c00353{bottom:949.125000px;}
.y4_c00353{bottom:977.250000px;}
.y1_c00353{bottom:1089.525000px;}
.y3_c00353{bottom:1098.150000px;}
.y2_c00353{bottom:1103.925000px;}
.h2_c00353{height:58.886719px;}
.h1_c00353{height:64.775391px;}
.h5_c00353{height:66.515625px;}
.h3_c00353{height:70.664062px;}
.h4_c00353{height:82.400391px;}
.h0_c00353{height:1174.500000px;}
.w0_c00353{width:731.977200px;}
.w1_c00353{width:732.000000px;}
.x0_c00353{left:0.000000px;}
.xa_c00353{left:60.490200px;}
.x5_c00353{left:61.915200px;}
.x28_c00353{left:64.765200px;}
.x2a_c00353{left:66.940200px;}
.x1_c00353{left:82.765200px;}
.x33_c00353{left:84.188700px;}
.x4_c00353{left:93.563700px;}
.x27_c00353{left:96.490200px;}
.x32_c00353{left:97.540200px;}
.x35_c00353{left:99.340200px;}
.x30_c00353{left:102.190200px;}
.x31_c00353{left:103.990200px;}
.x36_c00353{left:105.490200px;}
.x2_c00353{left:109.390200px;}
.x2d_c00353{left:119.140200px;}
.x29_c00353{left:120.940200px;}
.x34_c00353{left:157.690200px;}
.x37_c00353{left:159.115200px;}
.x16_c00353{left:164.890200px;}
.x2f_c00353{left:165.940200px;}
.x10_c00353{left:185.740200px;}
.x11_c00353{left:237.565200px;}
.x12_c00353{left:254.515200px;}
.x24_c00353{left:282.190200px;}
.x25_c00353{left:285.790200px;}
.x3_c00353{left:292.690200px;}
.x6_c00353{left:305.290200px;}
.x13_c00353{left:318.940200px;}
.x7_c00353{left:368.590200px;}
.x1b_c00353{left:386.590200px;}
.x8_c00353{left:388.090200px;}
.x1f_c00353{left:389.140200px;}
.x20_c00353{left:390.190200px;}
.x22_c00353{left:408.190200px;}
.x26_c00353{left:444.565200px;}
.x23_c00353{left:453.190200px;}
.x2b_c00353{left:467.290200px;}
.x9_c00353{left:495.715200px;}
.xb_c00353{left:514.090200px;}
.x2e_c00353{left:539.965200px;}
.x1e_c00353{left:547.915200px;}
.xe_c00353{left:552.190200px;}
.x17_c00353{left:559.390200px;}
.xc_c00353{left:577.090200px;}
.x14_c00353{left:578.890200px;}
.xd_c00353{left:595.390200px;}
.x21_c00353{left:601.915200px;}
.x2c_c00353{left:603.340200px;}
.xf_c00353{left:610.540200px;}
.x1c_c00353{left:614.140200px;}
.x1d_c00353{left:620.590200px;}
.x18_c00353{left:652.315200px;}
.x1a_c00353{left:655.165200px;}
.x15_c00353{left:672.490200px;}
.x19_c00353{left:687.190200px;}
@media print{
.v1_c00353{vertical-align:-12.794667pt;}
.v0_c00353{vertical-align:0.000000pt;}
.ls0_c00353{letter-spacing:0.000000pt;}
.ws0_c00353{word-spacing:-14.666667pt;}
.ws1_c00353{word-spacing:0.000000pt;}
.fs1_c00353{font-size:53.333333pt;}
.fs0_c00353{font-size:58.666667pt;}
.fs2_c00353{font-size:64.000000pt;}
.fs3_c00353{font-size:74.666667pt;}
.y0_c00353{bottom:0.000000pt;}
.y50_c00353{bottom:83.065333pt;}
.y4f_c00353{bottom:90.398667pt;}
.y4e_c00353{bottom:97.465333pt;}
.y4d_c00353{bottom:98.132000pt;}
.y4c_c00353{bottom:111.532000pt;}
.y4b_c00353{bottom:112.132000pt;}
.y4a_c00353{bottom:114.398667pt;}
.y49_c00353{bottom:114.666667pt;}
.y48_c00353{bottom:122.398667pt;}
.y47_c00353{bottom:128.798667pt;}
.y46_c00353{bottom:138.732000pt;}
.y45_c00353{bottom:143.532000pt;}
.y44_c00353{bottom:156.333333pt;}
.y42_c00353{bottom:158.532000pt;}
.y43_c00353{bottom:158.598667pt;}
.y41_c00353{bottom:171.065333pt;}
.y40_c00353{bottom:173.000000pt;}
.y3f_c00353{bottom:183.532000pt;}
.y3e_c00353{bottom:184.798667pt;}
.y3d_c00353{bottom:199.865333pt;}
.y3c_c00353{bottom:204.333333pt;}
.y3b_c00353{bottom:219.732000pt;}
.y39_c00353{bottom:229.265333pt;}
.y3a_c00353{bottom:230.532000pt;}
.y38_c00353{bottom:232.466667pt;}
.y37_c00353{bottom:247.198667pt;}
.y36_c00353{bottom:261.865333pt;}
.y35_c00353{bottom:265.800000pt;}
.y34_c00353{bottom:266.065333pt;}
.y33_c00353{bottom:334.532000pt;}
.y32_c00353{bottom:353.800000pt;}
.y31_c00353{bottom:373.265333pt;}
.y2a_c00353{bottom:413.598667pt;}
.y29_c00353{bottom:429.265333pt;}
.y28_c00353{bottom:429.865333pt;}
.y27_c00353{bottom:444.333333pt;}
.y26_c00353{bottom:445.000000pt;}
.y2e_c00353{bottom:452.932000pt;}
.y25_c00353{bottom:460.666667pt;}
.y24_c00353{bottom:475.666667pt;}
.y23_c00353{bottom:491.398667pt;}
.y2d_c00353{bottom:504.798667pt;}
.y22_c00353{bottom:522.398667pt;}
.y30_c00353{bottom:530.065333pt;}
.y2f_c00353{bottom:530.398667pt;}
.y21_c00353{bottom:537.732000pt;}
.y2c_c00353{bottom:553.132000pt;}
.y2b_c00353{bottom:568.465333pt;}
.y20_c00353{bottom:569.132000pt;}
.y1f_c00353{bottom:577.132000pt;}
.y1e_c00353{bottom:584.798667pt;}
.y1d_c00353{bottom:585.132000pt;}
.y1c_c00353{bottom:614.532000pt;}
.y1b_c00353{bottom:655.798667pt;}
.y1a_c00353{bottom:675.666667pt;}
.y19_c00353{bottom:695.198667pt;}
.y14_c00353{bottom:712.198667pt;}
.y15_c00353{bottom:713.732000pt;}
.y16_c00353{bottom:714.065333pt;}
.y17_c00353{bottom:714.398667pt;}
.y18_c00353{bottom:715.333333pt;}
.y13_c00353{bottom:733.865333pt;}
.y12_c00353{bottom:752.800000pt;}
.yf_c00353{bottom:771.333333pt;}
.y11_c00353{bottom:772.600000pt;}
.y10_c00353{bottom:773.000000pt;}
.yc_c00353{bottom:790.198667pt;}
.yd_c00353{bottom:791.800000pt;}
.ye_c00353{bottom:791.865333pt;}
.yb_c00353{bottom:810.398667pt;}
.y6_c00353{bottom:828.000000pt;}
.y7_c00353{bottom:829.600000pt;}
.y8_c00353{bottom:829.933333pt;}
.y9_c00353{bottom:830.532000pt;}
.ya_c00353{bottom:831.198667pt;}
.y5_c00353{bottom:843.666667pt;}
.y4_c00353{bottom:868.666667pt;}
.y1_c00353{bottom:968.466667pt;}
.y3_c00353{bottom:976.133333pt;}
.y2_c00353{bottom:981.266667pt;}
.h2_c00353{height:52.343750pt;}
.h1_c00353{height:57.578125pt;}
.h5_c00353{height:59.125000pt;}
.h3_c00353{height:62.812500pt;}
.h4_c00353{height:73.244792pt;}
.h0_c00353{height:1044.000000pt;}
.w0_c00353{width:650.646400pt;}
.w1_c00353{width:650.666667pt;}
.x0_c00353{left:0.000000pt;}
.xa_c00353{left:53.769067pt;}
.x5_c00353{left:55.035733pt;}
.x28_c00353{left:57.569067pt;}
.x2a_c00353{left:59.502400pt;}
.x1_c00353{left:73.569067pt;}
.x33_c00353{left:74.834400pt;}
.x4_c00353{left:83.167733pt;}
.x27_c00353{left:85.769067pt;}
.x32_c00353{left:86.702400pt;}
.x35_c00353{left:88.302400pt;}
.x30_c00353{left:90.835733pt;}
.x31_c00353{left:92.435733pt;}
.x36_c00353{left:93.769067pt;}
.x2_c00353{left:97.235733pt;}
.x2d_c00353{left:105.902400pt;}
.x29_c00353{left:107.502400pt;}
.x34_c00353{left:140.169067pt;}
.x37_c00353{left:141.435733pt;}
.x16_c00353{left:146.569067pt;}
.x2f_c00353{left:147.502400pt;}
.x10_c00353{left:165.102400pt;}
.x11_c00353{left:211.169067pt;}
.x12_c00353{left:226.235733pt;}
.x24_c00353{left:250.835733pt;}
.x25_c00353{left:254.035733pt;}
.x3_c00353{left:260.169067pt;}
.x6_c00353{left:271.369067pt;}
.x13_c00353{left:283.502400pt;}
.x7_c00353{left:327.635733pt;}
.x1b_c00353{left:343.635733pt;}
.x8_c00353{left:344.969067pt;}
.x1f_c00353{left:345.902400pt;}
.x20_c00353{left:346.835733pt;}
.x22_c00353{left:362.835733pt;}
.x26_c00353{left:395.169067pt;}
.x23_c00353{left:402.835733pt;}
.x2b_c00353{left:415.369067pt;}
.x9_c00353{left:440.635733pt;}
.xb_c00353{left:456.969067pt;}
.x2e_c00353{left:479.969067pt;}
.x1e_c00353{left:487.035733pt;}
.xe_c00353{left:490.835733pt;}
.x17_c00353{left:497.235733pt;}
.xc_c00353{left:512.969067pt;}
.x14_c00353{left:514.569067pt;}
.xd_c00353{left:529.235733pt;}
.x21_c00353{left:535.035733pt;}
.x2c_c00353{left:536.302400pt;}
.xf_c00353{left:542.702400pt;}
.x1c_c00353{left:545.902400pt;}
.x1d_c00353{left:551.635733pt;}
.x18_c00353{left:579.835733pt;}
.x1a_c00353{left:582.369067pt;}
.x15_c00353{left:597.769067pt;}
.x19_c00353{left:610.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd968f52f4051ac1e2ade098.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00354;src:url('chunks/assets/font_362e8816667fc0e2946ed0cf.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19_c00354{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m13_c00354{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1_c00354{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me_c00354{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0_c00354{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c00354{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00354{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c00354{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mf_c00354{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00354{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c00354{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00354{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00354{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00354{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00354{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6_c00354{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00354{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00354{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00354{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00354{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00354{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00354{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m18_c00354{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m14_c00354{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16_c00354{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m15_c00354{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2_c00354{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.ls0_c00354{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00354{color:transparent;}
.fs4_c00354{font-size:42.000000px;}
.fs3_c00354{font-size:60.000000px;}
.fs1_c00354{font-size:66.000000px;}
.fs2_c00354{font-size:72.000000px;}
.fs0_c00354{font-size:78.000000px;}
.y0_c00354{bottom:0.000000px;}
.y41_c00354{bottom:75.000000px;}
.y40_c00354{bottom:94.500000px;}
.y3f_c00354{bottom:111.375000px;}
.y3e_c00354{bottom:127.948500px;}
.y3d_c00354{bottom:141.298500px;}
.y3b_c00354{bottom:157.125000px;}
.y3a_c00354{bottom:157.198500px;}
.y3c_c00354{bottom:161.773500px;}
.y39_c00354{bottom:176.923500px;}
.y38_c00354{bottom:193.125000px;}
.y37_c00354{bottom:209.323500px;}
.y35_c00354{bottom:222.973500px;}
.y36_c00354{bottom:224.098500px;}
.y34_c00354{bottom:241.348500px;}
.y33_c00354{bottom:257.923500px;}
.y32_c00354{bottom:274.798500px;}
.y31_c00354{bottom:291.750000px;}
.y30_c00354{bottom:308.400000px;}
.y2f_c00354{bottom:324.223500px;}
.y2e_c00354{bottom:341.473500px;}
.y2d_c00354{bottom:358.723500px;}
.y2c_c00354{bottom:375.298500px;}
.y2b_c00354{bottom:391.875000px;}
.y2a_c00354{bottom:408.750000px;}
.y29_c00354{bottom:425.323500px;}
.y28_c00354{bottom:442.273500px;}
.y27_c00354{bottom:459.598500px;}
.y26_c00354{bottom:476.773500px;}
.y24_c00354{bottom:493.048500px;}
.y25_c00354{bottom:493.423500px;}
.y23_c00354{bottom:493.723500px;}
.y22_c00354{bottom:510.673500px;}
.y21_c00354{bottom:510.973500px;}
.y1f_c00354{bottom:527.923500px;}
.y20_c00354{bottom:528.000000px;}
.y1d_c00354{bottom:544.125000px;}
.y1e_c00354{bottom:544.198500px;}
.y1c_c00354{bottom:544.500000px;}
.y1b_c00354{bottom:544.875000px;}
.y1a_c00354{bottom:559.948500px;}
.y19_c00354{bottom:561.750000px;}
.y18_c00354{bottom:562.125000px;}
.y17_c00354{bottom:641.698500px;}
.y16_c00354{bottom:662.923500px;}
.y15_c00354{bottom:684.148500px;}
.y14_c00354{bottom:705.448500px;}
.y13_c00354{bottom:728.098500px;}
.y12_c00354{bottom:747.898500px;}
.y11_c00354{bottom:769.500000px;}
.y10_c00354{bottom:790.723500px;}
.yf_c00354{bottom:812.323500px;}
.ye_c00354{bottom:835.425000px;}
.yd_c00354{bottom:855.150000px;}
.yc_c00354{bottom:877.500000px;}
.yb_c00354{bottom:896.925000px;}
.ya_c00354{bottom:918.525000px;}
.y9_c00354{bottom:939.448500px;}
.y8_c00354{bottom:960.675000px;}
.y7_c00354{bottom:984.448500px;}
.y6_c00354{bottom:998.098500px;}
.y5_c00354{bottom:1003.125000px;}
.y4_c00354{bottom:1057.500000px;}
.y2_c00354{bottom:1061.775000px;}
.y1_c00354{bottom:1063.275000px;}
.y3_c00354{bottom:1073.025000px;}
.h7_c00354{height:41.220703px;}
.h6_c00354{height:58.886719px;}
.h2_c00354{height:64.775391px;}
.h5_c00354{height:66.515625px;}
.h4_c00354{height:70.664062px;}
.h3_c00354{height:72.562500px;}
.h1_c00354{height:76.552734px;}
.h0_c00354{height:1174.500000px;}
.w0_c00354{width:731.977200px;}
.w1_c00354{width:732.000000px;}
.x0_c00354{left:0.000000px;}
.x1d_c00354{left:74.140200px;}
.x18_c00354{left:75.188700px;}
.xb_c00354{left:76.688700px;}
.x9_c00354{left:78.115200px;}
.x8_c00354{left:79.165200px;}
.x7_c00354{left:80.590200px;}
.xd_c00354{left:94.690200px;}
.x1e_c00354{left:101.515200px;}
.x1c_c00354{left:103.315200px;}
.xc_c00354{left:110.890200px;}
.xa_c00354{left:111.940200px;}
.x5_c00354{left:112.990200px;}
.x17_c00354{left:131.365200px;}
.xe_c00354{left:133.540200px;}
.x10_c00354{left:140.365200px;}
.x16_c00354{left:144.715200px;}
.x1f_c00354{left:232.165200px;}
.x20_c00354{left:233.590200px;}
.x1_c00354{left:294.115200px;}
.x2_c00354{left:319.690200px;}
.x19_c00354{left:332.290200px;}
.x1a_c00354{left:343.090200px;}
.x11_c00354{left:387.715200px;}
.x3_c00354{left:487.765200px;}
.x12_c00354{left:519.790200px;}
.x1b_c00354{left:625.990200px;}
.x13_c00354{left:640.765200px;}
.x14_c00354{left:647.290200px;}
.x4_c00354{left:651.190200px;}
.x6_c00354{left:661.315200px;}
.x15_c00354{left:669.190200px;}
.xf_c00354{left:682.540200px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls0_c00354{letter-spacing:0.000000pt;}
.ws0_c00354{word-spacing:0.000000pt;}
.fs4_c00354{font-size:37.333333pt;}
.fs3_c00354{font-size:53.333333pt;}
.fs1_c00354{font-size:58.666667pt;}
.fs2_c00354{font-size:64.000000pt;}
.fs0_c00354{font-size:69.333333pt;}
.y0_c00354{bottom:0.000000pt;}
.y41_c00354{bottom:66.666667pt;}
.y40_c00354{bottom:84.000000pt;}
.y3f_c00354{bottom:99.000000pt;}
.y3e_c00354{bottom:113.732000pt;}
.y3d_c00354{bottom:125.598667pt;}
.y3b_c00354{bottom:139.666667pt;}
.y3a_c00354{bottom:139.732000pt;}
.y3c_c00354{bottom:143.798667pt;}
.y39_c00354{bottom:157.265333pt;}
.y38_c00354{bottom:171.666667pt;}
.y37_c00354{bottom:186.065333pt;}
.y35_c00354{bottom:198.198667pt;}
.y36_c00354{bottom:199.198667pt;}
.y34_c00354{bottom:214.532000pt;}
.y33_c00354{bottom:229.265333pt;}
.y32_c00354{bottom:244.265333pt;}
.y31_c00354{bottom:259.333333pt;}
.y30_c00354{bottom:274.133333pt;}
.y2f_c00354{bottom:288.198667pt;}
.y2e_c00354{bottom:303.532000pt;}
.y2d_c00354{bottom:318.865333pt;}
.y2c_c00354{bottom:333.598667pt;}
.y2b_c00354{bottom:348.333333pt;}
.y2a_c00354{bottom:363.333333pt;}
.y29_c00354{bottom:378.065333pt;}
.y28_c00354{bottom:393.132000pt;}
.y27_c00354{bottom:408.532000pt;}
.y26_c00354{bottom:423.798667pt;}
.y24_c00354{bottom:438.265333pt;}
.y25_c00354{bottom:438.598667pt;}
.y23_c00354{bottom:438.865333pt;}
.y22_c00354{bottom:453.932000pt;}
.y21_c00354{bottom:454.198667pt;}
.y1f_c00354{bottom:469.265333pt;}
.y20_c00354{bottom:469.333333pt;}
.y1d_c00354{bottom:483.666667pt;}
.y1e_c00354{bottom:483.732000pt;}
.y1c_c00354{bottom:484.000000pt;}
.y1b_c00354{bottom:484.333333pt;}
.y1a_c00354{bottom:497.732000pt;}
.y19_c00354{bottom:499.333333pt;}
.y18_c00354{bottom:499.666667pt;}
.y17_c00354{bottom:570.398667pt;}
.y16_c00354{bottom:589.265333pt;}
.y15_c00354{bottom:608.132000pt;}
.y14_c00354{bottom:627.065333pt;}
.y13_c00354{bottom:647.198667pt;}
.y12_c00354{bottom:664.798667pt;}
.y11_c00354{bottom:684.000000pt;}
.y10_c00354{bottom:702.865333pt;}
.yf_c00354{bottom:722.065333pt;}
.ye_c00354{bottom:742.600000pt;}
.yd_c00354{bottom:760.133333pt;}
.yc_c00354{bottom:780.000000pt;}
.yb_c00354{bottom:797.266667pt;}
.ya_c00354{bottom:816.466667pt;}
.y9_c00354{bottom:835.065333pt;}
.y8_c00354{bottom:853.933333pt;}
.y7_c00354{bottom:875.065333pt;}
.y6_c00354{bottom:887.198667pt;}
.y5_c00354{bottom:891.666667pt;}
.y4_c00354{bottom:940.000000pt;}
.y2_c00354{bottom:943.800000pt;}
.y1_c00354{bottom:945.133333pt;}
.y3_c00354{bottom:953.800000pt;}
.h7_c00354{height:36.640625pt;}
.h6_c00354{height:52.343750pt;}
.h2_c00354{height:57.578125pt;}
.h5_c00354{height:59.125000pt;}
.h4_c00354{height:62.812500pt;}
.h3_c00354{height:64.500000pt;}
.h1_c00354{height:68.046875pt;}
.h0_c00354{height:1044.000000pt;}
.w0_c00354{width:650.646400pt;}
.w1_c00354{width:650.666667pt;}
.x0_c00354{left:0.000000pt;}
.x1d_c00354{left:65.902400pt;}
.x18_c00354{left:66.834400pt;}
.xb_c00354{left:68.167733pt;}
.x9_c00354{left:69.435733pt;}
.x8_c00354{left:70.369067pt;}
.x7_c00354{left:71.635733pt;}
.xd_c00354{left:84.169067pt;}
.x1e_c00354{left:90.235733pt;}
.x1c_c00354{left:91.835733pt;}
.xc_c00354{left:98.569067pt;}
.xa_c00354{left:99.502400pt;}
.x5_c00354{left:100.435733pt;}
.x17_c00354{left:116.769067pt;}
.xe_c00354{left:118.702400pt;}
.x10_c00354{left:124.769067pt;}
.x16_c00354{left:128.635733pt;}
.x1f_c00354{left:206.369067pt;}
.x20_c00354{left:207.635733pt;}
.x1_c00354{left:261.435733pt;}
.x2_c00354{left:284.169067pt;}
.x19_c00354{left:295.369067pt;}
.x1a_c00354{left:304.969067pt;}
.x11_c00354{left:344.635733pt;}
.x3_c00354{left:433.569067pt;}
.x12_c00354{left:462.035733pt;}
.x1b_c00354{left:556.435733pt;}
.x13_c00354{left:569.569067pt;}
.x14_c00354{left:575.369067pt;}
.x4_c00354{left:578.835733pt;}
.x6_c00354{left:587.835733pt;}
.x15_c00354{left:594.835733pt;}
.xf_c00354{left:606.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb49dda8151de371fedbd274.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00355;src:url('chunks/assets/font_529c39ac95c61dbfd3ebb48e.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00355{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6_c00355{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00355{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00355{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00355{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00355{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00355{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00355{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00355{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c00355{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00355{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00355{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00355{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00355{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00355{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00355{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00355{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00355{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00355{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00355{color:transparent;}
.fs1_c00355{font-size:60.000000px;}
.fs0_c00355{font-size:72.000000px;}
.y0_c00355{bottom:0.000000px;}
.y2a_c00355{bottom:86.923500px;}
.y29_c00355{bottom:107.773500px;}
.y28_c00355{bottom:270.598500px;}
.y27_c00355{bottom:287.098500px;}
.y26_c00355{bottom:308.025000px;}
.y25_c00355{bottom:330.673500px;}
.y24_c00355{bottom:352.198500px;}
.y23_c00355{bottom:373.875000px;}
.y22_c00355{bottom:396.150000px;}
.y21_c00355{bottom:417.750000px;}
.y20_c00355{bottom:441.898500px;}
.y1f_c00355{bottom:461.323500px;}
.y1e_c00355{bottom:483.298500px;}
.y1d_c00355{bottom:504.898500px;}
.y1c_c00355{bottom:526.875000px;}
.y1b_c00355{bottom:548.098500px;}
.y1a_c00355{bottom:570.073500px;}
.y19_c00355{bottom:591.973500px;}
.y18_c00355{bottom:613.948500px;}
.y17_c00355{bottom:635.548500px;}
.y16_c00355{bottom:657.523500px;}
.y15_c00355{bottom:679.125000px;}
.y14_c00355{bottom:701.098500px;}
.y13_c00355{bottom:723.000000px;}
.y12_c00355{bottom:744.298500px;}
.y11_c00355{bottom:766.950000px;}
.y10_c00355{bottom:788.250000px;}
.yf_c00355{bottom:809.848500px;}
.ye_c00355{bottom:831.073500px;}
.yd_c00355{bottom:852.300000px;}
.yc_c00355{bottom:873.525000px;}
.yb_c00355{bottom:894.750000px;}
.ya_c00355{bottom:917.848500px;}
.y9_c00355{bottom:938.698500px;}
.y8_c00355{bottom:961.348500px;}
.y7_c00355{bottom:974.698500px;}
.y6_c00355{bottom:1004.175000px;}
.y5_c00355{bottom:1025.400000px;}
.y4_c00355{bottom:1046.025000px;}
.y1_c00355{bottom:1094.550000px;}
.y3_c00355{bottom:1103.250000px;}
.y2_c00355{bottom:1109.175000px;}
.h2_c00355{height:58.886719px;}
.h3_c00355{height:70.664062px;}
.h1_c00355{height:75.093750px;}
.h0_c00355{height:1174.500000px;}
.w0_c00355{width:731.977200px;}
.w1_c00355{width:732.000000px;}
.x0_c00355{left:0.000000px;}
.xf_c00355{left:40.990200px;}
.xe_c00355{left:42.115200px;}
.xa_c00355{left:43.165200px;}
.x9_c00355{left:44.590200px;}
.x8_c00355{left:46.090200px;}
.x6_c00355{left:48.190200px;}
.x5_c00355{left:50.740200px;}
.x4_c00355{left:52.540200px;}
.xd_c00355{left:59.365200px;}
.x1_c00355{left:69.115200px;}
.xc_c00355{left:74.515200px;}
.xb_c00355{left:76.688700px;}
.x7_c00355{left:79.915200px;}
.x2_c00355{left:98.590200px;}
.x3_c00355{left:273.940200px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls0_c00355{letter-spacing:0.000000pt;}
.ws0_c00355{word-spacing:0.000000pt;}
.fs1_c00355{font-size:53.333333pt;}
.fs0_c00355{font-size:64.000000pt;}
.y0_c00355{bottom:0.000000pt;}
.y2a_c00355{bottom:77.265333pt;}
.y29_c00355{bottom:95.798667pt;}
.y28_c00355{bottom:240.532000pt;}
.y27_c00355{bottom:255.198667pt;}
.y26_c00355{bottom:273.800000pt;}
.y25_c00355{bottom:293.932000pt;}
.y24_c00355{bottom:313.065333pt;}
.y23_c00355{bottom:332.333333pt;}
.y22_c00355{bottom:352.133333pt;}
.y21_c00355{bottom:371.333333pt;}
.y20_c00355{bottom:392.798667pt;}
.y1f_c00355{bottom:410.065333pt;}
.y1e_c00355{bottom:429.598667pt;}
.y1d_c00355{bottom:448.798667pt;}
.y1c_c00355{bottom:468.333333pt;}
.y1b_c00355{bottom:487.198667pt;}
.y1a_c00355{bottom:506.732000pt;}
.y19_c00355{bottom:526.198667pt;}
.y18_c00355{bottom:545.732000pt;}
.y17_c00355{bottom:564.932000pt;}
.y16_c00355{bottom:584.465333pt;}
.y15_c00355{bottom:603.666667pt;}
.y14_c00355{bottom:623.198667pt;}
.y13_c00355{bottom:642.666667pt;}
.y12_c00355{bottom:661.598667pt;}
.y11_c00355{bottom:681.733333pt;}
.y10_c00355{bottom:700.666667pt;}
.yf_c00355{bottom:719.865333pt;}
.ye_c00355{bottom:738.732000pt;}
.yd_c00355{bottom:757.600000pt;}
.yc_c00355{bottom:776.466667pt;}
.yb_c00355{bottom:795.333333pt;}
.ya_c00355{bottom:815.865333pt;}
.y9_c00355{bottom:834.398667pt;}
.y8_c00355{bottom:854.532000pt;}
.y7_c00355{bottom:866.398667pt;}
.y6_c00355{bottom:892.600000pt;}
.y5_c00355{bottom:911.466667pt;}
.y4_c00355{bottom:929.800000pt;}
.y1_c00355{bottom:972.933333pt;}
.y3_c00355{bottom:980.666667pt;}
.y2_c00355{bottom:985.933333pt;}
.h2_c00355{height:52.343750pt;}
.h3_c00355{height:62.812500pt;}
.h1_c00355{height:66.750000pt;}
.h0_c00355{height:1044.000000pt;}
.w0_c00355{width:650.646400pt;}
.w1_c00355{width:650.666667pt;}
.x0_c00355{left:0.000000pt;}
.xf_c00355{left:36.435733pt;}
.xe_c00355{left:37.435733pt;}
.xa_c00355{left:38.369067pt;}
.x9_c00355{left:39.635733pt;}
.x8_c00355{left:40.969067pt;}
.x6_c00355{left:42.835733pt;}
.x5_c00355{left:45.102400pt;}
.x4_c00355{left:46.702400pt;}
.xd_c00355{left:52.769067pt;}
.x1_c00355{left:61.435733pt;}
.xc_c00355{left:66.235733pt;}
.xb_c00355{left:68.167733pt;}
.x7_c00355{left:71.035733pt;}
.x2_c00355{left:87.635733pt;}
.x3_c00355{left:243.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ca09eed09f2d71d0132f4cf3.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00356;src:url('chunks/assets/font_cfbf449783586f850d7a3f49.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00356{transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);}
.m6_c00356{transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);}
.m17_c00356{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3_c00356{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2_c00356{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.md_c00356{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m14_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);}
.m1a_c00356{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19_c00356{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m15_c00356{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m0_c00356{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m13_c00356{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00356{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c00356{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c00356{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00356{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00356{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00356{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00356{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c00356{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00356{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00356{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00356{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m16_c00356{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c00356{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00356{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00356{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00356{color:transparent;}
.fs2_c00356{font-size:36.000000px;}
.fs0_c00356{font-size:60.000000px;}
.fs3_c00356{font-size:72.000000px;}
.fs1_c00356{font-size:78.000000px;}
.y0_c00356{bottom:0.000000px;}
.y3c_c00356{bottom:74.023500px;}
.y3d_c00356{bottom:77.625000px;}
.y3e_c00356{bottom:78.298500px;}
.y3b_c00356{bottom:95.250000px;}
.y3a_c00356{bottom:115.723500px;}
.y39_c00356{bottom:133.048500px;}
.y35_c00356{bottom:153.598500px;}
.y36_c00356{bottom:157.198500px;}
.y37_c00356{bottom:158.923500px;}
.y38_c00356{bottom:160.348500px;}
.y33_c00356{bottom:174.448500px;}
.y34_c00356{bottom:178.423500px;}
.y31_c00356{bottom:197.098500px;}
.y32_c00356{bottom:201.448500px;}
.y30_c00356{bottom:217.273500px;}
.y2f_c00356{bottom:237.448500px;}
.y2d_c00356{bottom:255.375000px;}
.y2e_c00356{bottom:258.298500px;}
.y2c_c00356{bottom:278.848500px;}
.y2b_c00356{bottom:300.073500px;}
.y2a_c00356{bottom:320.625000px;}
.y29_c00356{bottom:341.848500px;}
.y28_c00356{bottom:362.698500px;}
.y27_c00356{bottom:383.625000px;}
.y26_c00356{bottom:404.400000px;}
.y25_c00356{bottom:425.323500px;}
.y24_c00356{bottom:446.625000px;}
.y23_c00356{bottom:467.848500px;}
.y22_c00356{bottom:489.073500px;}
.y21_c00356{bottom:510.298500px;}
.y20_c00356{bottom:531.523500px;}
.y1f_c00356{bottom:552.823500px;}
.y1e_c00356{bottom:573.673500px;}
.y1d_c00356{bottom:573.973500px;}
.y1c_c00356{bottom:574.423500px;}
.y1b_c00356{bottom:595.273500px;}
.y1a_c00356{bottom:616.500000px;}
.y19_c00356{bottom:638.473500px;}
.y18_c00356{bottom:658.948500px;}
.y17_c00356{bottom:680.548500px;}
.y16_c00356{bottom:698.923500px;}
.y15_c00356{bottom:701.773500px;}
.y14_c00356{bottom:723.075000px;}
.y13_c00356{bottom:743.923500px;}
.y12_c00356{bottom:765.223500px;}
.y11_c00356{bottom:787.125000px;}
.y10_c00356{bottom:808.348500px;}
.yf_c00356{bottom:830.323500px;}
.ye_c00356{bottom:851.175000px;}
.yd_c00356{bottom:872.098500px;}
.yc_c00356{bottom:893.323500px;}
.yb_c00356{bottom:913.125000px;}
.ya_c00356{bottom:929.025000px;}
.y9_c00356{bottom:936.525000px;}
.y8_c00356{bottom:937.275000px;}
.y7_c00356{bottom:956.323500px;}
.y6_c00356{bottom:977.925000px;}
.y5_c00356{bottom:999.525000px;}
.y4_c00356{bottom:1044.900000px;}
.y3_c00356{bottom:1053.900000px;}
.y1_c00356{bottom:1058.625000px;}
.y2_c00356{bottom:1067.925000px;}
.h3_c00356{height:35.332031px;}
.h1_c00356{height:60.468750px;}
.h5_c00356{height:70.664062px;}
.h2_c00356{height:76.552734px;}
.h4_c00356{height:78.609375px;}
.h0_c00356{height:1174.500000px;}
.w0_c00356{width:731.977200px;}
.w1_c00356{width:732.000000px;}
.x0_c00356{left:0.000000px;}
.x11_c00356{left:41.740200px;}
.xc_c00356{left:73.090200px;}
.x5_c00356{left:74.140200px;}
.xb_c00356{left:75.188700px;}
.x17_c00356{left:76.313700px;}
.xe_c00356{left:105.790200px;}
.xa_c00356{left:107.590200px;}
.x6_c00356{left:285.790200px;}
.x1_c00356{left:287.965200px;}
.xf_c00356{left:388.090200px;}
.x13_c00356{left:391.990200px;}
.x4_c00356{left:421.913700px;}
.x14_c00356{left:424.765200px;}
.x15_c00356{left:430.163700px;}
.x10_c00356{left:432.715200px;}
.x2_c00356{left:480.940200px;}
.x7_c00356{left:587.515200px;}
.x8_c00356{left:588.940200px;}
.x9_c00356{left:620.965200px;}
.x18_c00356{left:628.915200px;}
.x3_c00356{left:645.115200px;}
.x19_c00356{left:658.765200px;}
.x16_c00356{left:664.165200px;}
.xd_c00356{left:670.315200px;}
.x12_c00356{left:674.290200px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls0_c00356{letter-spacing:0.000000pt;}
.ws0_c00356{word-spacing:0.000000pt;}
.fs2_c00356{font-size:32.000000pt;}
.fs0_c00356{font-size:53.333333pt;}
.fs3_c00356{font-size:64.000000pt;}
.fs1_c00356{font-size:69.333333pt;}
.y0_c00356{bottom:0.000000pt;}
.y3c_c00356{bottom:65.798667pt;}
.y3d_c00356{bottom:69.000000pt;}
.y3e_c00356{bottom:69.598667pt;}
.y3b_c00356{bottom:84.666667pt;}
.y3a_c00356{bottom:102.865333pt;}
.y39_c00356{bottom:118.265333pt;}
.y35_c00356{bottom:136.532000pt;}
.y36_c00356{bottom:139.732000pt;}
.y37_c00356{bottom:141.265333pt;}
.y38_c00356{bottom:142.532000pt;}
.y33_c00356{bottom:155.065333pt;}
.y34_c00356{bottom:158.598667pt;}
.y31_c00356{bottom:175.198667pt;}
.y32_c00356{bottom:179.065333pt;}
.y30_c00356{bottom:193.132000pt;}
.y2f_c00356{bottom:211.065333pt;}
.y2d_c00356{bottom:227.000000pt;}
.y2e_c00356{bottom:229.598667pt;}
.y2c_c00356{bottom:247.865333pt;}
.y2b_c00356{bottom:266.732000pt;}
.y2a_c00356{bottom:285.000000pt;}
.y29_c00356{bottom:303.865333pt;}
.y28_c00356{bottom:322.398667pt;}
.y27_c00356{bottom:341.000000pt;}
.y26_c00356{bottom:359.466667pt;}
.y25_c00356{bottom:378.065333pt;}
.y24_c00356{bottom:397.000000pt;}
.y23_c00356{bottom:415.865333pt;}
.y22_c00356{bottom:434.732000pt;}
.y21_c00356{bottom:453.598667pt;}
.y20_c00356{bottom:472.465333pt;}
.y1f_c00356{bottom:491.398667pt;}
.y1e_c00356{bottom:509.932000pt;}
.y1d_c00356{bottom:510.198667pt;}
.y1c_c00356{bottom:510.598667pt;}
.y1b_c00356{bottom:529.132000pt;}
.y1a_c00356{bottom:548.000000pt;}
.y19_c00356{bottom:567.532000pt;}
.y18_c00356{bottom:585.732000pt;}
.y17_c00356{bottom:604.932000pt;}
.y16_c00356{bottom:621.265333pt;}
.y15_c00356{bottom:623.798667pt;}
.y14_c00356{bottom:642.733333pt;}
.y13_c00356{bottom:661.265333pt;}
.y12_c00356{bottom:680.198667pt;}
.y11_c00356{bottom:699.666667pt;}
.y10_c00356{bottom:718.532000pt;}
.yf_c00356{bottom:738.065333pt;}
.ye_c00356{bottom:756.600000pt;}
.yd_c00356{bottom:775.198667pt;}
.yc_c00356{bottom:794.065333pt;}
.yb_c00356{bottom:811.666667pt;}
.ya_c00356{bottom:825.800000pt;}
.y9_c00356{bottom:832.466667pt;}
.y8_c00356{bottom:833.133333pt;}
.y7_c00356{bottom:850.065333pt;}
.y6_c00356{bottom:869.266667pt;}
.y5_c00356{bottom:888.466667pt;}
.y4_c00356{bottom:928.800000pt;}
.y3_c00356{bottom:936.800000pt;}
.y1_c00356{bottom:941.000000pt;}
.y2_c00356{bottom:949.266667pt;}
.h3_c00356{height:31.406250pt;}
.h1_c00356{height:53.750000pt;}
.h5_c00356{height:62.812500pt;}
.h2_c00356{height:68.046875pt;}
.h4_c00356{height:69.875000pt;}
.h0_c00356{height:1044.000000pt;}
.w0_c00356{width:650.646400pt;}
.w1_c00356{width:650.666667pt;}
.x0_c00356{left:0.000000pt;}
.x11_c00356{left:37.102400pt;}
.xc_c00356{left:64.969067pt;}
.x5_c00356{left:65.902400pt;}
.xb_c00356{left:66.834400pt;}
.x17_c00356{left:67.834400pt;}
.xe_c00356{left:94.035733pt;}
.xa_c00356{left:95.635733pt;}
.x6_c00356{left:254.035733pt;}
.x1_c00356{left:255.969067pt;}
.xf_c00356{left:344.969067pt;}
.x13_c00356{left:348.435733pt;}
.x4_c00356{left:375.034400pt;}
.x14_c00356{left:377.569067pt;}
.x15_c00356{left:382.367733pt;}
.x10_c00356{left:384.635733pt;}
.x2_c00356{left:427.502400pt;}
.x7_c00356{left:522.235733pt;}
.x8_c00356{left:523.502400pt;}
.x9_c00356{left:551.969067pt;}
.x18_c00356{left:559.035733pt;}
.x3_c00356{left:573.435733pt;}
.x19_c00356{left:585.569067pt;}
.x16_c00356{left:590.369067pt;}
.xd_c00356{left:595.835733pt;}
.x12_c00356{left:599.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00357 {
    display:none;
  }
  .loading-indicator_c00357.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00357 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00357 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00357" -> "#page-container .classname_c00357")
 */
.pf_c00357 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00357 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00357 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00357 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00357 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00357 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00357 {overflow:visible;}
  }
}
.c_c00357 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00357 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00357:after { /* webkit #35443 */
  content: '';
}
.t_c00357:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00357 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00357 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00357 { /* info for Javascript */
  display:none;
}
.l_c00357 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00357 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00357 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00357:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00357 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00357.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00357 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00357{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00357;src:url('chunks/assets/font_369519e8ca9c9aef837befa6.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00357;src:url('chunks/assets/font_1d9dcec4bbf3b9971937ddea.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00357;src:url('chunks/assets/font_1cf4cf9183ff0e66155263ed.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00357;src:url('chunks/assets/font_13e949825f6db91d28503cd2.woff2')format("woff");}.ff4_c00357{font-family:ff4_c00357;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m28_c00357{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8_c00357{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00357{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00357{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md_c00357{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m25_c00357{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m27_c00357{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11_c00357{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4_c00357{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c00357{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00357{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6_c00357{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c00357{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00357{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc_c00357{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c00357{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c00357{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00357{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m16_c00357{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00357{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c00357{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00357{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m22_c00357{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m0_c00357{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c00357{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00357{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00357{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c00357{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m20_c00357{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00357{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m21_c00357{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00357{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00357{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00357{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00357{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m24_c00357{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c00357{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c00357{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m23_c00357{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m19_c00357{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1_c00357{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.ls0_c00357{letter-spacing:0.000000px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00357{word-spacing:0.000000px;}
.fc0_c00357{color:transparent;}
.fs1_c00357{font-size:54.000000px;}
.fs2_c00357{font-size:60.000000px;}
.fs0_c00357{font-size:66.000000px;}
.fs4_c00357{font-size:72.000000px;}
.fs5_c00357{font-size:78.000000px;}
.fs3_c00357{font-size:84.000000px;}
.y0_c00357{bottom:0.000000px;}
.y5c_c00357{bottom:83.323500px;}
.y5b_c00357{bottom:83.698500px;}
.y5a_c00357{bottom:84.750000px;}
.y59_c00357{bottom:88.723500px;}
.y57_c00357{bottom:103.125000px;}
.y58_c00357{bottom:103.500000px;}
.y56_c00357{bottom:106.723500px;}
.y54_c00357{bottom:121.500000px;}
.y55_c00357{bottom:121.875000px;}
.y53_c00357{bottom:129.750000px;}
.y52_c00357{bottom:138.750000px;}
.y51_c00357{bottom:139.500000px;}
.y50_c00357{bottom:156.823500px;}
.y4f_c00357{bottom:158.548500px;}
.y4e_c00357{bottom:174.448500px;}
.y4d_c00357{bottom:179.848500px;}
.y4b_c00357{bottom:191.698500px;}
.y4c_c00357{bottom:192.073500px;}
.y4a_c00357{bottom:193.500000px;}
.y49_c00357{bottom:197.098500px;}
.y48_c00357{bottom:212.250000px;}
.y47_c00357{bottom:227.323500px;}
.y46_c00357{bottom:232.048500px;}
.y45_c00357{bottom:243.148500px;}
.y44_c00357{bottom:244.273500px;}
.y43_c00357{bottom:245.323500px;}
.y42_c00357{bottom:246.448500px;}
.y41_c00357{bottom:247.500000px;}
.y40_c00357{bottom:248.923500px;}
.y3f_c00357{bottom:249.673500px;}
.y3d_c00357{bottom:261.525000px;}
.y3e_c00357{bottom:261.900000px;}
.y3c_c00357{bottom:265.125000px;}
.y3b_c00357{bottom:265.875000px;}
.y3a_c00357{bottom:266.625000px;}
.y39_c00357{bottom:267.298500px;}
.y38_c00357{bottom:279.900000px;}
.y37_c00357{bottom:296.473500px;}
.y36_c00357{bottom:298.275000px;}
.y35_c00357{bottom:300.448500px;}
.y34_c00357{bottom:301.875000px;}
.y33_c00357{bottom:315.223500px;}
.y32_c00357{bottom:332.098500px;}
.y31_c00357{bottom:335.400000px;}
.y30_c00357{bottom:336.823500px;}
.y2f_c00357{bottom:349.348500px;}
.y2e_c00357{bottom:349.723500px;}
.y2d_c00357{bottom:351.223500px;}
.y2c_c00357{bottom:353.323500px;}
.y2b_c00357{bottom:418.500000px;}
.y2a_c00357{bottom:419.625000px;}
.y29_c00357{bottom:440.098500px;}
.y28_c00357{bottom:461.698500px;}
.y27_c00357{bottom:462.448500px;}
.y26_c00357{bottom:484.048500px;}
.y25_c00357{bottom:505.948500px;}
.y24_c00357{bottom:527.548500px;}
.y23_c00357{bottom:549.148500px;}
.y22_c00357{bottom:571.125000px;}
.y21_c00357{bottom:593.098500px;}
.y20_c00357{bottom:615.073500px;}
.y1f_c00357{bottom:636.973500px;}
.y1e_c00357{bottom:657.523500px;}
.y1c_c00357{bottom:680.548500px;}
.y1d_c00357{bottom:681.298500px;}
.y1b_c00357{bottom:702.148500px;}
.y1a_c00357{bottom:724.500000px;}
.y19_c00357{bottom:746.473500px;}
.y17_c00357{bottom:768.375000px;}
.y18_c00357{bottom:768.750000px;}
.y16_c00357{bottom:790.348500px;}
.y15_c00357{bottom:812.323500px;}
.y14_c00357{bottom:833.250000px;}
.y12_c00357{bottom:852.973500px;}
.y13_c00357{bottom:855.525000px;}
.y11_c00357{bottom:872.098500px;}
.y10_c00357{bottom:897.300000px;}
.yf_c00357{bottom:919.275000px;}
.ye_c00357{bottom:940.500000px;}
.yd_c00357{bottom:962.775000px;}
.ya_c00357{bottom:976.875000px;}
.yb_c00357{bottom:981.900000px;}
.yc_c00357{bottom:985.875000px;}
.y7_c00357{bottom:1005.973500px;}
.y8_c00357{bottom:1007.848500px;}
.y9_c00357{bottom:1008.150000px;}
.y6_c00357{bottom:1027.275000px;}
.y5_c00357{bottom:1048.125000px;}
.y1_c00357{bottom:1096.348500px;}
.y3_c00357{bottom:1104.675000px;}
.y4_c00357{bottom:1106.775000px;}
.y2_c00357{bottom:1111.875000px;}
.h2_c00357{height:54.421875px;}
.h3_c00357{height:58.857422px;}
.h7_c00357{height:58.886719px;}
.h8_c00357{height:64.743164px;}
.h1_c00357{height:64.775391px;}
.h6_c00357{height:70.628906px;}
.ha_c00357{height:70.664062px;}
.hb_c00357{height:72.562500px;}
.h9_c00357{height:76.552734px;}
.h4_c00357{height:82.441406px;}
.h5_c00357{height:84.656250px;}
.h0_c00357{height:1174.500000px;}
.w0_c00357{width:731.977200px;}
.w1_c00357{width:732.000000px;}
.x0_c00357{left:0.000000px;}
.x13_c00357{left:47.515200px;}
.xf_c00357{left:48.565200px;}
.x6_c00357{left:49.690200px;}
.xc_c00357{left:50.740200px;}
.x9_c00357{left:51.790200px;}
.x5_c00357{left:52.915200px;}
.x17_c00357{left:66.190200px;}
.x1_c00357{left:72.715200px;}
.x2a_c00357{left:75.188700px;}
.x14_c00357{left:79.540200px;}
.x11_c00357{left:80.965200px;}
.xd_c00357{left:82.765200px;}
.x1c_c00357{left:88.540200px;}
.x2_c00357{left:102.190200px;}
.x2b_c00357{left:111.565200px;}
.x1e_c00357{left:117.715200px;}
.x25_c00357{left:119.140200px;}
.xa_c00357{left:125.590200px;}
.x1d_c00357{left:132.790200px;}
.x18_c00357{left:135.340200px;}
.x21_c00357{left:139.690200px;}
.x30_c00357{left:155.890200px;}
.x2d_c00357{left:163.765200px;}
.x22_c00357{left:168.115200px;}
.x1f_c00357{left:220.690200px;}
.x26_c00357{left:230.365200px;}
.x23_c00357{left:234.715200px;}
.x16_c00357{left:247.690200px;}
.x27_c00357{left:268.165200px;}
.x19_c00357{left:276.490200px;}
.x3_c00357{left:277.915200px;}
.xb_c00357{left:279.340200px;}
.x20_c00357{left:343.765200px;}
.xe_c00357{left:354.940200px;}
.x4_c00357{left:367.538700px;}
.x28_c00357{left:372.940200px;}
.x29_c00357{left:411.115200px;}
.x2c_c00357{left:416.140200px;}
.x2e_c00357{left:438.490200px;}
.x32_c00357{left:467.965200px;}
.x1a_c00357{left:519.790200px;}
.x33_c00357{left:522.340200px;}
.x15_c00357{left:568.090200px;}
.x1b_c00357{left:581.365200px;}
.x34_c00357{left:593.965200px;}
.x2f_c00357{left:598.990200px;}
.x24_c00357{left:602.590200px;}
.x10_c00357{left:606.940200px;}
.x31_c00357{left:614.515200px;}
.x7_c00357{left:626.365200px;}
.x12_c00357{left:646.915200px;}
.x35_c00357{left:648.715200px;}
.x8_c00357{left:658.390200px;}
.x36_c00357{left:661.990200px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls0_c00357{letter-spacing:0.000000pt;}
.ws0_c00357{word-spacing:0.000000pt;}
.fs1_c00357{font-size:48.000000pt;}
.fs2_c00357{font-size:53.333333pt;}
.fs0_c00357{font-size:58.666667pt;}
.fs4_c00357{font-size:64.000000pt;}
.fs5_c00357{font-size:69.333333pt;}
.fs3_c00357{font-size:74.666667pt;}
.y0_c00357{bottom:0.000000pt;}
.y5c_c00357{bottom:74.065333pt;}
.y5b_c00357{bottom:74.398667pt;}
.y5a_c00357{bottom:75.333333pt;}
.y59_c00357{bottom:78.865333pt;}
.y57_c00357{bottom:91.666667pt;}
.y58_c00357{bottom:92.000000pt;}
.y56_c00357{bottom:94.865333pt;}
.y54_c00357{bottom:108.000000pt;}
.y55_c00357{bottom:108.333333pt;}
.y53_c00357{bottom:115.333333pt;}
.y52_c00357{bottom:123.333333pt;}
.y51_c00357{bottom:124.000000pt;}
.y50_c00357{bottom:139.398667pt;}
.y4f_c00357{bottom:140.932000pt;}
.y4e_c00357{bottom:155.065333pt;}
.y4d_c00357{bottom:159.865333pt;}
.y4b_c00357{bottom:170.398667pt;}
.y4c_c00357{bottom:170.732000pt;}
.y4a_c00357{bottom:172.000000pt;}
.y49_c00357{bottom:175.198667pt;}
.y48_c00357{bottom:188.666667pt;}
.y47_c00357{bottom:202.065333pt;}
.y46_c00357{bottom:206.265333pt;}
.y45_c00357{bottom:216.132000pt;}
.y44_c00357{bottom:217.132000pt;}
.y43_c00357{bottom:218.065333pt;}
.y42_c00357{bottom:219.065333pt;}
.y41_c00357{bottom:220.000000pt;}
.y40_c00357{bottom:221.265333pt;}
.y3f_c00357{bottom:221.932000pt;}
.y3d_c00357{bottom:232.466667pt;}
.y3e_c00357{bottom:232.800000pt;}
.y3c_c00357{bottom:235.666667pt;}
.y3b_c00357{bottom:236.333333pt;}
.y3a_c00357{bottom:237.000000pt;}
.y39_c00357{bottom:237.598667pt;}
.y38_c00357{bottom:248.800000pt;}
.y37_c00357{bottom:263.532000pt;}
.y36_c00357{bottom:265.133333pt;}
.y35_c00357{bottom:267.065333pt;}
.y34_c00357{bottom:268.333333pt;}
.y33_c00357{bottom:280.198667pt;}
.y32_c00357{bottom:295.198667pt;}
.y31_c00357{bottom:298.133333pt;}
.y30_c00357{bottom:299.398667pt;}
.y2f_c00357{bottom:310.532000pt;}
.y2e_c00357{bottom:310.865333pt;}
.y2d_c00357{bottom:312.198667pt;}
.y2c_c00357{bottom:314.065333pt;}
.y2b_c00357{bottom:372.000000pt;}
.y2a_c00357{bottom:373.000000pt;}
.y29_c00357{bottom:391.198667pt;}
.y28_c00357{bottom:410.398667pt;}
.y27_c00357{bottom:411.065333pt;}
.y26_c00357{bottom:430.265333pt;}
.y25_c00357{bottom:449.732000pt;}
.y24_c00357{bottom:468.932000pt;}
.y23_c00357{bottom:488.132000pt;}
.y22_c00357{bottom:507.666667pt;}
.y21_c00357{bottom:527.198667pt;}
.y20_c00357{bottom:546.732000pt;}
.y1f_c00357{bottom:566.198667pt;}
.y1e_c00357{bottom:584.465333pt;}
.y1c_c00357{bottom:604.932000pt;}
.y1d_c00357{bottom:605.598667pt;}
.y1b_c00357{bottom:624.132000pt;}
.y1a_c00357{bottom:644.000000pt;}
.y19_c00357{bottom:663.532000pt;}
.y17_c00357{bottom:683.000000pt;}
.y18_c00357{bottom:683.333333pt;}
.y16_c00357{bottom:702.532000pt;}
.y15_c00357{bottom:722.065333pt;}
.y14_c00357{bottom:740.666667pt;}
.y12_c00357{bottom:758.198667pt;}
.y13_c00357{bottom:760.466667pt;}
.y11_c00357{bottom:775.198667pt;}
.y10_c00357{bottom:797.600000pt;}
.yf_c00357{bottom:817.133333pt;}
.ye_c00357{bottom:836.000000pt;}
.yd_c00357{bottom:855.800000pt;}
.ya_c00357{bottom:868.333333pt;}
.yb_c00357{bottom:872.800000pt;}
.yc_c00357{bottom:876.333333pt;}
.y7_c00357{bottom:894.198667pt;}
.y8_c00357{bottom:895.865333pt;}
.y9_c00357{bottom:896.133333pt;}
.y6_c00357{bottom:913.133333pt;}
.y5_c00357{bottom:931.666667pt;}
.y1_c00357{bottom:974.532000pt;}
.y3_c00357{bottom:981.933333pt;}
.y4_c00357{bottom:983.800000pt;}
.y2_c00357{bottom:988.333333pt;}
.h2_c00357{height:48.375000pt;}
.h3_c00357{height:52.317708pt;}
.h7_c00357{height:52.343750pt;}
.h8_c00357{height:57.549479pt;}
.h1_c00357{height:57.578125pt;}
.h6_c00357{height:62.781250pt;}
.ha_c00357{height:62.812500pt;}
.hb_c00357{height:64.500000pt;}
.h9_c00357{height:68.046875pt;}
.h4_c00357{height:73.281250pt;}
.h5_c00357{height:75.250000pt;}
.h0_c00357{height:1044.000000pt;}
.w0_c00357{width:650.646400pt;}
.w1_c00357{width:650.666667pt;}
.x0_c00357{left:0.000000pt;}
.x13_c00357{left:42.235733pt;}
.xf_c00357{left:43.169067pt;}
.x6_c00357{left:44.169067pt;}
.xc_c00357{left:45.102400pt;}
.x9_c00357{left:46.035733pt;}
.x5_c00357{left:47.035733pt;}
.x17_c00357{left:58.835733pt;}
.x1_c00357{left:64.635733pt;}
.x2a_c00357{left:66.834400pt;}
.x14_c00357{left:70.702400pt;}
.x11_c00357{left:71.969067pt;}
.xd_c00357{left:73.569067pt;}
.x1c_c00357{left:78.702400pt;}
.x2_c00357{left:90.835733pt;}
.x2b_c00357{left:99.169067pt;}
.x1e_c00357{left:104.635733pt;}
.x25_c00357{left:105.902400pt;}
.xa_c00357{left:111.635733pt;}
.x1d_c00357{left:118.035733pt;}
.x18_c00357{left:120.302400pt;}
.x21_c00357{left:124.169067pt;}
.x30_c00357{left:138.569067pt;}
.x2d_c00357{left:145.569067pt;}
.x22_c00357{left:149.435733pt;}
.x1f_c00357{left:196.169067pt;}
.x26_c00357{left:204.769067pt;}
.x23_c00357{left:208.635733pt;}
.x16_c00357{left:220.169067pt;}
.x27_c00357{left:238.369067pt;}
.x19_c00357{left:245.769067pt;}
.x3_c00357{left:247.035733pt;}
.xb_c00357{left:248.302400pt;}
.x20_c00357{left:305.569067pt;}
.xe_c00357{left:315.502400pt;}
.x4_c00357{left:326.701067pt;}
.x28_c00357{left:331.502400pt;}
.x29_c00357{left:365.435733pt;}
.x2c_c00357{left:369.902400pt;}
.x2e_c00357{left:389.769067pt;}
.x32_c00357{left:415.969067pt;}
.x1a_c00357{left:462.035733pt;}
.x33_c00357{left:464.302400pt;}
.x15_c00357{left:504.969067pt;}
.x1b_c00357{left:516.769067pt;}
.x34_c00357{left:527.969067pt;}
.x2f_c00357{left:532.435733pt;}
.x24_c00357{left:535.635733pt;}
.x10_c00357{left:539.502400pt;}
.x31_c00357{left:546.235733pt;}
.x7_c00357{left:556.769067pt;}
.x12_c00357{left:575.035733pt;}
.x35_c00357{left:576.635733pt;}
.x8_c00357{left:585.235733pt;}
.x36_c00357{left:588.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_67f45d1db25e825ad3133e97.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00358;src:url('chunks/assets/font_292f23d6db3986330016d143.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.402354;font-style:normal;font-weight:normal;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_6efee363fea8cc5abab397a3.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00358;src:url('chunks/assets/font_86f10774e18da13b11a24062.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00358;src:url('chunks/assets/font_9c329926dee5385be81a462b.woff2')format("woff");}.ff5_c00358{font-family:ff5_c00358;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00358{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m2_c00358{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00358{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m26_c00358{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m28_c00358{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m15_c00358{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m16_c00358{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc_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);}
.m18_c00358{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me_c00358{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3_c00358{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf_c00358{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mb_c00358{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00358{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8_c00358{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md_c00358{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5_c00358{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c00358{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c00358{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m24_c00358{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00358{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m27_c00358{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00358{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m21_c00358{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m20_c00358{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m23_c00358{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m22_c00358{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00358{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c00358{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00358{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00358{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c00358{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00358{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c00358{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00358{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00358{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00358{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m17_c00358{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m25_c00358{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00358{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m6_c00358{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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.000000px;}
.fc0_c00358{color:transparent;}
.fs0_c00358{font-size:48.000000px;}
.fs6_c00358{font-size:54.000000px;}
.fs3_c00358{font-size:60.000000px;}
.fs2_c00358{font-size:66.000000px;}
.fs5_c00358{font-size:72.000000px;}
.fs4_c00358{font-size:84.000000px;}
.fs1_c00358{font-size:114.000000px;}
.y0_c00358{bottom:0.000000px;}
.y4f_c00358{bottom:74.698500px;}
.y50_c00358{bottom:77.548500px;}
.y51_c00358{bottom:78.000000px;}
.y4e_c00358{bottom:92.023500px;}
.y4c_c00358{bottom:106.048500px;}
.y4d_c00358{bottom:109.573500px;}
.y4b_c00358{bottom:122.625000px;}
.y49_c00358{bottom:139.125000px;}
.y4a_c00358{bottom:142.798500px;}
.y47_c00358{bottom:157.500000px;}
.y48_c00358{bottom:162.223500px;}
.y43_c00358{bottom:171.598500px;}
.y44_c00358{bottom:171.898500px;}
.y45_c00358{bottom:172.198500px;}
.y46_c00358{bottom:174.750000px;}
.y41_c00358{bottom:190.273500px;}
.y42_c00358{bottom:195.298500px;}
.y40_c00358{bottom:205.423500px;}
.y3f_c00358{bottom:222.598500px;}
.y3e_c00358{bottom:239.173500px;}
.y3d_c00358{bottom:255.750000px;}
.y3c_c00358{bottom:272.323500px;}
.y39_c00358{bottom:288.525000px;}
.y3a_c00358{bottom:288.900000px;}
.y3b_c00358{bottom:290.400000px;}
.y37_c00358{bottom:305.775000px;}
.y38_c00358{bottom:305.848500px;}
.y36_c00358{bottom:322.048500px;}
.y35_c00358{bottom:339.298500px;}
.y32_c00358{bottom:355.500000px;}
.y33_c00358{bottom:356.173500px;}
.y34_c00358{bottom:357.298500px;}
.y31_c00358{bottom:372.448500px;}
.y30_c00358{bottom:389.025000px;}
.y2e_c00358{bottom:466.048500px;}
.y2f_c00358{bottom:466.423500px;}
.y2d_c00358{bottom:466.723500px;}
.y2c_c00358{bottom:467.098500px;}
.y2b_c00358{bottom:467.473500px;}
.y2a_c00358{bottom:489.073500px;}
.y29_c00358{bottom:509.250000px;}
.y28_c00358{bottom:530.098500px;}
.y27_c00358{bottom:530.473500px;}
.y26_c00358{bottom:551.698500px;}
.y25_c00358{bottom:572.625000px;}
.y24_c00358{bottom:593.848500px;}
.y23_c00358{bottom:616.500000px;}
.y22_c00358{bottom:635.250000px;}
.y21_c00358{bottom:636.673500px;}
.y20_c00358{bottom:657.598500px;}
.y1f_c00358{bottom:678.823500px;}
.y1e_c00358{bottom:698.548500px;}
.y1d_c00358{bottom:699.298500px;}
.y1c_c00358{bottom:701.848500px;}
.y1b_c00358{bottom:720.523500px;}
.y1a_c00358{bottom:721.648500px;}
.y19_c00358{bottom:723.750000px;}
.y18_c00358{bottom:741.075000px;}
.y17_c00358{bottom:742.125000px;}
.y16_c00358{bottom:743.923500px;}
.y15_c00358{bottom:745.723500px;}
.y14_c00358{bottom:764.473500px;}
.y13_c00358{bottom:785.698500px;}
.y12_c00358{bottom:807.598500px;}
.y11_c00358{bottom:829.275000px;}
.y10_c00358{bottom:849.823500px;}
.yf_c00358{bottom:872.848500px;}
.ye_c00358{bottom:892.650000px;}
.yd_c00358{bottom:908.098500px;}
.yc_c00358{bottom:913.198500px;}
.yb_c00358{bottom:934.348500px;}
.ya_c00358{bottom:955.948500px;}
.y9_c00358{bottom:976.875000px;}
.y8_c00358{bottom:994.500000px;}
.y7_c00358{bottom:998.098500px;}
.y6_c00358{bottom:1053.525000px;}
.y5_c00358{bottom:1056.073500px;}
.y4_c00358{bottom:1057.800000px;}
.y3_c00358{bottom:1059.300000px;}
.y2_c00358{bottom:1162.948500px;}
.y1_c00358{bottom:1163.323500px;}
.h1_c00358{height:47.109375px;}
.ha_c00358{height:52.998047px;}
.h9_c00358{height:54.421875px;}
.h5_c00358{height:58.886719px;}
.hb_c00358{height:64.743164px;}
.h3_c00358{height:64.775391px;}
.h4_c00358{height:66.515625px;}
.h8_c00358{height:70.628906px;}
.h6_c00358{height:82.441406px;}
.h7_c00358{height:84.656250px;}
.h2_c00358{height:117.174036px;}
.h0_c00358{height:1174.500000px;}
.w0_c00358{width:731.977200px;}
.w1_c00358{width:732.000000px;}
.x0_c00358{left:0.000000px;}
.xc_c00358{left:65.515200px;}
.x21_c00358{left:78.115200px;}
.x18_c00358{left:79.540200px;}
.x15_c00358{left:80.590200px;}
.xb_c00358{left:82.090200px;}
.xe_c00358{left:83.515200px;}
.x24_c00358{left:97.915200px;}
.x28_c00358{left:107.290200px;}
.x1b_c00358{left:112.990200px;}
.xf_c00358{left:114.490200px;}
.x9_c00358{left:115.540200px;}
.x25_c00358{left:133.915200px;}
.x2f_c00358{left:135.715200px;}
.x2d_c00358{left:137.515200px;}
.x2a_c00358{left:168.115200px;}
.x1c_c00358{left:190.388700px;}
.x1d_c00358{left:228.565200px;}
.x10_c00358{left:236.140200px;}
.x2e_c00358{left:243.340200px;}
.x2b_c00358{left:251.290200px;}
.x1e_c00358{left:290.515200px;}
.x5_c00358{left:295.915200px;}
.x6_c00358{left:321.790200px;}
.x13_c00358{left:322.915200px;}
.x1f_c00358{left:341.590200px;}
.x20_c00358{left:353.140200px;}
.x11_c00358{left:360.715200px;}
.x26_c00358{left:402.490200px;}
.x14_c00358{left:414.715200px;}
.x27_c00358{left:417.190200px;}
.x1_c00358{left:420.788700px;}
.x2_c00358{left:457.540200px;}
.x3_c00358{left:468.715200px;}
.x4_c00358{left:470.140200px;}
.x16_c00358{left:475.165200px;}
.x22_c00358{left:481.690200px;}
.x23_c00358{left:486.715200px;}
.x7_c00358{left:489.940200px;}
.x30_c00358{left:534.940200px;}
.x31_c00358{left:564.490200px;}
.x17_c00358{left:589.990200px;}
.x19_c00358{left:611.290200px;}
.x2c_c00358{left:646.915200px;}
.x8_c00358{left:651.940200px;}
.x12_c00358{left:665.290200px;}
.x29_c00358{left:672.115200px;}
.xd_c00358{left:676.390200px;}
.x1a_c00358{left:680.365200px;}
.xa_c00358{left:682.540200px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls0_c00358{letter-spacing:0.000000pt;}
.ws0_c00358{word-spacing:0.000000pt;}
.fs0_c00358{font-size:42.666667pt;}
.fs6_c00358{font-size:48.000000pt;}
.fs3_c00358{font-size:53.333333pt;}
.fs2_c00358{font-size:58.666667pt;}
.fs5_c00358{font-size:64.000000pt;}
.fs4_c00358{font-size:74.666667pt;}
.fs1_c00358{font-size:101.333333pt;}
.y0_c00358{bottom:0.000000pt;}
.y4f_c00358{bottom:66.398667pt;}
.y50_c00358{bottom:68.932000pt;}
.y51_c00358{bottom:69.333333pt;}
.y4e_c00358{bottom:81.798667pt;}
.y4c_c00358{bottom:94.265333pt;}
.y4d_c00358{bottom:97.398667pt;}
.y4b_c00358{bottom:109.000000pt;}
.y49_c00358{bottom:123.666667pt;}
.y4a_c00358{bottom:126.932000pt;}
.y47_c00358{bottom:140.000000pt;}
.y48_c00358{bottom:144.198667pt;}
.y43_c00358{bottom:152.532000pt;}
.y44_c00358{bottom:152.798667pt;}
.y45_c00358{bottom:153.065333pt;}
.y46_c00358{bottom:155.333333pt;}
.y41_c00358{bottom:169.132000pt;}
.y42_c00358{bottom:173.598667pt;}
.y40_c00358{bottom:182.598667pt;}
.y3f_c00358{bottom:197.865333pt;}
.y3e_c00358{bottom:212.598667pt;}
.y3d_c00358{bottom:227.333333pt;}
.y3c_c00358{bottom:242.065333pt;}
.y39_c00358{bottom:256.466667pt;}
.y3a_c00358{bottom:256.800000pt;}
.y3b_c00358{bottom:258.133333pt;}
.y37_c00358{bottom:271.800000pt;}
.y38_c00358{bottom:271.865333pt;}
.y36_c00358{bottom:286.265333pt;}
.y35_c00358{bottom:301.598667pt;}
.y32_c00358{bottom:316.000000pt;}
.y33_c00358{bottom:316.598667pt;}
.y34_c00358{bottom:317.598667pt;}
.y31_c00358{bottom:331.065333pt;}
.y30_c00358{bottom:345.800000pt;}
.y2e_c00358{bottom:414.265333pt;}
.y2f_c00358{bottom:414.598667pt;}
.y2d_c00358{bottom:414.865333pt;}
.y2c_c00358{bottom:415.198667pt;}
.y2b_c00358{bottom:415.532000pt;}
.y2a_c00358{bottom:434.732000pt;}
.y29_c00358{bottom:452.666667pt;}
.y28_c00358{bottom:471.198667pt;}
.y27_c00358{bottom:471.532000pt;}
.y26_c00358{bottom:490.398667pt;}
.y25_c00358{bottom:509.000000pt;}
.y24_c00358{bottom:527.865333pt;}
.y23_c00358{bottom:548.000000pt;}
.y22_c00358{bottom:564.666667pt;}
.y21_c00358{bottom:565.932000pt;}
.y20_c00358{bottom:584.532000pt;}
.y1f_c00358{bottom:603.398667pt;}
.y1e_c00358{bottom:620.932000pt;}
.y1d_c00358{bottom:621.598667pt;}
.y1c_c00358{bottom:623.865333pt;}
.y1b_c00358{bottom:640.465333pt;}
.y1a_c00358{bottom:641.465333pt;}
.y19_c00358{bottom:643.333333pt;}
.y18_c00358{bottom:658.733333pt;}
.y17_c00358{bottom:659.666667pt;}
.y16_c00358{bottom:661.265333pt;}
.y15_c00358{bottom:662.865333pt;}
.y14_c00358{bottom:679.532000pt;}
.y13_c00358{bottom:698.398667pt;}
.y12_c00358{bottom:717.865333pt;}
.y11_c00358{bottom:737.133333pt;}
.y10_c00358{bottom:755.398667pt;}
.yf_c00358{bottom:775.865333pt;}
.ye_c00358{bottom:793.466667pt;}
.yd_c00358{bottom:807.198667pt;}
.yc_c00358{bottom:811.732000pt;}
.yb_c00358{bottom:830.532000pt;}
.ya_c00358{bottom:849.732000pt;}
.y9_c00358{bottom:868.333333pt;}
.y8_c00358{bottom:884.000000pt;}
.y7_c00358{bottom:887.198667pt;}
.y6_c00358{bottom:936.466667pt;}
.y5_c00358{bottom:938.732000pt;}
.y4_c00358{bottom:940.266667pt;}
.y3_c00358{bottom:941.600000pt;}
.y2_c00358{bottom:1033.732000pt;}
.y1_c00358{bottom:1034.065333pt;}
.h1_c00358{height:41.875000pt;}
.ha_c00358{height:47.109375pt;}
.h9_c00358{height:48.375000pt;}
.h5_c00358{height:52.343750pt;}
.hb_c00358{height:57.549479pt;}
.h3_c00358{height:57.578125pt;}
.h4_c00358{height:59.125000pt;}
.h8_c00358{height:62.781250pt;}
.h6_c00358{height:73.281250pt;}
.h7_c00358{height:75.250000pt;}
.h2_c00358{height:104.154699pt;}
.h0_c00358{height:1044.000000pt;}
.w0_c00358{width:650.646400pt;}
.w1_c00358{width:650.666667pt;}
.x0_c00358{left:0.000000pt;}
.xc_c00358{left:58.235733pt;}
.x21_c00358{left:69.435733pt;}
.x18_c00358{left:70.702400pt;}
.x15_c00358{left:71.635733pt;}
.xb_c00358{left:72.969067pt;}
.xe_c00358{left:74.235733pt;}
.x24_c00358{left:87.035733pt;}
.x28_c00358{left:95.369067pt;}
.x1b_c00358{left:100.435733pt;}
.xf_c00358{left:101.769067pt;}
.x9_c00358{left:102.702400pt;}
.x25_c00358{left:119.035733pt;}
.x2f_c00358{left:120.635733pt;}
.x2d_c00358{left:122.235733pt;}
.x2a_c00358{left:149.435733pt;}
.x1c_c00358{left:169.234400pt;}
.x1d_c00358{left:203.169067pt;}
.x10_c00358{left:209.902400pt;}
.x2e_c00358{left:216.302400pt;}
.x2b_c00358{left:223.369067pt;}
.x1e_c00358{left:258.235733pt;}
.x5_c00358{left:263.035733pt;}
.x6_c00358{left:286.035733pt;}
.x13_c00358{left:287.035733pt;}
.x1f_c00358{left:303.635733pt;}
.x20_c00358{left:313.902400pt;}
.x11_c00358{left:320.635733pt;}
.x26_c00358{left:357.769067pt;}
.x14_c00358{left:368.635733pt;}
.x27_c00358{left:370.835733pt;}
.x1_c00358{left:374.034400pt;}
.x2_c00358{left:406.702400pt;}
.x3_c00358{left:416.635733pt;}
.x4_c00358{left:417.902400pt;}
.x16_c00358{left:422.369067pt;}
.x22_c00358{left:428.169067pt;}
.x23_c00358{left:432.635733pt;}
.x7_c00358{left:435.502400pt;}
.x30_c00358{left:475.502400pt;}
.x31_c00358{left:501.769067pt;}
.x17_c00358{left:524.435733pt;}
.x19_c00358{left:543.369067pt;}
.x2c_c00358{left:575.035733pt;}
.x8_c00358{left:579.502400pt;}
.x12_c00358{left:591.369067pt;}
.x29_c00358{left:597.435733pt;}
.xd_c00358{left:601.235733pt;}
.x1a_c00358{left:604.769067pt;}
.xa_c00358{left:606.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00359 {
    display:none;
  }
  .loading-indicator_c00359.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00359 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00359 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00359" -> "#page-container .classname_c00359")
 */
.pf_c00359 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00359 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00359 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00359 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00359 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00359 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00359 {overflow:visible;}
  }
}
.c_c00359 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00359 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00359:after { /* webkit #35443 */
  content: '';
}
.t_c00359:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00359 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00359 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00359 { /* info for Javascript */
  display:none;
}
.l_c00359 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00359 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00359 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00359:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00359 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00359.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00359 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00359{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00359;src:url('chunks/assets/font_b8469820f666e9da78141bf4.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00359{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00359{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c00359{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c00359{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c00359{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf_c00359{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6_c00359{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00359{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c00359{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00359{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00359{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2_c00359{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00359{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00359{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c00359{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c00359{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00359{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00359{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c00359{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mb_c00359{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00359{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls0_c00359{letter-spacing:0.000000px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00359{word-spacing:0.000000px;}
.fc0_c00359{color:transparent;}
.fs1_c00359{font-size:54.000000px;}
.fs0_c00359{font-size:66.000000px;}
.fs2_c00359{font-size:72.000000px;}
.y0_c00359{bottom:0.000000px;}
.y30_c00359{bottom:83.698500px;}
.y2f_c00359{bottom:98.848500px;}
.y2e_c00359{bottom:116.098500px;}
.y2d_c00359{bottom:131.625000px;}
.y2c_c00359{bottom:134.098500px;}
.y2b_c00359{bottom:213.973500px;}
.y2a_c00359{bottom:236.698500px;}
.y29_c00359{bottom:257.923500px;}
.y28_c00359{bottom:281.323500px;}
.y27_c00359{bottom:302.173500px;}
.y26_c00359{bottom:324.150000px;}
.y25_c00359{bottom:345.448500px;}
.y24_c00359{bottom:348.973500px;}
.y23_c00359{bottom:370.948500px;}
.y22_c00359{bottom:390.000000px;}
.y21_c00359{bottom:411.673500px;}
.y20_c00359{bottom:436.125000px;}
.y1f_c00359{bottom:455.250000px;}
.y1e_c00359{bottom:477.523500px;}
.y1d_c00359{bottom:501.000000px;}
.y1c_c00359{bottom:520.348500px;}
.y1b_c00359{bottom:543.750000px;}
.y1a_c00359{bottom:563.923500px;}
.y19_c00359{bottom:585.898500px;}
.y18_c00359{bottom:607.875000px;}
.y17_c00359{bottom:630.148500px;}
.y16_c00359{bottom:651.750000px;}
.y15_c00359{bottom:673.348500px;}
.y14_c00359{bottom:695.323500px;}
.y13_c00359{bottom:717.298500px;}
.y12_c00359{bottom:738.598500px;}
.y11_c00359{bottom:760.875000px;}
.y10_c00359{bottom:783.148500px;}
.yf_c00359{bottom:804.073500px;}
.ye_c00359{bottom:826.050000px;}
.yd_c00359{bottom:847.275000px;}
.yc_c00359{bottom:868.500000px;}
.yb_c00359{bottom:890.098500px;}
.ya_c00359{bottom:912.073500px;}
.y9_c00359{bottom:934.050000px;}
.y8_c00359{bottom:950.550000px;}
.y7_c00359{bottom:977.550000px;}
.y6_c00359{bottom:998.848500px;}
.y5_c00359{bottom:1020.073500px;}
.y4_c00359{bottom:1041.973500px;}
.y1_c00359{bottom:1091.025000px;}
.y3_c00359{bottom:1098.525000px;}
.y2_c00359{bottom:1105.050000px;}
.h2_c00359{height:52.998047px;}
.h1_c00359{height:64.775391px;}
.h3_c00359{height:70.664062px;}
.h0_c00359{height:1174.500000px;}
.w0_c00359{width:731.977200px;}
.w1_c00359{width:732.000000px;}
.x0_c00359{left:0.000000px;}
.xb_c00359{left:40.690200px;}
.x9_c00359{left:41.740200px;}
.xd_c00359{left:42.790200px;}
.x8_c00359{left:44.590200px;}
.x6_c00359{left:46.090200px;}
.x5_c00359{left:47.515200px;}
.x4_c00359{left:48.565200px;}
.x10_c00359{left:52.540200px;}
.xe_c00359{left:59.740200px;}
.x1_c00359{left:67.690200px;}
.xa_c00359{left:73.390200px;}
.x7_c00359{left:74.890200px;}
.x2_c00359{left:95.740200px;}
.xc_c00359{left:185.365200px;}
.x3_c00359{left:271.390200px;}
.xf_c00359{left:537.115200px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls0_c00359{letter-spacing:0.000000pt;}
.ws0_c00359{word-spacing:0.000000pt;}
.fs1_c00359{font-size:48.000000pt;}
.fs0_c00359{font-size:58.666667pt;}
.fs2_c00359{font-size:64.000000pt;}
.y0_c00359{bottom:0.000000pt;}
.y30_c00359{bottom:74.398667pt;}
.y2f_c00359{bottom:87.865333pt;}
.y2e_c00359{bottom:103.198667pt;}
.y2d_c00359{bottom:117.000000pt;}
.y2c_c00359{bottom:119.198667pt;}
.y2b_c00359{bottom:190.198667pt;}
.y2a_c00359{bottom:210.398667pt;}
.y29_c00359{bottom:229.265333pt;}
.y28_c00359{bottom:250.065333pt;}
.y27_c00359{bottom:268.598667pt;}
.y26_c00359{bottom:288.133333pt;}
.y25_c00359{bottom:307.065333pt;}
.y24_c00359{bottom:310.198667pt;}
.y23_c00359{bottom:329.732000pt;}
.y22_c00359{bottom:346.666667pt;}
.y21_c00359{bottom:365.932000pt;}
.y20_c00359{bottom:387.666667pt;}
.y1f_c00359{bottom:404.666667pt;}
.y1e_c00359{bottom:424.465333pt;}
.y1d_c00359{bottom:445.333333pt;}
.y1c_c00359{bottom:462.532000pt;}
.y1b_c00359{bottom:483.333333pt;}
.y1a_c00359{bottom:501.265333pt;}
.y19_c00359{bottom:520.798667pt;}
.y18_c00359{bottom:540.333333pt;}
.y17_c00359{bottom:560.132000pt;}
.y16_c00359{bottom:579.333333pt;}
.y15_c00359{bottom:598.532000pt;}
.y14_c00359{bottom:618.065333pt;}
.y13_c00359{bottom:637.598667pt;}
.y12_c00359{bottom:656.532000pt;}
.y11_c00359{bottom:676.333333pt;}
.y10_c00359{bottom:696.132000pt;}
.yf_c00359{bottom:714.732000pt;}
.ye_c00359{bottom:734.266667pt;}
.yd_c00359{bottom:753.133333pt;}
.yc_c00359{bottom:772.000000pt;}
.yb_c00359{bottom:791.198667pt;}
.ya_c00359{bottom:810.732000pt;}
.y9_c00359{bottom:830.266667pt;}
.y8_c00359{bottom:844.933333pt;}
.y7_c00359{bottom:868.933333pt;}
.y6_c00359{bottom:887.865333pt;}
.y5_c00359{bottom:906.732000pt;}
.y4_c00359{bottom:926.198667pt;}
.y1_c00359{bottom:969.800000pt;}
.y3_c00359{bottom:976.466667pt;}
.y2_c00359{bottom:982.266667pt;}
.h2_c00359{height:47.109375pt;}
.h1_c00359{height:57.578125pt;}
.h3_c00359{height:62.812500pt;}
.h0_c00359{height:1044.000000pt;}
.w0_c00359{width:650.646400pt;}
.w1_c00359{width:650.666667pt;}
.x0_c00359{left:0.000000pt;}
.xb_c00359{left:36.169067pt;}
.x9_c00359{left:37.102400pt;}
.xd_c00359{left:38.035733pt;}
.x8_c00359{left:39.635733pt;}
.x6_c00359{left:40.969067pt;}
.x5_c00359{left:42.235733pt;}
.x4_c00359{left:43.169067pt;}
.x10_c00359{left:46.702400pt;}
.xe_c00359{left:53.102400pt;}
.x1_c00359{left:60.169067pt;}
.xa_c00359{left:65.235733pt;}
.x7_c00359{left:66.569067pt;}
.x2_c00359{left:85.102400pt;}
.xc_c00359{left:164.769067pt;}
.x3_c00359{left:241.235733pt;}
.xf_c00359{left:477.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fea7fd3feb78766929f59a77.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00360;src:url('chunks/assets/font_2645828cff6e32dce75f5e76.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00360{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m1_c00360{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m14_c00360{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m20_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);}
.m7_c00360{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c00360{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00360{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me_c00360{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c00360{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m18_c00360{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c00360{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c00360{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00360{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00360{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00360{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00360{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00360{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c00360{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c00360{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00360{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c00360{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00360{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m19_c00360{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00360{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00360{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00360{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00360{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m17_c00360{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00360{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m16_c00360{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c00360{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m13_c00360{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2_c00360{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.ls0_c00360{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00360{word-spacing:0.000000px;}
.fc0_c00360{color:transparent;}
.fs0_c00360{font-size:60.000000px;}
.fs1_c00360{font-size:72.000000px;}
.y0_c00360{bottom:0.000000px;}
.y44_c00360{bottom:86.923500px;}
.y42_c00360{bottom:99.898500px;}
.y43_c00360{bottom:103.798500px;}
.y41_c00360{bottom:117.898500px;}
.y40_c00360{bottom:135.898500px;}
.y3f_c00360{bottom:152.848500px;}
.y3e_c00360{bottom:169.348500px;}
.y3d_c00360{bottom:185.923500px;}
.y3c_c00360{bottom:201.750000px;}
.y3b_c00360{bottom:215.098500px;}
.y39_c00360{bottom:231.673500px;}
.y3a_c00360{bottom:233.848500px;}
.y38_c00360{bottom:250.348500px;}
.y37_c00360{bottom:267.000000px;}
.y34_c00360{bottom:283.125000px;}
.y35_c00360{bottom:284.625000px;}
.y36_c00360{bottom:285.973500px;}
.y32_c00360{bottom:299.323500px;}
.y31_c00360{bottom:300.000000px;}
.y33_c00360{bottom:301.500000px;}
.y2f_c00360{bottom:315.900000px;}
.y2e_c00360{bottom:316.275000px;}
.y2d_c00360{bottom:316.573500px;}
.y30_c00360{bottom:318.750000px;}
.y2c_c00360{bottom:356.625000px;}
.y2b_c00360{bottom:378.525000px;}
.y2a_c00360{bottom:398.698500px;}
.y29_c00360{bottom:418.875000px;}
.y28_c00360{bottom:440.473500px;}
.y27_c00360{bottom:462.073500px;}
.y26_c00360{bottom:483.298500px;}
.y25_c00360{bottom:504.898500px;}
.y24_c00360{bottom:526.125000px;}
.y23_c00360{bottom:547.723500px;}
.y22_c00360{bottom:568.273500px;}
.y21_c00360{bottom:589.875000px;}
.y20_c00360{bottom:611.098500px;}
.y1f_c00360{bottom:632.323500px;}
.y1e_c00360{bottom:653.625000px;}
.y1d_c00360{bottom:675.523500px;}
.y1c_c00360{bottom:676.948500px;}
.y1b_c00360{bottom:696.375000px;}
.y1a_c00360{bottom:717.673500px;}
.y19_c00360{bottom:738.523500px;}
.y18_c00360{bottom:759.750000px;}
.y17_c00360{bottom:782.098500px;}
.y16_c00360{bottom:803.323500px;}
.y15_c00360{bottom:824.925000px;}
.y14_c00360{bottom:845.473500px;}
.y13_c00360{bottom:862.050000px;}
.y12_c00360{bottom:863.098500px;}
.y11_c00360{bottom:867.448500px;}
.y10_c00360{bottom:887.925000px;}
.yf_c00360{bottom:908.848500px;}
.ye_c00360{bottom:930.750000px;}
.yd_c00360{bottom:951.300000px;}
.yc_c00360{bottom:968.550000px;}
.yb_c00360{bottom:972.150000px;}
.ya_c00360{bottom:974.025000px;}
.y9_c00360{bottom:975.073500px;}
.y8_c00360{bottom:989.400000px;}
.y7_c00360{bottom:995.175000px;}
.y6_c00360{bottom:1012.500000px;}
.y5_c00360{bottom:1016.848500px;}
.y4_c00360{bottom:1071.150000px;}
.y3_c00360{bottom:1074.823500px;}
.y2_c00360{bottom:1076.175000px;}
.y1_c00360{bottom:1076.250000px;}
.h4_c00360{height:58.886719px;}
.h1_c00360{height:60.468750px;}
.h3_c00360{height:70.664062px;}
.h2_c00360{height:72.562500px;}
.h0_c00360{height:1174.500000px;}
.w0_c00360{width:731.977200px;}
.w1_c00360{width:732.000000px;}
.x0_c00360{left:0.000000px;}
.x5_c00360{left:77.365200px;}
.x8_c00360{left:78.490200px;}
.xd_c00360{left:80.965200px;}
.x12_c00360{left:82.090200px;}
.x13_c00360{left:83.890200px;}
.x1c_c00360{left:85.688700px;}
.x1f_c00360{left:86.740200px;}
.x20_c00360{left:88.165200px;}
.x21_c00360{left:89.590200px;}
.x10_c00360{left:99.715200px;}
.x14_c00360{left:101.515200px;}
.x1d_c00360{left:102.940200px;}
.x22_c00360{left:105.490200px;}
.xc_c00360{left:112.315200px;}
.x11_c00360{left:114.490200px;}
.x15_c00360{left:139.315200px;}
.x1e_c00360{left:140.365200px;}
.x23_c00360{left:142.915200px;}
.x18_c00360{left:178.915200px;}
.x16_c00360{left:245.140200px;}
.x17_c00360{left:268.165200px;}
.x1_c00360{left:291.940200px;}
.x9_c00360{left:294.490200px;}
.xa_c00360{left:299.515200px;}
.x2_c00360{left:320.740200px;}
.x19_c00360{left:323.590200px;}
.x1a_c00360{left:451.090200px;}
.x1b_c00360{left:485.290200px;}
.x3_c00360{left:488.890200px;}
.x6_c00360{left:545.740200px;}
.xe_c00360{left:613.765200px;}
.x4_c00360{left:651.940200px;}
.xf_c00360{left:654.115200px;}
.x7_c00360{left:680.365200px;}
.xb_c00360{left:682.915200px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls0_c00360{letter-spacing:0.000000pt;}
.ws0_c00360{word-spacing:0.000000pt;}
.fs0_c00360{font-size:53.333333pt;}
.fs1_c00360{font-size:64.000000pt;}
.y0_c00360{bottom:0.000000pt;}
.y44_c00360{bottom:77.265333pt;}
.y42_c00360{bottom:88.798667pt;}
.y43_c00360{bottom:92.265333pt;}
.y41_c00360{bottom:104.798667pt;}
.y40_c00360{bottom:120.798667pt;}
.y3f_c00360{bottom:135.865333pt;}
.y3e_c00360{bottom:150.532000pt;}
.y3d_c00360{bottom:165.265333pt;}
.y3c_c00360{bottom:179.333333pt;}
.y3b_c00360{bottom:191.198667pt;}
.y39_c00360{bottom:205.932000pt;}
.y3a_c00360{bottom:207.865333pt;}
.y38_c00360{bottom:222.532000pt;}
.y37_c00360{bottom:237.333333pt;}
.y34_c00360{bottom:251.666667pt;}
.y35_c00360{bottom:253.000000pt;}
.y36_c00360{bottom:254.198667pt;}
.y32_c00360{bottom:266.065333pt;}
.y31_c00360{bottom:266.666667pt;}
.y33_c00360{bottom:268.000000pt;}
.y2f_c00360{bottom:280.800000pt;}
.y2e_c00360{bottom:281.133333pt;}
.y2d_c00360{bottom:281.398667pt;}
.y30_c00360{bottom:283.333333pt;}
.y2c_c00360{bottom:317.000000pt;}
.y2b_c00360{bottom:336.466667pt;}
.y2a_c00360{bottom:354.398667pt;}
.y29_c00360{bottom:372.333333pt;}
.y28_c00360{bottom:391.532000pt;}
.y27_c00360{bottom:410.732000pt;}
.y26_c00360{bottom:429.598667pt;}
.y25_c00360{bottom:448.798667pt;}
.y24_c00360{bottom:467.666667pt;}
.y23_c00360{bottom:486.865333pt;}
.y22_c00360{bottom:505.132000pt;}
.y21_c00360{bottom:524.333333pt;}
.y20_c00360{bottom:543.198667pt;}
.y1f_c00360{bottom:562.065333pt;}
.y1e_c00360{bottom:581.000000pt;}
.y1d_c00360{bottom:600.465333pt;}
.y1c_c00360{bottom:601.732000pt;}
.y1b_c00360{bottom:619.000000pt;}
.y1a_c00360{bottom:637.932000pt;}
.y19_c00360{bottom:656.465333pt;}
.y18_c00360{bottom:675.333333pt;}
.y17_c00360{bottom:695.198667pt;}
.y16_c00360{bottom:714.065333pt;}
.y15_c00360{bottom:733.266667pt;}
.y14_c00360{bottom:751.532000pt;}
.y13_c00360{bottom:766.266667pt;}
.y12_c00360{bottom:767.198667pt;}
.y11_c00360{bottom:771.065333pt;}
.y10_c00360{bottom:789.266667pt;}
.yf_c00360{bottom:807.865333pt;}
.ye_c00360{bottom:827.333333pt;}
.yd_c00360{bottom:845.600000pt;}
.yc_c00360{bottom:860.933333pt;}
.yb_c00360{bottom:864.133333pt;}
.ya_c00360{bottom:865.800000pt;}
.y9_c00360{bottom:866.732000pt;}
.y8_c00360{bottom:879.466667pt;}
.y7_c00360{bottom:884.600000pt;}
.y6_c00360{bottom:900.000000pt;}
.y5_c00360{bottom:903.865333pt;}
.y4_c00360{bottom:952.133333pt;}
.y3_c00360{bottom:955.398667pt;}
.y2_c00360{bottom:956.600000pt;}
.y1_c00360{bottom:956.666667pt;}
.h4_c00360{height:52.343750pt;}
.h1_c00360{height:53.750000pt;}
.h3_c00360{height:62.812500pt;}
.h2_c00360{height:64.500000pt;}
.h0_c00360{height:1044.000000pt;}
.w0_c00360{width:650.646400pt;}
.w1_c00360{width:650.666667pt;}
.x0_c00360{left:0.000000pt;}
.x5_c00360{left:68.769067pt;}
.x8_c00360{left:69.769067pt;}
.xd_c00360{left:71.969067pt;}
.x12_c00360{left:72.969067pt;}
.x13_c00360{left:74.569067pt;}
.x1c_c00360{left:76.167733pt;}
.x1f_c00360{left:77.102400pt;}
.x20_c00360{left:78.369067pt;}
.x21_c00360{left:79.635733pt;}
.x10_c00360{left:88.635733pt;}
.x14_c00360{left:90.235733pt;}
.x1d_c00360{left:91.502400pt;}
.x22_c00360{left:93.769067pt;}
.xc_c00360{left:99.835733pt;}
.x11_c00360{left:101.769067pt;}
.x15_c00360{left:123.835733pt;}
.x1e_c00360{left:124.769067pt;}
.x23_c00360{left:127.035733pt;}
.x18_c00360{left:159.035733pt;}
.x16_c00360{left:217.902400pt;}
.x17_c00360{left:238.369067pt;}
.x1_c00360{left:259.502400pt;}
.x9_c00360{left:261.769067pt;}
.xa_c00360{left:266.235733pt;}
.x2_c00360{left:285.102400pt;}
.x19_c00360{left:287.635733pt;}
.x1a_c00360{left:400.969067pt;}
.x1b_c00360{left:431.369067pt;}
.x3_c00360{left:434.569067pt;}
.x6_c00360{left:485.102400pt;}
.xe_c00360{left:545.569067pt;}
.x4_c00360{left:579.502400pt;}
.xf_c00360{left:581.435733pt;}
.x7_c00360{left:604.769067pt;}
.xb_c00360{left:607.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df243a19e5aef10fb16b898f.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00361;src:url('chunks/assets/font_0a2a66af60657f1759b0e593.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00361;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00361{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c00361{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c00361{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c00361{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00361{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00361{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00361{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00361{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00361{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c00361{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00361{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00361{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00361{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00361{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00361{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00361{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00361{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c00361{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5_c00361{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m1_c00361{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00361{word-spacing:0.000000px;}
.fc0_c00361{color:transparent;}
.fs1_c00361{font-size:54.000000px;}
.fs0_c00361{font-size:60.000000px;}
.fs4_c00361{font-size:66.000000px;}
.fs2_c00361{font-size:72.000000px;}
.fs3_c00361{font-size:78.000000px;}
.y0_c00361{bottom:0.000000px;}
.y30_c00361{bottom:366.973500px;}
.y2f_c00361{bottom:383.625000px;}
.y2e_c00361{bottom:386.400000px;}
.y2d_c00361{bottom:387.525000px;}
.y2c_c00361{bottom:388.573500px;}
.y2b_c00361{bottom:407.323500px;}
.y2a_c00361{bottom:429.673500px;}
.y29_c00361{bottom:453.073500px;}
.y28_c00361{bottom:473.250000px;}
.y27_c00361{bottom:475.723500px;}
.y26_c00361{bottom:492.673500px;}
.y25_c00361{bottom:494.848500px;}
.y24_c00361{bottom:496.198500px;}
.y23_c00361{bottom:516.823500px;}
.y22_c00361{bottom:538.723500px;}
.y21_c00361{bottom:560.698500px;}
.y20_c00361{bottom:582.673500px;}
.y1f_c00361{bottom:583.723500px;}
.y1e_c00361{bottom:601.723500px;}
.y1d_c00361{bottom:604.648500px;}
.y1c_c00361{bottom:626.548500px;}
.y1b_c00361{bottom:648.523500px;}
.y1a_c00361{bottom:670.125000px;}
.y19_c00361{bottom:691.423500px;}
.y18_c00361{bottom:713.323500px;}
.y17_c00361{bottom:734.923500px;}
.y16_c00361{bottom:757.273500px;}
.y15_c00361{bottom:779.175000px;}
.y14_c00361{bottom:801.150000px;}
.y13_c00361{bottom:821.323500px;}
.y12_c00361{bottom:843.000000px;}
.y11_c00361{bottom:864.525000px;}
.y10_c00361{bottom:886.500000px;}
.yf_c00361{bottom:908.098500px;}
.ye_c00361{bottom:930.073500px;}
.yd_c00361{bottom:951.675000px;}
.yb_c00361{bottom:973.275000px;}
.yc_c00361{bottom:975.073500px;}
.ya_c00361{bottom:993.375000px;}
.y9_c00361{bottom:1015.348500px;}
.y8_c00361{bottom:1036.573500px;}
.y4_c00361{bottom:1053.150000px;}
.y5_c00361{bottom:1057.125000px;}
.y6_c00361{bottom:1057.500000px;}
.y7_c00361{bottom:1059.300000px;}
.y1_c00361{bottom:1107.150000px;}
.y3_c00361{bottom:1115.473500px;}
.y2_c00361{bottom:1121.025000px;}
.h2_c00361{height:52.998047px;}
.h1_c00361{height:60.468750px;}
.h5_c00361{height:64.775391px;}
.h3_c00361{height:70.664062px;}
.h6_c00361{height:72.562500px;}
.h4_c00361{height:76.514648px;}
.h0_c00361{height:1174.500000px;}
.w0_c00361{width:731.977200px;}
.w1_c00361{width:732.000000px;}
.x0_c00361{left:0.000000px;}
.x18_c00361{left:33.115200px;}
.x16_c00361{left:34.540200px;}
.x14_c00361{left:35.963700px;}
.x13_c00361{left:37.090200px;}
.x11_c00361{left:38.140200px;}
.x10_c00361{left:39.190200px;}
.xe_c00361{left:40.315200px;}
.xd_c00361{left:41.365200px;}
.x9_c00361{left:44.590200px;}
.x8_c00361{left:46.765200px;}
.x1a_c00361{left:55.090200px;}
.x1d_c00361{left:58.690200px;}
.x17_c00361{left:65.140200px;}
.x1_c00361{left:66.565200px;}
.x15_c00361{left:67.690200px;}
.x12_c00361{left:68.740200px;}
.xf_c00361{left:71.590200px;}
.xa_c00361{left:74.515200px;}
.x4_c00361{left:79.165200px;}
.x2_c00361{left:95.740200px;}
.x1e_c00361{left:139.690200px;}
.x1f_c00361{left:159.790200px;}
.x3_c00361{left:270.340200px;}
.x5_c00361{left:282.940200px;}
.x6_c00361{left:305.590200px;}
.x7_c00361{left:314.590200px;}
.x1b_c00361{left:361.090200px;}
.x1c_c00361{left:474.115200px;}
.xb_c00361{left:497.890200px;}
.xc_c00361{left:515.140200px;}
.x19_c00361{left:579.940200px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls0_c00361{letter-spacing:0.000000pt;}
.ws0_c00361{word-spacing:0.000000pt;}
.fs1_c00361{font-size:48.000000pt;}
.fs0_c00361{font-size:53.333333pt;}
.fs4_c00361{font-size:58.666667pt;}
.fs2_c00361{font-size:64.000000pt;}
.fs3_c00361{font-size:69.333333pt;}
.y0_c00361{bottom:0.000000pt;}
.y30_c00361{bottom:326.198667pt;}
.y2f_c00361{bottom:341.000000pt;}
.y2e_c00361{bottom:343.466667pt;}
.y2d_c00361{bottom:344.466667pt;}
.y2c_c00361{bottom:345.398667pt;}
.y2b_c00361{bottom:362.065333pt;}
.y2a_c00361{bottom:381.932000pt;}
.y29_c00361{bottom:402.732000pt;}
.y28_c00361{bottom:420.666667pt;}
.y27_c00361{bottom:422.865333pt;}
.y26_c00361{bottom:437.932000pt;}
.y25_c00361{bottom:439.865333pt;}
.y24_c00361{bottom:441.065333pt;}
.y23_c00361{bottom:459.398667pt;}
.y22_c00361{bottom:478.865333pt;}
.y21_c00361{bottom:498.398667pt;}
.y20_c00361{bottom:517.932000pt;}
.y1f_c00361{bottom:518.865333pt;}
.y1e_c00361{bottom:534.865333pt;}
.y1d_c00361{bottom:537.465333pt;}
.y1c_c00361{bottom:556.932000pt;}
.y1b_c00361{bottom:576.465333pt;}
.y1a_c00361{bottom:595.666667pt;}
.y19_c00361{bottom:614.598667pt;}
.y18_c00361{bottom:634.065333pt;}
.y17_c00361{bottom:653.265333pt;}
.y16_c00361{bottom:673.132000pt;}
.y15_c00361{bottom:692.600000pt;}
.y14_c00361{bottom:712.133333pt;}
.y13_c00361{bottom:730.065333pt;}
.y12_c00361{bottom:749.333333pt;}
.y11_c00361{bottom:768.466667pt;}
.y10_c00361{bottom:788.000000pt;}
.yf_c00361{bottom:807.198667pt;}
.ye_c00361{bottom:826.732000pt;}
.yd_c00361{bottom:845.933333pt;}
.yb_c00361{bottom:865.133333pt;}
.yc_c00361{bottom:866.732000pt;}
.ya_c00361{bottom:883.000000pt;}
.y9_c00361{bottom:902.532000pt;}
.y8_c00361{bottom:921.398667pt;}
.y4_c00361{bottom:936.133333pt;}
.y5_c00361{bottom:939.666667pt;}
.y6_c00361{bottom:940.000000pt;}
.y7_c00361{bottom:941.600000pt;}
.y1_c00361{bottom:984.133333pt;}
.y3_c00361{bottom:991.532000pt;}
.y2_c00361{bottom:996.466667pt;}
.h2_c00361{height:47.109375pt;}
.h1_c00361{height:53.750000pt;}
.h5_c00361{height:57.578125pt;}
.h3_c00361{height:62.812500pt;}
.h6_c00361{height:64.500000pt;}
.h4_c00361{height:68.013021pt;}
.h0_c00361{height:1044.000000pt;}
.w0_c00361{width:650.646400pt;}
.w1_c00361{width:650.666667pt;}
.x0_c00361{left:0.000000pt;}
.x18_c00361{left:29.435733pt;}
.x16_c00361{left:30.702400pt;}
.x14_c00361{left:31.967733pt;}
.x13_c00361{left:32.969067pt;}
.x11_c00361{left:33.902400pt;}
.x10_c00361{left:34.835733pt;}
.xe_c00361{left:35.835733pt;}
.xd_c00361{left:36.769067pt;}
.x9_c00361{left:39.635733pt;}
.x8_c00361{left:41.569067pt;}
.x1a_c00361{left:48.969067pt;}
.x1d_c00361{left:52.169067pt;}
.x17_c00361{left:57.902400pt;}
.x1_c00361{left:59.169067pt;}
.x15_c00361{left:60.169067pt;}
.x12_c00361{left:61.102400pt;}
.xf_c00361{left:63.635733pt;}
.xa_c00361{left:66.235733pt;}
.x4_c00361{left:70.369067pt;}
.x2_c00361{left:85.102400pt;}
.x1e_c00361{left:124.169067pt;}
.x1f_c00361{left:142.035733pt;}
.x3_c00361{left:240.302400pt;}
.x5_c00361{left:251.502400pt;}
.x6_c00361{left:271.635733pt;}
.x7_c00361{left:279.635733pt;}
.x1b_c00361{left:320.969067pt;}
.x1c_c00361{left:421.435733pt;}
.xb_c00361{left:442.569067pt;}
.xc_c00361{left:457.902400pt;}
.x19_c00361{left:515.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d4e268086cb3b69fb52380bc.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00362;src:url('chunks/assets/font_94cd7d7e71ea66d042455091.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00362;src:url('chunks/assets/font_c54d519918eda5760efa66ce.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00362{transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);}
.m0_c00362{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6_c00362{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3_c00362{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c00362{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2_c00362{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00362{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.ls0_c00362{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00362{word-spacing:0.000000px;}
.fc0_c00362{color:transparent;}
.fs1_c00362{font-size:84.000000px;}
.fs2_c00362{font-size:90.000000px;}
.fs0_c00362{font-size:162.000000px;}
.y0_c00362{bottom:0.000000px;}
.y5_c00362{bottom:539.848500px;}
.y6_c00362{bottom:540.148500px;}
.y4_c00362{bottom:566.473500px;}
.y3_c00362{bottom:707.173500px;}
.y2_c00362{bottom:844.348500px;}
.y1_c00362{bottom:845.473500px;}
.h2_c00362{height:82.400391px;}
.h3_c00362{height:88.330078px;}
.h1_c00362{height:163.265625px;}
.h0_c00362{height:1174.500000px;}
.w0_c00362{width:731.977200px;}
.w1_c00362{width:732.000000px;}
.x2_c00362{left:-21.259800px;}
.x0_c00362{left:0.000000px;}
.x3_c00362{left:67.315200px;}
.x5_c00362{left:93.188700px;}
.x1_c00362{left:100.390200px;}
.x4_c00362{left:182.138700px;}
.x6_c00362{left:185.365200px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls0_c00362{letter-spacing:0.000000pt;}
.ws0_c00362{word-spacing:0.000000pt;}
.fs1_c00362{font-size:74.666667pt;}
.fs2_c00362{font-size:80.000000pt;}
.fs0_c00362{font-size:144.000000pt;}
.y0_c00362{bottom:0.000000pt;}
.y5_c00362{bottom:479.865333pt;}
.y6_c00362{bottom:480.132000pt;}
.y4_c00362{bottom:503.532000pt;}
.y3_c00362{bottom:628.598667pt;}
.y2_c00362{bottom:750.532000pt;}
.y1_c00362{bottom:751.532000pt;}
.h2_c00362{height:73.244792pt;}
.h3_c00362{height:78.515625pt;}
.h1_c00362{height:145.125000pt;}
.h0_c00362{height:1044.000000pt;}
.w0_c00362{width:650.646400pt;}
.w1_c00362{width:650.666667pt;}
.x2_c00362{left:-18.897600pt;}
.x0_c00362{left:0.000000pt;}
.x3_c00362{left:59.835733pt;}
.x5_c00362{left:82.834400pt;}
.x1_c00362{left:89.235733pt;}
.x4_c00362{left:161.901067pt;}
.x6_c00362{left:164.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f1c1c5cd01bba9f558bdf10.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00363;src:url('chunks/assets/font_285cbd74bb8806f0f7e49ac2.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00363{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4_c00363{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m0_c00363{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00363{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00363{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00363{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00363{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00363{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00363{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00363{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c00363{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00363{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00363{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c00363{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00363{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00363{color:transparent;}
.fs1_c00363{font-size:60.000000px;}
.fs0_c00363{font-size:72.000000px;}
.fs2_c00363{font-size:156.000000px;}
.y0_c00363{bottom:0.000000px;}
.y27_c00363{bottom:113.923500px;}
.y26_c00363{bottom:135.223500px;}
.y25_c00363{bottom:157.500000px;}
.y24_c00363{bottom:178.723500px;}
.y23_c00363{bottom:203.548500px;}
.y22_c00363{bottom:223.048500px;}
.y21_c00363{bottom:245.323500px;}
.y20_c00363{bottom:267.673500px;}
.y1f_c00363{bottom:289.573500px;}
.y1e_c00363{bottom:311.173500px;}
.y1d_c00363{bottom:333.150000px;}
.y1c_c00363{bottom:355.125000px;}
.y1b_c00363{bottom:377.098500px;}
.y1a_c00363{bottom:399.375000px;}
.y19_c00363{bottom:421.723500px;}
.y18_c00363{bottom:443.698500px;}
.y17_c00363{bottom:465.673500px;}
.y16_c00363{bottom:487.573500px;}
.y15_c00363{bottom:509.250000px;}
.y14_c00363{bottom:531.148500px;}
.y13_c00363{bottom:553.125000px;}
.y12_c00363{bottom:575.098500px;}
.y11_c00363{bottom:597.073500px;}
.y10_c00363{bottom:619.348500px;}
.yf_c00363{bottom:641.023500px;}
.ye_c00363{bottom:663.298500px;}
.yd_c00363{bottom:685.573500px;}
.yc_c00363{bottom:707.250000px;}
.yb_c00363{bottom:729.148500px;}
.ya_c00363{bottom:751.500000px;}
.y9_c00363{bottom:773.098500px;}
.y8_c00363{bottom:795.448500px;}
.y7_c00363{bottom:817.050000px;}
.y6_c00363{bottom:838.650000px;}
.y3_c00363{bottom:919.948500px;}
.y4_c00363{bottom:921.073500px;}
.y5_c00363{bottom:924.675000px;}
.y1_c00363{bottom:1124.473500px;}
.y2_c00363{bottom:1128.750000px;}
.h2_c00363{height:58.886719px;}
.h1_c00363{height:70.664062px;}
.h3_c00363{height:157.218750px;}
.h0_c00363{height:1174.500000px;}
.w0_c00363{width:731.977200px;}
.w1_c00363{width:732.000000px;}
.x0_c00363{left:0.000000px;}
.x8_c00363{left:39.940200px;}
.x9_c00363{left:40.990200px;}
.xa_c00363{left:42.115200px;}
.xc_c00363{left:43.540200px;}
.xd_c00363{left:44.590200px;}
.x10_c00363{left:45.715200px;}
.xe_c00363{left:47.140200px;}
.x11_c00363{left:48.190200px;}
.x1_c00363{left:62.965200px;}
.xb_c00363{left:73.390200px;}
.x7_c00363{left:75.563700px;}
.xf_c00363{left:78.115200px;}
.x4_c00363{left:79.915200px;}
.x2_c00363{left:91.090200px;}
.x5_c00363{left:219.940200px;}
.x3_c00363{left:271.765200px;}
.x6_c00363{left:515.515200px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls0_c00363{letter-spacing:0.000000pt;}
.ws0_c00363{word-spacing:0.000000pt;}
.fs1_c00363{font-size:53.333333pt;}
.fs0_c00363{font-size:64.000000pt;}
.fs2_c00363{font-size:138.666667pt;}
.y0_c00363{bottom:0.000000pt;}
.y27_c00363{bottom:101.265333pt;}
.y26_c00363{bottom:120.198667pt;}
.y25_c00363{bottom:140.000000pt;}
.y24_c00363{bottom:158.865333pt;}
.y23_c00363{bottom:180.932000pt;}
.y22_c00363{bottom:198.265333pt;}
.y21_c00363{bottom:218.065333pt;}
.y20_c00363{bottom:237.932000pt;}
.y1f_c00363{bottom:257.398667pt;}
.y1e_c00363{bottom:276.598667pt;}
.y1d_c00363{bottom:296.133333pt;}
.y1c_c00363{bottom:315.666667pt;}
.y1b_c00363{bottom:335.198667pt;}
.y1a_c00363{bottom:355.000000pt;}
.y19_c00363{bottom:374.865333pt;}
.y18_c00363{bottom:394.398667pt;}
.y17_c00363{bottom:413.932000pt;}
.y16_c00363{bottom:433.398667pt;}
.y15_c00363{bottom:452.666667pt;}
.y14_c00363{bottom:472.132000pt;}
.y13_c00363{bottom:491.666667pt;}
.y12_c00363{bottom:511.198667pt;}
.y11_c00363{bottom:530.732000pt;}
.y10_c00363{bottom:550.532000pt;}
.yf_c00363{bottom:569.798667pt;}
.ye_c00363{bottom:589.598667pt;}
.yd_c00363{bottom:609.398667pt;}
.yc_c00363{bottom:628.666667pt;}
.yb_c00363{bottom:648.132000pt;}
.ya_c00363{bottom:668.000000pt;}
.y9_c00363{bottom:687.198667pt;}
.y8_c00363{bottom:707.065333pt;}
.y7_c00363{bottom:726.266667pt;}
.y6_c00363{bottom:745.466667pt;}
.y3_c00363{bottom:817.732000pt;}
.y4_c00363{bottom:818.732000pt;}
.y5_c00363{bottom:821.933333pt;}
.y1_c00363{bottom:999.532000pt;}
.y2_c00363{bottom:1003.333333pt;}
.h2_c00363{height:52.343750pt;}
.h1_c00363{height:62.812500pt;}
.h3_c00363{height:139.750000pt;}
.h0_c00363{height:1044.000000pt;}
.w0_c00363{width:650.646400pt;}
.w1_c00363{width:650.666667pt;}
.x0_c00363{left:0.000000pt;}
.x8_c00363{left:35.502400pt;}
.x9_c00363{left:36.435733pt;}
.xa_c00363{left:37.435733pt;}
.xc_c00363{left:38.702400pt;}
.xd_c00363{left:39.635733pt;}
.x10_c00363{left:40.635733pt;}
.xe_c00363{left:41.902400pt;}
.x11_c00363{left:42.835733pt;}
.x1_c00363{left:55.969067pt;}
.xb_c00363{left:65.235733pt;}
.x7_c00363{left:67.167733pt;}
.xf_c00363{left:69.435733pt;}
.x4_c00363{left:71.035733pt;}
.x2_c00363{left:80.969067pt;}
.x5_c00363{left:195.502400pt;}
.x3_c00363{left:241.569067pt;}
.x6_c00363{left:458.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_90bf24caf645338f9124116a.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00364;src:url('chunks/assets/font_f98c721801e964c1091bdad3.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00364{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c00364{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m0_c00364{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c00364{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c00364{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c00364{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00364{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c00364{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c00364{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c00364{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c00364{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00364{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00364{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00364{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00364{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c00364{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m13_c00364{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10_c00364{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00364{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00364{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00364{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c00364{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1_c00364{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00364{color:transparent;}
.fs3_c00364{font-size:54.000000px;}
.fs0_c00364{font-size:60.000000px;}
.fs2_c00364{font-size:72.000000px;}
.fs1_c00364{font-size:78.000000px;}
.y0_c00364{bottom:0.000000px;}
.y3e_c00364{bottom:54.523500px;}
.y3d_c00364{bottom:79.348500px;}
.y3c_c00364{bottom:99.898500px;}
.y3b_c00364{bottom:120.750000px;}
.y38_c00364{bottom:137.323500px;}
.y39_c00364{bottom:138.375000px;}
.y3a_c00364{bottom:142.348500px;}
.y37_c00364{bottom:161.473500px;}
.y36_c00364{bottom:181.648500px;}
.y35_c00364{bottom:202.125000px;}
.y34_c00364{bottom:222.298500px;}
.y33_c00364{bottom:242.473500px;}
.y32_c00364{bottom:263.323500px;}
.y31_c00364{bottom:283.500000px;}
.y30_c00364{bottom:304.798500px;}
.y2f_c00364{bottom:325.275000px;}
.y2d_c00364{bottom:346.125000px;}
.y2e_c00364{bottom:348.298500px;}
.y2c_c00364{bottom:367.048500px;}
.y2b_c00364{bottom:387.598500px;}
.y2a_c00364{bottom:408.448500px;}
.y29_c00364{bottom:429.298500px;}
.y28_c00364{bottom:450.523500px;}
.y27_c00364{bottom:471.823500px;}
.y26_c00364{bottom:493.048500px;}
.y25_c00364{bottom:514.273500px;}
.y24_c00364{bottom:535.500000px;}
.y23_c00364{bottom:556.723500px;}
.y22_c00364{bottom:577.948500px;}
.y21_c00364{bottom:598.875000px;}
.y20_c00364{bottom:620.848500px;}
.y1f_c00364{bottom:641.323500px;}
.y1e_c00364{bottom:643.125000px;}
.y1d_c00364{bottom:662.923500px;}
.y1c_c00364{bottom:684.223500px;}
.y1b_c00364{bottom:705.073500px;}
.y1a_c00364{bottom:728.473500px;}
.y19_c00364{bottom:748.273500px;}
.y18_c00364{bottom:750.075000px;}
.y17_c00364{bottom:765.898500px;}
.y16_c00364{bottom:768.750000px;}
.y15_c00364{bottom:771.598500px;}
.y14_c00364{bottom:787.125000px;}
.y13_c00364{bottom:791.473500px;}
.y12_c00364{bottom:813.000000px;}
.y11_c00364{bottom:835.348500px;}
.y10_c00364{bottom:855.223500px;}
.yf_c00364{bottom:876.823500px;}
.ye_c00364{bottom:898.348500px;}
.yd_c00364{bottom:913.125000px;}
.yc_c00364{bottom:918.150000px;}
.yb_c00364{bottom:938.323500px;}
.ya_c00364{bottom:956.323500px;}
.y9_c00364{bottom:960.300000px;}
.y8_c00364{bottom:980.775000px;}
.y7_c00364{bottom:985.125000px;}
.y6_c00364{bottom:1001.400000px;}
.y4_c00364{bottom:1006.050000px;}
.y5_c00364{bottom:1006.348500px;}
.y3_c00364{bottom:1057.500000px;}
.y2_c00364{bottom:1060.425000px;}
.y1_c00364{bottom:1062.223500px;}
.h5_c00364{height:52.998047px;}
.h1_c00364{height:60.468750px;}
.h4_c00364{height:70.664062px;}
.h3_c00364{height:72.562500px;}
.h2_c00364{height:78.609375px;}
.h0_c00364{height:1174.500000px;}
.w0_c00364{width:731.977200px;}
.w1_c00364{width:732.000000px;}
.x0_c00364{left:0.000000px;}
.x4_c00364{left:61.540200px;}
.x8_c00364{left:62.965200px;}
.xe_c00364{left:64.390200px;}
.x12_c00364{left:66.190200px;}
.x14_c00364{left:67.315200px;}
.x15_c00364{left:68.740200px;}
.x17_c00364{left:70.165200px;}
.x19_c00364{left:71.965200px;}
.x1a_c00364{left:73.090200px;}
.x1b_c00364{left:74.140200px;}
.x1e_c00364{left:75.188700px;}
.x5_c00364{left:89.590200px;}
.x7_c00364{left:92.515200px;}
.xb_c00364{left:96.790200px;}
.xc_c00364{left:98.290200px;}
.x11_c00364{left:100.090200px;}
.x18_c00364{left:104.740200px;}
.x13_c00364{left:154.090200px;}
.x1c_c00364{left:186.115200px;}
.x1d_c00364{left:214.915200px;}
.x6_c00364{left:232.540200px;}
.x1_c00364{left:277.540200px;}
.xf_c00364{left:319.690200px;}
.x2_c00364{left:472.990200px;}
.xd_c00364{left:558.340200px;}
.x10_c00364{left:574.540200px;}
.x9_c00364{left:577.090200px;}
.xa_c00364{left:606.190200px;}
.x3_c00364{left:634.315200px;}
.x16_c00364{left:644.365200px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls0_c00364{letter-spacing:0.000000pt;}
.ws0_c00364{word-spacing:0.000000pt;}
.fs3_c00364{font-size:48.000000pt;}
.fs0_c00364{font-size:53.333333pt;}
.fs2_c00364{font-size:64.000000pt;}
.fs1_c00364{font-size:69.333333pt;}
.y0_c00364{bottom:0.000000pt;}
.y3e_c00364{bottom:48.465333pt;}
.y3d_c00364{bottom:70.532000pt;}
.y3c_c00364{bottom:88.798667pt;}
.y3b_c00364{bottom:107.333333pt;}
.y38_c00364{bottom:122.065333pt;}
.y39_c00364{bottom:123.000000pt;}
.y3a_c00364{bottom:126.532000pt;}
.y37_c00364{bottom:143.532000pt;}
.y36_c00364{bottom:161.465333pt;}
.y35_c00364{bottom:179.666667pt;}
.y34_c00364{bottom:197.598667pt;}
.y33_c00364{bottom:215.532000pt;}
.y32_c00364{bottom:234.065333pt;}
.y31_c00364{bottom:252.000000pt;}
.y30_c00364{bottom:270.932000pt;}
.y2f_c00364{bottom:289.133333pt;}
.y2d_c00364{bottom:307.666667pt;}
.y2e_c00364{bottom:309.598667pt;}
.y2c_c00364{bottom:326.265333pt;}
.y2b_c00364{bottom:344.532000pt;}
.y2a_c00364{bottom:363.065333pt;}
.y29_c00364{bottom:381.598667pt;}
.y28_c00364{bottom:400.465333pt;}
.y27_c00364{bottom:419.398667pt;}
.y26_c00364{bottom:438.265333pt;}
.y25_c00364{bottom:457.132000pt;}
.y24_c00364{bottom:476.000000pt;}
.y23_c00364{bottom:494.865333pt;}
.y22_c00364{bottom:513.732000pt;}
.y21_c00364{bottom:532.333333pt;}
.y20_c00364{bottom:551.865333pt;}
.y1f_c00364{bottom:570.065333pt;}
.y1e_c00364{bottom:571.666667pt;}
.y1d_c00364{bottom:589.265333pt;}
.y1c_c00364{bottom:608.198667pt;}
.y1b_c00364{bottom:626.732000pt;}
.y1a_c00364{bottom:647.532000pt;}
.y19_c00364{bottom:665.132000pt;}
.y18_c00364{bottom:666.733333pt;}
.y17_c00364{bottom:680.798667pt;}
.y16_c00364{bottom:683.333333pt;}
.y15_c00364{bottom:685.865333pt;}
.y14_c00364{bottom:699.666667pt;}
.y13_c00364{bottom:703.532000pt;}
.y12_c00364{bottom:722.666667pt;}
.y11_c00364{bottom:742.532000pt;}
.y10_c00364{bottom:760.198667pt;}
.yf_c00364{bottom:779.398667pt;}
.ye_c00364{bottom:798.532000pt;}
.yd_c00364{bottom:811.666667pt;}
.yc_c00364{bottom:816.133333pt;}
.yb_c00364{bottom:834.065333pt;}
.ya_c00364{bottom:850.065333pt;}
.y9_c00364{bottom:853.600000pt;}
.y8_c00364{bottom:871.800000pt;}
.y7_c00364{bottom:875.666667pt;}
.y6_c00364{bottom:890.133333pt;}
.y4_c00364{bottom:894.266667pt;}
.y5_c00364{bottom:894.532000pt;}
.y3_c00364{bottom:940.000000pt;}
.y2_c00364{bottom:942.600000pt;}
.y1_c00364{bottom:944.198667pt;}
.h5_c00364{height:47.109375pt;}
.h1_c00364{height:53.750000pt;}
.h4_c00364{height:62.812500pt;}
.h3_c00364{height:64.500000pt;}
.h2_c00364{height:69.875000pt;}
.h0_c00364{height:1044.000000pt;}
.w0_c00364{width:650.646400pt;}
.w1_c00364{width:650.666667pt;}
.x0_c00364{left:0.000000pt;}
.x4_c00364{left:54.702400pt;}
.x8_c00364{left:55.969067pt;}
.xe_c00364{left:57.235733pt;}
.x12_c00364{left:58.835733pt;}
.x14_c00364{left:59.835733pt;}
.x15_c00364{left:61.102400pt;}
.x17_c00364{left:62.369067pt;}
.x19_c00364{left:63.969067pt;}
.x1a_c00364{left:64.969067pt;}
.x1b_c00364{left:65.902400pt;}
.x1e_c00364{left:66.834400pt;}
.x5_c00364{left:79.635733pt;}
.x7_c00364{left:82.235733pt;}
.xb_c00364{left:86.035733pt;}
.xc_c00364{left:87.369067pt;}
.x11_c00364{left:88.969067pt;}
.x18_c00364{left:93.102400pt;}
.x13_c00364{left:136.969067pt;}
.x1c_c00364{left:165.435733pt;}
.x1d_c00364{left:191.035733pt;}
.x6_c00364{left:206.702400pt;}
.x1_c00364{left:246.702400pt;}
.xf_c00364{left:284.169067pt;}
.x2_c00364{left:420.435733pt;}
.xd_c00364{left:496.302400pt;}
.x10_c00364{left:510.702400pt;}
.x9_c00364{left:512.969067pt;}
.xa_c00364{left:538.835733pt;}
.x3_c00364{left:563.835733pt;}
.x16_c00364{left:572.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76262fa49e92748feaaee679.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00365;src:url('chunks/assets/font_0d7a5bb11fc6c1faf1245fea.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00365;src:url('chunks/assets/font_78caf63aacbea3db4ac7f08d.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00365{transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);}
.m9_c00365{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0_c00365{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c00365{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c00365{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m15_c00365{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00365{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00365{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00365{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00365{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00365{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00365{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00365{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00365{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00365{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00365{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c00365{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c00365{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c00365{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma_c00365{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m6_c00365{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m11_c00365{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1_c00365{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00365{word-spacing:0.000000px;}
.fc0_c00365{color:transparent;}
.fs5_c00365{font-size:54.000000px;}
.fs1_c00365{font-size:60.000000px;}
.fs2_c00365{font-size:66.000000px;}
.fs0_c00365{font-size:72.000000px;}
.fs4_c00365{font-size:84.000000px;}
.fs3_c00365{font-size:90.000000px;}
.y0_c00365{bottom:0.000000px;}
.y29_c00365{bottom:430.423500px;}
.y28_c00365{bottom:460.273500px;}
.y27_c00365{bottom:460.648500px;}
.y26_c00365{bottom:460.948500px;}
.y25_c00365{bottom:513.148500px;}
.y24_c00365{bottom:534.823500px;}
.y23_c00365{bottom:556.723500px;}
.y22_c00365{bottom:578.323500px;}
.y21_c00365{bottom:600.298500px;}
.y20_c00365{bottom:622.273500px;}
.y1f_c00365{bottom:644.548500px;}
.y1e_c00365{bottom:666.523500px;}
.y1d_c00365{bottom:667.273500px;}
.y1c_c00365{bottom:688.198500px;}
.y1b_c00365{bottom:710.098500px;}
.y1a_c00365{bottom:732.075000px;}
.y19_c00365{bottom:753.973500px;}
.y18_c00365{bottom:775.948500px;}
.y17_c00365{bottom:797.550000px;}
.y16_c00365{bottom:818.848500px;}
.y15_c00365{bottom:840.073500px;}
.y13_c00365{bottom:859.500000px;}
.y14_c00365{bottom:861.675000px;}
.y12_c00365{bottom:883.198500px;}
.y11_c00365{bottom:905.175000px;}
.y10_c00365{bottom:925.723500px;}
.yf_c00365{bottom:944.848500px;}
.yc_c00365{bottom:965.698500px;}
.yd_c00365{bottom:966.448500px;}
.ye_c00365{bottom:970.425000px;}
.ya_c00365{bottom:985.875000px;}
.yb_c00365{bottom:991.573500px;}
.y9_c00365{bottom:1012.875000px;}
.y5_c00365{bottom:1027.573500px;}
.y6_c00365{bottom:1034.098500px;}
.y8_c00365{bottom:1035.525000px;}
.y7_c00365{bottom:1035.900000px;}
.y4_c00365{bottom:1055.025000px;}
.y1_c00365{bottom:1105.050000px;}
.y3_c00365{bottom:1111.500000px;}
.y2_c00365{bottom:1119.073500px;}
.h7_c00365{height:54.421875px;}
.h2_c00365{height:58.886719px;}
.h3_c00365{height:60.468750px;}
.h4_c00365{height:64.743164px;}
.h1_c00365{height:70.664062px;}
.h6_c00365{height:82.441406px;}
.h5_c00365{height:88.330078px;}
.h0_c00365{height:1174.500000px;}
.w0_c00365{width:731.977200px;}
.w1_c00365{width:732.000000px;}
.x0_c00365{left:0.000000px;}
.x16_c00365{left:50.740200px;}
.x15_c00365{left:52.165200px;}
.x13_c00365{left:53.590200px;}
.x12_c00365{left:54.715200px;}
.x11_c00365{left:56.140200px;}
.xe_c00365{left:57.190200px;}
.xb_c00365{left:62.290200px;}
.x5_c00365{left:67.315200px;}
.x4_c00365{left:69.115200px;}
.x14_c00365{left:71.965200px;}
.xc_c00365{left:73.390200px;}
.x1_c00365{left:82.765200px;}
.xf_c00365{left:90.340200px;}
.x10_c00365{left:103.990200px;}
.xa_c00365{left:106.540200px;}
.x2_c00365{left:111.190200px;}
.xd_c00365{left:135.715200px;}
.x6_c00365{left:151.165200px;}
.x3_c00365{left:289.090200px;}
.x1a_c00365{left:339.490200px;}
.x17_c00365{left:361.390200px;}
.x18_c00365{left:399.940200px;}
.x19_c00365{left:426.940200px;}
.x7_c00365{left:460.390200px;}
.x8_c00365{left:484.915200px;}
.x9_c00365{left:681.790200px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls0_c00365{letter-spacing:0.000000pt;}
.ws0_c00365{word-spacing:0.000000pt;}
.fs5_c00365{font-size:48.000000pt;}
.fs1_c00365{font-size:53.333333pt;}
.fs2_c00365{font-size:58.666667pt;}
.fs0_c00365{font-size:64.000000pt;}
.fs4_c00365{font-size:74.666667pt;}
.fs3_c00365{font-size:80.000000pt;}
.y0_c00365{bottom:0.000000pt;}
.y29_c00365{bottom:382.598667pt;}
.y28_c00365{bottom:409.132000pt;}
.y27_c00365{bottom:409.465333pt;}
.y26_c00365{bottom:409.732000pt;}
.y25_c00365{bottom:456.132000pt;}
.y24_c00365{bottom:475.398667pt;}
.y23_c00365{bottom:494.865333pt;}
.y22_c00365{bottom:514.065333pt;}
.y21_c00365{bottom:533.598667pt;}
.y20_c00365{bottom:553.132000pt;}
.y1f_c00365{bottom:572.932000pt;}
.y1e_c00365{bottom:592.465333pt;}
.y1d_c00365{bottom:593.132000pt;}
.y1c_c00365{bottom:611.732000pt;}
.y1b_c00365{bottom:631.198667pt;}
.y1a_c00365{bottom:650.733333pt;}
.y19_c00365{bottom:670.198667pt;}
.y18_c00365{bottom:689.732000pt;}
.y17_c00365{bottom:708.933333pt;}
.y16_c00365{bottom:727.865333pt;}
.y15_c00365{bottom:746.732000pt;}
.y13_c00365{bottom:764.000000pt;}
.y14_c00365{bottom:765.933333pt;}
.y12_c00365{bottom:785.065333pt;}
.y11_c00365{bottom:804.600000pt;}
.y10_c00365{bottom:822.865333pt;}
.yf_c00365{bottom:839.865333pt;}
.yc_c00365{bottom:858.398667pt;}
.yd_c00365{bottom:859.065333pt;}
.ye_c00365{bottom:862.600000pt;}
.ya_c00365{bottom:876.333333pt;}
.yb_c00365{bottom:881.398667pt;}
.y9_c00365{bottom:900.333333pt;}
.y5_c00365{bottom:913.398667pt;}
.y6_c00365{bottom:919.198667pt;}
.y8_c00365{bottom:920.466667pt;}
.y7_c00365{bottom:920.800000pt;}
.y4_c00365{bottom:937.800000pt;}
.y1_c00365{bottom:982.266667pt;}
.y3_c00365{bottom:988.000000pt;}
.y2_c00365{bottom:994.732000pt;}
.h7_c00365{height:48.375000pt;}
.h2_c00365{height:52.343750pt;}
.h3_c00365{height:53.750000pt;}
.h4_c00365{height:57.549479pt;}
.h1_c00365{height:62.812500pt;}
.h6_c00365{height:73.281250pt;}
.h5_c00365{height:78.515625pt;}
.h0_c00365{height:1044.000000pt;}
.w0_c00365{width:650.646400pt;}
.w1_c00365{width:650.666667pt;}
.x0_c00365{left:0.000000pt;}
.x16_c00365{left:45.102400pt;}
.x15_c00365{left:46.369067pt;}
.x13_c00365{left:47.635733pt;}
.x12_c00365{left:48.635733pt;}
.x11_c00365{left:49.902400pt;}
.xe_c00365{left:50.835733pt;}
.xb_c00365{left:55.369067pt;}
.x5_c00365{left:59.835733pt;}
.x4_c00365{left:61.435733pt;}
.x14_c00365{left:63.969067pt;}
.xc_c00365{left:65.235733pt;}
.x1_c00365{left:73.569067pt;}
.xf_c00365{left:80.302400pt;}
.x10_c00365{left:92.435733pt;}
.xa_c00365{left:94.702400pt;}
.x2_c00365{left:98.835733pt;}
.xd_c00365{left:120.635733pt;}
.x6_c00365{left:134.369067pt;}
.x3_c00365{left:256.969067pt;}
.x1a_c00365{left:301.769067pt;}
.x17_c00365{left:321.235733pt;}
.x18_c00365{left:355.502400pt;}
.x19_c00365{left:379.502400pt;}
.x7_c00365{left:409.235733pt;}
.x8_c00365{left:431.035733pt;}
.x9_c00365{left:606.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ecd7a1259549f752fce69ad.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00366;src:url('chunks/assets/font_9be977717477a9bc528ee955.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00366;src:url('chunks/assets/font_99ff323499d27291ef64469f.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00366{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m3_c00366{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m0_c00366{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c00366{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00366{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00366{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c00366{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00366{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00366{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00366{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00366{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00366{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00366{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00366{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00366{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10_c00366{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1_c00366{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls0_c00366{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00366{color:transparent;}
.fs0_c00366{font-size:60.000000px;}
.fs1_c00366{font-size:72.000000px;}
.fs2_c00366{font-size:150.000000px;}
.y0_c00366{bottom:0.000000px;}
.y28_c00366{bottom:77.250000px;}
.y27_c00366{bottom:97.423500px;}
.y26_c00366{bottom:118.573500px;}
.y25_c00366{bottom:138.750000px;}
.y24_c00366{bottom:159.598500px;}
.y23_c00366{bottom:179.473500px;}
.y22_c00366{bottom:199.648500px;}
.y21_c00366{bottom:219.448500px;}
.y20_c00366{bottom:239.923500px;}
.y1f_c00366{bottom:260.473500px;}
.y1e_c00366{bottom:281.698500px;}
.y1d_c00366{bottom:302.250000px;}
.y1c_c00366{bottom:322.723500px;}
.y1b_c00366{bottom:343.650000px;}
.y1a_c00366{bottom:364.500000px;}
.y19_c00366{bottom:385.348500px;}
.y18_c00366{bottom:406.275000px;}
.y17_c00366{bottom:427.125000px;}
.y16_c00366{bottom:448.048500px;}
.y15_c00366{bottom:469.273500px;}
.y14_c00366{bottom:490.875000px;}
.y13_c00366{bottom:511.798500px;}
.y12_c00366{bottom:533.323500px;}
.y11_c00366{bottom:553.875000px;}
.y10_c00366{bottom:575.473500px;}
.yf_c00366{bottom:596.698500px;}
.ye_c00366{bottom:617.923500px;}
.yd_c00366{bottom:639.223500px;}
.yc_c00366{bottom:660.448500px;}
.yb_c00366{bottom:681.598500px;}
.ya_c00366{bottom:703.273500px;}
.y9_c00366{bottom:724.500000px;}
.y8_c00366{bottom:745.348500px;}
.y7_c00366{bottom:766.648500px;}
.y6_c00366{bottom:844.723500px;}
.y4_c00366{bottom:852.675000px;}
.y5_c00366{bottom:864.900000px;}
.y3_c00366{bottom:1045.948500px;}
.y2_c00366{bottom:1050.300000px;}
.y1_c00366{bottom:1052.473500px;}
.h1_c00366{height:60.468750px;}
.h2_c00366{height:70.664062px;}
.h3_c00366{height:156.445312px;}
.h0_c00366{height:1174.500000px;}
.w0_c00366{width:731.977200px;}
.w1_c00366{width:732.000000px;}
.x0_c00366{left:0.000000px;}
.xa_c00366{left:71.590200px;}
.x9_c00366{left:72.715200px;}
.x8_c00366{left:74.140200px;}
.xb_c00366{left:75.563700px;}
.x4_c00366{left:76.688700px;}
.xc_c00366{left:78.115200px;}
.x7_c00366{left:106.165200px;}
.x1_c00366{left:290.140200px;}
.x5_c00366{left:434.890200px;}
.x2_c00366{left:485.290200px;}
.x6_c00366{left:570.940200px;}
.x3_c00366{left:645.490200px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls0_c00366{letter-spacing:0.000000pt;}
.ws0_c00366{word-spacing:0.000000pt;}
.fs0_c00366{font-size:53.333333pt;}
.fs1_c00366{font-size:64.000000pt;}
.fs2_c00366{font-size:133.333333pt;}
.y0_c00366{bottom:0.000000pt;}
.y28_c00366{bottom:68.666667pt;}
.y27_c00366{bottom:86.598667pt;}
.y26_c00366{bottom:105.398667pt;}
.y25_c00366{bottom:123.333333pt;}
.y24_c00366{bottom:141.865333pt;}
.y23_c00366{bottom:159.532000pt;}
.y22_c00366{bottom:177.465333pt;}
.y21_c00366{bottom:195.065333pt;}
.y20_c00366{bottom:213.265333pt;}
.y1f_c00366{bottom:231.532000pt;}
.y1e_c00366{bottom:250.398667pt;}
.y1d_c00366{bottom:268.666667pt;}
.y1c_c00366{bottom:286.865333pt;}
.y1b_c00366{bottom:305.466667pt;}
.y1a_c00366{bottom:324.000000pt;}
.y19_c00366{bottom:342.532000pt;}
.y18_c00366{bottom:361.133333pt;}
.y17_c00366{bottom:379.666667pt;}
.y16_c00366{bottom:398.265333pt;}
.y15_c00366{bottom:417.132000pt;}
.y14_c00366{bottom:436.333333pt;}
.y13_c00366{bottom:454.932000pt;}
.y12_c00366{bottom:474.065333pt;}
.y11_c00366{bottom:492.333333pt;}
.y10_c00366{bottom:511.532000pt;}
.yf_c00366{bottom:530.398667pt;}
.ye_c00366{bottom:549.265333pt;}
.yd_c00366{bottom:568.198667pt;}
.yc_c00366{bottom:587.065333pt;}
.yb_c00366{bottom:605.865333pt;}
.ya_c00366{bottom:625.132000pt;}
.y9_c00366{bottom:644.000000pt;}
.y8_c00366{bottom:662.532000pt;}
.y7_c00366{bottom:681.465333pt;}
.y6_c00366{bottom:750.865333pt;}
.y4_c00366{bottom:757.933333pt;}
.y5_c00366{bottom:768.800000pt;}
.y3_c00366{bottom:929.732000pt;}
.y2_c00366{bottom:933.600000pt;}
.y1_c00366{bottom:935.532000pt;}
.h1_c00366{height:53.750000pt;}
.h2_c00366{height:62.812500pt;}
.h3_c00366{height:139.062500pt;}
.h0_c00366{height:1044.000000pt;}
.w0_c00366{width:650.646400pt;}
.w1_c00366{width:650.666667pt;}
.x0_c00366{left:0.000000pt;}
.xa_c00366{left:63.635733pt;}
.x9_c00366{left:64.635733pt;}
.x8_c00366{left:65.902400pt;}
.xb_c00366{left:67.167733pt;}
.x4_c00366{left:68.167733pt;}
.xc_c00366{left:69.435733pt;}
.x7_c00366{left:94.369067pt;}
.x1_c00366{left:257.902400pt;}
.x5_c00366{left:386.569067pt;}
.x2_c00366{left:431.369067pt;}
.x6_c00366{left:507.502400pt;}
.x3_c00366{left:573.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_617064f235aeb5be8a797257.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00367{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c00367{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00367{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m0_c00367{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00367{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00367{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00367{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00367{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00367{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00367{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00367{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c00367{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00367{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00367{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00367{word-spacing:0.000000px;}
.fc0_c00367{color:transparent;}
.fs0_c00367{font-size:60.000000px;}
.fs1_c00367{font-size:72.000000px;}
.y0_c00367{bottom:0.000000px;}
.y1d_c00367{bottom:505.573500px;}
.y1c_c00367{bottom:524.398500px;}
.y1b_c00367{bottom:546.298500px;}
.y1a_c00367{bottom:568.198500px;}
.y19_c00367{bottom:590.250000px;}
.y18_c00367{bottom:612.523500px;}
.y17_c00367{bottom:634.500000px;}
.y16_c00367{bottom:656.473500px;}
.y15_c00367{bottom:678.750000px;}
.y14_c00367{bottom:700.723500px;}
.y13_c00367{bottom:722.325000px;}
.y12_c00367{bottom:743.923500px;}
.y11_c00367{bottom:765.898500px;}
.y10_c00367{bottom:787.875000px;}
.yf_c00367{bottom:809.473500px;}
.ye_c00367{bottom:831.073500px;}
.yd_c00367{bottom:851.925000px;}
.yc_c00367{bottom:873.525000px;}
.yb_c00367{bottom:895.500000px;}
.ya_c00367{bottom:917.473500px;}
.y9_c00367{bottom:939.073500px;}
.y8_c00367{bottom:960.973500px;}
.y7_c00367{bottom:982.275000px;}
.y6_c00367{bottom:1003.875000px;}
.y5_c00367{bottom:1025.473500px;}
.y4_c00367{bottom:1046.323500px;}
.y1_c00367{bottom:1095.300000px;}
.y3_c00367{bottom:1104.675000px;}
.y2_c00367{bottom:1110.448500px;}
.h1_c00367{height:58.886719px;}
.h2_c00367{height:70.664062px;}
.h0_c00367{height:1174.500000px;}
.w0_c00367{width:731.977200px;}
.w1_c00367{width:732.000000px;}
.x0_c00367{left:0.000000px;}
.xe_c00367{left:41.740200px;}
.xd_c00367{left:42.790200px;}
.xb_c00367{left:44.590200px;}
.xa_c00367{left:46.090200px;}
.x9_c00367{left:47.890200px;}
.x8_c00367{left:48.940200px;}
.x7_c00367{left:49.990200px;}
.x6_c00367{left:51.115200px;}
.x5_c00367{left:52.165200px;}
.x4_c00367{left:53.965200px;}
.x1_c00367{left:74.140200px;}
.xc_c00367{left:76.688700px;}
.x2_c00367{left:101.515200px;}
.x3_c00367{left:278.590200px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ws0_c00367{word-spacing:0.000000pt;}
.fs0_c00367{font-size:53.333333pt;}
.fs1_c00367{font-size:64.000000pt;}
.y0_c00367{bottom:0.000000pt;}
.y1d_c00367{bottom:449.398667pt;}
.y1c_c00367{bottom:466.132000pt;}
.y1b_c00367{bottom:485.598667pt;}
.y1a_c00367{bottom:505.065333pt;}
.y19_c00367{bottom:524.666667pt;}
.y18_c00367{bottom:544.465333pt;}
.y17_c00367{bottom:564.000000pt;}
.y16_c00367{bottom:583.532000pt;}
.y15_c00367{bottom:603.333333pt;}
.y14_c00367{bottom:622.865333pt;}
.y13_c00367{bottom:642.066667pt;}
.y12_c00367{bottom:661.265333pt;}
.y11_c00367{bottom:680.798667pt;}
.y10_c00367{bottom:700.333333pt;}
.yf_c00367{bottom:719.532000pt;}
.ye_c00367{bottom:738.732000pt;}
.yd_c00367{bottom:757.266667pt;}
.yc_c00367{bottom:776.466667pt;}
.yb_c00367{bottom:796.000000pt;}
.ya_c00367{bottom:815.532000pt;}
.y9_c00367{bottom:834.732000pt;}
.y8_c00367{bottom:854.198667pt;}
.y7_c00367{bottom:873.133333pt;}
.y6_c00367{bottom:892.333333pt;}
.y5_c00367{bottom:911.532000pt;}
.y4_c00367{bottom:930.065333pt;}
.y1_c00367{bottom:973.600000pt;}
.y3_c00367{bottom:981.933333pt;}
.y2_c00367{bottom:987.065333pt;}
.h1_c00367{height:52.343750pt;}
.h2_c00367{height:62.812500pt;}
.h0_c00367{height:1044.000000pt;}
.w0_c00367{width:650.646400pt;}
.w1_c00367{width:650.666667pt;}
.x0_c00367{left:0.000000pt;}
.xe_c00367{left:37.102400pt;}
.xd_c00367{left:38.035733pt;}
.xb_c00367{left:39.635733pt;}
.xa_c00367{left:40.969067pt;}
.x9_c00367{left:42.569067pt;}
.x8_c00367{left:43.502400pt;}
.x7_c00367{left:44.435733pt;}
.x6_c00367{left:45.435733pt;}
.x5_c00367{left:46.369067pt;}
.x4_c00367{left:47.969067pt;}
.x1_c00367{left:65.902400pt;}
.xc_c00367{left:68.167733pt;}
.x2_c00367{left:90.235733pt;}
.x3_c00367{left:247.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_64a466bd0cc268dce7b6fbd4.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00368;src:url('chunks/assets/font_429d5750a35a6503be542753.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00368;src:url('chunks/assets/font_86e59496890cbe365a2fc37d.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00368;src:url('chunks/assets/font_352b83fb9fcf6f1731b47d7c.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00368{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m4_c00368{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc_c00368{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m2_c00368{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m18_c00368{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00368{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00368{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00368{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00368{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m21_c00368{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c00368{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m22_c00368{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00368{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m19_c00368{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c00368{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c00368{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00368{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00368{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c00368{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c00368{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00368{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m20_c00368{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c00368{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00368{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00368{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00368{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m17_c00368{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00368{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00368{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00368{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m15_c00368{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m13_c00368{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf_c00368{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m9_c00368{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c00368{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls0_c00368{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00368{word-spacing:0.000000px;}
._0_c00368{margin-left:-117.209109px;}
.fc0_c00368{color:transparent;}
.fs0_c00368{font-size:60.000000px;}
.fs4_c00368{font-size:66.000000px;}
.fs1_c00368{font-size:72.000000px;}
.fs5_c00368{font-size:90.000000px;}
.fs3_c00368{font-size:180.000000px;}
.fs2_c00368{font-size:198.000000px;}
.y0_c00368{bottom:0.000000px;}
.y48_c00368{bottom:74.323500px;}
.y49_c00368{bottom:75.073500px;}
.y4a_c00368{bottom:75.750000px;}
.y4b_c00368{bottom:77.923500px;}
.y47_c00368{bottom:97.048500px;}
.y44_c00368{bottom:115.723500px;}
.y45_c00368{bottom:115.798500px;}
.y46_c00368{bottom:119.323500px;}
.y41_c00368{bottom:135.523500px;}
.y40_c00368{bottom:135.898500px;}
.y3f_c00368{bottom:136.273500px;}
.y42_c00368{bottom:138.073500px;}
.y43_c00368{bottom:141.000000px;}
.y3e_c00368{bottom:158.548500px;}
.y39_c00368{bottom:176.625000px;}
.y38_c00368{bottom:176.923500px;}
.y3a_c00368{bottom:177.298500px;}
.y3b_c00368{bottom:178.348500px;}
.y3c_c00368{bottom:179.848500px;}
.y3d_c00368{bottom:182.323500px;}
.y37_c00368{bottom:197.773500px;}
.y36_c00368{bottom:219.073500px;}
.y34_c00368{bottom:239.250000px;}
.y35_c00368{bottom:240.298500px;}
.y33_c00368{bottom:260.473500px;}
.y31_c00368{bottom:280.275000px;}
.y30_c00368{bottom:281.323500px;}
.y32_c00368{bottom:281.698500px;}
.y2c_c00368{bottom:300.823500px;}
.y2b_c00368{bottom:301.500000px;}
.y2d_c00368{bottom:301.875000px;}
.y2e_c00368{bottom:303.298500px;}
.y2f_c00368{bottom:303.673500px;}
.y29_c00368{bottom:322.423500px;}
.y2a_c00368{bottom:324.150000px;}
.y27_c00368{bottom:343.275000px;}
.y28_c00368{bottom:345.073500px;}
.y24_c00368{bottom:363.448500px;}
.y23_c00368{bottom:363.823500px;}
.y25_c00368{bottom:364.125000px;}
.y26_c00368{bottom:365.250000px;}
.y22_c00368{bottom:384.673500px;}
.y1f_c00368{bottom:405.525000px;}
.y20_c00368{bottom:405.900000px;}
.y21_c00368{bottom:406.275000px;}
.y1d_c00368{bottom:426.750000px;}
.y1e_c00368{bottom:426.823500px;}
.y1b_c00368{bottom:447.673500px;}
.y1c_c00368{bottom:448.048500px;}
.y1a_c00368{bottom:469.273500px;}
.y19_c00368{bottom:490.500000px;}
.y18_c00368{bottom:512.473500px;}
.y17_c00368{bottom:533.023500px;}
.y16_c00368{bottom:554.250000px;}
.y15_c00368{bottom:576.898500px;}
.y14_c00368{bottom:596.698500px;}
.y13_c00368{bottom:617.173500px;}
.y12_c00368{bottom:618.673500px;}
.y11_c00368{bottom:619.348500px;}
.y10_c00368{bottom:636.973500px;}
.yf_c00368{bottom:639.223500px;}
.ye_c00368{bottom:640.573500px;}
.yd_c00368{bottom:640.948500px;}
.yc_c00368{bottom:685.273500px;}
.yb_c00368{bottom:700.348500px;}
.ya_c00368{bottom:702.898500px;}
.y9_c00368{bottom:703.573500px;}
.y8_c00368{bottom:718.423500px;}
.y7_c00368{bottom:735.298500px;}
.y6_c00368{bottom:752.625000px;}
.y5_c00368{bottom:847.275000px;}
.y4_c00368{bottom:851.250000px;}
.y3_c00368{bottom:1055.323500px;}
.y2_c00368{bottom:1058.625000px;}
.y1_c00368{bottom:1060.050000px;}
.h1_c00368{height:58.886719px;}
.h5_c00368{height:64.775391px;}
.h6_c00368{height:66.515625px;}
.h8_c00368{height:70.628906px;}
.h2_c00368{height:70.664062px;}
.h7_c00368{height:90.703125px;}
.h4_c00368{height:176.660156px;}
.h3_c00368{height:194.326172px;}
.h0_c00368{height:1174.500000px;}
.w0_c00368{width:731.977200px;}
.w1_c00368{width:732.000000px;}
.x0_c00368{left:0.000000px;}
.x12_c00368{left:76.990200px;}
.xf_c00368{left:78.490200px;}
.x6_c00368{left:80.290200px;}
.x4_c00368{left:83.890200px;}
.x8_c00368{left:96.490200px;}
.x7_c00368{left:98.290200px;}
.x19_c00368{left:109.390200px;}
.xb_c00368{left:110.515200px;}
.x30_c00368{left:112.690200px;}
.x27_c00368{left:138.565200px;}
.x1a_c00368{left:143.290200px;}
.x2c_c00368{left:174.565200px;}
.x1b_c00368{left:189.715200px;}
.x2d_c00368{left:191.888700px;}
.x31_c00368{left:194.365200px;}
.x28_c00368{left:205.540200px;}
.xc_c00368{left:214.165200px;}
.x33_c00368{left:224.590200px;}
.xd_c00368{left:229.315200px;}
.x9_c00368{left:245.515200px;}
.x10_c00368{left:251.965200px;}
.x21_c00368{left:257.740200px;}
.x25_c00368{left:263.890200px;}
.xa_c00368{left:270.715200px;}
.x2e_c00368{left:281.140200px;}
.x26_c00368{left:287.290200px;}
.x29_c00368{left:294.490200px;}
.x1_c00368{left:299.140200px;}
.x32_c00368{left:308.140200px;}
.x11_c00368{left:309.190200px;}
.x34_c00368{left:317.515200px;}
.x22_c00368{left:347.365200px;}
.x2a_c00368{left:359.965200px;}
.x5_c00368{left:362.515200px;}
.x2f_c00368{left:445.690200px;}
.x20_c00368{left:491.365200px;}
.x2_c00368{left:492.490200px;}
.x13_c00368{left:521.590200px;}
.xe_c00368{left:524.890200px;}
.x1e_c00368{left:539.965200px;}
.x23_c00368{left:542.140200px;}
.x15_c00368{left:547.915200px;}
.x17_c00368{left:557.965200px;}
.x16_c00368{left:571.315200px;}
.x14_c00368{left:592.540200px;}
.x24_c00368{left:610.540200px;}
.x1c_c00368{left:632.140200px;}
.x3_c00368{left:654.115200px;}
.x2b_c00368{left:658.090200px;}
.x1f_c00368{left:660.190200px;}
.x1d_c00368{left:668.890200px;}
.x18_c00368{left:670.690200px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls0_c00368{letter-spacing:0.000000pt;}
.ws0_c00368{word-spacing:0.000000pt;}
._0_c00368{margin-left:-104.185875pt;}
.fs0_c00368{font-size:53.333333pt;}
.fs4_c00368{font-size:58.666667pt;}
.fs1_c00368{font-size:64.000000pt;}
.fs5_c00368{font-size:80.000000pt;}
.fs3_c00368{font-size:160.000000pt;}
.fs2_c00368{font-size:176.000000pt;}
.y0_c00368{bottom:0.000000pt;}
.y48_c00368{bottom:66.065333pt;}
.y49_c00368{bottom:66.732000pt;}
.y4a_c00368{bottom:67.333333pt;}
.y4b_c00368{bottom:69.265333pt;}
.y47_c00368{bottom:86.265333pt;}
.y44_c00368{bottom:102.865333pt;}
.y45_c00368{bottom:102.932000pt;}
.y46_c00368{bottom:106.065333pt;}
.y41_c00368{bottom:120.465333pt;}
.y40_c00368{bottom:120.798667pt;}
.y3f_c00368{bottom:121.132000pt;}
.y42_c00368{bottom:122.732000pt;}
.y43_c00368{bottom:125.333333pt;}
.y3e_c00368{bottom:140.932000pt;}
.y39_c00368{bottom:157.000000pt;}
.y38_c00368{bottom:157.265333pt;}
.y3a_c00368{bottom:157.598667pt;}
.y3b_c00368{bottom:158.532000pt;}
.y3c_c00368{bottom:159.865333pt;}
.y3d_c00368{bottom:162.065333pt;}
.y37_c00368{bottom:175.798667pt;}
.y36_c00368{bottom:194.732000pt;}
.y34_c00368{bottom:212.666667pt;}
.y35_c00368{bottom:213.598667pt;}
.y33_c00368{bottom:231.532000pt;}
.y31_c00368{bottom:249.133333pt;}
.y30_c00368{bottom:250.065333pt;}
.y32_c00368{bottom:250.398667pt;}
.y2c_c00368{bottom:267.398667pt;}
.y2b_c00368{bottom:268.000000pt;}
.y2d_c00368{bottom:268.333333pt;}
.y2e_c00368{bottom:269.598667pt;}
.y2f_c00368{bottom:269.932000pt;}
.y29_c00368{bottom:286.598667pt;}
.y2a_c00368{bottom:288.133333pt;}
.y27_c00368{bottom:305.133333pt;}
.y28_c00368{bottom:306.732000pt;}
.y24_c00368{bottom:323.065333pt;}
.y23_c00368{bottom:323.398667pt;}
.y25_c00368{bottom:323.666667pt;}
.y26_c00368{bottom:324.666667pt;}
.y22_c00368{bottom:341.932000pt;}
.y1f_c00368{bottom:360.466667pt;}
.y20_c00368{bottom:360.800000pt;}
.y21_c00368{bottom:361.133333pt;}
.y1d_c00368{bottom:379.333333pt;}
.y1e_c00368{bottom:379.398667pt;}
.y1b_c00368{bottom:397.932000pt;}
.y1c_c00368{bottom:398.265333pt;}
.y1a_c00368{bottom:417.132000pt;}
.y19_c00368{bottom:436.000000pt;}
.y18_c00368{bottom:455.532000pt;}
.y17_c00368{bottom:473.798667pt;}
.y16_c00368{bottom:492.666667pt;}
.y15_c00368{bottom:512.798667pt;}
.y14_c00368{bottom:530.398667pt;}
.y13_c00368{bottom:548.598667pt;}
.y12_c00368{bottom:549.932000pt;}
.y11_c00368{bottom:550.532000pt;}
.y10_c00368{bottom:566.198667pt;}
.yf_c00368{bottom:568.198667pt;}
.ye_c00368{bottom:569.398667pt;}
.yd_c00368{bottom:569.732000pt;}
.yc_c00368{bottom:609.132000pt;}
.yb_c00368{bottom:622.532000pt;}
.ya_c00368{bottom:624.798667pt;}
.y9_c00368{bottom:625.398667pt;}
.y8_c00368{bottom:638.598667pt;}
.y7_c00368{bottom:653.598667pt;}
.y6_c00368{bottom:669.000000pt;}
.y5_c00368{bottom:753.133333pt;}
.y4_c00368{bottom:756.666667pt;}
.y3_c00368{bottom:938.065333pt;}
.y2_c00368{bottom:941.000000pt;}
.y1_c00368{bottom:942.266667pt;}
.h1_c00368{height:52.343750pt;}
.h5_c00368{height:57.578125pt;}
.h6_c00368{height:59.125000pt;}
.h8_c00368{height:62.781250pt;}
.h2_c00368{height:62.812500pt;}
.h7_c00368{height:80.625000pt;}
.h4_c00368{height:157.031250pt;}
.h3_c00368{height:172.734375pt;}
.h0_c00368{height:1044.000000pt;}
.w0_c00368{width:650.646400pt;}
.w1_c00368{width:650.666667pt;}
.x0_c00368{left:0.000000pt;}
.x12_c00368{left:68.435733pt;}
.xf_c00368{left:69.769067pt;}
.x6_c00368{left:71.369067pt;}
.x4_c00368{left:74.569067pt;}
.x8_c00368{left:85.769067pt;}
.x7_c00368{left:87.369067pt;}
.x19_c00368{left:97.235733pt;}
.xb_c00368{left:98.235733pt;}
.x30_c00368{left:100.169067pt;}
.x27_c00368{left:123.169067pt;}
.x1a_c00368{left:127.369067pt;}
.x2c_c00368{left:155.169067pt;}
.x1b_c00368{left:168.635733pt;}
.x2d_c00368{left:170.567733pt;}
.x31_c00368{left:172.769067pt;}
.x28_c00368{left:182.702400pt;}
.xc_c00368{left:190.369067pt;}
.x33_c00368{left:199.635733pt;}
.xd_c00368{left:203.835733pt;}
.x9_c00368{left:218.235733pt;}
.x10_c00368{left:223.969067pt;}
.x21_c00368{left:229.102400pt;}
.x25_c00368{left:234.569067pt;}
.xa_c00368{left:240.635733pt;}
.x2e_c00368{left:249.902400pt;}
.x26_c00368{left:255.369067pt;}
.x29_c00368{left:261.769067pt;}
.x1_c00368{left:265.902400pt;}
.x32_c00368{left:273.902400pt;}
.x11_c00368{left:274.835733pt;}
.x34_c00368{left:282.235733pt;}
.x22_c00368{left:308.769067pt;}
.x2a_c00368{left:319.969067pt;}
.x5_c00368{left:322.235733pt;}
.x2f_c00368{left:396.169067pt;}
.x20_c00368{left:436.769067pt;}
.x2_c00368{left:437.769067pt;}
.x13_c00368{left:463.635733pt;}
.xe_c00368{left:466.569067pt;}
.x1e_c00368{left:479.969067pt;}
.x23_c00368{left:481.902400pt;}
.x15_c00368{left:487.035733pt;}
.x17_c00368{left:495.969067pt;}
.x16_c00368{left:507.835733pt;}
.x14_c00368{left:526.702400pt;}
.x24_c00368{left:542.702400pt;}
.x1c_c00368{left:561.902400pt;}
.x3_c00368{left:581.435733pt;}
.x2b_c00368{left:584.969067pt;}
.x1f_c00368{left:586.835733pt;}
.x1d_c00368{left:594.569067pt;}
.x18_c00368{left:596.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ca118b65c04df6313850c363.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00369;src:url('chunks/assets/font_26d0888a12bba16c060de0ec.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00369;src:url('chunks/assets/font_df1cbe1a1f44b3c8e87de621.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m25_c00369{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m21_c00369{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m26_c00369{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m19_c00369{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m20_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);}
.m13_c00369{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m18_c00369{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m15_c00369{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me_c00369{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00369{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00369{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c00369{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m22_c00369{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00369{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00369{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00369{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m24_c00369{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m28_c00369{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00369{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00369{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00369{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00369{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00369{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00369{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00369{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00369{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00369{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00369{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00369{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m17_c00369{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00369{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00369{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00369{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c00369{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mf_c00369{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m14_c00369{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m23_c00369{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m27_c00369{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m16_c00369{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m10_c00369{transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);}
.m1_c00369{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00369{color:transparent;}
.fs1_c00369{font-size:60.000000px;}
.fs0_c00369{font-size:66.000000px;}
.fs2_c00369{font-size:72.000000px;}
.fs3_c00369{font-size:78.000000px;}
.fs4_c00369{font-size:96.000000px;}
.y0_c00369{bottom:0.000000px;}
.y4f_c00369{bottom:94.798500px;}
.y50_c00369{bottom:95.173500px;}
.y51_c00369{bottom:96.298500px;}
.y4e_c00369{bottom:98.098500px;}
.y4d_c00369{bottom:100.648500px;}
.y4c_c00369{bottom:105.298500px;}
.y4b_c00369{bottom:112.875000px;}
.y4a_c00369{bottom:117.148500px;}
.y49_c00369{bottom:130.875000px;}
.y48_c00369{bottom:133.048500px;}
.y47_c00369{bottom:133.348500px;}
.y46_c00369{bottom:136.273500px;}
.y45_c00369{bottom:139.875000px;}
.y44_c00369{bottom:140.625000px;}
.y43_c00369{bottom:142.423500px;}
.y42_c00369{bottom:161.473500px;}
.y41_c00369{bottom:165.073500px;}
.y40_c00369{bottom:167.923500px;}
.y3f_c00369{bottom:211.875000px;}
.y3c_c00369{bottom:222.298500px;}
.y3d_c00369{bottom:223.048500px;}
.y3e_c00369{bottom:223.348500px;}
.y3b_c00369{bottom:224.098500px;}
.y3a_c00369{bottom:226.273500px;}
.y39_c00369{bottom:228.448500px;}
.y38_c00369{bottom:230.923500px;}
.y35_c00369{bottom:240.298500px;}
.y36_c00369{bottom:240.673500px;}
.y37_c00369{bottom:241.048500px;}
.y34_c00369{bottom:245.023500px;}
.y33_c00369{bottom:257.923500px;}
.y32_c00369{bottom:261.223500px;}
.y31_c00369{bottom:265.875000px;}
.y30_c00369{bottom:280.275000px;}
.y2f_c00369{bottom:283.125000px;}
.y2e_c00369{bottom:345.073500px;}
.y2d_c00369{bottom:363.000000px;}
.y2c_c00369{bottom:384.973500px;}
.y2b_c00369{bottom:407.323500px;}
.y2a_c00369{bottom:429.298500px;}
.y29_c00369{bottom:450.898500px;}
.y28_c00369{bottom:452.323500px;}
.y27_c00369{bottom:473.923500px;}
.y26_c00369{bottom:475.348500px;}
.y25_c00369{bottom:495.148500px;}
.y24_c00369{bottom:517.125000px;}
.y23_c00369{bottom:538.723500px;}
.y22_c00369{bottom:560.323500px;}
.y20_c00369{bottom:581.548500px;}
.y21_c00369{bottom:581.923500px;}
.y1f_c00369{bottom:582.000000px;}
.y1e_c00369{bottom:582.298500px;}
.y1d_c00369{bottom:582.973500px;}
.y1c_c00369{bottom:604.573500px;}
.y1b_c00369{bottom:626.250000px;}
.y1a_c00369{bottom:648.148500px;}
.y19_c00369{bottom:670.500000px;}
.y18_c00369{bottom:692.098500px;}
.y17_c00369{bottom:714.075000px;}
.y16_c00369{bottom:735.973500px;}
.y13_c00369{bottom:756.523500px;}
.y14_c00369{bottom:757.648500px;}
.y15_c00369{bottom:758.325000px;}
.y12_c00369{bottom:779.925000px;}
.y11_c00369{bottom:801.525000px;}
.y10_c00369{bottom:823.125000px;}
.yf_c00369{bottom:844.723500px;}
.ye_c00369{bottom:866.025000px;}
.yd_c00369{bottom:887.250000px;}
.yc_c00369{bottom:908.848500px;}
.yb_c00369{bottom:931.500000px;}
.ya_c00369{bottom:953.400000px;}
.y9_c00369{bottom:975.073500px;}
.y8_c00369{bottom:996.300000px;}
.y7_c00369{bottom:1017.525000px;}
.y6_c00369{bottom:1038.750000px;}
.y5_c00369{bottom:1059.675000px;}
.y1_c00369{bottom:1107.900000px;}
.y3_c00369{bottom:1116.525000px;}
.y4_c00369{bottom:1117.573500px;}
.y2_c00369{bottom:1122.675000px;}
.h3_c00369{height:58.886719px;}
.h2_c00369{height:60.468750px;}
.h7_c00369{height:64.743164px;}
.h1_c00369{height:64.775391px;}
.h4_c00369{height:70.664062px;}
.h9_c00369{height:72.562500px;}
.h5_c00369{height:76.514648px;}
.h6_c00369{height:78.609375px;}
.h8_c00369{height:96.750000px;}
.h0_c00369{height:1174.500000px;}
.w0_c00369{width:731.977200px;}
.w1_c00369{width:732.000000px;}
.x0_c00369{left:0.000000px;}
.xa_c00369{left:29.515200px;}
.x9_c00369{left:30.565200px;}
.x8_c00369{left:32.365200px;}
.x7_c00369{left:33.790200px;}
.x6_c00369{left:34.915200px;}
.x5_c00369{left:37.090200px;}
.x18_c00369{left:48.940200px;}
.x24_c00369{left:50.365200px;}
.x12_c00369{left:54.715200px;}
.x1_c00369{left:57.940200px;}
.xd_c00369{left:61.540200px;}
.x13_c00369{left:62.965200px;}
.x1e_c00369{left:80.290200px;}
.x2_c00369{left:84.938700px;}
.x19_c00369{left:87.115200px;}
.x25_c00369{left:117.715200px;}
.x26_c00369{left:128.515200px;}
.xb_c00369{left:197.965200px;}
.x2b_c00369{left:229.690200px;}
.x1f_c00369{left:250.540200px;}
.x3_c00369{left:260.965200px;}
.x27_c00369{left:275.365200px;}
.x20_c00369{left:303.790200px;}
.x28_c00369{left:309.565200px;}
.x29_c00369{left:315.340200px;}
.xc_c00369{left:329.740200px;}
.x4_c00369{left:350.965200px;}
.x1b_c00369{left:394.913700px;}
.x14_c00369{left:399.565200px;}
.xe_c00369{left:415.090200px;}
.x15_c00369{left:421.913700px;}
.xf_c00369{left:436.315200px;}
.x16_c00369{left:452.890200px;}
.x17_c00369{left:463.315200px;}
.x21_c00369{left:473.365200px;}
.x2a_c00369{left:498.565200px;}
.x10_c00369{left:503.965200px;}
.x1a_c00369{left:505.090200px;}
.x11_c00369{left:518.365200px;}
.x22_c00369{left:576.340200px;}
.x1c_c00369{left:591.115200px;}
.x23_c00369{left:593.290200px;}
.x2c_c00369{left:611.290200px;}
.x1d_c00369{left:612.715200px;}
.x2d_c00369{left:635.740200px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls0_c00369{letter-spacing:0.000000pt;}
.ws0_c00369{word-spacing:0.000000pt;}
.fs1_c00369{font-size:53.333333pt;}
.fs0_c00369{font-size:58.666667pt;}
.fs2_c00369{font-size:64.000000pt;}
.fs3_c00369{font-size:69.333333pt;}
.fs4_c00369{font-size:85.333333pt;}
.y0_c00369{bottom:0.000000pt;}
.y4f_c00369{bottom:84.265333pt;}
.y50_c00369{bottom:84.598667pt;}
.y51_c00369{bottom:85.598667pt;}
.y4e_c00369{bottom:87.198667pt;}
.y4d_c00369{bottom:89.465333pt;}
.y4c_c00369{bottom:93.598667pt;}
.y4b_c00369{bottom:100.333333pt;}
.y4a_c00369{bottom:104.132000pt;}
.y49_c00369{bottom:116.333333pt;}
.y48_c00369{bottom:118.265333pt;}
.y47_c00369{bottom:118.532000pt;}
.y46_c00369{bottom:121.132000pt;}
.y45_c00369{bottom:124.333333pt;}
.y44_c00369{bottom:125.000000pt;}
.y43_c00369{bottom:126.598667pt;}
.y42_c00369{bottom:143.532000pt;}
.y41_c00369{bottom:146.732000pt;}
.y40_c00369{bottom:149.265333pt;}
.y3f_c00369{bottom:188.333333pt;}
.y3c_c00369{bottom:197.598667pt;}
.y3d_c00369{bottom:198.265333pt;}
.y3e_c00369{bottom:198.532000pt;}
.y3b_c00369{bottom:199.198667pt;}
.y3a_c00369{bottom:201.132000pt;}
.y39_c00369{bottom:203.065333pt;}
.y38_c00369{bottom:205.265333pt;}
.y35_c00369{bottom:213.598667pt;}
.y36_c00369{bottom:213.932000pt;}
.y37_c00369{bottom:214.265333pt;}
.y34_c00369{bottom:217.798667pt;}
.y33_c00369{bottom:229.265333pt;}
.y32_c00369{bottom:232.198667pt;}
.y31_c00369{bottom:236.333333pt;}
.y30_c00369{bottom:249.133333pt;}
.y2f_c00369{bottom:251.666667pt;}
.y2e_c00369{bottom:306.732000pt;}
.y2d_c00369{bottom:322.666667pt;}
.y2c_c00369{bottom:342.198667pt;}
.y2b_c00369{bottom:362.065333pt;}
.y2a_c00369{bottom:381.598667pt;}
.y29_c00369{bottom:400.798667pt;}
.y28_c00369{bottom:402.065333pt;}
.y27_c00369{bottom:421.265333pt;}
.y26_c00369{bottom:422.532000pt;}
.y25_c00369{bottom:440.132000pt;}
.y24_c00369{bottom:459.666667pt;}
.y23_c00369{bottom:478.865333pt;}
.y22_c00369{bottom:498.065333pt;}
.y20_c00369{bottom:516.932000pt;}
.y21_c00369{bottom:517.265333pt;}
.y1f_c00369{bottom:517.333333pt;}
.y1e_c00369{bottom:517.598667pt;}
.y1d_c00369{bottom:518.198667pt;}
.y1c_c00369{bottom:537.398667pt;}
.y1b_c00369{bottom:556.666667pt;}
.y1a_c00369{bottom:576.132000pt;}
.y19_c00369{bottom:596.000000pt;}
.y18_c00369{bottom:615.198667pt;}
.y17_c00369{bottom:634.733333pt;}
.y16_c00369{bottom:654.198667pt;}
.y13_c00369{bottom:672.465333pt;}
.y14_c00369{bottom:673.465333pt;}
.y15_c00369{bottom:674.066667pt;}
.y12_c00369{bottom:693.266667pt;}
.y11_c00369{bottom:712.466667pt;}
.y10_c00369{bottom:731.666667pt;}
.yf_c00369{bottom:750.865333pt;}
.ye_c00369{bottom:769.800000pt;}
.yd_c00369{bottom:788.666667pt;}
.yc_c00369{bottom:807.865333pt;}
.yb_c00369{bottom:828.000000pt;}
.ya_c00369{bottom:847.466667pt;}
.y9_c00369{bottom:866.732000pt;}
.y8_c00369{bottom:885.600000pt;}
.y7_c00369{bottom:904.466667pt;}
.y6_c00369{bottom:923.333333pt;}
.y5_c00369{bottom:941.933333pt;}
.y1_c00369{bottom:984.800000pt;}
.y3_c00369{bottom:992.466667pt;}
.y4_c00369{bottom:993.398667pt;}
.y2_c00369{bottom:997.933333pt;}
.h3_c00369{height:52.343750pt;}
.h2_c00369{height:53.750000pt;}
.h7_c00369{height:57.549479pt;}
.h1_c00369{height:57.578125pt;}
.h4_c00369{height:62.812500pt;}
.h9_c00369{height:64.500000pt;}
.h5_c00369{height:68.013021pt;}
.h6_c00369{height:69.875000pt;}
.h8_c00369{height:86.000000pt;}
.h0_c00369{height:1044.000000pt;}
.w0_c00369{width:650.646400pt;}
.w1_c00369{width:650.666667pt;}
.x0_c00369{left:0.000000pt;}
.xa_c00369{left:26.235733pt;}
.x9_c00369{left:27.169067pt;}
.x8_c00369{left:28.769067pt;}
.x7_c00369{left:30.035733pt;}
.x6_c00369{left:31.035733pt;}
.x5_c00369{left:32.969067pt;}
.x18_c00369{left:43.502400pt;}
.x24_c00369{left:44.769067pt;}
.x12_c00369{left:48.635733pt;}
.x1_c00369{left:51.502400pt;}
.xd_c00369{left:54.702400pt;}
.x13_c00369{left:55.969067pt;}
.x1e_c00369{left:71.369067pt;}
.x2_c00369{left:75.501067pt;}
.x19_c00369{left:77.435733pt;}
.x25_c00369{left:104.635733pt;}
.x26_c00369{left:114.235733pt;}
.xb_c00369{left:175.969067pt;}
.x2b_c00369{left:204.169067pt;}
.x1f_c00369{left:222.702400pt;}
.x3_c00369{left:231.969067pt;}
.x27_c00369{left:244.769067pt;}
.x20_c00369{left:270.035733pt;}
.x28_c00369{left:275.169067pt;}
.x29_c00369{left:280.302400pt;}
.xc_c00369{left:293.102400pt;}
.x4_c00369{left:311.969067pt;}
.x1b_c00369{left:351.034400pt;}
.x14_c00369{left:355.169067pt;}
.xe_c00369{left:368.969067pt;}
.x15_c00369{left:375.034400pt;}
.xf_c00369{left:387.835733pt;}
.x16_c00369{left:402.569067pt;}
.x17_c00369{left:411.835733pt;}
.x21_c00369{left:420.769067pt;}
.x2a_c00369{left:443.169067pt;}
.x10_c00369{left:447.969067pt;}
.x1a_c00369{left:448.969067pt;}
.x11_c00369{left:460.769067pt;}
.x22_c00369{left:512.302400pt;}
.x1c_c00369{left:525.435733pt;}
.x23_c00369{left:527.369067pt;}
.x2c_c00369{left:543.369067pt;}
.x1d_c00369{left:544.635733pt;}
.x2d_c00369{left:565.102400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d1b3e96f2989b105f34f9d96.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00370;src:url('chunks/assets/font_cdfd15b812d2d29b88f12a08.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00370;src:url('chunks/assets/font_0b78e7120269912fdffaabf8.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00370;src:url('chunks/assets/font_cec5798ca88ec6a96e938582.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00370{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5_c00370{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00370{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c00370{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00370{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00370{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m23_c00370{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00370{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c00370{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m18_c00370{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c00370{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8_c00370{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00370{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00370{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00370{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c00370{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m13_c00370{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c00370{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00370{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00370{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c00370{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00370{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m21_c00370{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00370{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m22_c00370{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00370{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c00370{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m14_c00370{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00370{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7_c00370{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c00370{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m20_c00370{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00370{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m19_c00370{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00370{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1_c00370{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00370{word-spacing:0.000000px;}
.fc0_c00370{color:transparent;}
.fs0_c00370{font-size:48.000000px;}
.fs2_c00370{font-size:54.000000px;}
.fs4_c00370{font-size:60.000000px;}
.fs5_c00370{font-size:66.000000px;}
.fs1_c00370{font-size:72.000000px;}
.fs3_c00370{font-size:78.000000px;}
.y0_c00370{bottom:0.000000px;}
.y5f_c00370{bottom:83.698500px;}
.y5d_c00370{bottom:96.598500px;}
.y5e_c00370{bottom:100.573500px;}
.y5a_c00370{bottom:113.548500px;}
.y5b_c00370{bottom:118.573500px;}
.y5c_c00370{bottom:120.073500px;}
.y55_c00370{bottom:129.448500px;}
.y56_c00370{bottom:130.500000px;}
.y57_c00370{bottom:133.048500px;}
.y58_c00370{bottom:133.723500px;}
.y59_c00370{bottom:135.598500px;}
.y52_c00370{bottom:146.023500px;}
.y53_c00370{bottom:149.548500px;}
.y54_c00370{bottom:150.000000px;}
.y4f_c00370{bottom:163.648500px;}
.y50_c00370{bottom:167.548500px;}
.y51_c00370{bottom:169.348500px;}
.y4e_c00370{bottom:181.648500px;}
.y4d_c00370{bottom:197.473500px;}
.y4a_c00370{bottom:211.500000px;}
.y4b_c00370{bottom:212.923500px;}
.y4c_c00370{bottom:213.973500px;}
.y47_c00370{bottom:229.500000px;}
.y48_c00370{bottom:229.798500px;}
.y49_c00370{bottom:231.598500px;}
.y46_c00370{bottom:245.698500px;}
.y45_c00370{bottom:262.275000px;}
.y3f_c00370{bottom:278.098500px;}
.y40_c00370{bottom:278.400000px;}
.y41_c00370{bottom:278.473500px;}
.y42_c00370{bottom:279.150000px;}
.y43_c00370{bottom:279.223500px;}
.y44_c00370{bottom:281.025000px;}
.y3e_c00370{bottom:294.973500px;}
.y3d_c00370{bottom:312.298500px;}
.y39_c00370{bottom:328.198500px;}
.y3a_c00370{bottom:330.598500px;}
.y3b_c00370{bottom:331.348500px;}
.y3c_c00370{bottom:331.798500px;}
.y38_c00370{bottom:345.448500px;}
.y37_c00370{bottom:362.698500px;}
.y36_c00370{bottom:378.900000px;}
.y33_c00370{bottom:394.348500px;}
.y34_c00370{bottom:394.723500px;}
.y35_c00370{bottom:395.848500px;}
.y32_c00370{bottom:412.048500px;}
.y31_c00370{bottom:428.923500px;}
.y2f_c00370{bottom:445.500000px;}
.y30_c00370{bottom:446.250000px;}
.y2e_c00370{bottom:462.823500px;}
.y2d_c00370{bottom:479.698500px;}
.y2c_c00370{bottom:496.948500px;}
.y2b_c00370{bottom:513.898500px;}
.y2a_c00370{bottom:530.848500px;}
.y29_c00370{bottom:547.798500px;}
.y28_c00370{bottom:564.973500px;}
.y27_c00370{bottom:581.923500px;}
.y26_c00370{bottom:598.798500px;}
.y25_c00370{bottom:615.448500px;}
.y24_c00370{bottom:616.798500px;}
.y23_c00370{bottom:616.875000px;}
.y22_c00370{bottom:632.698500px;}
.y21_c00370{bottom:649.648500px;}
.y20_c00370{bottom:666.523500px;}
.y1f_c00370{bottom:683.473500px;}
.y1e_c00370{bottom:700.798500px;}
.y1d_c00370{bottom:717.298500px;}
.y1c_c00370{bottom:734.548500px;}
.y1b_c00370{bottom:751.500000px;}
.y1a_c00370{bottom:768.750000px;}
.y19_c00370{bottom:784.273500px;}
.y18_c00370{bottom:784.948500px;}
.y17_c00370{bottom:787.125000px;}
.y16_c00370{bottom:802.650000px;}
.y15_c00370{bottom:819.900000px;}
.y14_c00370{bottom:836.848500px;}
.y13_c00370{bottom:838.573500px;}
.y12_c00370{bottom:838.650000px;}
.y11_c00370{bottom:854.400000px;}
.y10_c00370{bottom:865.948500px;}
.yf_c00370{bottom:867.750000px;}
.ye_c00370{bottom:871.425000px;}
.yd_c00370{bottom:887.625000px;}
.yc_c00370{bottom:899.473500px;}
.yb_c00370{bottom:899.775000px;}
.ya_c00370{bottom:904.500000px;}
.y9_c00370{bottom:921.073500px;}
.y8_c00370{bottom:924.300000px;}
.y7_c00370{bottom:981.525000px;}
.y6_c00370{bottom:1000.650000px;}
.y5_c00370{bottom:1003.125000px;}
.y4_c00370{bottom:1005.675000px;}
.y3_c00370{bottom:1057.125000px;}
.y1_c00370{bottom:1062.525000px;}
.y2_c00370{bottom:1071.525000px;}
.h1_c00370{height:48.375000px;}
.h8_c00370{height:52.998047px;}
.h3_c00370{height:54.421875px;}
.h5_c00370{height:58.857422px;}
.h7_c00370{height:58.886719px;}
.h9_c00370{height:60.468750px;}
.h6_c00370{height:64.775391px;}
.h2_c00370{height:75.093750px;}
.h4_c00370{height:78.609375px;}
.h0_c00370{height:1174.500000px;}
.w0_c00370{width:731.977200px;}
.w1_c00370{width:732.000000px;}
.x0_c00370{left:0.000000px;}
.x33_c00370{left:64.765200px;}
.x1b_c00370{left:66.190200px;}
.x17_c00370{left:67.315200px;}
.x18_c00370{left:68.740200px;}
.x16_c00370{left:69.790200px;}
.x12_c00370{left:70.915200px;}
.x13_c00370{left:71.965200px;}
.xf_c00370{left:73.090200px;}
.x9_c00370{left:74.515200px;}
.x7_c00370{left:75.563700px;}
.x21_c00370{left:84.188700px;}
.x8_c00370{left:92.140200px;}
.xe_c00370{left:96.115200px;}
.x14_c00370{left:102.190200px;}
.x4_c00370{left:110.890200px;}
.x15_c00370{left:118.090200px;}
.x22_c00370{left:123.490200px;}
.x2f_c00370{left:160.165200px;}
.x1c_c00370{left:204.490200px;}
.x1d_c00370{left:220.315200px;}
.x29_c00370{left:253.390200px;}
.x2a_c00370{left:269.590200px;}
.x1_c00370{left:291.940200px;}
.x5_c00370{left:307.765200px;}
.x23_c00370{left:331.540200px;}
.x19_c00370{left:336.940200px;}
.x24_c00370{left:348.115200px;}
.x1a_c00370{left:352.390200px;}
.x2d_c00370{left:380.515200px;}
.x31_c00370{left:388.390200px;}
.x25_c00370{left:392.365200px;}
.x26_c00370{left:399.190200px;}
.x30_c00370{left:402.788700px;}
.x2e_c00370{left:407.890200px;}
.x10_c00370{left:411.115200px;}
.x11_c00370{left:426.940200px;}
.x27_c00370{left:447.115200px;}
.x28_c00370{left:463.690200px;}
.x2_c00370{left:486.340200px;}
.x6_c00370{left:502.540200px;}
.x1e_c00370{left:506.890200px;}
.x2b_c00370{left:509.740200px;}
.x1f_c00370{left:522.340200px;}
.x2c_c00370{left:527.365200px;}
.xc_c00370{left:582.790200px;}
.xd_c00370{left:619.540200px;}
.x32_c00370{left:620.965200px;}
.x20_c00370{left:628.915200px;}
.x3_c00370{left:648.715200px;}
.xa_c00370{left:654.115200px;}
.xb_c00370{left:668.890200px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls0_c00370{letter-spacing:0.000000pt;}
.ws0_c00370{word-spacing:0.000000pt;}
.fs0_c00370{font-size:42.666667pt;}
.fs2_c00370{font-size:48.000000pt;}
.fs4_c00370{font-size:53.333333pt;}
.fs5_c00370{font-size:58.666667pt;}
.fs1_c00370{font-size:64.000000pt;}
.fs3_c00370{font-size:69.333333pt;}
.y0_c00370{bottom:0.000000pt;}
.y5f_c00370{bottom:74.398667pt;}
.y5d_c00370{bottom:85.865333pt;}
.y5e_c00370{bottom:89.398667pt;}
.y5a_c00370{bottom:100.932000pt;}
.y5b_c00370{bottom:105.398667pt;}
.y5c_c00370{bottom:106.732000pt;}
.y55_c00370{bottom:115.065333pt;}
.y56_c00370{bottom:116.000000pt;}
.y57_c00370{bottom:118.265333pt;}
.y58_c00370{bottom:118.865333pt;}
.y59_c00370{bottom:120.532000pt;}
.y52_c00370{bottom:129.798667pt;}
.y53_c00370{bottom:132.932000pt;}
.y54_c00370{bottom:133.333333pt;}
.y4f_c00370{bottom:145.465333pt;}
.y50_c00370{bottom:148.932000pt;}
.y51_c00370{bottom:150.532000pt;}
.y4e_c00370{bottom:161.465333pt;}
.y4d_c00370{bottom:175.532000pt;}
.y4a_c00370{bottom:188.000000pt;}
.y4b_c00370{bottom:189.265333pt;}
.y4c_c00370{bottom:190.198667pt;}
.y47_c00370{bottom:204.000000pt;}
.y48_c00370{bottom:204.265333pt;}
.y49_c00370{bottom:205.865333pt;}
.y46_c00370{bottom:218.398667pt;}
.y45_c00370{bottom:233.133333pt;}
.y3f_c00370{bottom:247.198667pt;}
.y40_c00370{bottom:247.466667pt;}
.y41_c00370{bottom:247.532000pt;}
.y42_c00370{bottom:248.133333pt;}
.y43_c00370{bottom:248.198667pt;}
.y44_c00370{bottom:249.800000pt;}
.y3e_c00370{bottom:262.198667pt;}
.y3d_c00370{bottom:277.598667pt;}
.y39_c00370{bottom:291.732000pt;}
.y3a_c00370{bottom:293.865333pt;}
.y3b_c00370{bottom:294.532000pt;}
.y3c_c00370{bottom:294.932000pt;}
.y38_c00370{bottom:307.065333pt;}
.y37_c00370{bottom:322.398667pt;}
.y36_c00370{bottom:336.800000pt;}
.y33_c00370{bottom:350.532000pt;}
.y34_c00370{bottom:350.865333pt;}
.y35_c00370{bottom:351.865333pt;}
.y32_c00370{bottom:366.265333pt;}
.y31_c00370{bottom:381.265333pt;}
.y2f_c00370{bottom:396.000000pt;}
.y30_c00370{bottom:396.666667pt;}
.y2e_c00370{bottom:411.398667pt;}
.y2d_c00370{bottom:426.398667pt;}
.y2c_c00370{bottom:441.732000pt;}
.y2b_c00370{bottom:456.798667pt;}
.y2a_c00370{bottom:471.865333pt;}
.y29_c00370{bottom:486.932000pt;}
.y28_c00370{bottom:502.198667pt;}
.y27_c00370{bottom:517.265333pt;}
.y26_c00370{bottom:532.265333pt;}
.y25_c00370{bottom:547.065333pt;}
.y24_c00370{bottom:548.265333pt;}
.y23_c00370{bottom:548.333333pt;}
.y22_c00370{bottom:562.398667pt;}
.y21_c00370{bottom:577.465333pt;}
.y20_c00370{bottom:592.465333pt;}
.y1f_c00370{bottom:607.532000pt;}
.y1e_c00370{bottom:622.932000pt;}
.y1d_c00370{bottom:637.598667pt;}
.y1c_c00370{bottom:652.932000pt;}
.y1b_c00370{bottom:668.000000pt;}
.y1a_c00370{bottom:683.333333pt;}
.y19_c00370{bottom:697.132000pt;}
.y18_c00370{bottom:697.732000pt;}
.y17_c00370{bottom:699.666667pt;}
.y16_c00370{bottom:713.466667pt;}
.y15_c00370{bottom:728.800000pt;}
.y14_c00370{bottom:743.865333pt;}
.y13_c00370{bottom:745.398667pt;}
.y12_c00370{bottom:745.466667pt;}
.y11_c00370{bottom:759.466667pt;}
.y10_c00370{bottom:769.732000pt;}
.yf_c00370{bottom:771.333333pt;}
.ye_c00370{bottom:774.600000pt;}
.yd_c00370{bottom:789.000000pt;}
.yc_c00370{bottom:799.532000pt;}
.yb_c00370{bottom:799.800000pt;}
.ya_c00370{bottom:804.000000pt;}
.y9_c00370{bottom:818.732000pt;}
.y8_c00370{bottom:821.600000pt;}
.y7_c00370{bottom:872.466667pt;}
.y6_c00370{bottom:889.466667pt;}
.y5_c00370{bottom:891.666667pt;}
.y4_c00370{bottom:893.933333pt;}
.y3_c00370{bottom:939.666667pt;}
.y1_c00370{bottom:944.466667pt;}
.y2_c00370{bottom:952.466667pt;}
.h1_c00370{height:43.000000pt;}
.h8_c00370{height:47.109375pt;}
.h3_c00370{height:48.375000pt;}
.h5_c00370{height:52.317708pt;}
.h7_c00370{height:52.343750pt;}
.h9_c00370{height:53.750000pt;}
.h6_c00370{height:57.578125pt;}
.h2_c00370{height:66.750000pt;}
.h4_c00370{height:69.875000pt;}
.h0_c00370{height:1044.000000pt;}
.w0_c00370{width:650.646400pt;}
.w1_c00370{width:650.666667pt;}
.x0_c00370{left:0.000000pt;}
.x33_c00370{left:57.569067pt;}
.x1b_c00370{left:58.835733pt;}
.x17_c00370{left:59.835733pt;}
.x18_c00370{left:61.102400pt;}
.x16_c00370{left:62.035733pt;}
.x12_c00370{left:63.035733pt;}
.x13_c00370{left:63.969067pt;}
.xf_c00370{left:64.969067pt;}
.x9_c00370{left:66.235733pt;}
.x7_c00370{left:67.167733pt;}
.x21_c00370{left:74.834400pt;}
.x8_c00370{left:81.902400pt;}
.xe_c00370{left:85.435733pt;}
.x14_c00370{left:90.835733pt;}
.x4_c00370{left:98.569067pt;}
.x15_c00370{left:104.969067pt;}
.x22_c00370{left:109.769067pt;}
.x2f_c00370{left:142.369067pt;}
.x1c_c00370{left:181.769067pt;}
.x1d_c00370{left:195.835733pt;}
.x29_c00370{left:225.235733pt;}
.x2a_c00370{left:239.635733pt;}
.x1_c00370{left:259.502400pt;}
.x5_c00370{left:273.569067pt;}
.x23_c00370{left:294.702400pt;}
.x19_c00370{left:299.502400pt;}
.x24_c00370{left:309.435733pt;}
.x1a_c00370{left:313.235733pt;}
.x2d_c00370{left:338.235733pt;}
.x31_c00370{left:345.235733pt;}
.x25_c00370{left:348.769067pt;}
.x26_c00370{left:354.835733pt;}
.x30_c00370{left:358.034400pt;}
.x2e_c00370{left:362.569067pt;}
.x10_c00370{left:365.435733pt;}
.x11_c00370{left:379.502400pt;}
.x27_c00370{left:397.435733pt;}
.x28_c00370{left:412.169067pt;}
.x2_c00370{left:432.302400pt;}
.x6_c00370{left:446.702400pt;}
.x1e_c00370{left:450.569067pt;}
.x2b_c00370{left:453.102400pt;}
.x1f_c00370{left:464.302400pt;}
.x2c_c00370{left:468.769067pt;}
.xc_c00370{left:518.035733pt;}
.xd_c00370{left:550.702400pt;}
.x32_c00370{left:551.969067pt;}
.x20_c00370{left:559.035733pt;}
.x3_c00370{left:576.635733pt;}
.xa_c00370{left:581.435733pt;}
.xb_c00370{left:594.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e95cc9d1b6e3c73fdbaf867d.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00371;src:url('chunks/assets/font_a6f3c1642ea016f7a7dcfc9d.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00371;src:url('chunks/assets/font_b90a1e6e5e55f7958008beda.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c00371{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m3_c00371{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf_c00371{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00371{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m19_c00371{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00371{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c00371{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m13_c00371{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00371{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m17_c00371{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c00371{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c00371{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c00371{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00371{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00371{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00371{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m0_c00371{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00371{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00371{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00371{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00371{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00371{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00371{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c00371{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c00371{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00371{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c00371{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00371{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m15_c00371{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00371{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.me_c00371{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1_c00371{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00371{color:transparent;}
.fs0_c00371{font-size:60.000000px;}
.fs1_c00371{font-size:66.000000px;}
.fs2_c00371{font-size:72.000000px;}
.y0_c00371{bottom:0.000000px;}
.y6a_c00371{bottom:101.698500px;}
.y69_c00371{bottom:102.448500px;}
.y68_c00371{bottom:102.823500px;}
.y67_c00371{bottom:107.473500px;}
.y66_c00371{bottom:120.073500px;}
.y65_c00371{bottom:125.848500px;}
.y64_c00371{bottom:128.698500px;}
.y61_c00371{bottom:136.648500px;}
.y62_c00371{bottom:137.323500px;}
.y63_c00371{bottom:137.698500px;}
.y60_c00371{bottom:138.073500px;}
.y5f_c00371{bottom:141.298500px;}
.y5e_c00371{bottom:144.148500px;}
.y5d_c00371{bottom:147.073500px;}
.y5c_c00371{bottom:154.573500px;}
.y5b_c00371{bottom:157.125000px;}
.y5a_c00371{bottom:164.023500px;}
.y59_c00371{bottom:172.273500px;}
.y58_c00371{bottom:173.698500px;}
.y57_c00371{bottom:180.598500px;}
.y56_c00371{bottom:190.273500px;}
.y55_c00371{bottom:192.073500px;}
.y54_c00371{bottom:194.548500px;}
.y53_c00371{bottom:195.598500px;}
.y52_c00371{bottom:197.473500px;}
.y51_c00371{bottom:207.898500px;}
.y50_c00371{bottom:210.073500px;}
.y4f_c00371{bottom:213.673500px;}
.y4e_c00371{bottom:214.723500px;}
.y4d_c00371{bottom:225.523500px;}
.y4c_c00371{bottom:227.698500px;}
.y4b_c00371{bottom:243.223500px;}
.y4a_c00371{bottom:248.625000px;}
.y49_c00371{bottom:249.673500px;}
.y48_c00371{bottom:261.525000px;}
.y47_c00371{bottom:262.275000px;}
.y46_c00371{bottom:267.298500px;}
.y45_c00371{bottom:279.525000px;}
.y44_c00371{bottom:297.223500px;}
.y43_c00371{bottom:316.650000px;}
.y42_c00371{bottom:318.750000px;}
.y41_c00371{bottom:329.923500px;}
.y40_c00371{bottom:331.348500px;}
.y3f_c00371{bottom:332.098500px;}
.y3e_c00371{bottom:334.275000px;}
.y3d_c00371{bottom:349.723500px;}
.y3c_c00371{bottom:365.548500px;}
.y3b_c00371{bottom:365.923500px;}
.y3a_c00371{bottom:366.298500px;}
.y39_c00371{bottom:366.973500px;}
.y38_c00371{bottom:368.473500px;}
.y37_c00371{bottom:383.250000px;}
.y36_c00371{bottom:385.048500px;}
.y35_c00371{bottom:402.000000px;}
.y34_c00371{bottom:419.923500px;}
.y33_c00371{bottom:437.250000px;}
.y32_c00371{bottom:439.048500px;}
.y31_c00371{bottom:455.250000px;}
.y30_c00371{bottom:473.173500px;}
.y2e_c00371{bottom:489.375000px;}
.y2f_c00371{bottom:489.448500px;}
.y2d_c00371{bottom:490.500000px;}
.y2c_c00371{bottom:507.750000px;}
.y2a_c00371{bottom:525.073500px;}
.y2b_c00371{bottom:525.448500px;}
.y29_c00371{bottom:542.323500px;}
.y28_c00371{bottom:559.948500px;}
.y27_c00371{bottom:577.273500px;}
.y26_c00371{bottom:594.898500px;}
.y25_c00371{bottom:612.148500px;}
.y24_c00371{bottom:612.223500px;}
.y23_c00371{bottom:612.523500px;}
.y22_c00371{bottom:630.223500px;}
.y21_c00371{bottom:648.148500px;}
.y20_c00371{bottom:665.773500px;}
.y1f_c00371{bottom:683.098500px;}
.y1c_c00371{bottom:698.250000px;}
.y1d_c00371{bottom:699.973500px;}
.y1e_c00371{bottom:700.723500px;}
.y1b_c00371{bottom:717.673500px;}
.y17_c00371{bottom:732.450000px;}
.y18_c00371{bottom:733.875000px;}
.y1a_c00371{bottom:735.298500px;}
.y19_c00371{bottom:735.673500px;}
.y16_c00371{bottom:753.298500px;}
.y15_c00371{bottom:770.625000px;}
.y14_c00371{bottom:788.550000px;}
.y13_c00371{bottom:805.500000px;}
.y12_c00371{bottom:822.823500px;}
.y11_c00371{bottom:840.073500px;}
.yd_c00371{bottom:851.925000px;}
.ye_c00371{bottom:856.948500px;}
.yf_c00371{bottom:857.323500px;}
.y10_c00371{bottom:857.400000px;}
.yc_c00371{bottom:873.900000px;}
.yb_c00371{bottom:891.223500px;}
.ya_c00371{bottom:908.473500px;}
.y9_c00371{bottom:926.098500px;}
.y8_c00371{bottom:943.800000px;}
.y7_c00371{bottom:961.348500px;}
.y6_c00371{bottom:1040.550000px;}
.y5_c00371{bottom:1061.473500px;}
.y1_c00371{bottom:1109.025000px;}
.y3_c00371{bottom:1117.573500px;}
.y4_c00371{bottom:1119.750000px;}
.y2_c00371{bottom:1123.573500px;}
.h2_c00371{height:58.886719px;}
.h1_c00371{height:60.468750px;}
.h3_c00371{height:64.743164px;}
.h5_c00371{height:64.775391px;}
.h4_c00371{height:70.664062px;}
.h0_c00371{height:1174.500000px;}
.w0_c00371{width:731.977200px;}
.w1_c00371{width:732.000000px;}
.x0_c00371{left:0.000000px;}
.x6_c00371{left:36.340200px;}
.xb_c00371{left:37.390200px;}
.x5_c00371{left:39.190200px;}
.x15_c00371{left:40.315200px;}
.x17_c00371{left:41.365200px;}
.x1a_c00371{left:43.540200px;}
.x21_c00371{left:45.340200px;}
.x28_c00371{left:46.765200px;}
.x2f_c00371{left:47.890200px;}
.x35_c00371{left:48.940200px;}
.xa_c00371{left:50.365200px;}
.xc_c00371{left:52.915200px;}
.x16_c00371{left:55.765200px;}
.x1_c00371{left:57.190200px;}
.x26_c00371{left:69.490200px;}
.x36_c00371{left:72.715200px;}
.x7_c00371{left:74.140200px;}
.x25_c00371{left:78.490200px;}
.x27_c00371{left:80.965200px;}
.x2_c00371{left:85.313700px;}
.xd_c00371{left:88.915200px;}
.x11_c00371{left:92.515200px;}
.x2c_c00371{left:96.490200px;}
.x29_c00371{left:97.540200px;}
.x30_c00371{left:104.740200px;}
.x2d_c00371{left:113.365200px;}
.x3d_c00371{left:121.690200px;}
.xe_c00371{left:138.565200px;}
.x1b_c00371{left:143.290200px;}
.x31_c00371{left:188.290200px;}
.x32_c00371{left:189.715200px;}
.x3e_c00371{left:201.565200px;}
.x38_c00371{left:205.165200px;}
.x39_c00371{left:219.940200px;}
.x2a_c00371{left:224.290200px;}
.x3_c00371{left:255.565200px;}
.x12_c00371{left:327.190200px;}
.x22_c00371{left:339.790200px;}
.x4_c00371{left:344.890200px;}
.x1c_c00371{left:356.740200px;}
.x23_c00371{left:362.890200px;}
.x3f_c00371{left:372.940200px;}
.x40_c00371{left:387.715200px;}
.x33_c00371{left:424.090200px;}
.x1d_c00371{left:444.940200px;}
.x2e_c00371{left:467.590200px;}
.x37_c00371{left:480.190200px;}
.x1e_c00371{left:482.365200px;}
.x41_c00371{left:483.790200px;}
.xf_c00371{left:487.090200px;}
.x42_c00371{left:500.740200px;}
.x10_c00371{left:502.165200px;}
.x1f_c00371{left:525.565200px;}
.x8_c00371{left:553.990200px;}
.x24_c00371{left:566.590200px;}
.x3a_c00371{left:568.765200px;}
.x9_c00371{left:569.890200px;}
.x2b_c00371{left:570.940200px;}
.x34_c00371{left:575.965200px;}
.x13_c00371{left:586.090200px;}
.x14_c00371{left:599.740200px;}
.x20_c00371{left:616.990200px;}
.x18_c00371{left:636.115200px;}
.x3b_c00371{left:642.940200px;}
.x19_c00371{left:650.515200px;}
.x3c_c00371{left:656.290200px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls0_c00371{letter-spacing:0.000000pt;}
.ws0_c00371{word-spacing:0.000000pt;}
.fs0_c00371{font-size:53.333333pt;}
.fs1_c00371{font-size:58.666667pt;}
.fs2_c00371{font-size:64.000000pt;}
.y0_c00371{bottom:0.000000pt;}
.y6a_c00371{bottom:90.398667pt;}
.y69_c00371{bottom:91.065333pt;}
.y68_c00371{bottom:91.398667pt;}
.y67_c00371{bottom:95.532000pt;}
.y66_c00371{bottom:106.732000pt;}
.y65_c00371{bottom:111.865333pt;}
.y64_c00371{bottom:114.398667pt;}
.y61_c00371{bottom:121.465333pt;}
.y62_c00371{bottom:122.065333pt;}
.y63_c00371{bottom:122.398667pt;}
.y60_c00371{bottom:122.732000pt;}
.y5f_c00371{bottom:125.598667pt;}
.y5e_c00371{bottom:128.132000pt;}
.y5d_c00371{bottom:130.732000pt;}
.y5c_c00371{bottom:137.398667pt;}
.y5b_c00371{bottom:139.666667pt;}
.y5a_c00371{bottom:145.798667pt;}
.y59_c00371{bottom:153.132000pt;}
.y58_c00371{bottom:154.398667pt;}
.y57_c00371{bottom:160.532000pt;}
.y56_c00371{bottom:169.132000pt;}
.y55_c00371{bottom:170.732000pt;}
.y54_c00371{bottom:172.932000pt;}
.y53_c00371{bottom:173.865333pt;}
.y52_c00371{bottom:175.532000pt;}
.y51_c00371{bottom:184.798667pt;}
.y50_c00371{bottom:186.732000pt;}
.y4f_c00371{bottom:189.932000pt;}
.y4e_c00371{bottom:190.865333pt;}
.y4d_c00371{bottom:200.465333pt;}
.y4c_c00371{bottom:202.398667pt;}
.y4b_c00371{bottom:216.198667pt;}
.y4a_c00371{bottom:221.000000pt;}
.y49_c00371{bottom:221.932000pt;}
.y48_c00371{bottom:232.466667pt;}
.y47_c00371{bottom:233.133333pt;}
.y46_c00371{bottom:237.598667pt;}
.y45_c00371{bottom:248.466667pt;}
.y44_c00371{bottom:264.198667pt;}
.y43_c00371{bottom:281.466667pt;}
.y42_c00371{bottom:283.333333pt;}
.y41_c00371{bottom:293.265333pt;}
.y40_c00371{bottom:294.532000pt;}
.y3f_c00371{bottom:295.198667pt;}
.y3e_c00371{bottom:297.133333pt;}
.y3d_c00371{bottom:310.865333pt;}
.y3c_c00371{bottom:324.932000pt;}
.y3b_c00371{bottom:325.265333pt;}
.y3a_c00371{bottom:325.598667pt;}
.y39_c00371{bottom:326.198667pt;}
.y38_c00371{bottom:327.532000pt;}
.y37_c00371{bottom:340.666667pt;}
.y36_c00371{bottom:342.265333pt;}
.y35_c00371{bottom:357.333333pt;}
.y34_c00371{bottom:373.265333pt;}
.y33_c00371{bottom:388.666667pt;}
.y32_c00371{bottom:390.265333pt;}
.y31_c00371{bottom:404.666667pt;}
.y30_c00371{bottom:420.598667pt;}
.y2e_c00371{bottom:435.000000pt;}
.y2f_c00371{bottom:435.065333pt;}
.y2d_c00371{bottom:436.000000pt;}
.y2c_c00371{bottom:451.333333pt;}
.y2a_c00371{bottom:466.732000pt;}
.y2b_c00371{bottom:467.065333pt;}
.y29_c00371{bottom:482.065333pt;}
.y28_c00371{bottom:497.732000pt;}
.y27_c00371{bottom:513.132000pt;}
.y26_c00371{bottom:528.798667pt;}
.y25_c00371{bottom:544.132000pt;}
.y24_c00371{bottom:544.198667pt;}
.y23_c00371{bottom:544.465333pt;}
.y22_c00371{bottom:560.198667pt;}
.y21_c00371{bottom:576.132000pt;}
.y20_c00371{bottom:591.798667pt;}
.y1f_c00371{bottom:607.198667pt;}
.y1c_c00371{bottom:620.666667pt;}
.y1d_c00371{bottom:622.198667pt;}
.y1e_c00371{bottom:622.865333pt;}
.y1b_c00371{bottom:637.932000pt;}
.y17_c00371{bottom:651.066667pt;}
.y18_c00371{bottom:652.333333pt;}
.y1a_c00371{bottom:653.598667pt;}
.y19_c00371{bottom:653.932000pt;}
.y16_c00371{bottom:669.598667pt;}
.y15_c00371{bottom:685.000000pt;}
.y14_c00371{bottom:700.933333pt;}
.y13_c00371{bottom:716.000000pt;}
.y12_c00371{bottom:731.398667pt;}
.y11_c00371{bottom:746.732000pt;}
.yd_c00371{bottom:757.266667pt;}
.ye_c00371{bottom:761.732000pt;}
.yf_c00371{bottom:762.065333pt;}
.y10_c00371{bottom:762.133333pt;}
.yc_c00371{bottom:776.800000pt;}
.yb_c00371{bottom:792.198667pt;}
.ya_c00371{bottom:807.532000pt;}
.y9_c00371{bottom:823.198667pt;}
.y8_c00371{bottom:838.933333pt;}
.y7_c00371{bottom:854.532000pt;}
.y6_c00371{bottom:924.933333pt;}
.y5_c00371{bottom:943.532000pt;}
.y1_c00371{bottom:985.800000pt;}
.y3_c00371{bottom:993.398667pt;}
.y4_c00371{bottom:995.333333pt;}
.y2_c00371{bottom:998.732000pt;}
.h2_c00371{height:52.343750pt;}
.h1_c00371{height:53.750000pt;}
.h3_c00371{height:57.549479pt;}
.h5_c00371{height:57.578125pt;}
.h4_c00371{height:62.812500pt;}
.h0_c00371{height:1044.000000pt;}
.w0_c00371{width:650.646400pt;}
.w1_c00371{width:650.666667pt;}
.x0_c00371{left:0.000000pt;}
.x6_c00371{left:32.302400pt;}
.xb_c00371{left:33.235733pt;}
.x5_c00371{left:34.835733pt;}
.x15_c00371{left:35.835733pt;}
.x17_c00371{left:36.769067pt;}
.x1a_c00371{left:38.702400pt;}
.x21_c00371{left:40.302400pt;}
.x28_c00371{left:41.569067pt;}
.x2f_c00371{left:42.569067pt;}
.x35_c00371{left:43.502400pt;}
.xa_c00371{left:44.769067pt;}
.xc_c00371{left:47.035733pt;}
.x16_c00371{left:49.569067pt;}
.x1_c00371{left:50.835733pt;}
.x26_c00371{left:61.769067pt;}
.x36_c00371{left:64.635733pt;}
.x7_c00371{left:65.902400pt;}
.x25_c00371{left:69.769067pt;}
.x27_c00371{left:71.969067pt;}
.x2_c00371{left:75.834400pt;}
.xd_c00371{left:79.035733pt;}
.x11_c00371{left:82.235733pt;}
.x2c_c00371{left:85.769067pt;}
.x29_c00371{left:86.702400pt;}
.x30_c00371{left:93.102400pt;}
.x2d_c00371{left:100.769067pt;}
.x3d_c00371{left:108.169067pt;}
.xe_c00371{left:123.169067pt;}
.x1b_c00371{left:127.369067pt;}
.x31_c00371{left:167.369067pt;}
.x32_c00371{left:168.635733pt;}
.x3e_c00371{left:179.169067pt;}
.x38_c00371{left:182.369067pt;}
.x39_c00371{left:195.502400pt;}
.x2a_c00371{left:199.369067pt;}
.x3_c00371{left:227.169067pt;}
.x12_c00371{left:290.835733pt;}
.x22_c00371{left:302.035733pt;}
.x4_c00371{left:306.569067pt;}
.x1c_c00371{left:317.102400pt;}
.x23_c00371{left:322.569067pt;}
.x3f_c00371{left:331.502400pt;}
.x40_c00371{left:344.635733pt;}
.x33_c00371{left:376.969067pt;}
.x1d_c00371{left:395.502400pt;}
.x2e_c00371{left:415.635733pt;}
.x37_c00371{left:426.835733pt;}
.x1e_c00371{left:428.769067pt;}
.x41_c00371{left:430.035733pt;}
.xf_c00371{left:432.969067pt;}
.x42_c00371{left:445.102400pt;}
.x10_c00371{left:446.369067pt;}
.x1f_c00371{left:467.169067pt;}
.x8_c00371{left:492.435733pt;}
.x24_c00371{left:503.635733pt;}
.x3a_c00371{left:505.569067pt;}
.x9_c00371{left:506.569067pt;}
.x2b_c00371{left:507.502400pt;}
.x34_c00371{left:511.969067pt;}
.x13_c00371{left:520.969067pt;}
.x14_c00371{left:533.102400pt;}
.x20_c00371{left:548.435733pt;}
.x18_c00371{left:565.435733pt;}
.x3b_c00371{left:571.502400pt;}
.x19_c00371{left:578.235733pt;}
.x3c_c00371{left:583.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c37ebf63d7f7b0c5eef11c6.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00372;src:url('chunks/assets/font_b86769f9e2a3357926e5e760.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00372;src:url('chunks/assets/font_dd034a69597ea9686547d99c.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00372;src:url('chunks/assets/font_62315c96eebe159221ca2297.woff2')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00372{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00372{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2_c00372{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c00372{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11_c00372{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00372{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m0_c00372{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00372{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c00372{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00372{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17_c00372{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00372{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00372{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c00372{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00372{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00372{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00372{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00372{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00372{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00372{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00372{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c00372{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00372{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00372{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00372{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c00372{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00372{transform:matrix(1.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.067500,0.000000,0.000000,0.250000,0,0);}
.m16_c00372{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00372{transform:matrix(3.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.840000,0.000000,0.000000,0.250000,0,0);}
.m1_c00372{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00372{word-spacing:0.000000px;}
.fc0_c00372{color:transparent;}
.fs0_c00372{font-size:60.000000px;}
.fs2_c00372{font-size:66.000000px;}
.fs1_c00372{font-size:78.000000px;}
.fs3_c00372{font-size:120.000000px;}
.y0_c00372{bottom:0.000000px;}
.y51_c00372{bottom:70.048500px;}
.y50_c00372{bottom:89.398500px;}
.y4f_c00372{bottom:105.673500px;}
.y4e_c00372{bottom:121.198500px;}
.y4b_c00372{bottom:136.573500px;}
.y4c_c00372{bottom:138.375000px;}
.y4d_c00372{bottom:141.000000px;}
.y48_c00372{bottom:142.423500px;}
.y4a_c00372{bottom:154.648500px;}
.y47_c00372{bottom:170.773500px;}
.y49_c00372{bottom:175.875000px;}
.y46_c00372{bottom:187.048500px;}
.y45_c00372{bottom:203.548500px;}
.y42_c00372{bottom:217.948500px;}
.y43_c00372{bottom:218.323500px;}
.y44_c00372{bottom:219.823500px;}
.y41_c00372{bottom:235.948500px;}
.y40_c00372{bottom:252.523500px;}
.y3f_c00372{bottom:269.098500px;}
.y3e_c00372{bottom:285.598500px;}
.y3d_c00372{bottom:302.250000px;}
.y3c_c00372{bottom:318.823500px;}
.y3b_c00372{bottom:335.698500px;}
.y3a_c00372{bottom:339.000000px;}
.y39_c00372{bottom:352.275000px;}
.y37_c00372{bottom:368.098500px;}
.y36_c00372{bottom:368.473500px;}
.y38_c00372{bottom:369.223500px;}
.y33_c00372{bottom:385.348500px;}
.y34_c00372{bottom:386.473500px;}
.y35_c00372{bottom:386.848500px;}
.y32_c00372{bottom:402.298500px;}
.y31_c00372{bottom:418.875000px;}
.y30_c00372{bottom:436.125000px;}
.y2f_c00372{bottom:453.375000px;}
.y2e_c00372{bottom:470.323500px;}
.y2d_c00372{bottom:487.273500px;}
.y2c_c00372{bottom:503.848500px;}
.y2b_c00372{bottom:504.898500px;}
.y2a_c00372{bottom:521.848500px;}
.y29_c00372{bottom:538.048500px;}
.y28_c00372{bottom:555.000000px;}
.y27_c00372{bottom:571.875000px;}
.y26_c00372{bottom:588.823500px;}
.y24_c00372{bottom:605.698500px;}
.y25_c00372{bottom:606.073500px;}
.y23_c00372{bottom:622.648500px;}
.y22_c00372{bottom:639.598500px;}
.y21_c00372{bottom:656.473500px;}
.y20_c00372{bottom:673.798500px;}
.y1f_c00372{bottom:689.923500px;}
.y1e_c00372{bottom:691.348500px;}
.y1d_c00372{bottom:692.848500px;}
.y1c_c00372{bottom:706.500000px;}
.y1b_c00372{bottom:708.000000px;}
.y1a_c00372{bottom:708.673500px;}
.y19_c00372{bottom:710.098500px;}
.y17_c00372{bottom:710.773500px;}
.y18_c00372{bottom:710.848500px;}
.y16_c00372{bottom:726.673500px;}
.y15_c00372{bottom:741.450000px;}
.y14_c00372{bottom:758.700000px;}
.y13_c00372{bottom:775.273500px;}
.y12_c00372{bottom:790.723500px;}
.y11_c00372{bottom:791.098500px;}
.y10_c00372{bottom:793.573500px;}
.yf_c00372{bottom:809.098500px;}
.ye_c00372{bottom:812.250000px;}
.yd_c00372{bottom:813.073500px;}
.yc_c00372{bottom:827.473500px;}
.yb_c00372{bottom:844.425000px;}
.ya_c00372{bottom:861.675000px;}
.y9_c00372{bottom:878.175000px;}
.y8_c00372{bottom:896.925000px;}
.y7_c00372{bottom:907.723500px;}
.y6_c00372{bottom:911.323500px;}
.y5_c00372{bottom:972.598500px;}
.y4_c00372{bottom:994.500000px;}
.y3_c00372{bottom:1048.500000px;}
.y2_c00372{bottom:1051.723500px;}
.y1_c00372{bottom:1052.848500px;}
.h4_c00372{height:58.886719px;}
.h1_c00372{height:60.468750px;}
.h5_c00372{height:64.743164px;}
.h3_c00372{height:64.775391px;}
.h7_c00372{height:66.515625px;}
.h2_c00372{height:78.609375px;}
.h6_c00372{height:125.156250px;}
.h0_c00372{height:1174.500000px;}
.w0_c00372{width:731.977200px;}
.w1_c00372{width:732.000000px;}
.x0_c00372{left:0.000000px;}
.x4_c00372{left:61.540200px;}
.x5_c00372{left:62.590200px;}
.x14_c00372{left:63.715200px;}
.x15_c00372{left:64.765200px;}
.x17_c00372{left:65.890200px;}
.x1d_c00372{left:67.315200px;}
.x20_c00372{left:68.365200px;}
.x24_c00372{left:69.790200px;}
.x25_c00372{left:71.290200px;}
.x2b_c00372{left:73.390200px;}
.xb_c00372{left:80.965200px;}
.x18_c00372{left:83.140200px;}
.x7_c00372{left:88.915200px;}
.xc_c00372{left:94.690200px;}
.x19_c00372{left:97.165200px;}
.xd_c00372{left:101.890200px;}
.x1a_c00372{left:104.365200px;}
.x26_c00372{left:118.090200px;}
.xe_c00372{left:119.515200px;}
.x1b_c00372{left:123.790200px;}
.x27_c00372{left:134.590200px;}
.x21_c00372{left:179.965200px;}
.x22_c00372{left:195.490200px;}
.x8_c00372{left:241.540200px;}
.xf_c00372{left:258.115200px;}
.x1_c00372{left:273.565200px;}
.x12_c00372{left:291.565200px;}
.x10_c00372{left:299.140200px;}
.x13_c00372{left:305.965200px;}
.x1c_c00372{left:314.590200px;}
.x2c_c00372{left:379.090200px;}
.x2d_c00372{left:394.913700px;}
.x11_c00372{left:441.715200px;}
.x2_c00372{left:466.540200px;}
.x1e_c00372{left:500.740200px;}
.x1f_c00372{left:517.315200px;}
.x28_c00372{left:585.340200px;}
.x29_c00372{left:589.990200px;}
.x9_c00372{left:598.690200px;}
.xa_c00372{left:612.715200px;}
.x6_c00372{left:615.190200px;}
.x3_c00372{left:627.790200px;}
.x23_c00372{left:641.515200px;}
.x2a_c00372{left:653.365200px;}
.x16_c00372{left:665.290200px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls0_c00372{letter-spacing:0.000000pt;}
.ws0_c00372{word-spacing:0.000000pt;}
.fs0_c00372{font-size:53.333333pt;}
.fs2_c00372{font-size:58.666667pt;}
.fs1_c00372{font-size:69.333333pt;}
.fs3_c00372{font-size:106.666667pt;}
.y0_c00372{bottom:0.000000pt;}
.y51_c00372{bottom:62.265333pt;}
.y50_c00372{bottom:79.465333pt;}
.y4f_c00372{bottom:93.932000pt;}
.y4e_c00372{bottom:107.732000pt;}
.y4b_c00372{bottom:121.398667pt;}
.y4c_c00372{bottom:123.000000pt;}
.y4d_c00372{bottom:125.333333pt;}
.y48_c00372{bottom:126.598667pt;}
.y4a_c00372{bottom:137.465333pt;}
.y47_c00372{bottom:151.798667pt;}
.y49_c00372{bottom:156.333333pt;}
.y46_c00372{bottom:166.265333pt;}
.y45_c00372{bottom:180.932000pt;}
.y42_c00372{bottom:193.732000pt;}
.y43_c00372{bottom:194.065333pt;}
.y44_c00372{bottom:195.398667pt;}
.y41_c00372{bottom:209.732000pt;}
.y40_c00372{bottom:224.465333pt;}
.y3f_c00372{bottom:239.198667pt;}
.y3e_c00372{bottom:253.865333pt;}
.y3d_c00372{bottom:268.666667pt;}
.y3c_c00372{bottom:283.398667pt;}
.y3b_c00372{bottom:298.398667pt;}
.y3a_c00372{bottom:301.333333pt;}
.y39_c00372{bottom:313.133333pt;}
.y37_c00372{bottom:327.198667pt;}
.y36_c00372{bottom:327.532000pt;}
.y38_c00372{bottom:328.198667pt;}
.y33_c00372{bottom:342.532000pt;}
.y34_c00372{bottom:343.532000pt;}
.y35_c00372{bottom:343.865333pt;}
.y32_c00372{bottom:357.598667pt;}
.y31_c00372{bottom:372.333333pt;}
.y30_c00372{bottom:387.666667pt;}
.y2f_c00372{bottom:403.000000pt;}
.y2e_c00372{bottom:418.065333pt;}
.y2d_c00372{bottom:433.132000pt;}
.y2c_c00372{bottom:447.865333pt;}
.y2b_c00372{bottom:448.798667pt;}
.y2a_c00372{bottom:463.865333pt;}
.y29_c00372{bottom:478.265333pt;}
.y28_c00372{bottom:493.333333pt;}
.y27_c00372{bottom:508.333333pt;}
.y26_c00372{bottom:523.398667pt;}
.y24_c00372{bottom:538.398667pt;}
.y25_c00372{bottom:538.732000pt;}
.y23_c00372{bottom:553.465333pt;}
.y22_c00372{bottom:568.532000pt;}
.y21_c00372{bottom:583.532000pt;}
.y20_c00372{bottom:598.932000pt;}
.y1f_c00372{bottom:613.265333pt;}
.y1e_c00372{bottom:614.532000pt;}
.y1d_c00372{bottom:615.865333pt;}
.y1c_c00372{bottom:628.000000pt;}
.y1b_c00372{bottom:629.333333pt;}
.y1a_c00372{bottom:629.932000pt;}
.y19_c00372{bottom:631.198667pt;}
.y17_c00372{bottom:631.798667pt;}
.y18_c00372{bottom:631.865333pt;}
.y16_c00372{bottom:645.932000pt;}
.y15_c00372{bottom:659.066667pt;}
.y14_c00372{bottom:674.400000pt;}
.y13_c00372{bottom:689.132000pt;}
.y12_c00372{bottom:702.865333pt;}
.y11_c00372{bottom:703.198667pt;}
.y10_c00372{bottom:705.398667pt;}
.yf_c00372{bottom:719.198667pt;}
.ye_c00372{bottom:722.000000pt;}
.yd_c00372{bottom:722.732000pt;}
.yc_c00372{bottom:735.532000pt;}
.yb_c00372{bottom:750.600000pt;}
.ya_c00372{bottom:765.933333pt;}
.y9_c00372{bottom:780.600000pt;}
.y8_c00372{bottom:797.266667pt;}
.y7_c00372{bottom:806.865333pt;}
.y6_c00372{bottom:810.065333pt;}
.y5_c00372{bottom:864.532000pt;}
.y4_c00372{bottom:884.000000pt;}
.y3_c00372{bottom:932.000000pt;}
.y2_c00372{bottom:934.865333pt;}
.y1_c00372{bottom:935.865333pt;}
.h4_c00372{height:52.343750pt;}
.h1_c00372{height:53.750000pt;}
.h5_c00372{height:57.549479pt;}
.h3_c00372{height:57.578125pt;}
.h7_c00372{height:59.125000pt;}
.h2_c00372{height:69.875000pt;}
.h6_c00372{height:111.250000pt;}
.h0_c00372{height:1044.000000pt;}
.w0_c00372{width:650.646400pt;}
.w1_c00372{width:650.666667pt;}
.x0_c00372{left:0.000000pt;}
.x4_c00372{left:54.702400pt;}
.x5_c00372{left:55.635733pt;}
.x14_c00372{left:56.635733pt;}
.x15_c00372{left:57.569067pt;}
.x17_c00372{left:58.569067pt;}
.x1d_c00372{left:59.835733pt;}
.x20_c00372{left:60.769067pt;}
.x24_c00372{left:62.035733pt;}
.x25_c00372{left:63.369067pt;}
.x2b_c00372{left:65.235733pt;}
.xb_c00372{left:71.969067pt;}
.x18_c00372{left:73.902400pt;}
.x7_c00372{left:79.035733pt;}
.xc_c00372{left:84.169067pt;}
.x19_c00372{left:86.369067pt;}
.xd_c00372{left:90.569067pt;}
.x1a_c00372{left:92.769067pt;}
.x26_c00372{left:104.969067pt;}
.xe_c00372{left:106.235733pt;}
.x1b_c00372{left:110.035733pt;}
.x27_c00372{left:119.635733pt;}
.x21_c00372{left:159.969067pt;}
.x22_c00372{left:173.769067pt;}
.x8_c00372{left:214.702400pt;}
.xf_c00372{left:229.435733pt;}
.x1_c00372{left:243.169067pt;}
.x12_c00372{left:259.169067pt;}
.x10_c00372{left:265.902400pt;}
.x13_c00372{left:271.969067pt;}
.x1c_c00372{left:279.635733pt;}
.x2c_c00372{left:336.969067pt;}
.x2d_c00372{left:351.034400pt;}
.x11_c00372{left:392.635733pt;}
.x2_c00372{left:414.702400pt;}
.x1e_c00372{left:445.102400pt;}
.x1f_c00372{left:459.835733pt;}
.x28_c00372{left:520.302400pt;}
.x29_c00372{left:524.435733pt;}
.x9_c00372{left:532.169067pt;}
.xa_c00372{left:544.635733pt;}
.x6_c00372{left:546.835733pt;}
.x3_c00372{left:558.035733pt;}
.x23_c00372{left:570.235733pt;}
.x2a_c00372{left:580.769067pt;}
.x16_c00372{left:591.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c81d475f91dad9e8b945284.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00373;src:url('chunks/assets/font_3bdb6f6bdd238af09b15a910.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00373;src:url('chunks/assets/font_64e3a98115a9ed6428949c64.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1a_c00373{transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);}
.md_c00373{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m19_c00373{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00373{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m18_c00373{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m15_c00373{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00373{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00373{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00373{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00373{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00373{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00373{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c00373{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00373{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00373{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00373{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c00373{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c00373{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c00373{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c00373{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c00373{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8_c00373{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00373{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m17_c00373{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00373{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00373{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00373{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m6_c00373{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m13_c00373{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m16_c00373{transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);}
.me_c00373{transform:matrix(1.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.245000,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:0.000000px;}
.fc0_c00373{color:transparent;}
.fs0_c00373{font-size:60.000000px;}
.fs1_c00373{font-size:66.000000px;}
.fs2_c00373{font-size:72.000000px;}
.y0_c00373{bottom:0.000000px;}
.y52_c00373{bottom:96.298500px;}
.y53_c00373{bottom:96.673500px;}
.y51_c00373{bottom:99.148500px;}
.y50_c00373{bottom:108.598500px;}
.y4f_c00373{bottom:115.048500px;}
.y4e_c00373{bottom:123.298500px;}
.y4c_c00373{bottom:131.548500px;}
.y4d_c00373{bottom:132.673500px;}
.y4b_c00373{bottom:133.798500px;}
.y4a_c00373{bottom:150.298500px;}
.y49_c00373{bottom:167.923500px;}
.y47_c00373{bottom:184.500000px;}
.y48_c00373{bottom:185.250000px;}
.y46_c00373{bottom:187.048500px;}
.y45_c00373{bottom:192.073500px;}
.y43_c00373{bottom:202.125000px;}
.y44_c00373{bottom:202.875000px;}
.y42_c00373{bottom:204.673500px;}
.y41_c00373{bottom:220.500000px;}
.y40_c00373{bottom:221.923500px;}
.y3f_c00373{bottom:224.473500px;}
.y3e_c00373{bottom:238.875000px;}
.y3d_c00373{bottom:256.500000px;}
.y3c_c00373{bottom:274.125000px;}
.y3b_c00373{bottom:291.073500px;}
.y3a_c00373{bottom:313.423500px;}
.y39_c00373{bottom:325.275000px;}
.y38_c00373{bottom:326.323500px;}
.y37_c00373{bottom:343.275000px;}
.y36_c00373{bottom:344.400000px;}
.y35_c00373{bottom:361.650000px;}
.y34_c00373{bottom:379.275000px;}
.y33_c00373{bottom:396.900000px;}
.y32_c00373{bottom:414.598500px;}
.y31_c00373{bottom:432.523500px;}
.y30_c00373{bottom:449.848500px;}
.y2f_c00373{bottom:467.773500px;}
.y2e_c00373{bottom:486.523500px;}
.y2d_c00373{bottom:502.423500px;}
.y2c_c00373{bottom:519.673500px;}
.y2b_c00373{bottom:537.298500px;}
.y2a_c00373{bottom:554.625000px;}
.y29_c00373{bottom:572.250000px;}
.y27_c00373{bottom:572.923500px;}
.y28_c00373{bottom:573.000000px;}
.y26_c00373{bottom:589.798500px;}
.y25_c00373{bottom:607.198500px;}
.y24_c00373{bottom:624.823500px;}
.y23_c00373{bottom:642.448500px;}
.y20_c00373{bottom:659.698500px;}
.y21_c00373{bottom:660.375000px;}
.y22_c00373{bottom:660.750000px;}
.y1f_c00373{bottom:677.698500px;}
.y1e_c00373{bottom:695.323500px;}
.y1d_c00373{bottom:712.948500px;}
.y1b_c00373{bottom:727.723500px;}
.y1c_c00373{bottom:730.273500px;}
.y19_c00373{bottom:747.523500px;}
.y1a_c00373{bottom:747.898500px;}
.y18_c00373{bottom:765.223500px;}
.y17_c00373{bottom:782.848500px;}
.y13_c00373{bottom:797.175000px;}
.y14_c00373{bottom:797.250000px;}
.y15_c00373{bottom:798.675000px;}
.y16_c00373{bottom:800.848500px;}
.y12_c00373{bottom:817.050000px;}
.y11_c00373{bottom:834.300000px;}
.y10_c00373{bottom:849.375000px;}
.yf_c00373{bottom:868.125000px;}
.ye_c00373{bottom:885.448500px;}
.yd_c00373{bottom:897.675000px;}
.yc_c00373{bottom:919.650000px;}
.y9_c00373{bottom:936.525000px;}
.yb_c00373{bottom:939.073500px;}
.ya_c00373{bottom:939.750000px;}
.y6_c00373{bottom:954.223500px;}
.y8_c00373{bottom:956.323500px;}
.y7_c00373{bottom:956.698500px;}
.y5_c00373{bottom:972.525000px;}
.y3_c00373{bottom:1026.525000px;}
.y4_c00373{bottom:1035.150000px;}
.y2_c00373{bottom:1054.650000px;}
.y1_c00373{bottom:1112.175000px;}
.h1_c00373{height:58.886719px;}
.h4_c00373{height:64.743164px;}
.h2_c00373{height:64.775391px;}
.h5_c00373{height:66.515625px;}
.h3_c00373{height:70.664062px;}
.h0_c00373{height:1174.500000px;}
.w0_c00373{width:731.977200px;}
.w1_c00373{width:732.000000px;}
.x0_c00373{left:0.000000px;}
.x24_c00373{left:39.190200px;}
.x14_c00373{left:41.740200px;}
.x13_c00373{left:42.790200px;}
.xb_c00373{left:43.915200px;}
.x8_c00373{left:46.090200px;}
.x5_c00373{left:47.140200px;}
.x2_c00373{left:48.940200px;}
.x2b_c00373{left:51.490200px;}
.x17_c00373{left:58.990200px;}
.xc_c00373{left:60.790200px;}
.x1c_c00373{left:69.490200px;}
.x4_c00373{left:73.090200px;}
.xd_c00373{left:75.563700px;}
.x18_c00373{left:79.915200px;}
.xe_c00373{left:82.090200px;}
.x12_c00373{left:97.540200px;}
.xf_c00373{left:100.765200px;}
.x2a_c00373{left:111.940200px;}
.x3_c00373{left:217.090200px;}
.x20_c00373{left:241.915200px;}
.x21_c00373{left:256.690200px;}
.x1_c00373{left:274.690200px;}
.x10_c00373{left:315.340200px;}
.x25_c00373{left:393.490200px;}
.x22_c00373{left:408.940200px;}
.x19_c00373{left:411.788700px;}
.x23_c00373{left:439.915200px;}
.x26_c00373{left:445.690200px;}
.x27_c00373{left:449.290200px;}
.x15_c00373{left:480.190200px;}
.x28_c00373{left:485.965200px;}
.x2c_c00373{left:497.890200px;}
.x16_c00373{left:501.490200px;}
.x1d_c00373{left:520.165200px;}
.x1e_c00373{left:535.315200px;}
.x29_c00373{left:540.715200px;}
.x9_c00373{left:557.965200px;}
.x6_c00373{left:596.515200px;}
.x1a_c00373{left:608.365200px;}
.x1f_c00373{left:613.090200px;}
.x7_c00373{left:614.140200px;}
.x11_c00373{left:622.390200px;}
.x1b_c00373{left:623.890200px;}
.xa_c00373{left:646.540200px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls0_c00373{letter-spacing:0.000000pt;}
.ws0_c00373{word-spacing:0.000000pt;}
.fs0_c00373{font-size:53.333333pt;}
.fs1_c00373{font-size:58.666667pt;}
.fs2_c00373{font-size:64.000000pt;}
.y0_c00373{bottom:0.000000pt;}
.y52_c00373{bottom:85.598667pt;}
.y53_c00373{bottom:85.932000pt;}
.y51_c00373{bottom:88.132000pt;}
.y50_c00373{bottom:96.532000pt;}
.y4f_c00373{bottom:102.265333pt;}
.y4e_c00373{bottom:109.598667pt;}
.y4c_c00373{bottom:116.932000pt;}
.y4d_c00373{bottom:117.932000pt;}
.y4b_c00373{bottom:118.932000pt;}
.y4a_c00373{bottom:133.598667pt;}
.y49_c00373{bottom:149.265333pt;}
.y47_c00373{bottom:164.000000pt;}
.y48_c00373{bottom:164.666667pt;}
.y46_c00373{bottom:166.265333pt;}
.y45_c00373{bottom:170.732000pt;}
.y43_c00373{bottom:179.666667pt;}
.y44_c00373{bottom:180.333333pt;}
.y42_c00373{bottom:181.932000pt;}
.y41_c00373{bottom:196.000000pt;}
.y40_c00373{bottom:197.265333pt;}
.y3f_c00373{bottom:199.532000pt;}
.y3e_c00373{bottom:212.333333pt;}
.y3d_c00373{bottom:228.000000pt;}
.y3c_c00373{bottom:243.666667pt;}
.y3b_c00373{bottom:258.732000pt;}
.y3a_c00373{bottom:278.598667pt;}
.y39_c00373{bottom:289.133333pt;}
.y38_c00373{bottom:290.065333pt;}
.y37_c00373{bottom:305.133333pt;}
.y36_c00373{bottom:306.133333pt;}
.y35_c00373{bottom:321.466667pt;}
.y34_c00373{bottom:337.133333pt;}
.y33_c00373{bottom:352.800000pt;}
.y32_c00373{bottom:368.532000pt;}
.y31_c00373{bottom:384.465333pt;}
.y30_c00373{bottom:399.865333pt;}
.y2f_c00373{bottom:415.798667pt;}
.y2e_c00373{bottom:432.465333pt;}
.y2d_c00373{bottom:446.598667pt;}
.y2c_c00373{bottom:461.932000pt;}
.y2b_c00373{bottom:477.598667pt;}
.y2a_c00373{bottom:493.000000pt;}
.y29_c00373{bottom:508.666667pt;}
.y27_c00373{bottom:509.265333pt;}
.y28_c00373{bottom:509.333333pt;}
.y26_c00373{bottom:524.265333pt;}
.y25_c00373{bottom:539.732000pt;}
.y24_c00373{bottom:555.398667pt;}
.y23_c00373{bottom:571.065333pt;}
.y20_c00373{bottom:586.398667pt;}
.y21_c00373{bottom:587.000000pt;}
.y22_c00373{bottom:587.333333pt;}
.y1f_c00373{bottom:602.398667pt;}
.y1e_c00373{bottom:618.065333pt;}
.y1d_c00373{bottom:633.732000pt;}
.y1b_c00373{bottom:646.865333pt;}
.y1c_c00373{bottom:649.132000pt;}
.y19_c00373{bottom:664.465333pt;}
.y1a_c00373{bottom:664.798667pt;}
.y18_c00373{bottom:680.198667pt;}
.y17_c00373{bottom:695.865333pt;}
.y13_c00373{bottom:708.600000pt;}
.y14_c00373{bottom:708.666667pt;}
.y15_c00373{bottom:709.933333pt;}
.y16_c00373{bottom:711.865333pt;}
.y12_c00373{bottom:726.266667pt;}
.y11_c00373{bottom:741.600000pt;}
.y10_c00373{bottom:755.000000pt;}
.yf_c00373{bottom:771.666667pt;}
.ye_c00373{bottom:787.065333pt;}
.yd_c00373{bottom:797.933333pt;}
.yc_c00373{bottom:817.466667pt;}
.y9_c00373{bottom:832.466667pt;}
.yb_c00373{bottom:834.732000pt;}
.ya_c00373{bottom:835.333333pt;}
.y6_c00373{bottom:848.198667pt;}
.y8_c00373{bottom:850.065333pt;}
.y7_c00373{bottom:850.398667pt;}
.y5_c00373{bottom:864.466667pt;}
.y3_c00373{bottom:912.466667pt;}
.y4_c00373{bottom:920.133333pt;}
.y2_c00373{bottom:937.466667pt;}
.y1_c00373{bottom:988.600000pt;}
.h1_c00373{height:52.343750pt;}
.h4_c00373{height:57.549479pt;}
.h2_c00373{height:57.578125pt;}
.h5_c00373{height:59.125000pt;}
.h3_c00373{height:62.812500pt;}
.h0_c00373{height:1044.000000pt;}
.w0_c00373{width:650.646400pt;}
.w1_c00373{width:650.666667pt;}
.x0_c00373{left:0.000000pt;}
.x24_c00373{left:34.835733pt;}
.x14_c00373{left:37.102400pt;}
.x13_c00373{left:38.035733pt;}
.xb_c00373{left:39.035733pt;}
.x8_c00373{left:40.969067pt;}
.x5_c00373{left:41.902400pt;}
.x2_c00373{left:43.502400pt;}
.x2b_c00373{left:45.769067pt;}
.x17_c00373{left:52.435733pt;}
.xc_c00373{left:54.035733pt;}
.x1c_c00373{left:61.769067pt;}
.x4_c00373{left:64.969067pt;}
.xd_c00373{left:67.167733pt;}
.x18_c00373{left:71.035733pt;}
.xe_c00373{left:72.969067pt;}
.x12_c00373{left:86.702400pt;}
.xf_c00373{left:89.569067pt;}
.x2a_c00373{left:99.502400pt;}
.x3_c00373{left:192.969067pt;}
.x20_c00373{left:215.035733pt;}
.x21_c00373{left:228.169067pt;}
.x1_c00373{left:244.169067pt;}
.x10_c00373{left:280.302400pt;}
.x25_c00373{left:349.769067pt;}
.x22_c00373{left:363.502400pt;}
.x19_c00373{left:366.034400pt;}
.x23_c00373{left:391.035733pt;}
.x26_c00373{left:396.169067pt;}
.x27_c00373{left:399.369067pt;}
.x15_c00373{left:426.835733pt;}
.x28_c00373{left:431.969067pt;}
.x2c_c00373{left:442.569067pt;}
.x16_c00373{left:445.769067pt;}
.x1d_c00373{left:462.369067pt;}
.x1e_c00373{left:475.835733pt;}
.x29_c00373{left:480.635733pt;}
.x9_c00373{left:495.969067pt;}
.x6_c00373{left:530.235733pt;}
.x1a_c00373{left:540.769067pt;}
.x1f_c00373{left:544.969067pt;}
.x7_c00373{left:545.902400pt;}
.x11_c00373{left:553.235733pt;}
.x1b_c00373{left:554.569067pt;}
.xa_c00373{left:574.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d57bf806bbeb60ee048999b.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00374;src:url('chunks/assets/font_d523a51389b15fdb2df07b49.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00374;src:url('chunks/assets/font_e0c275521878fcdb9cbcba96.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c00374{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m16_c00374{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00374{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00374{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00374{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m0_c00374{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4_c00374{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2_c00374{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c00374{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9_c00374{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m18_c00374{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m19_c00374{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m14_c00374{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00374{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00374{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00374{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00374{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00374{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c00374{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00374{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00374{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c00374{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00374{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00374{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00374{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00374{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00374{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m15_c00374{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c00374{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m3_c00374{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00374{color:transparent;}
.fs1_c00374{font-size:60.000000px;}
.fs0_c00374{font-size:66.000000px;}
.fs2_c00374{font-size:78.000000px;}
.y0_c00374{bottom:0.000000px;}
.y4e_c00374{bottom:77.250000px;}
.y4c_c00374{bottom:93.750000px;}
.y4d_c00374{bottom:98.098500px;}
.y4b_c00374{bottom:110.323500px;}
.y4a_c00374{bottom:126.598500px;}
.y46_c00374{bottom:140.548500px;}
.y47_c00374{bottom:141.298500px;}
.y48_c00374{bottom:143.848500px;}
.y49_c00374{bottom:146.323500px;}
.y42_c00374{bottom:157.500000px;}
.y43_c00374{bottom:159.973500px;}
.y44_c00374{bottom:163.948500px;}
.y45_c00374{bottom:164.398500px;}
.y41_c00374{bottom:175.125000px;}
.y3e_c00374{bottom:192.375000px;}
.y3f_c00374{bottom:196.723500px;}
.y40_c00374{bottom:197.098500px;}
.y3d_c00374{bottom:208.273500px;}
.y3c_c00374{bottom:224.773500px;}
.y3b_c00374{bottom:240.673500px;}
.y3a_c00374{bottom:257.173500px;}
.y39_c00374{bottom:273.823500px;}
.y36_c00374{bottom:289.573500px;}
.y37_c00374{bottom:289.650000px;}
.y38_c00374{bottom:290.025000px;}
.y35_c00374{bottom:306.900000px;}
.y33_c00374{bottom:323.775000px;}
.y34_c00374{bottom:323.848500px;}
.y32_c00374{bottom:339.298500px;}
.y31_c00374{bottom:356.250000px;}
.y30_c00374{bottom:373.500000px;}
.y2f_c00374{bottom:390.073500px;}
.y2e_c00374{bottom:406.573500px;}
.y2d_c00374{bottom:423.223500px;}
.y2c_c00374{bottom:440.098500px;}
.y2a_c00374{bottom:457.423500px;}
.y2b_c00374{bottom:457.723500px;}
.y29_c00374{bottom:474.673500px;}
.y28_c00374{bottom:491.548500px;}
.y27_c00374{bottom:508.798500px;}
.y26_c00374{bottom:525.448500px;}
.y25_c00374{bottom:542.323500px;}
.y24_c00374{bottom:543.448500px;}
.y23_c00374{bottom:579.448500px;}
.y22_c00374{bottom:625.875000px;}
.y21_c00374{bottom:626.250000px;}
.y20_c00374{bottom:627.298500px;}
.y1f_c00374{bottom:643.500000px;}
.y1e_c00374{bottom:660.750000px;}
.y1d_c00374{bottom:677.698500px;}
.y1c_c00374{bottom:695.323500px;}
.y1b_c00374{bottom:709.048500px;}
.y1a_c00374{bottom:711.598500px;}
.y19_c00374{bottom:728.098500px;}
.y18_c00374{bottom:743.923500px;}
.y17_c00374{bottom:744.673500px;}
.y16_c00374{bottom:746.098500px;}
.y15_c00374{bottom:763.048500px;}
.y14_c00374{bottom:779.625000px;}
.y13_c00374{bottom:797.550000px;}
.y12_c00374{bottom:810.900000px;}
.y11_c00374{bottom:811.650000px;}
.y10_c00374{bottom:814.875000px;}
.yf_c00374{bottom:831.448500px;}
.ye_c00374{bottom:850.125000px;}
.yd_c00374{bottom:860.250000px;}
.yc_c00374{bottom:865.198500px;}
.yb_c00374{bottom:881.473500px;}
.ya_c00374{bottom:894.448500px;}
.y9_c00374{bottom:899.098500px;}
.y8_c00374{bottom:914.925000px;}
.y7_c00374{bottom:975.073500px;}
.y6_c00374{bottom:996.300000px;}
.y5_c00374{bottom:1050.973500px;}
.y4_c00374{bottom:1055.025000px;}
.y3_c00374{bottom:1056.000000px;}
.y2_c00374{bottom:1056.823500px;}
.y1_c00374{bottom:1162.275000px;}
.h3_c00374{height:58.886719px;}
.h2_c00374{height:64.743164px;}
.h1_c00374{height:64.775391px;}
.h5_c00374{height:66.515625px;}
.h4_c00374{height:78.609375px;}
.h0_c00374{height:1174.500000px;}
.w0_c00374{width:731.977200px;}
.w1_c00374{width:732.000000px;}
.x0_c00374{left:0.000000px;}
.x1b_c00374{left:46.090200px;}
.x19_c00374{left:47.515200px;}
.x12_c00374{left:48.565200px;}
.xe_c00374{left:49.690200px;}
.x9_c00374{left:51.115200px;}
.x6_c00374{left:52.915200px;}
.x7_c00374{left:55.090200px;}
.x1d_c00374{left:58.315200px;}
.x22_c00374{left:62.290200px;}
.x14_c00374{left:73.765200px;}
.x11_c00374{left:75.563700px;}
.xb_c00374{left:78.115200px;}
.x1c_c00374{left:134.965200px;}
.x18_c00374{left:142.915200px;}
.x1a_c00374{left:154.090200px;}
.x2_c00374{left:267.490200px;}
.x17_c00374{left:280.090200px;}
.x3_c00374{left:292.990200px;}
.x23_c00374{left:378.340200px;}
.x15_c00374{left:382.690200px;}
.x24_c00374{left:392.740200px;}
.x16_c00374{left:398.890200px;}
.xf_c00374{left:458.290200px;}
.x4_c00374{left:460.090200px;}
.x10_c00374{left:474.490200px;}
.x1_c00374{left:523.390200px;}
.x8_c00374{left:542.140200px;}
.xc_c00374{left:558.340200px;}
.xd_c00374{left:577.090200px;}
.x20_c00374{left:592.915200px;}
.x21_c00374{left:597.565200px;}
.x25_c00374{left:610.540200px;}
.x1e_c00374{left:620.590200px;}
.x5_c00374{left:622.090200px;}
.xa_c00374{left:625.990200px;}
.x1f_c00374{left:636.115200px;}
.x13_c00374{left:645.115200px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls0_c00374{letter-spacing:0.000000pt;}
.ws0_c00374{word-spacing:0.000000pt;}
.fs1_c00374{font-size:53.333333pt;}
.fs0_c00374{font-size:58.666667pt;}
.fs2_c00374{font-size:69.333333pt;}
.y0_c00374{bottom:0.000000pt;}
.y4e_c00374{bottom:68.666667pt;}
.y4c_c00374{bottom:83.333333pt;}
.y4d_c00374{bottom:87.198667pt;}
.y4b_c00374{bottom:98.065333pt;}
.y4a_c00374{bottom:112.532000pt;}
.y46_c00374{bottom:124.932000pt;}
.y47_c00374{bottom:125.598667pt;}
.y48_c00374{bottom:127.865333pt;}
.y49_c00374{bottom:130.065333pt;}
.y42_c00374{bottom:140.000000pt;}
.y43_c00374{bottom:142.198667pt;}
.y44_c00374{bottom:145.732000pt;}
.y45_c00374{bottom:146.132000pt;}
.y41_c00374{bottom:155.666667pt;}
.y3e_c00374{bottom:171.000000pt;}
.y3f_c00374{bottom:174.865333pt;}
.y40_c00374{bottom:175.198667pt;}
.y3d_c00374{bottom:185.132000pt;}
.y3c_c00374{bottom:199.798667pt;}
.y3b_c00374{bottom:213.932000pt;}
.y3a_c00374{bottom:228.598667pt;}
.y39_c00374{bottom:243.398667pt;}
.y36_c00374{bottom:257.398667pt;}
.y37_c00374{bottom:257.466667pt;}
.y38_c00374{bottom:257.800000pt;}
.y35_c00374{bottom:272.800000pt;}
.y33_c00374{bottom:287.800000pt;}
.y34_c00374{bottom:287.865333pt;}
.y32_c00374{bottom:301.598667pt;}
.y31_c00374{bottom:316.666667pt;}
.y30_c00374{bottom:332.000000pt;}
.y2f_c00374{bottom:346.732000pt;}
.y2e_c00374{bottom:361.398667pt;}
.y2d_c00374{bottom:376.198667pt;}
.y2c_c00374{bottom:391.198667pt;}
.y2a_c00374{bottom:406.598667pt;}
.y2b_c00374{bottom:406.865333pt;}
.y29_c00374{bottom:421.932000pt;}
.y28_c00374{bottom:436.932000pt;}
.y27_c00374{bottom:452.265333pt;}
.y26_c00374{bottom:467.065333pt;}
.y25_c00374{bottom:482.065333pt;}
.y24_c00374{bottom:483.065333pt;}
.y23_c00374{bottom:515.065333pt;}
.y22_c00374{bottom:556.333333pt;}
.y21_c00374{bottom:556.666667pt;}
.y20_c00374{bottom:557.598667pt;}
.y1f_c00374{bottom:572.000000pt;}
.y1e_c00374{bottom:587.333333pt;}
.y1d_c00374{bottom:602.398667pt;}
.y1c_c00374{bottom:618.065333pt;}
.y1b_c00374{bottom:630.265333pt;}
.y1a_c00374{bottom:632.532000pt;}
.y19_c00374{bottom:647.198667pt;}
.y18_c00374{bottom:661.265333pt;}
.y17_c00374{bottom:661.932000pt;}
.y16_c00374{bottom:663.198667pt;}
.y15_c00374{bottom:678.265333pt;}
.y14_c00374{bottom:693.000000pt;}
.y13_c00374{bottom:708.933333pt;}
.y12_c00374{bottom:720.800000pt;}
.y11_c00374{bottom:721.466667pt;}
.y10_c00374{bottom:724.333333pt;}
.yf_c00374{bottom:739.065333pt;}
.ye_c00374{bottom:755.666667pt;}
.yd_c00374{bottom:764.666667pt;}
.yc_c00374{bottom:769.065333pt;}
.yb_c00374{bottom:783.532000pt;}
.ya_c00374{bottom:795.065333pt;}
.y9_c00374{bottom:799.198667pt;}
.y8_c00374{bottom:813.266667pt;}
.y7_c00374{bottom:866.732000pt;}
.y6_c00374{bottom:885.600000pt;}
.y5_c00374{bottom:934.198667pt;}
.y4_c00374{bottom:937.800000pt;}
.y3_c00374{bottom:938.666667pt;}
.y2_c00374{bottom:939.398667pt;}
.y1_c00374{bottom:1033.133333pt;}
.h3_c00374{height:52.343750pt;}
.h2_c00374{height:57.549479pt;}
.h1_c00374{height:57.578125pt;}
.h5_c00374{height:59.125000pt;}
.h4_c00374{height:69.875000pt;}
.h0_c00374{height:1044.000000pt;}
.w0_c00374{width:650.646400pt;}
.w1_c00374{width:650.666667pt;}
.x0_c00374{left:0.000000pt;}
.x1b_c00374{left:40.969067pt;}
.x19_c00374{left:42.235733pt;}
.x12_c00374{left:43.169067pt;}
.xe_c00374{left:44.169067pt;}
.x9_c00374{left:45.435733pt;}
.x6_c00374{left:47.035733pt;}
.x7_c00374{left:48.969067pt;}
.x1d_c00374{left:51.835733pt;}
.x22_c00374{left:55.369067pt;}
.x14_c00374{left:65.569067pt;}
.x11_c00374{left:67.167733pt;}
.xb_c00374{left:69.435733pt;}
.x1c_c00374{left:119.969067pt;}
.x18_c00374{left:127.035733pt;}
.x1a_c00374{left:136.969067pt;}
.x2_c00374{left:237.769067pt;}
.x17_c00374{left:248.969067pt;}
.x3_c00374{left:260.435733pt;}
.x23_c00374{left:336.302400pt;}
.x15_c00374{left:340.169067pt;}
.x24_c00374{left:349.102400pt;}
.x16_c00374{left:354.569067pt;}
.xf_c00374{left:407.369067pt;}
.x4_c00374{left:408.969067pt;}
.x10_c00374{left:421.769067pt;}
.x1_c00374{left:465.235733pt;}
.x8_c00374{left:481.902400pt;}
.xc_c00374{left:496.302400pt;}
.xd_c00374{left:512.969067pt;}
.x20_c00374{left:527.035733pt;}
.x21_c00374{left:531.169067pt;}
.x25_c00374{left:542.702400pt;}
.x1e_c00374{left:551.635733pt;}
.x5_c00374{left:552.969067pt;}
.xa_c00374{left:556.435733pt;}
.x1f_c00374{left:565.435733pt;}
.x13_c00374{left:573.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00375 {
    display:none;
  }
  .loading-indicator_c00375.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00375 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00375 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00375" -> "#page-container .classname_c00375")
 */
.pf_c00375 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00375 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00375 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00375 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00375 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00375 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00375 {overflow:visible;}
  }
}
.c_c00375 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00375 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00375:after { /* webkit #35443 */
  content: '';
}
.t_c00375:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00375 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00375 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00375 { /* info for Javascript */
  display:none;
}
.l_c00375 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00375 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00375 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00375:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00375 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00375.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00375 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00375{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00375;src:url('chunks/assets/font_fed8bb0d3d4458427faa12c7.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00375;src:url('chunks/assets/font_459f37f01f8eaa9e4600605b.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00375;src:url('chunks/assets/font_e28ab82f6e0e7282b1d5a0ae.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c00375{transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00375{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00375{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m15_c00375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m13_c00375{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m16_c00375{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m18_c00375{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00375{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00375{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00375{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00375{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c00375{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00375{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m17_c00375{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00375{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00375{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00375{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00375{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00375{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00375{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00375{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c00375{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00375{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00375{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m14_c00375{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c00375{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00375{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c00375{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m19_c00375{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00375{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1_c00375{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.ls0_c00375{letter-spacing:0.000000px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00375{word-spacing:0.000000px;}
.fc0_c00375{color:transparent;}
.fs4_c00375{font-size:36.000000px;}
.fs1_c00375{font-size:60.000000px;}
.fs0_c00375{font-size:66.000000px;}
.fs2_c00375{font-size:72.000000px;}
.fs3_c00375{font-size:96.000000px;}
.y0_c00375{bottom:0.000000px;}
.y5a_c00375{bottom:91.198500px;}
.y5c_c00375{bottom:93.073500px;}
.y5b_c00375{bottom:93.448500px;}
.y59_c00375{bottom:94.875000px;}
.y54_c00375{bottom:108.148500px;}
.y55_c00375{bottom:108.898500px;}
.y56_c00375{bottom:109.273500px;}
.y58_c00375{bottom:109.948500px;}
.y57_c00375{bottom:110.323500px;}
.y53_c00375{bottom:111.375000px;}
.y52_c00375{bottom:126.898500px;}
.y51_c00375{bottom:132.673500px;}
.y50_c00375{bottom:141.000000px;}
.y4e_c00375{bottom:144.523500px;}
.y4f_c00375{bottom:144.898500px;}
.y4d_c00375{bottom:145.948500px;}
.y4c_c00375{bottom:148.500000px;}
.y4b_c00375{bottom:163.648500px;}
.y4a_c00375{bottom:180.523500px;}
.y49_c00375{bottom:197.473500px;}
.y48_c00375{bottom:202.125000px;}
.y47_c00375{bottom:204.673500px;}
.y46_c00375{bottom:215.848500px;}
.y44_c00375{bottom:233.098500px;}
.y45_c00375{bottom:233.848500px;}
.y42_c00375{bottom:251.098500px;}
.y43_c00375{bottom:251.398500px;}
.y41_c00375{bottom:269.473500px;}
.y40_c00375{bottom:274.875000px;}
.y3b_c00375{bottom:284.548500px;}
.y3f_c00375{bottom:285.973500px;}
.y3e_c00375{bottom:286.348500px;}
.y3d_c00375{bottom:292.125000px;}
.y3c_c00375{bottom:303.673500px;}
.y3a_c00375{bottom:320.923500px;}
.y39_c00375{bottom:338.923500px;}
.y38_c00375{bottom:356.548500px;}
.y37_c00375{bottom:376.798500px;}
.y36_c00375{bottom:391.875000px;}
.y35_c00375{bottom:409.500000px;}
.y34_c00375{bottom:412.723500px;}
.y33_c00375{bottom:427.125000px;}
.y32_c00375{bottom:447.298500px;}
.y31_c00375{bottom:462.448500px;}
.y30_c00375{bottom:479.698500px;}
.y2f_c00375{bottom:481.500000px;}
.y2d_c00375{bottom:496.948500px;}
.y2e_c00375{bottom:497.323500px;}
.y2c_c00375{bottom:497.698500px;}
.y2b_c00375{bottom:514.648500px;}
.y2a_c00375{bottom:516.073500px;}
.y29_c00375{bottom:532.273500px;}
.y28_c00375{bottom:549.898500px;}
.y27_c00375{bottom:567.223500px;}
.y26_c00375{bottom:568.273500px;}
.y24_c00375{bottom:584.848500px;}
.y25_c00375{bottom:585.898500px;}
.y23_c00375{bottom:602.473500px;}
.y21_c00375{bottom:620.098500px;}
.y22_c00375{bottom:621.148500px;}
.y1f_c00375{bottom:637.423500px;}
.y20_c00375{bottom:638.098500px;}
.y1e_c00375{bottom:654.673500px;}
.y1d_c00375{bottom:672.673500px;}
.y1c_c00375{bottom:690.298500px;}
.y1a_c00375{bottom:707.250000px;}
.y1b_c00375{bottom:708.673500px;}
.y19_c00375{bottom:724.500000px;}
.y16_c00375{bottom:741.825000px;}
.y17_c00375{bottom:742.125000px;}
.y18_c00375{bottom:743.250000px;}
.y15_c00375{bottom:760.500000px;}
.y13_c00375{bottom:771.300000px;}
.y12_c00375{bottom:776.698500px;}
.y14_c00375{bottom:778.198500px;}
.y10_c00375{bottom:795.073500px;}
.y11_c00375{bottom:796.500000px;}
.yf_c00375{bottom:813.448500px;}
.ye_c00375{bottom:830.323500px;}
.yd_c00375{bottom:847.650000px;}
.yc_c00375{bottom:864.223500px;}
.yb_c00375{bottom:881.848500px;}
.ya_c00375{bottom:898.723500px;}
.y9_c00375{bottom:916.723500px;}
.y8_c00375{bottom:932.925000px;}
.y7_c00375{bottom:952.050000px;}
.y6_c00375{bottom:969.300000px;}
.y5_c00375{bottom:1031.550000px;}
.y4_c00375{bottom:1052.098500px;}
.y1_c00375{bottom:1100.323500px;}
.y3_c00375{bottom:1109.698500px;}
.y2_c00375{bottom:1115.473500px;}
.h7_c00375{height:35.332031px;}
.h2_c00375{height:58.886719px;}
.h4_c00375{height:64.743164px;}
.h1_c00375{height:64.775391px;}
.h3_c00375{height:66.515625px;}
.h5_c00375{height:70.664062px;}
.h6_c00375{height:94.218750px;}
.h0_c00375{height:1174.500000px;}
.w0_c00375{width:731.977200px;}
.w1_c00375{width:732.000000px;}
.x0_c00375{left:0.000000px;}
.x7_c00375{left:57.565200px;}
.x6_c00375{left:58.990200px;}
.x5_c00375{left:60.490200px;}
.x4_c00375{left:61.540200px;}
.x1a_c00375{left:62.965200px;}
.x1b_c00375{left:73.390200px;}
.x13_c00375{left:79.915200px;}
.x1_c00375{left:81.715200px;}
.xd_c00375{left:83.140200px;}
.x8_c00375{left:84.563700px;}
.xf_c00375{left:87.115200px;}
.x1f_c00375{left:88.540200px;}
.x19_c00375{left:103.690200px;}
.x2_c00375{left:110.140200px;}
.x21_c00375{left:121.690200px;}
.x14_c00375{left:125.965200px;}
.x1e_c00375{left:130.990200px;}
.x1c_c00375{left:132.490200px;}
.x10_c00375{left:133.915200px;}
.x22_c00375{left:158.365200px;}
.xe_c00375{left:248.365200px;}
.x27_c00375{left:253.090200px;}
.xb_c00375{left:265.315200px;}
.x23_c00375{left:267.115200px;}
.xc_c00375{left:276.490200px;}
.x3_c00375{left:286.915200px;}
.x24_c00375{left:289.765200px;}
.x15_c00375{left:382.315200px;}
.x16_c00375{left:396.715200px;}
.x2e_c00375{left:454.690200px;}
.x9_c00375{left:460.090200px;}
.x28_c00375{left:474.115200px;}
.xa_c00375{left:477.340200px;}
.x29_c00375{left:498.190200px;}
.x26_c00375{left:537.790200px;}
.x2c_c00375{left:557.590200px;}
.x2a_c00375{left:567.715200px;}
.x2b_c00375{left:576.715200px;}
.x11_c00375{left:588.565200px;}
.x1d_c00375{left:589.690200px;}
.x20_c00375{left:610.165200px;}
.x18_c00375{left:626.365200px;}
.x2d_c00375{left:628.540200px;}
.x17_c00375{left:637.915200px;}
.x25_c00375{left:645.790200px;}
.x12_c00375{left:665.590200px;}
.x2f_c00375{left:677.515200px;}
.x30_c00375{left:679.315200px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls0_c00375{letter-spacing:0.000000pt;}
.ws0_c00375{word-spacing:0.000000pt;}
.fs4_c00375{font-size:32.000000pt;}
.fs1_c00375{font-size:53.333333pt;}
.fs0_c00375{font-size:58.666667pt;}
.fs2_c00375{font-size:64.000000pt;}
.fs3_c00375{font-size:85.333333pt;}
.y0_c00375{bottom:0.000000pt;}
.y5a_c00375{bottom:81.065333pt;}
.y5c_c00375{bottom:82.732000pt;}
.y5b_c00375{bottom:83.065333pt;}
.y59_c00375{bottom:84.333333pt;}
.y54_c00375{bottom:96.132000pt;}
.y55_c00375{bottom:96.798667pt;}
.y56_c00375{bottom:97.132000pt;}
.y58_c00375{bottom:97.732000pt;}
.y57_c00375{bottom:98.065333pt;}
.y53_c00375{bottom:99.000000pt;}
.y52_c00375{bottom:112.798667pt;}
.y51_c00375{bottom:117.932000pt;}
.y50_c00375{bottom:125.333333pt;}
.y4e_c00375{bottom:128.465333pt;}
.y4f_c00375{bottom:128.798667pt;}
.y4d_c00375{bottom:129.732000pt;}
.y4c_c00375{bottom:132.000000pt;}
.y4b_c00375{bottom:145.465333pt;}
.y4a_c00375{bottom:160.465333pt;}
.y49_c00375{bottom:175.532000pt;}
.y48_c00375{bottom:179.666667pt;}
.y47_c00375{bottom:181.932000pt;}
.y46_c00375{bottom:191.865333pt;}
.y44_c00375{bottom:207.198667pt;}
.y45_c00375{bottom:207.865333pt;}
.y42_c00375{bottom:223.198667pt;}
.y43_c00375{bottom:223.465333pt;}
.y41_c00375{bottom:239.532000pt;}
.y40_c00375{bottom:244.333333pt;}
.y3b_c00375{bottom:252.932000pt;}
.y3f_c00375{bottom:254.198667pt;}
.y3e_c00375{bottom:254.532000pt;}
.y3d_c00375{bottom:259.666667pt;}
.y3c_c00375{bottom:269.932000pt;}
.y3a_c00375{bottom:285.265333pt;}
.y39_c00375{bottom:301.265333pt;}
.y38_c00375{bottom:316.932000pt;}
.y37_c00375{bottom:334.932000pt;}
.y36_c00375{bottom:348.333333pt;}
.y35_c00375{bottom:364.000000pt;}
.y34_c00375{bottom:366.865333pt;}
.y33_c00375{bottom:379.666667pt;}
.y32_c00375{bottom:397.598667pt;}
.y31_c00375{bottom:411.065333pt;}
.y30_c00375{bottom:426.398667pt;}
.y2f_c00375{bottom:428.000000pt;}
.y2d_c00375{bottom:441.732000pt;}
.y2e_c00375{bottom:442.065333pt;}
.y2c_c00375{bottom:442.398667pt;}
.y2b_c00375{bottom:457.465333pt;}
.y2a_c00375{bottom:458.732000pt;}
.y29_c00375{bottom:473.132000pt;}
.y28_c00375{bottom:488.798667pt;}
.y27_c00375{bottom:504.198667pt;}
.y26_c00375{bottom:505.132000pt;}
.y24_c00375{bottom:519.865333pt;}
.y25_c00375{bottom:520.798667pt;}
.y23_c00375{bottom:535.532000pt;}
.y21_c00375{bottom:551.198667pt;}
.y22_c00375{bottom:552.132000pt;}
.y1f_c00375{bottom:566.598667pt;}
.y20_c00375{bottom:567.198667pt;}
.y1e_c00375{bottom:581.932000pt;}
.y1d_c00375{bottom:597.932000pt;}
.y1c_c00375{bottom:613.598667pt;}
.y1a_c00375{bottom:628.666667pt;}
.y1b_c00375{bottom:629.932000pt;}
.y19_c00375{bottom:644.000000pt;}
.y16_c00375{bottom:659.400000pt;}
.y17_c00375{bottom:659.666667pt;}
.y18_c00375{bottom:660.666667pt;}
.y15_c00375{bottom:676.000000pt;}
.y13_c00375{bottom:685.600000pt;}
.y12_c00375{bottom:690.398667pt;}
.y14_c00375{bottom:691.732000pt;}
.y10_c00375{bottom:706.732000pt;}
.y11_c00375{bottom:708.000000pt;}
.yf_c00375{bottom:723.065333pt;}
.ye_c00375{bottom:738.065333pt;}
.yd_c00375{bottom:753.466667pt;}
.yc_c00375{bottom:768.198667pt;}
.yb_c00375{bottom:783.865333pt;}
.ya_c00375{bottom:798.865333pt;}
.y9_c00375{bottom:814.865333pt;}
.y8_c00375{bottom:829.266667pt;}
.y7_c00375{bottom:846.266667pt;}
.y6_c00375{bottom:861.600000pt;}
.y5_c00375{bottom:916.933333pt;}
.y4_c00375{bottom:935.198667pt;}
.y1_c00375{bottom:978.065333pt;}
.y3_c00375{bottom:986.398667pt;}
.y2_c00375{bottom:991.532000pt;}
.h7_c00375{height:31.406250pt;}
.h2_c00375{height:52.343750pt;}
.h4_c00375{height:57.549479pt;}
.h1_c00375{height:57.578125pt;}
.h3_c00375{height:59.125000pt;}
.h5_c00375{height:62.812500pt;}
.h6_c00375{height:83.750000pt;}
.h0_c00375{height:1044.000000pt;}
.w0_c00375{width:650.646400pt;}
.w1_c00375{width:650.666667pt;}
.x0_c00375{left:0.000000pt;}
.x7_c00375{left:51.169067pt;}
.x6_c00375{left:52.435733pt;}
.x5_c00375{left:53.769067pt;}
.x4_c00375{left:54.702400pt;}
.x1a_c00375{left:55.969067pt;}
.x1b_c00375{left:65.235733pt;}
.x13_c00375{left:71.035733pt;}
.x1_c00375{left:72.635733pt;}
.xd_c00375{left:73.902400pt;}
.x8_c00375{left:75.167733pt;}
.xf_c00375{left:77.435733pt;}
.x1f_c00375{left:78.702400pt;}
.x19_c00375{left:92.169067pt;}
.x2_c00375{left:97.902400pt;}
.x21_c00375{left:108.169067pt;}
.x14_c00375{left:111.969067pt;}
.x1e_c00375{left:116.435733pt;}
.x1c_c00375{left:117.769067pt;}
.x10_c00375{left:119.035733pt;}
.x22_c00375{left:140.769067pt;}
.xe_c00375{left:220.769067pt;}
.x27_c00375{left:224.969067pt;}
.xb_c00375{left:235.835733pt;}
.x23_c00375{left:237.435733pt;}
.xc_c00375{left:245.769067pt;}
.x3_c00375{left:255.035733pt;}
.x24_c00375{left:257.569067pt;}
.x15_c00375{left:339.835733pt;}
.x16_c00375{left:352.635733pt;}
.x2e_c00375{left:404.169067pt;}
.x9_c00375{left:408.969067pt;}
.x28_c00375{left:421.435733pt;}
.xa_c00375{left:424.302400pt;}
.x29_c00375{left:442.835733pt;}
.x26_c00375{left:478.035733pt;}
.x2c_c00375{left:495.635733pt;}
.x2a_c00375{left:504.635733pt;}
.x2b_c00375{left:512.635733pt;}
.x11_c00375{left:523.169067pt;}
.x1d_c00375{left:524.169067pt;}
.x20_c00375{left:542.369067pt;}
.x18_c00375{left:556.769067pt;}
.x2d_c00375{left:558.702400pt;}
.x17_c00375{left:567.035733pt;}
.x25_c00375{left:574.035733pt;}
.x12_c00375{left:591.635733pt;}
.x2f_c00375{left:602.235733pt;}
.x30_c00375{left:603.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9919dceaf1ae5707b0485296.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00376;src:url('chunks/assets/font_c80e26ae66102cc35ddb3634.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00376;src:url('chunks/assets/font_bcea1742af7c9cf8de678e97.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00376;src:url('chunks/assets/font_1fb70566a8ec60040d062afc.woff2')format("woff");}.ff4_c00376{font-family:ff4_c00376;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c00376{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m18_c00376{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00376{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00376{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00376{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c00376{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00376{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00376{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00376{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00376{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00376{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c00376{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00376{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c00376{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00376{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00376{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00376{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m16_c00376{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m9_c00376{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m15_c00376{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.md_c00376{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m7_c00376{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma_c00376{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m11_c00376{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1_c00376{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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.000000px;}
.fc0_c00376{color:transparent;}
.fs0_c00376{font-size:54.000000px;}
.fs2_c00376{font-size:60.000000px;}
.fs1_c00376{font-size:66.000000px;}
.y0_c00376{bottom:0.000000px;}
.y4f_c00376{bottom:85.875000px;}
.y4c_c00376{bottom:98.098500px;}
.y4d_c00376{bottom:102.823500px;}
.y4e_c00376{bottom:106.048500px;}
.y4b_c00376{bottom:116.473500px;}
.y4a_c00376{bottom:134.398500px;}
.y48_c00376{bottom:150.000000px;}
.y49_c00376{bottom:155.323500px;}
.y47_c00376{bottom:168.000000px;}
.y45_c00376{bottom:183.448500px;}
.y46_c00376{bottom:188.098500px;}
.y42_c00376{bottom:195.673500px;}
.y44_c00376{bottom:199.948500px;}
.y41_c00376{bottom:211.500000px;}
.y43_c00376{bottom:216.223500px;}
.y3f_c00376{bottom:232.723500px;}
.y40_c00376{bottom:235.573500px;}
.y3e_c00376{bottom:245.323500px;}
.y3d_c00376{bottom:264.823500px;}
.y3c_c00376{bottom:281.400000px;}
.y39_c00376{bottom:297.598500px;}
.y3b_c00376{bottom:300.448500px;}
.y3a_c00376{bottom:300.823500px;}
.y38_c00376{bottom:315.150000px;}
.y37_c00376{bottom:331.798500px;}
.y35_c00376{bottom:348.298500px;}
.y36_c00376{bottom:350.473500px;}
.y34_c00376{bottom:364.875000px;}
.y33_c00376{bottom:381.448500px;}
.y32_c00376{bottom:398.323500px;}
.y31_c00376{bottom:414.898500px;}
.y30_c00376{bottom:431.473500px;}
.y2f_c00376{bottom:448.723500px;}
.y2e_c00376{bottom:465.298500px;}
.y2d_c00376{bottom:482.250000px;}
.y2c_c00376{bottom:482.625000px;}
.y2b_c00376{bottom:499.798500px;}
.y2a_c00376{bottom:516.750000px;}
.y29_c00376{bottom:533.698500px;}
.y28_c00376{bottom:550.648500px;}
.y27_c00376{bottom:567.598500px;}
.y26_c00376{bottom:584.473500px;}
.y25_c00376{bottom:601.723500px;}
.y24_c00376{bottom:618.298500px;}
.y23_c00376{bottom:635.625000px;}
.y22_c00376{bottom:652.500000px;}
.y21_c00376{bottom:669.448500px;}
.y20_c00376{bottom:686.698500px;}
.y1f_c00376{bottom:703.648500px;}
.y1e_c00376{bottom:720.898500px;}
.y1d_c00376{bottom:737.473500px;}
.y1c_c00376{bottom:750.825000px;}
.y1b_c00376{bottom:751.500000px;}
.y1a_c00376{bottom:752.250000px;}
.y19_c00376{bottom:752.923500px;}
.y18_c00376{bottom:755.473500px;}
.y17_c00376{bottom:771.300000px;}
.y16_c00376{bottom:789.300000px;}
.y15_c00376{bottom:808.050000px;}
.y14_c00376{bottom:823.500000px;}
.y13_c00376{bottom:840.823500px;}
.y12_c00376{bottom:857.698500px;}
.y11_c00376{bottom:872.098500px;}
.y10_c00376{bottom:875.323500px;}
.yf_c00376{bottom:876.073500px;}
.ye_c00376{bottom:890.473500px;}
.yd_c00376{bottom:902.025000px;}
.yc_c00376{bottom:902.323500px;}
.yb_c00376{bottom:904.875000px;}
.ya_c00376{bottom:908.098500px;}
.y9_c00376{bottom:908.848500px;}
.y8_c00376{bottom:909.900000px;}
.y7_c00376{bottom:911.400000px;}
.y6_c00376{bottom:924.300000px;}
.y5_c00376{bottom:986.925000px;}
.y4_c00376{bottom:1008.900000px;}
.y3_c00376{bottom:1060.050000px;}
.y1_c00376{bottom:1066.500000px;}
.y2_c00376{bottom:1074.448500px;}
.h6_c00376{height:52.971680px;}
.h1_c00376{height:54.421875px;}
.h4_c00376{height:58.857422px;}
.h5_c00376{height:60.468750px;}
.h3_c00376{height:64.775391px;}
.h2_c00376{height:66.515625px;}
.h0_c00376{height:1174.500000px;}
.w0_c00376{width:731.977200px;}
.w1_c00376{width:732.000000px;}
.x0_c00376{left:0.000000px;}
.x19_c00376{left:43.165200px;}
.xf_c00376{left:44.965200px;}
.x5_c00376{left:46.390200px;}
.xe_c00376{left:47.515200px;}
.x4_c00376{left:48.565200px;}
.x1a_c00376{left:70.540200px;}
.x10_c00376{left:73.390200px;}
.x1c_c00376{left:89.590200px;}
.x1d_c00376{left:92.515200px;}
.x1f_c00376{left:129.565200px;}
.x6_c00376{left:190.763700px;}
.x7_c00376{left:207.340200px;}
.x1_c00376{left:266.365200px;}
.xc_c00376{left:304.540200px;}
.xd_c00376{left:320.365200px;}
.x8_c00376{left:323.590200px;}
.x9_c00376{left:384.115200px;}
.x2_c00376{left:457.540200px;}
.x11_c00376{left:507.940200px;}
.x1e_c00376{left:510.490200px;}
.x12_c00376{left:526.690200px;}
.x17_c00376{left:569.890200px;}
.x18_c00376{left:584.290200px;}
.x13_c00376{left:585.715200px;}
.x14_c00376{left:599.740200px;}
.x3_c00376{left:616.990200px;}
.x1b_c00376{left:618.790200px;}
.xa_c00376{left:620.590200px;}
.x20_c00376{left:629.290200px;}
.x15_c00376{left:632.515200px;}
.x16_c00376{left:637.165200px;}
.xb_c00376{left:640.090200px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls0_c00376{letter-spacing:0.000000pt;}
.ws0_c00376{word-spacing:0.000000pt;}
.fs0_c00376{font-size:48.000000pt;}
.fs2_c00376{font-size:53.333333pt;}
.fs1_c00376{font-size:58.666667pt;}
.y0_c00376{bottom:0.000000pt;}
.y4f_c00376{bottom:76.333333pt;}
.y4c_c00376{bottom:87.198667pt;}
.y4d_c00376{bottom:91.398667pt;}
.y4e_c00376{bottom:94.265333pt;}
.y4b_c00376{bottom:103.532000pt;}
.y4a_c00376{bottom:119.465333pt;}
.y48_c00376{bottom:133.333333pt;}
.y49_c00376{bottom:138.065333pt;}
.y47_c00376{bottom:149.333333pt;}
.y45_c00376{bottom:163.065333pt;}
.y46_c00376{bottom:167.198667pt;}
.y42_c00376{bottom:173.932000pt;}
.y44_c00376{bottom:177.732000pt;}
.y41_c00376{bottom:188.000000pt;}
.y43_c00376{bottom:192.198667pt;}
.y3f_c00376{bottom:206.865333pt;}
.y40_c00376{bottom:209.398667pt;}
.y3e_c00376{bottom:218.065333pt;}
.y3d_c00376{bottom:235.398667pt;}
.y3c_c00376{bottom:250.133333pt;}
.y39_c00376{bottom:264.532000pt;}
.y3b_c00376{bottom:267.065333pt;}
.y3a_c00376{bottom:267.398667pt;}
.y38_c00376{bottom:280.133333pt;}
.y37_c00376{bottom:294.932000pt;}
.y35_c00376{bottom:309.598667pt;}
.y36_c00376{bottom:311.532000pt;}
.y34_c00376{bottom:324.333333pt;}
.y33_c00376{bottom:339.065333pt;}
.y32_c00376{bottom:354.065333pt;}
.y31_c00376{bottom:368.798667pt;}
.y30_c00376{bottom:383.532000pt;}
.y2f_c00376{bottom:398.865333pt;}
.y2e_c00376{bottom:413.598667pt;}
.y2d_c00376{bottom:428.666667pt;}
.y2c_c00376{bottom:429.000000pt;}
.y2b_c00376{bottom:444.265333pt;}
.y2a_c00376{bottom:459.333333pt;}
.y29_c00376{bottom:474.398667pt;}
.y28_c00376{bottom:489.465333pt;}
.y27_c00376{bottom:504.532000pt;}
.y26_c00376{bottom:519.532000pt;}
.y25_c00376{bottom:534.865333pt;}
.y24_c00376{bottom:549.598667pt;}
.y23_c00376{bottom:565.000000pt;}
.y22_c00376{bottom:580.000000pt;}
.y21_c00376{bottom:595.065333pt;}
.y20_c00376{bottom:610.398667pt;}
.y1f_c00376{bottom:625.465333pt;}
.y1e_c00376{bottom:640.798667pt;}
.y1d_c00376{bottom:655.532000pt;}
.y1c_c00376{bottom:667.400000pt;}
.y1b_c00376{bottom:668.000000pt;}
.y1a_c00376{bottom:668.666667pt;}
.y19_c00376{bottom:669.265333pt;}
.y18_c00376{bottom:671.532000pt;}
.y17_c00376{bottom:685.600000pt;}
.y16_c00376{bottom:701.600000pt;}
.y15_c00376{bottom:718.266667pt;}
.y14_c00376{bottom:732.000000pt;}
.y13_c00376{bottom:747.398667pt;}
.y12_c00376{bottom:762.398667pt;}
.y11_c00376{bottom:775.198667pt;}
.y10_c00376{bottom:778.065333pt;}
.yf_c00376{bottom:778.732000pt;}
.ye_c00376{bottom:791.532000pt;}
.yd_c00376{bottom:801.800000pt;}
.yc_c00376{bottom:802.065333pt;}
.yb_c00376{bottom:804.333333pt;}
.ya_c00376{bottom:807.198667pt;}
.y9_c00376{bottom:807.865333pt;}
.y8_c00376{bottom:808.800000pt;}
.y7_c00376{bottom:810.133333pt;}
.y6_c00376{bottom:821.600000pt;}
.y5_c00376{bottom:877.266667pt;}
.y4_c00376{bottom:896.800000pt;}
.y3_c00376{bottom:942.266667pt;}
.y1_c00376{bottom:948.000000pt;}
.y2_c00376{bottom:955.065333pt;}
.h6_c00376{height:47.085938pt;}
.h1_c00376{height:48.375000pt;}
.h4_c00376{height:52.317708pt;}
.h5_c00376{height:53.750000pt;}
.h3_c00376{height:57.578125pt;}
.h2_c00376{height:59.125000pt;}
.h0_c00376{height:1044.000000pt;}
.w0_c00376{width:650.646400pt;}
.w1_c00376{width:650.666667pt;}
.x0_c00376{left:0.000000pt;}
.x19_c00376{left:38.369067pt;}
.xf_c00376{left:39.969067pt;}
.x5_c00376{left:41.235733pt;}
.xe_c00376{left:42.235733pt;}
.x4_c00376{left:43.169067pt;}
.x1a_c00376{left:62.702400pt;}
.x10_c00376{left:65.235733pt;}
.x1c_c00376{left:79.635733pt;}
.x1d_c00376{left:82.235733pt;}
.x1f_c00376{left:115.169067pt;}
.x6_c00376{left:169.567733pt;}
.x7_c00376{left:184.302400pt;}
.x1_c00376{left:236.769067pt;}
.xc_c00376{left:270.702400pt;}
.xd_c00376{left:284.769067pt;}
.x8_c00376{left:287.635733pt;}
.x9_c00376{left:341.435733pt;}
.x2_c00376{left:406.702400pt;}
.x11_c00376{left:451.502400pt;}
.x1e_c00376{left:453.769067pt;}
.x12_c00376{left:468.169067pt;}
.x17_c00376{left:506.569067pt;}
.x18_c00376{left:519.369067pt;}
.x13_c00376{left:520.635733pt;}
.x14_c00376{left:533.102400pt;}
.x3_c00376{left:548.435733pt;}
.x1b_c00376{left:550.035733pt;}
.xa_c00376{left:551.635733pt;}
.x20_c00376{left:559.369067pt;}
.x15_c00376{left:562.235733pt;}
.x16_c00376{left:566.369067pt;}
.xb_c00376{left:568.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00377 {
    display:none;
  }
  .loading-indicator_c00377.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00377 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00377 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00377" -> "#page-container .classname_c00377")
 */
.pf_c00377 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00377 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00377 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00377 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00377 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00377 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00377 {overflow:visible;}
  }
}
.c_c00377 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00377 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00377:after { /* webkit #35443 */
  content: '';
}
.t_c00377:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00377 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00377 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00377 { /* info for Javascript */
  display:none;
}
.l_c00377 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00377 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00377 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00377:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00377 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00377.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00377 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00377{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00377;src:url('chunks/assets/font_3bb0760abdf17679f6c66674.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00377;src:url('chunks/assets/font_6d31e6872db64b027cc777ac.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00377;src:url('chunks/assets/font_8a7f3c6f5a3cdd51dd76f198.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00377{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m11_c00377{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m15_c00377{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m17_c00377{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00377{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c00377{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c00377{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c00377{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c00377{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c00377{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c00377{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00377{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00377{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00377{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c00377{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00377{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00377{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00377{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c00377{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c00377{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c00377{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c00377{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m19_c00377{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c00377{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma_c00377{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00377{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls0_c00377{letter-spacing:0.000000px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00377{word-spacing:0.000000px;}
.fc0_c00377{color:transparent;}
.fs1_c00377{font-size:60.000000px;}
.fs0_c00377{font-size:66.000000px;}
.fs2_c00377{font-size:72.000000px;}
.y0_c00377{bottom:0.000000px;}
.y45_c00377{bottom:97.048500px;}
.y46_c00377{bottom:98.098500px;}
.y44_c00377{bottom:99.523500px;}
.y43_c00377{bottom:106.723500px;}
.y42_c00377{bottom:107.098500px;}
.y40_c00377{bottom:114.673500px;}
.y41_c00377{bottom:117.148500px;}
.y3f_c00377{bottom:117.898500px;}
.y3e_c00377{bottom:140.625000px;}
.y3d_c00377{bottom:151.048500px;}
.y3c_c00377{bottom:156.375000px;}
.y3b_c00377{bottom:169.048500px;}
.y3a_c00377{bottom:186.298500px;}
.y39_c00377{bottom:192.073500px;}
.y38_c00377{bottom:203.250000px;}
.y37_c00377{bottom:205.798500px;}
.y36_c00377{bottom:221.250000px;}
.y35_c00377{bottom:224.848500px;}
.y34_c00377{bottom:225.598500px;}
.y33_c00377{bottom:239.250000px;}
.y32_c00377{bottom:257.548500px;}
.y31_c00377{bottom:275.250000px;}
.y30_c00377{bottom:292.875000px;}
.y2f_c00377{bottom:310.798500px;}
.y2e_c00377{bottom:328.125000px;}
.y2d_c00377{bottom:345.750000px;}
.y2c_c00377{bottom:364.125000px;}
.y2b_c00377{bottom:380.400000px;}
.y2a_c00377{bottom:398.323500px;}
.y29_c00377{bottom:415.273500px;}
.y28_c00377{bottom:416.323500px;}
.y27_c00377{bottom:416.698500px;}
.y26_c00377{bottom:433.273500px;}
.y25_c00377{bottom:451.198500px;}
.y24_c00377{bottom:468.523500px;}
.y23_c00377{bottom:486.148500px;}
.y22_c00377{bottom:486.223500px;}
.y21_c00377{bottom:503.473500px;}
.y20_c00377{bottom:520.048500px;}
.y1f_c00377{bottom:520.723500px;}
.y1e_c00377{bottom:538.048500px;}
.y1d_c00377{bottom:555.598500px;}
.y1c_c00377{bottom:572.923500px;}
.y1b_c00377{bottom:590.250000px;}
.y1a_c00377{bottom:608.250000px;}
.y19_c00377{bottom:625.875000px;}
.y18_c00377{bottom:643.500000px;}
.y17_c00377{bottom:661.125000px;}
.y16_c00377{bottom:712.648500px;}
.y15_c00377{bottom:733.875000px;}
.y14_c00377{bottom:756.898500px;}
.y13_c00377{bottom:778.500000px;}
.y12_c00377{bottom:800.473500px;}
.y11_c00377{bottom:800.775000px;}
.y10_c00377{bottom:822.073500px;}
.yf_c00377{bottom:843.675000px;}
.ye_c00377{bottom:865.275000px;}
.yc_c00377{bottom:881.775000px;}
.yd_c00377{bottom:886.500000px;}
.yb_c00377{bottom:908.098500px;}
.ya_c00377{bottom:930.073500px;}
.y9_c00377{bottom:952.348500px;}
.y8_c00377{bottom:965.698500px;}
.y7_c00377{bottom:994.875000px;}
.y6_c00377{bottom:1016.098500px;}
.y5_c00377{bottom:1029.448500px;}
.y4_c00377{bottom:1058.925000px;}
.y1_c00377{bottom:1107.525000px;}
.y3_c00377{bottom:1116.150000px;}
.y2_c00377{bottom:1122.300000px;}
.h2_c00377{height:58.886719px;}
.h6_c00377{height:60.468750px;}
.h1_c00377{height:64.775391px;}
.h5_c00377{height:70.628906px;}
.h3_c00377{height:70.664062px;}
.h4_c00377{height:72.562500px;}
.h0_c00377{height:1174.500000px;}
.w0_c00377{width:731.977200px;}
.w1_c00377{width:732.000000px;}
.x0_c00377{left:0.000000px;}
.x18_c00377{left:46.765200px;}
.x17_c00377{left:47.890200px;}
.x14_c00377{left:49.690200px;}
.xe_c00377{left:50.740200px;}
.xc_c00377{left:52.540200px;}
.x9_c00377{left:54.715200px;}
.x7_c00377{left:56.515200px;}
.x5_c00377{left:58.990200px;}
.x4_c00377{left:60.790200px;}
.xa_c00377{left:73.090200px;}
.x12_c00377{left:76.313700px;}
.x1_c00377{left:80.290200px;}
.xf_c00377{left:83.515200px;}
.x8_c00377{left:87.115200px;}
.x6_c00377{left:89.590200px;}
.xb_c00377{left:99.340200px;}
.x2_c00377{left:109.090200px;}
.x1c_c00377{left:141.490200px;}
.x13_c00377{left:142.915200px;}
.x19_c00377{left:186.115200px;}
.x1a_c00377{left:201.940200px;}
.x15_c00377{left:240.790200px;}
.x16_c00377{left:255.940200px;}
.x3_c00377{left:285.115200px;}
.x10_c00377{left:330.790200px;}
.x11_c00377{left:347.365200px;}
.x1d_c00377{left:489.190200px;}
.x1b_c00377{left:490.690200px;}
.x1f_c00377{left:575.590200px;}
.x20_c00377{left:601.540200px;}
.x1e_c00377{left:640.765200px;}
.xd_c00377{left:642.940200px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls0_c00377{letter-spacing:0.000000pt;}
.ws0_c00377{word-spacing:0.000000pt;}
.fs1_c00377{font-size:53.333333pt;}
.fs0_c00377{font-size:58.666667pt;}
.fs2_c00377{font-size:64.000000pt;}
.y0_c00377{bottom:0.000000pt;}
.y45_c00377{bottom:86.265333pt;}
.y46_c00377{bottom:87.198667pt;}
.y44_c00377{bottom:88.465333pt;}
.y43_c00377{bottom:94.865333pt;}
.y42_c00377{bottom:95.198667pt;}
.y40_c00377{bottom:101.932000pt;}
.y41_c00377{bottom:104.132000pt;}
.y3f_c00377{bottom:104.798667pt;}
.y3e_c00377{bottom:125.000000pt;}
.y3d_c00377{bottom:134.265333pt;}
.y3c_c00377{bottom:139.000000pt;}
.y3b_c00377{bottom:150.265333pt;}
.y3a_c00377{bottom:165.598667pt;}
.y39_c00377{bottom:170.732000pt;}
.y38_c00377{bottom:180.666667pt;}
.y37_c00377{bottom:182.932000pt;}
.y36_c00377{bottom:196.666667pt;}
.y35_c00377{bottom:199.865333pt;}
.y34_c00377{bottom:200.532000pt;}
.y33_c00377{bottom:212.666667pt;}
.y32_c00377{bottom:228.932000pt;}
.y31_c00377{bottom:244.666667pt;}
.y30_c00377{bottom:260.333333pt;}
.y2f_c00377{bottom:276.265333pt;}
.y2e_c00377{bottom:291.666667pt;}
.y2d_c00377{bottom:307.333333pt;}
.y2c_c00377{bottom:323.666667pt;}
.y2b_c00377{bottom:338.133333pt;}
.y2a_c00377{bottom:354.065333pt;}
.y29_c00377{bottom:369.132000pt;}
.y28_c00377{bottom:370.065333pt;}
.y27_c00377{bottom:370.398667pt;}
.y26_c00377{bottom:385.132000pt;}
.y25_c00377{bottom:401.065333pt;}
.y24_c00377{bottom:416.465333pt;}
.y23_c00377{bottom:432.132000pt;}
.y22_c00377{bottom:432.198667pt;}
.y21_c00377{bottom:447.532000pt;}
.y20_c00377{bottom:462.265333pt;}
.y1f_c00377{bottom:462.865333pt;}
.y1e_c00377{bottom:478.265333pt;}
.y1d_c00377{bottom:493.865333pt;}
.y1c_c00377{bottom:509.265333pt;}
.y1b_c00377{bottom:524.666667pt;}
.y1a_c00377{bottom:540.666667pt;}
.y19_c00377{bottom:556.333333pt;}
.y18_c00377{bottom:572.000000pt;}
.y17_c00377{bottom:587.666667pt;}
.y16_c00377{bottom:633.465333pt;}
.y15_c00377{bottom:652.333333pt;}
.y14_c00377{bottom:672.798667pt;}
.y13_c00377{bottom:692.000000pt;}
.y12_c00377{bottom:711.532000pt;}
.y11_c00377{bottom:711.800000pt;}
.y10_c00377{bottom:730.732000pt;}
.yf_c00377{bottom:749.933333pt;}
.ye_c00377{bottom:769.133333pt;}
.yc_c00377{bottom:783.800000pt;}
.yd_c00377{bottom:788.000000pt;}
.yb_c00377{bottom:807.198667pt;}
.ya_c00377{bottom:826.732000pt;}
.y9_c00377{bottom:846.532000pt;}
.y8_c00377{bottom:858.398667pt;}
.y7_c00377{bottom:884.333333pt;}
.y6_c00377{bottom:903.198667pt;}
.y5_c00377{bottom:915.065333pt;}
.y4_c00377{bottom:941.266667pt;}
.y1_c00377{bottom:984.466667pt;}
.y3_c00377{bottom:992.133333pt;}
.y2_c00377{bottom:997.600000pt;}
.h2_c00377{height:52.343750pt;}
.h6_c00377{height:53.750000pt;}
.h1_c00377{height:57.578125pt;}
.h5_c00377{height:62.781250pt;}
.h3_c00377{height:62.812500pt;}
.h4_c00377{height:64.500000pt;}
.h0_c00377{height:1044.000000pt;}
.w0_c00377{width:650.646400pt;}
.w1_c00377{width:650.666667pt;}
.x0_c00377{left:0.000000pt;}
.x18_c00377{left:41.569067pt;}
.x17_c00377{left:42.569067pt;}
.x14_c00377{left:44.169067pt;}
.xe_c00377{left:45.102400pt;}
.xc_c00377{left:46.702400pt;}
.x9_c00377{left:48.635733pt;}
.x7_c00377{left:50.235733pt;}
.x5_c00377{left:52.435733pt;}
.x4_c00377{left:54.035733pt;}
.xa_c00377{left:64.969067pt;}
.x12_c00377{left:67.834400pt;}
.x1_c00377{left:71.369067pt;}
.xf_c00377{left:74.235733pt;}
.x8_c00377{left:77.435733pt;}
.x6_c00377{left:79.635733pt;}
.xb_c00377{left:88.302400pt;}
.x2_c00377{left:96.969067pt;}
.x1c_c00377{left:125.769067pt;}
.x13_c00377{left:127.035733pt;}
.x19_c00377{left:165.435733pt;}
.x1a_c00377{left:179.502400pt;}
.x15_c00377{left:214.035733pt;}
.x16_c00377{left:227.502400pt;}
.x3_c00377{left:253.435733pt;}
.x10_c00377{left:294.035733pt;}
.x11_c00377{left:308.769067pt;}
.x1d_c00377{left:434.835733pt;}
.x1b_c00377{left:436.169067pt;}
.x1f_c00377{left:511.635733pt;}
.x20_c00377{left:534.702400pt;}
.x1e_c00377{left:569.569067pt;}
.xd_c00377{left:571.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f3be0823081a0fc1a8192a9.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00378;src:url('chunks/assets/font_bc6ae7b8075b69587ac0ed9f.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00378;src:url('chunks/assets/font_cad0541070abf916801d4fa5.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00378{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3_c00378{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m17_c00378{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1_c00378{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00378{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c00378{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m19_c00378{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00378{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00378{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00378{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6_c00378{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00378{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00378{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00378{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00378{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00378{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00378{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00378{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c00378{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16_c00378{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c00378{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00378{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00378{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m18_c00378{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m13_c00378{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00378{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m14_c00378{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2_c00378{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00378{word-spacing:0.000000px;}
.fc0_c00378{color:transparent;}
.fs1_c00378{font-size:54.000000px;}
.fs0_c00378{font-size:60.000000px;}
.fs3_c00378{font-size:66.000000px;}
.fs2_c00378{font-size:72.000000px;}
.y0_c00378{bottom:0.000000px;}
.y40_c00378{bottom:82.573500px;}
.y3d_c00378{bottom:102.000000px;}
.y3e_c00378{bottom:105.973500px;}
.y3f_c00378{bottom:107.098500px;}
.y3c_c00378{bottom:120.375000px;}
.y38_c00378{bottom:132.298500px;}
.y39_c00378{bottom:132.973500px;}
.y3a_c00378{bottom:133.723500px;}
.y3b_c00378{bottom:138.073500px;}
.y37_c00378{bottom:147.448500px;}
.y36_c00378{bottom:169.048500px;}
.y33_c00378{bottom:182.323500px;}
.y34_c00378{bottom:185.548500px;}
.y35_c00378{bottom:187.348500px;}
.y32_c00378{bottom:201.448500px;}
.y31_c00378{bottom:217.648500px;}
.y30_c00378{bottom:233.773500px;}
.y2f_c00378{bottom:249.973500px;}
.y2e_c00378{bottom:266.250000px;}
.y2d_c00378{bottom:282.750000px;}
.y2a_c00378{bottom:298.275000px;}
.y2b_c00378{bottom:299.698500px;}
.y2c_c00378{bottom:301.798500px;}
.y28_c00378{bottom:314.098500px;}
.y29_c00378{bottom:316.948500px;}
.y27_c00378{bottom:333.150000px;}
.y26_c00378{bottom:350.098500px;}
.y25_c00378{bottom:366.598500px;}
.y22_c00378{bottom:381.073500px;}
.y23_c00378{bottom:383.923500px;}
.y24_c00378{bottom:385.348500px;}
.y21_c00378{bottom:399.000000px;}
.y1f_c00378{bottom:414.523500px;}
.y20_c00378{bottom:416.698500px;}
.y1e_c00378{bottom:432.148500px;}
.y1d_c00378{bottom:449.773500px;}
.y1c_c00378{bottom:519.673500px;}
.y1b_c00378{bottom:540.898500px;}
.y1a_c00378{bottom:562.125000px;}
.y19_c00378{bottom:583.423500px;}
.y18_c00378{bottom:604.648500px;}
.y17_c00378{bottom:625.875000px;}
.y16_c00378{bottom:647.473500px;}
.y15_c00378{bottom:668.323500px;}
.y14_c00378{bottom:689.625000px;}
.y13_c00378{bottom:710.848500px;}
.y12_c00378{bottom:732.450000px;}
.y11_c00378{bottom:752.923500px;}
.y10_c00378{bottom:774.148500px;}
.yf_c00378{bottom:796.875000px;}
.ye_c00378{bottom:816.675000px;}
.yd_c00378{bottom:838.650000px;}
.yc_c00378{bottom:860.925000px;}
.yb_c00378{bottom:880.723500px;}
.ya_c00378{bottom:901.275000px;}
.y9_c00378{bottom:922.500000px;}
.y8_c00378{bottom:943.723500px;}
.y7_c00378{bottom:964.948500px;}
.y6_c00378{bottom:985.500000px;}
.y5_c00378{bottom:1007.098500px;}
.y4_c00378{bottom:1057.875000px;}
.y2_c00378{bottom:1065.000000px;}
.y1_c00378{bottom:1067.250000px;}
.y3_c00378{bottom:1072.050000px;}
.h2_c00378{height:54.421875px;}
.h4_c00378{height:58.886719px;}
.h1_c00378{height:60.468750px;}
.h5_c00378{height:64.743164px;}
.h3_c00378{height:70.664062px;}
.h0_c00378{height:1174.500000px;}
.w0_c00378{width:731.977200px;}
.w1_c00378{width:732.000000px;}
.x0_c00378{left:0.000000px;}
.xb_c00378{left:51.490200px;}
.x7_c00378{left:52.540200px;}
.x6_c00378{left:53.590200px;}
.x5_c00378{left:54.715200px;}
.x9_c00378{left:74.890200px;}
.x8_c00378{left:76.313700px;}
.xc_c00378{left:77.365200px;}
.xe_c00378{left:80.590200px;}
.xa_c00378{left:85.688700px;}
.x11_c00378{left:109.090200px;}
.x12_c00378{left:124.915200px;}
.xd_c00378{left:143.965200px;}
.x17_c00378{left:177.115200px;}
.x18_c00378{left:192.940200px;}
.xf_c00378{left:228.940200px;}
.x19_c00378{left:250.915200px;}
.x1_c00378{left:269.290200px;}
.x2_c00378{left:294.115200px;}
.x13_c00378{left:356.740200px;}
.x15_c00378{left:358.540200px;}
.x16_c00378{left:372.940200px;}
.x14_c00378{left:388.765200px;}
.x3_c00378{left:458.965200px;}
.x1a_c00378{left:485.590200px;}
.x1b_c00378{left:505.090200px;}
.x4_c00378{left:619.165200px;}
.x10_c00378{left:646.540200px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls0_c00378{letter-spacing:0.000000pt;}
.ws0_c00378{word-spacing:0.000000pt;}
.fs1_c00378{font-size:48.000000pt;}
.fs0_c00378{font-size:53.333333pt;}
.fs3_c00378{font-size:58.666667pt;}
.fs2_c00378{font-size:64.000000pt;}
.y0_c00378{bottom:0.000000pt;}
.y40_c00378{bottom:73.398667pt;}
.y3d_c00378{bottom:90.666667pt;}
.y3e_c00378{bottom:94.198667pt;}
.y3f_c00378{bottom:95.198667pt;}
.y3c_c00378{bottom:107.000000pt;}
.y38_c00378{bottom:117.598667pt;}
.y39_c00378{bottom:118.198667pt;}
.y3a_c00378{bottom:118.865333pt;}
.y3b_c00378{bottom:122.732000pt;}
.y37_c00378{bottom:131.065333pt;}
.y36_c00378{bottom:150.265333pt;}
.y33_c00378{bottom:162.065333pt;}
.y34_c00378{bottom:164.932000pt;}
.y35_c00378{bottom:166.532000pt;}
.y32_c00378{bottom:179.065333pt;}
.y31_c00378{bottom:193.465333pt;}
.y30_c00378{bottom:207.798667pt;}
.y2f_c00378{bottom:222.198667pt;}
.y2e_c00378{bottom:236.666667pt;}
.y2d_c00378{bottom:251.333333pt;}
.y2a_c00378{bottom:265.133333pt;}
.y2b_c00378{bottom:266.398667pt;}
.y2c_c00378{bottom:268.265333pt;}
.y28_c00378{bottom:279.198667pt;}
.y29_c00378{bottom:281.732000pt;}
.y27_c00378{bottom:296.133333pt;}
.y26_c00378{bottom:311.198667pt;}
.y25_c00378{bottom:325.865333pt;}
.y22_c00378{bottom:338.732000pt;}
.y23_c00378{bottom:341.265333pt;}
.y24_c00378{bottom:342.532000pt;}
.y21_c00378{bottom:354.666667pt;}
.y1f_c00378{bottom:368.465333pt;}
.y20_c00378{bottom:370.398667pt;}
.y1e_c00378{bottom:384.132000pt;}
.y1d_c00378{bottom:399.798667pt;}
.y1c_c00378{bottom:461.932000pt;}
.y1b_c00378{bottom:480.798667pt;}
.y1a_c00378{bottom:499.666667pt;}
.y19_c00378{bottom:518.598667pt;}
.y18_c00378{bottom:537.465333pt;}
.y17_c00378{bottom:556.333333pt;}
.y16_c00378{bottom:575.532000pt;}
.y15_c00378{bottom:594.065333pt;}
.y14_c00378{bottom:613.000000pt;}
.y13_c00378{bottom:631.865333pt;}
.y12_c00378{bottom:651.066667pt;}
.y11_c00378{bottom:669.265333pt;}
.y10_c00378{bottom:688.132000pt;}
.yf_c00378{bottom:708.333333pt;}
.ye_c00378{bottom:725.933333pt;}
.yd_c00378{bottom:745.466667pt;}
.yc_c00378{bottom:765.266667pt;}
.yb_c00378{bottom:782.865333pt;}
.ya_c00378{bottom:801.133333pt;}
.y9_c00378{bottom:820.000000pt;}
.y8_c00378{bottom:838.865333pt;}
.y7_c00378{bottom:857.732000pt;}
.y6_c00378{bottom:876.000000pt;}
.y5_c00378{bottom:895.198667pt;}
.y4_c00378{bottom:940.333333pt;}
.y2_c00378{bottom:946.666667pt;}
.y1_c00378{bottom:948.666667pt;}
.y3_c00378{bottom:952.933333pt;}
.h2_c00378{height:48.375000pt;}
.h4_c00378{height:52.343750pt;}
.h1_c00378{height:53.750000pt;}
.h5_c00378{height:57.549479pt;}
.h3_c00378{height:62.812500pt;}
.h0_c00378{height:1044.000000pt;}
.w0_c00378{width:650.646400pt;}
.w1_c00378{width:650.666667pt;}
.x0_c00378{left:0.000000pt;}
.xb_c00378{left:45.769067pt;}
.x7_c00378{left:46.702400pt;}
.x6_c00378{left:47.635733pt;}
.x5_c00378{left:48.635733pt;}
.x9_c00378{left:66.569067pt;}
.x8_c00378{left:67.834400pt;}
.xc_c00378{left:68.769067pt;}
.xe_c00378{left:71.635733pt;}
.xa_c00378{left:76.167733pt;}
.x11_c00378{left:96.969067pt;}
.x12_c00378{left:111.035733pt;}
.xd_c00378{left:127.969067pt;}
.x17_c00378{left:157.435733pt;}
.x18_c00378{left:171.502400pt;}
.xf_c00378{left:203.502400pt;}
.x19_c00378{left:223.035733pt;}
.x1_c00378{left:239.369067pt;}
.x2_c00378{left:261.435733pt;}
.x13_c00378{left:317.102400pt;}
.x15_c00378{left:318.702400pt;}
.x16_c00378{left:331.502400pt;}
.x14_c00378{left:345.569067pt;}
.x3_c00378{left:407.969067pt;}
.x1a_c00378{left:431.635733pt;}
.x1b_c00378{left:448.969067pt;}
.x4_c00378{left:550.369067pt;}
.x10_c00378{left:574.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b5bd36da496eac941abd5888.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00379;src:url('chunks/assets/font_51f4907fab20dd4094ae2f46.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00379{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mf_c00379{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0_c00379{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00379{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c00379{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00379{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00379{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00379{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00379{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00379{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00379{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00379{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c00379{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00379{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m10_c00379{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m8_c00379{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2_c00379{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,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;}
}
.ws0_c00379{word-spacing:0.000000px;}
.fc0_c00379{color:transparent;}
.fs0_c00379{font-size:60.000000px;}
.fs3_c00379{font-size:66.000000px;}
.fs2_c00379{font-size:72.000000px;}
.fs4_c00379{font-size:132.000000px;}
.fs1_c00379{font-size:174.000000px;}
.y0_c00379{bottom:0.000000px;}
.y22_c00379{bottom:114.298500px;}
.y21_c00379{bottom:136.648500px;}
.y20_c00379{bottom:158.548500px;}
.y1f_c00379{bottom:179.848500px;}
.y1d_c00379{bottom:201.448500px;}
.y1e_c00379{bottom:201.823500px;}
.y1c_c00379{bottom:203.250000px;}
.y1b_c00379{bottom:229.798500px;}
.y1a_c00379{bottom:247.125000px;}
.y19_c00379{bottom:268.798500px;}
.y18_c00379{bottom:291.073500px;}
.y17_c00379{bottom:315.223500px;}
.y16_c00379{bottom:335.323500px;}
.y15_c00379{bottom:357.298500px;}
.y14_c00379{bottom:379.573500px;}
.y13_c00379{bottom:401.923500px;}
.y12_c00379{bottom:424.273500px;}
.y11_c00379{bottom:446.173500px;}
.y10_c00379{bottom:468.148500px;}
.yf_c00379{bottom:490.125000px;}
.ye_c00379{bottom:512.098500px;}
.yd_c00379{bottom:534.073500px;}
.yc_c00379{bottom:555.973500px;}
.yb_c00379{bottom:577.948500px;}
.ya_c00379{bottom:599.923500px;}
.y9_c00379{bottom:619.723500px;}
.y8_c00379{bottom:644.173500px;}
.y7_c00379{bottom:666.148500px;}
.y6_c00379{bottom:688.875000px;}
.y5_c00379{bottom:740.700000px;}
.y4_c00379{bottom:758.325000px;}
.y3_c00379{bottom:867.375000px;}
.y2_c00379{bottom:916.050000px;}
.y23_c00379{bottom:1116.525000px;}
.y1_c00379{bottom:1128.375000px;}
.h1_c00379{height:58.886719px;}
.h4_c00379{height:64.775391px;}
.h6_c00379{height:68.835938px;}
.h3_c00379{height:70.664062px;}
.h5_c00379{height:129.550781px;}
.h2_c00379{height:170.771484px;}
.h0_c00379{height:1174.500000px;}
.w0_c00379{width:731.977200px;}
.w1_c00379{width:732.000000px;}
.x0_c00379{left:0.000000px;}
.x6_c00379{left:52.540200px;}
.x2_c00379{left:53.590200px;}
.x8_c00379{left:55.390200px;}
.x9_c00379{left:56.890200px;}
.xb_c00379{left:57.940200px;}
.xf_c00379{left:78.490200px;}
.x7_c00379{left:86.740200px;}
.x4_c00379{left:87.790200px;}
.xa_c00379{left:88.915200px;}
.xc_c00379{left:89.965200px;}
.x3_c00379{left:272.515200px;}
.x1_c00379{left:282.565200px;}
.x5_c00379{left:304.540200px;}
.xd_c00379{left:536.365200px;}
.xe_c00379{left:559.090200px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls0_c00379{letter-spacing:0.000000pt;}
.ws0_c00379{word-spacing:0.000000pt;}
.fs0_c00379{font-size:53.333333pt;}
.fs3_c00379{font-size:58.666667pt;}
.fs2_c00379{font-size:64.000000pt;}
.fs4_c00379{font-size:117.333333pt;}
.fs1_c00379{font-size:154.666667pt;}
.y0_c00379{bottom:0.000000pt;}
.y22_c00379{bottom:101.598667pt;}
.y21_c00379{bottom:121.465333pt;}
.y20_c00379{bottom:140.932000pt;}
.y1f_c00379{bottom:159.865333pt;}
.y1d_c00379{bottom:179.065333pt;}
.y1e_c00379{bottom:179.398667pt;}
.y1c_c00379{bottom:180.666667pt;}
.y1b_c00379{bottom:204.265333pt;}
.y1a_c00379{bottom:219.666667pt;}
.y19_c00379{bottom:238.932000pt;}
.y18_c00379{bottom:258.732000pt;}
.y17_c00379{bottom:280.198667pt;}
.y16_c00379{bottom:298.065333pt;}
.y15_c00379{bottom:317.598667pt;}
.y14_c00379{bottom:337.398667pt;}
.y13_c00379{bottom:357.265333pt;}
.y12_c00379{bottom:377.132000pt;}
.y11_c00379{bottom:396.598667pt;}
.y10_c00379{bottom:416.132000pt;}
.yf_c00379{bottom:435.666667pt;}
.ye_c00379{bottom:455.198667pt;}
.yd_c00379{bottom:474.732000pt;}
.yc_c00379{bottom:494.198667pt;}
.yb_c00379{bottom:513.732000pt;}
.ya_c00379{bottom:533.265333pt;}
.y9_c00379{bottom:550.865333pt;}
.y8_c00379{bottom:572.598667pt;}
.y7_c00379{bottom:592.132000pt;}
.y6_c00379{bottom:612.333333pt;}
.y5_c00379{bottom:658.400000pt;}
.y4_c00379{bottom:674.066667pt;}
.y3_c00379{bottom:771.000000pt;}
.y2_c00379{bottom:814.266667pt;}
.y23_c00379{bottom:992.466667pt;}
.y1_c00379{bottom:1003.000000pt;}
.h1_c00379{height:52.343750pt;}
.h4_c00379{height:57.578125pt;}
.h6_c00379{height:61.187500pt;}
.h3_c00379{height:62.812500pt;}
.h5_c00379{height:115.156250pt;}
.h2_c00379{height:151.796875pt;}
.h0_c00379{height:1044.000000pt;}
.w0_c00379{width:650.646400pt;}
.w1_c00379{width:650.666667pt;}
.x0_c00379{left:0.000000pt;}
.x6_c00379{left:46.702400pt;}
.x2_c00379{left:47.635733pt;}
.x8_c00379{left:49.235733pt;}
.x9_c00379{left:50.569067pt;}
.xb_c00379{left:51.502400pt;}
.xf_c00379{left:69.769067pt;}
.x7_c00379{left:77.102400pt;}
.x4_c00379{left:78.035733pt;}
.xa_c00379{left:79.035733pt;}
.xc_c00379{left:79.969067pt;}
.x3_c00379{left:242.235733pt;}
.x1_c00379{left:251.169067pt;}
.x5_c00379{left:270.702400pt;}
.xd_c00379{left:476.769067pt;}
.xe_c00379{left:496.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_506d9f59783972a95f42522a.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00380;src:url('chunks/assets/font_82b0f41758fbe4faa034aa38.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00380;src:url('chunks/assets/font_80bf895fd7cb2b83ada613bd.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00380{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m2_c00380{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3_c00380{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00380{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00380{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00380{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00380{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c00380{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00380{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00380{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00380{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00380{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00380{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00380{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00380{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c00380{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00380{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00380{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c00380{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00380{word-spacing:0.000000px;}
.fc0_c00380{color:transparent;}
.fs3_c00380{font-size:54.000000px;}
.fs0_c00380{font-size:60.000000px;}
.fs2_c00380{font-size:66.000000px;}
.fs1_c00380{font-size:72.000000px;}
.y0_c00380{bottom:0.000000px;}
.y3e_c00380{bottom:59.250000px;}
.y3b_c00380{bottom:80.848500px;}
.y3c_c00380{bottom:83.023500px;}
.y3d_c00380{bottom:85.125000px;}
.y3a_c00380{bottom:103.500000px;}
.y37_c00380{bottom:121.500000px;}
.y38_c00380{bottom:124.048500px;}
.y39_c00380{bottom:126.523500px;}
.y36_c00380{bottom:145.273500px;}
.y35_c00380{bottom:165.750000px;}
.y34_c00380{bottom:185.923500px;}
.y33_c00380{bottom:200.698500px;}
.y32_c00380{bottom:225.898500px;}
.y31_c00380{bottom:246.448500px;}
.y30_c00380{bottom:266.923500px;}
.y2f_c00380{bottom:287.473500px;}
.y2e_c00380{bottom:308.323500px;}
.y2b_c00380{bottom:327.073500px;}
.y2c_c00380{bottom:328.875000px;}
.y2d_c00380{bottom:329.923500px;}
.y2a_c00380{bottom:350.473500px;}
.y29_c00380{bottom:371.025000px;}
.y28_c00380{bottom:391.500000px;}
.y27_c00380{bottom:412.048500px;}
.y26_c00380{bottom:433.198500px;}
.y25_c00380{bottom:454.125000px;}
.y24_c00380{bottom:475.048500px;}
.y23_c00380{bottom:495.898500px;}
.y22_c00380{bottom:517.500000px;}
.y21_c00380{bottom:538.723500px;}
.y20_c00380{bottom:560.023500px;}
.y1f_c00380{bottom:580.875000px;}
.y1e_c00380{bottom:602.473500px;}
.y1d_c00380{bottom:623.698500px;}
.y1c_c00380{bottom:644.923500px;}
.y1b_c00380{bottom:666.148500px;}
.y1a_c00380{bottom:687.375000px;}
.y19_c00380{bottom:708.298500px;}
.y18_c00380{bottom:730.273500px;}
.y17_c00380{bottom:750.750000px;}
.y16_c00380{bottom:773.098500px;}
.y15_c00380{bottom:773.398500px;}
.y14_c00380{bottom:773.473500px;}
.y13_c00380{bottom:793.275000px;}
.y12_c00380{bottom:794.698500px;}
.y11_c00380{bottom:814.875000px;}
.y10_c00380{bottom:836.473500px;}
.yf_c00380{bottom:857.698500px;}
.ye_c00380{bottom:878.550000px;}
.yd_c00380{bottom:888.675000px;}
.yc_c00380{bottom:897.675000px;}
.yb_c00380{bottom:900.900000px;}
.ya_c00380{bottom:901.275000px;}
.y9_c00380{bottom:920.698500px;}
.y8_c00380{bottom:940.125000px;}
.y7_c00380{bottom:944.473500px;}
.y6_c00380{bottom:962.098500px;}
.y5_c00380{bottom:983.323500px;}
.y4_c00380{bottom:1004.550000px;}
.y3_c00380{bottom:1055.698500px;}
.y1_c00380{bottom:1063.198500px;}
.y2_c00380{bottom:1069.800000px;}
.h5_c00380{height:52.998047px;}
.h1_c00380{height:58.886719px;}
.h4_c00380{height:64.743164px;}
.h2_c00380{height:70.664062px;}
.h3_c00380{height:72.562500px;}
.h0_c00380{height:1174.500000px;}
.w0_c00380{width:731.977200px;}
.w1_c00380{width:732.000000px;}
.x0_c00380{left:0.000000px;}
.x4_c00380{left:51.115200px;}
.xe_c00380{left:52.165200px;}
.x10_c00380{left:53.965200px;}
.x11_c00380{left:55.090200px;}
.x14_c00380{left:56.140200px;}
.x15_c00380{left:57.940200px;}
.x17_c00380{left:58.990200px;}
.x18_c00380{left:60.115200px;}
.x1c_c00380{left:61.540200px;}
.xa_c00380{left:78.490200px;}
.xd_c00380{left:82.765200px;}
.x6_c00380{left:83.890200px;}
.xf_c00380{left:85.313700px;}
.x16_c00380{left:89.965200px;}
.x19_c00380{left:91.390200px;}
.x1d_c00380{left:92.890200px;}
.xb_c00380{left:111.940200px;}
.xc_c00380{left:128.140200px;}
.x5_c00380{left:143.290200px;}
.x7_c00380{left:179.965200px;}
.x8_c00380{left:202.315200px;}
.x1_c00380{left:263.890200px;}
.x1e_c00380{left:267.790200px;}
.x1a_c00380{left:286.540200px;}
.x12_c00380{left:292.315200px;}
.x13_c00380{left:368.590200px;}
.x1b_c00380{left:406.390200px;}
.x2_c00380{left:457.915200px;}
.x1f_c00380{left:596.890200px;}
.x3_c00380{left:618.115200px;}
.x9_c00380{left:638.290200px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls0_c00380{letter-spacing:0.000000pt;}
.ws0_c00380{word-spacing:0.000000pt;}
.fs3_c00380{font-size:48.000000pt;}
.fs0_c00380{font-size:53.333333pt;}
.fs2_c00380{font-size:58.666667pt;}
.fs1_c00380{font-size:64.000000pt;}
.y0_c00380{bottom:0.000000pt;}
.y3e_c00380{bottom:52.666667pt;}
.y3b_c00380{bottom:71.865333pt;}
.y3c_c00380{bottom:73.798667pt;}
.y3d_c00380{bottom:75.666667pt;}
.y3a_c00380{bottom:92.000000pt;}
.y37_c00380{bottom:108.000000pt;}
.y38_c00380{bottom:110.265333pt;}
.y39_c00380{bottom:112.465333pt;}
.y36_c00380{bottom:129.132000pt;}
.y35_c00380{bottom:147.333333pt;}
.y34_c00380{bottom:165.265333pt;}
.y33_c00380{bottom:178.398667pt;}
.y32_c00380{bottom:200.798667pt;}
.y31_c00380{bottom:219.065333pt;}
.y30_c00380{bottom:237.265333pt;}
.y2f_c00380{bottom:255.532000pt;}
.y2e_c00380{bottom:274.065333pt;}
.y2b_c00380{bottom:290.732000pt;}
.y2c_c00380{bottom:292.333333pt;}
.y2d_c00380{bottom:293.265333pt;}
.y2a_c00380{bottom:311.532000pt;}
.y29_c00380{bottom:329.800000pt;}
.y28_c00380{bottom:348.000000pt;}
.y27_c00380{bottom:366.265333pt;}
.y26_c00380{bottom:385.065333pt;}
.y25_c00380{bottom:403.666667pt;}
.y24_c00380{bottom:422.265333pt;}
.y23_c00380{bottom:440.798667pt;}
.y22_c00380{bottom:460.000000pt;}
.y21_c00380{bottom:478.865333pt;}
.y20_c00380{bottom:497.798667pt;}
.y1f_c00380{bottom:516.333333pt;}
.y1e_c00380{bottom:535.532000pt;}
.y1d_c00380{bottom:554.398667pt;}
.y1c_c00380{bottom:573.265333pt;}
.y1b_c00380{bottom:592.132000pt;}
.y1a_c00380{bottom:611.000000pt;}
.y19_c00380{bottom:629.598667pt;}
.y18_c00380{bottom:649.132000pt;}
.y17_c00380{bottom:667.333333pt;}
.y16_c00380{bottom:687.198667pt;}
.y15_c00380{bottom:687.465333pt;}
.y14_c00380{bottom:687.532000pt;}
.y13_c00380{bottom:705.133333pt;}
.y12_c00380{bottom:706.398667pt;}
.y11_c00380{bottom:724.333333pt;}
.y10_c00380{bottom:743.532000pt;}
.yf_c00380{bottom:762.398667pt;}
.ye_c00380{bottom:780.933333pt;}
.yd_c00380{bottom:789.933333pt;}
.yc_c00380{bottom:797.933333pt;}
.yb_c00380{bottom:800.800000pt;}
.ya_c00380{bottom:801.133333pt;}
.y9_c00380{bottom:818.398667pt;}
.y8_c00380{bottom:835.666667pt;}
.y7_c00380{bottom:839.532000pt;}
.y6_c00380{bottom:855.198667pt;}
.y5_c00380{bottom:874.065333pt;}
.y4_c00380{bottom:892.933333pt;}
.y3_c00380{bottom:938.398667pt;}
.y1_c00380{bottom:945.065333pt;}
.y2_c00380{bottom:950.933333pt;}
.h5_c00380{height:47.109375pt;}
.h1_c00380{height:52.343750pt;}
.h4_c00380{height:57.549479pt;}
.h2_c00380{height:62.812500pt;}
.h3_c00380{height:64.500000pt;}
.h0_c00380{height:1044.000000pt;}
.w0_c00380{width:650.646400pt;}
.w1_c00380{width:650.666667pt;}
.x0_c00380{left:0.000000pt;}
.x4_c00380{left:45.435733pt;}
.xe_c00380{left:46.369067pt;}
.x10_c00380{left:47.969067pt;}
.x11_c00380{left:48.969067pt;}
.x14_c00380{left:49.902400pt;}
.x15_c00380{left:51.502400pt;}
.x17_c00380{left:52.435733pt;}
.x18_c00380{left:53.435733pt;}
.x1c_c00380{left:54.702400pt;}
.xa_c00380{left:69.769067pt;}
.xd_c00380{left:73.569067pt;}
.x6_c00380{left:74.569067pt;}
.xf_c00380{left:75.834400pt;}
.x16_c00380{left:79.969067pt;}
.x19_c00380{left:81.235733pt;}
.x1d_c00380{left:82.569067pt;}
.xb_c00380{left:99.502400pt;}
.xc_c00380{left:113.902400pt;}
.x5_c00380{left:127.369067pt;}
.x7_c00380{left:159.969067pt;}
.x8_c00380{left:179.835733pt;}
.x1_c00380{left:234.569067pt;}
.x1e_c00380{left:238.035733pt;}
.x1a_c00380{left:254.702400pt;}
.x12_c00380{left:259.835733pt;}
.x13_c00380{left:327.635733pt;}
.x1b_c00380{left:361.235733pt;}
.x2_c00380{left:407.035733pt;}
.x1f_c00380{left:530.569067pt;}
.x3_c00380{left:549.435733pt;}
.x9_c00380{left:567.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e7a6862a826f6710607793bb.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00381;src:url('chunks/assets/font_b1ec04af60b986fa07c4bc01.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00381;src:url('chunks/assets/font_12319cc438693c76293734d4.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00381{transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);}
.m0_c00381{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m14_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);}
.m5_c00381{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c00381{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00381{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c00381{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c00381{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c00381{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00381{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c00381{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00381{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00381{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00381{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00381{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00381{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00381{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00381{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00381{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00381{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c00381{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00381{word-spacing:0.000000px;}
.fc0_c00381{color:transparent;}
.fs1_c00381{font-size:60.000000px;}
.fs0_c00381{font-size:66.000000px;}
.fs2_c00381{font-size:72.000000px;}
.fs3_c00381{font-size:84.000000px;}
.fs4_c00381{font-size:90.000000px;}
.y0_c00381{bottom:0.000000px;}
.y37_c00381{bottom:101.023500px;}
.y36_c00381{bottom:102.750000px;}
.y35_c00381{bottom:123.673500px;}
.y34_c00381{bottom:146.323500px;}
.y33_c00381{bottom:167.625000px;}
.y32_c00381{bottom:190.948500px;}
.y31_c00381{bottom:211.875000px;}
.y30_c00381{bottom:234.148500px;}
.y2f_c00381{bottom:257.625000px;}
.y2e_c00381{bottom:278.473500px;}
.y2d_c00381{bottom:300.375000px;}
.y2c_c00381{bottom:322.723500px;}
.y2b_c00381{bottom:344.698500px;}
.y2a_c00381{bottom:370.650000px;}
.y29_c00381{bottom:387.900000px;}
.y28_c00381{bottom:389.323500px;}
.y27_c00381{bottom:410.923500px;}
.y26_c00381{bottom:433.198500px;}
.y25_c00381{bottom:455.548500px;}
.y24_c00381{bottom:477.898500px;}
.y23_c00381{bottom:500.173500px;}
.y22_c00381{bottom:522.523500px;}
.y21_c00381{bottom:543.750000px;}
.y20_c00381{bottom:566.398500px;}
.y1f_c00381{bottom:588.375000px;}
.y1e_c00381{bottom:610.348500px;}
.y1d_c00381{bottom:632.698500px;}
.y1c_c00381{bottom:654.673500px;}
.y1b_c00381{bottom:676.948500px;}
.y1a_c00381{bottom:698.250000px;}
.y17_c00381{bottom:719.098500px;}
.y18_c00381{bottom:720.223500px;}
.y19_c00381{bottom:720.523500px;}
.y16_c00381{bottom:742.500000px;}
.y15_c00381{bottom:762.673500px;}
.y14_c00381{bottom:786.073500px;}
.y13_c00381{bottom:808.050000px;}
.y12_c00381{bottom:829.275000px;}
.y11_c00381{bottom:848.698500px;}
.y10_c00381{bottom:872.098500px;}
.yd_c00381{bottom:890.848500px;}
.ye_c00381{bottom:894.073500px;}
.yf_c00381{bottom:895.500000px;}
.yc_c00381{bottom:914.550000px;}
.yb_c00381{bottom:936.525000px;}
.ya_c00381{bottom:958.875000px;}
.y9_c00381{bottom:980.848500px;}
.y7_c00381{bottom:996.300000px;}
.y8_c00381{bottom:1000.650000px;}
.y6_c00381{bottom:1024.050000px;}
.y5_c00381{bottom:1044.525000px;}
.y4_c00381{bottom:1065.750000px;}
.y1_c00381{bottom:1114.050000px;}
.y3_c00381{bottom:1122.973500px;}
.y2_c00381{bottom:1128.823500px;}
.h2_c00381{height:58.886719px;}
.h1_c00381{height:68.835938px;}
.h3_c00381{height:70.664062px;}
.h4_c00381{height:82.400391px;}
.h5_c00381{height:88.330078px;}
.h0_c00381{height:1174.500000px;}
.w0_c00381{width:731.977200px;}
.w1_c00381{width:732.000000px;}
.x0_c00381{left:0.000000px;}
.x15_c00381{left:51.115200px;}
.x14_c00381{left:52.915200px;}
.x13_c00381{left:53.965200px;}
.x10_c00381{left:55.390200px;}
.xe_c00381{left:56.890200px;}
.xc_c00381{left:58.990200px;}
.x9_c00381{left:60.115200px;}
.x8_c00381{left:61.165200px;}
.x4_c00381{left:64.390200px;}
.x18_c00381{left:83.890200px;}
.x1_c00381{left:85.688700px;}
.xf_c00381{left:87.490200px;}
.xd_c00381{left:90.715200px;}
.x7_c00381{left:92.890200px;}
.x5_c00381{left:94.315200px;}
.x2_c00381{left:112.990200px;}
.x6_c00381{left:249.790200px;}
.x3_c00381{left:289.765200px;}
.x11_c00381{left:334.090200px;}
.xa_c00381{left:374.740200px;}
.x12_c00381{left:446.740200px;}
.xb_c00381{left:510.115200px;}
.x16_c00381{left:624.190200px;}
.x19_c00381{left:649.390200px;}
.x17_c00381{left:703.390200px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls0_c00381{letter-spacing:0.000000pt;}
.ws0_c00381{word-spacing:0.000000pt;}
.fs1_c00381{font-size:53.333333pt;}
.fs0_c00381{font-size:58.666667pt;}
.fs2_c00381{font-size:64.000000pt;}
.fs3_c00381{font-size:74.666667pt;}
.fs4_c00381{font-size:80.000000pt;}
.y0_c00381{bottom:0.000000pt;}
.y37_c00381{bottom:89.798667pt;}
.y36_c00381{bottom:91.333333pt;}
.y35_c00381{bottom:109.932000pt;}
.y34_c00381{bottom:130.065333pt;}
.y33_c00381{bottom:149.000000pt;}
.y32_c00381{bottom:169.732000pt;}
.y31_c00381{bottom:188.333333pt;}
.y30_c00381{bottom:208.132000pt;}
.y2f_c00381{bottom:229.000000pt;}
.y2e_c00381{bottom:247.532000pt;}
.y2d_c00381{bottom:267.000000pt;}
.y2c_c00381{bottom:286.865333pt;}
.y2b_c00381{bottom:306.398667pt;}
.y2a_c00381{bottom:329.466667pt;}
.y29_c00381{bottom:344.800000pt;}
.y28_c00381{bottom:346.065333pt;}
.y27_c00381{bottom:365.265333pt;}
.y26_c00381{bottom:385.065333pt;}
.y25_c00381{bottom:404.932000pt;}
.y24_c00381{bottom:424.798667pt;}
.y23_c00381{bottom:444.598667pt;}
.y22_c00381{bottom:464.465333pt;}
.y21_c00381{bottom:483.333333pt;}
.y20_c00381{bottom:503.465333pt;}
.y1f_c00381{bottom:523.000000pt;}
.y1e_c00381{bottom:542.532000pt;}
.y1d_c00381{bottom:562.398667pt;}
.y1c_c00381{bottom:581.932000pt;}
.y1b_c00381{bottom:601.732000pt;}
.y1a_c00381{bottom:620.666667pt;}
.y17_c00381{bottom:639.198667pt;}
.y18_c00381{bottom:640.198667pt;}
.y19_c00381{bottom:640.465333pt;}
.y16_c00381{bottom:660.000000pt;}
.y15_c00381{bottom:677.932000pt;}
.y14_c00381{bottom:698.732000pt;}
.y13_c00381{bottom:718.266667pt;}
.y12_c00381{bottom:737.133333pt;}
.y11_c00381{bottom:754.398667pt;}
.y10_c00381{bottom:775.198667pt;}
.yd_c00381{bottom:791.865333pt;}
.ye_c00381{bottom:794.732000pt;}
.yf_c00381{bottom:796.000000pt;}
.yc_c00381{bottom:812.933333pt;}
.yb_c00381{bottom:832.466667pt;}
.ya_c00381{bottom:852.333333pt;}
.y9_c00381{bottom:871.865333pt;}
.y7_c00381{bottom:885.600000pt;}
.y8_c00381{bottom:889.466667pt;}
.y6_c00381{bottom:910.266667pt;}
.y5_c00381{bottom:928.466667pt;}
.y4_c00381{bottom:947.333333pt;}
.y1_c00381{bottom:990.266667pt;}
.y3_c00381{bottom:998.198667pt;}
.y2_c00381{bottom:1003.398667pt;}
.h2_c00381{height:52.343750pt;}
.h1_c00381{height:61.187500pt;}
.h3_c00381{height:62.812500pt;}
.h4_c00381{height:73.244792pt;}
.h5_c00381{height:78.515625pt;}
.h0_c00381{height:1044.000000pt;}
.w0_c00381{width:650.646400pt;}
.w1_c00381{width:650.666667pt;}
.x0_c00381{left:0.000000pt;}
.x15_c00381{left:45.435733pt;}
.x14_c00381{left:47.035733pt;}
.x13_c00381{left:47.969067pt;}
.x10_c00381{left:49.235733pt;}
.xe_c00381{left:50.569067pt;}
.xc_c00381{left:52.435733pt;}
.x9_c00381{left:53.435733pt;}
.x8_c00381{left:54.369067pt;}
.x4_c00381{left:57.235733pt;}
.x18_c00381{left:74.569067pt;}
.x1_c00381{left:76.167733pt;}
.xf_c00381{left:77.769067pt;}
.xd_c00381{left:80.635733pt;}
.x7_c00381{left:82.569067pt;}
.x5_c00381{left:83.835733pt;}
.x2_c00381{left:100.435733pt;}
.x6_c00381{left:222.035733pt;}
.x3_c00381{left:257.569067pt;}
.x11_c00381{left:296.969067pt;}
.xa_c00381{left:333.102400pt;}
.x12_c00381{left:397.102400pt;}
.xb_c00381{left:453.435733pt;}
.x16_c00381{left:554.835733pt;}
.x19_c00381{left:577.235733pt;}
.x17_c00381{left:625.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dd59d166c93cde7cd1df8949.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00382;src:url('chunks/assets/font_0a90e67a8162139999087463.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00382;src:url('chunks/assets/font_315335f038688c9859933500.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00382{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00382{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0_c00382{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c00382{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c00382{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00382{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00382{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00382{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c00382{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c00382{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00382{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00382{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00382{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00382{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00382{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00382{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00382{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m1_c00382{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.ls0_c00382{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00382{word-spacing:0.000000px;}
.fc0_c00382{color:transparent;}
.fs0_c00382{font-size:54.000000px;}
.fs3_c00382{font-size:66.000000px;}
.fs1_c00382{font-size:72.000000px;}
.fs2_c00382{font-size:84.000000px;}
.y0_c00382{bottom:0.000000px;}
.y3d_c00382{bottom:83.698500px;}
.y3a_c00382{bottom:101.698500px;}
.y3b_c00382{bottom:105.673500px;}
.y3c_c00382{bottom:108.898500px;}
.y39_c00382{bottom:127.573500px;}
.y38_c00382{bottom:145.948500px;}
.y37_c00382{bottom:168.298500px;}
.y36_c00382{bottom:181.948500px;}
.y34_c00382{bottom:208.273500px;}
.y35_c00382{bottom:210.750000px;}
.y33_c00382{bottom:223.423500px;}
.y31_c00382{bottom:243.523500px;}
.y32_c00382{bottom:248.548500px;}
.y2f_c00382{bottom:268.723500px;}
.y30_c00382{bottom:270.223500px;}
.y2e_c00382{bottom:288.525000px;}
.y2d_c00382{bottom:309.823500px;}
.y2c_c00382{bottom:329.923500px;}
.y2b_c00382{bottom:351.900000px;}
.y2a_c00382{bottom:372.448500px;}
.y29_c00382{bottom:390.073500px;}
.y28_c00382{bottom:413.848500px;}
.y27_c00382{bottom:432.523500px;}
.y26_c00382{bottom:455.625000px;}
.y25_c00382{bottom:476.848500px;}
.y24_c00382{bottom:498.073500px;}
.y23_c00382{bottom:519.298500px;}
.y22_c00382{bottom:540.523500px;}
.y21_c00382{bottom:561.750000px;}
.y20_c00382{bottom:582.673500px;}
.y1f_c00382{bottom:603.898500px;}
.y1d_c00382{bottom:624.448500px;}
.y1e_c00382{bottom:625.125000px;}
.y1c_c00382{bottom:646.423500px;}
.y1b_c00382{bottom:667.648500px;}
.y1a_c00382{bottom:688.500000px;}
.y19_c00382{bottom:710.098500px;}
.y18_c00382{bottom:731.325000px;}
.y17_c00382{bottom:752.250000px;}
.y16_c00382{bottom:773.848500px;}
.y15_c00382{bottom:795.073500px;}
.y14_c00382{bottom:816.300000px;}
.y13_c00382{bottom:817.723500px;}
.y12_c00382{bottom:832.500000px;}
.y11_c00382{bottom:838.650000px;}
.y10_c00382{bottom:859.500000px;}
.yf_c00382{bottom:873.525000px;}
.ye_c00382{bottom:873.900000px;}
.yd_c00382{bottom:880.050000px;}
.yc_c00382{bottom:900.598500px;}
.yb_c00382{bottom:921.750000px;}
.ya_c00382{bottom:942.675000px;}
.y9_c00382{bottom:960.675000px;}
.y8_c00382{bottom:966.073500px;}
.y7_c00382{bottom:967.500000px;}
.y6_c00382{bottom:984.750000px;}
.y5_c00382{bottom:988.800000px;}
.y4_c00382{bottom:1006.723500px;}
.y3_c00382{bottom:1058.250000px;}
.y1_c00382{bottom:1065.448500px;}
.y2_c00382{bottom:1073.175000px;}
.h1_c00382{height:54.421875px;}
.h6_c00382{height:64.775391px;}
.h3_c00382{height:70.664062px;}
.h2_c00382{height:72.562500px;}
.h5_c00382{height:82.441406px;}
.h4_c00382{height:87.609375px;}
.h0_c00382{height:1174.500000px;}
.w0_c00382{width:731.977200px;}
.w1_c00382{width:732.000000px;}
.x0_c00382{left:0.000000px;}
.x4_c00382{left:34.915200px;}
.x9_c00382{left:35.963700px;}
.x5_c00382{left:37.090200px;}
.xd_c00382{left:38.515200px;}
.xe_c00382{left:39.940200px;}
.xf_c00382{left:41.365200px;}
.x12_c00382{left:42.490200px;}
.x15_c00382{left:43.540200px;}
.x14_c00382{left:44.590200px;}
.x18_c00382{left:48.190200px;}
.x1a_c00382{left:49.315200px;}
.x1e_c00382{left:51.115200px;}
.x20_c00382{left:52.165200px;}
.x22_c00382{left:53.290200px;}
.x24_c00382{left:54.340200px;}
.x7_c00382{left:65.140200px;}
.x13_c00382{left:76.313700px;}
.x16_c00382{left:77.740200px;}
.x17_c00382{left:79.165200px;}
.x19_c00382{left:81.340200px;}
.x1b_c00382{left:82.390200px;}
.x10_c00382{left:83.890200px;}
.x21_c00382{left:84.938700px;}
.x23_c00382{left:86.740200px;}
.x1d_c00382{left:89.290200px;}
.x11_c00382{left:102.190200px;}
.x6_c00382{left:116.965200px;}
.x25_c00382{left:155.890200px;}
.x1_c00382{left:276.115200px;}
.x26_c00382{left:372.565200px;}
.x8_c00382{left:386.965200px;}
.x2_c00382{left:442.765200px;}
.x1f_c00382{left:558.715200px;}
.xc_c00382{left:593.290200px;}
.x1c_c00382{left:595.765200px;}
.x3_c00382{left:603.715200px;}
.xa_c00382{left:628.165200px;}
.xb_c00382{left:639.715200px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls0_c00382{letter-spacing:0.000000pt;}
.ws0_c00382{word-spacing:0.000000pt;}
.fs0_c00382{font-size:48.000000pt;}
.fs3_c00382{font-size:58.666667pt;}
.fs1_c00382{font-size:64.000000pt;}
.fs2_c00382{font-size:74.666667pt;}
.y0_c00382{bottom:0.000000pt;}
.y3d_c00382{bottom:74.398667pt;}
.y3a_c00382{bottom:90.398667pt;}
.y3b_c00382{bottom:93.932000pt;}
.y3c_c00382{bottom:96.798667pt;}
.y39_c00382{bottom:113.398667pt;}
.y38_c00382{bottom:129.732000pt;}
.y37_c00382{bottom:149.598667pt;}
.y36_c00382{bottom:161.732000pt;}
.y34_c00382{bottom:185.132000pt;}
.y35_c00382{bottom:187.333333pt;}
.y33_c00382{bottom:198.598667pt;}
.y31_c00382{bottom:216.465333pt;}
.y32_c00382{bottom:220.932000pt;}
.y2f_c00382{bottom:238.865333pt;}
.y30_c00382{bottom:240.198667pt;}
.y2e_c00382{bottom:256.466667pt;}
.y2d_c00382{bottom:275.398667pt;}
.y2c_c00382{bottom:293.265333pt;}
.y2b_c00382{bottom:312.800000pt;}
.y2a_c00382{bottom:331.065333pt;}
.y29_c00382{bottom:346.732000pt;}
.y28_c00382{bottom:367.865333pt;}
.y27_c00382{bottom:384.465333pt;}
.y26_c00382{bottom:405.000000pt;}
.y25_c00382{bottom:423.865333pt;}
.y24_c00382{bottom:442.732000pt;}
.y23_c00382{bottom:461.598667pt;}
.y22_c00382{bottom:480.465333pt;}
.y21_c00382{bottom:499.333333pt;}
.y20_c00382{bottom:517.932000pt;}
.y1f_c00382{bottom:536.798667pt;}
.y1d_c00382{bottom:555.065333pt;}
.y1e_c00382{bottom:555.666667pt;}
.y1c_c00382{bottom:574.598667pt;}
.y1b_c00382{bottom:593.465333pt;}
.y1a_c00382{bottom:612.000000pt;}
.y19_c00382{bottom:631.198667pt;}
.y18_c00382{bottom:650.066667pt;}
.y17_c00382{bottom:668.666667pt;}
.y16_c00382{bottom:687.865333pt;}
.y15_c00382{bottom:706.732000pt;}
.y14_c00382{bottom:725.600000pt;}
.y13_c00382{bottom:726.865333pt;}
.y12_c00382{bottom:740.000000pt;}
.y11_c00382{bottom:745.466667pt;}
.y10_c00382{bottom:764.000000pt;}
.yf_c00382{bottom:776.466667pt;}
.ye_c00382{bottom:776.800000pt;}
.yd_c00382{bottom:782.266667pt;}
.yc_c00382{bottom:800.532000pt;}
.yb_c00382{bottom:819.333333pt;}
.ya_c00382{bottom:837.933333pt;}
.y9_c00382{bottom:853.933333pt;}
.y8_c00382{bottom:858.732000pt;}
.y7_c00382{bottom:860.000000pt;}
.y6_c00382{bottom:875.333333pt;}
.y5_c00382{bottom:878.933333pt;}
.y4_c00382{bottom:894.865333pt;}
.y3_c00382{bottom:940.666667pt;}
.y1_c00382{bottom:947.065333pt;}
.y2_c00382{bottom:953.933333pt;}
.h1_c00382{height:48.375000pt;}
.h6_c00382{height:57.578125pt;}
.h3_c00382{height:62.812500pt;}
.h2_c00382{height:64.500000pt;}
.h5_c00382{height:73.281250pt;}
.h4_c00382{height:77.875000pt;}
.h0_c00382{height:1044.000000pt;}
.w0_c00382{width:650.646400pt;}
.w1_c00382{width:650.666667pt;}
.x0_c00382{left:0.000000pt;}
.x4_c00382{left:31.035733pt;}
.x9_c00382{left:31.967733pt;}
.x5_c00382{left:32.969067pt;}
.xd_c00382{left:34.235733pt;}
.xe_c00382{left:35.502400pt;}
.xf_c00382{left:36.769067pt;}
.x12_c00382{left:37.769067pt;}
.x15_c00382{left:38.702400pt;}
.x14_c00382{left:39.635733pt;}
.x18_c00382{left:42.835733pt;}
.x1a_c00382{left:43.835733pt;}
.x1e_c00382{left:45.435733pt;}
.x20_c00382{left:46.369067pt;}
.x22_c00382{left:47.369067pt;}
.x24_c00382{left:48.302400pt;}
.x7_c00382{left:57.902400pt;}
.x13_c00382{left:67.834400pt;}
.x16_c00382{left:69.102400pt;}
.x17_c00382{left:70.369067pt;}
.x19_c00382{left:72.302400pt;}
.x1b_c00382{left:73.235733pt;}
.x10_c00382{left:74.569067pt;}
.x21_c00382{left:75.501067pt;}
.x23_c00382{left:77.102400pt;}
.x1d_c00382{left:79.369067pt;}
.x11_c00382{left:90.835733pt;}
.x6_c00382{left:103.969067pt;}
.x25_c00382{left:138.569067pt;}
.x1_c00382{left:245.435733pt;}
.x26_c00382{left:331.169067pt;}
.x8_c00382{left:343.969067pt;}
.x2_c00382{left:393.569067pt;}
.x1f_c00382{left:496.635733pt;}
.xc_c00382{left:527.369067pt;}
.x1c_c00382{left:529.569067pt;}
.x3_c00382{left:536.635733pt;}
.xa_c00382{left:558.369067pt;}
.xb_c00382{left:568.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7857c3a8a40e76a518bbcfc7.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00383;src:url('chunks/assets/font_823a27cb76734c6dfd04ba77.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00383{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2_c00383{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.me_c00383{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m0_c00383{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4_c00383{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c00383{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00383{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00383{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00383{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c00383{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00383{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00383{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00383{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c00383{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00383{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m7_c00383{transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);}
.m1_c00383{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.v1_c00383{vertical-align:2.694000px;}
.ls0_c00383{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00383{word-spacing:0.000000px;}
._0_c00383{width:28.013291px;}
.fc0_c00383{color:transparent;}
.fs2_c00383{font-size:60.000000px;}
.fs1_c00383{font-size:66.000000px;}
.fs0_c00383{font-size:72.000000px;}
.y0_c00383{bottom:0.000000px;}
.y17_c00383{bottom:556.048500px;}
.y16_c00383{bottom:576.523500px;}
.y15_c00383{bottom:599.173500px;}
.y14_c00383{bottom:621.223500px;}
.y13_c00383{bottom:643.798500px;}
.y12_c00383{bottom:666.148500px;}
.y11_c00383{bottom:832.875000px;}
.y10_c00383{bottom:861.598500px;}
.ye_c00383{bottom:907.348500px;}
.yf_c00383{bottom:909.900000px;}
.yc_c00383{bottom:927.150000px;}
.yd_c00383{bottom:928.948500px;}
.yb_c00383{bottom:953.400000px;}
.ya_c00383{bottom:975.375000px;}
.y9_c00383{bottom:996.973500px;}
.y7_c00383{bottom:1014.598500px;}
.y6_c00383{bottom:1014.675000px;}
.y8_c00383{bottom:1018.573500px;}
.y5_c00383{bottom:1033.723500px;}
.y4_c00383{bottom:1059.973500px;}
.y1_c00383{bottom:1112.175000px;}
.y3_c00383{bottom:1118.025000px;}
.y2_c00383{bottom:1126.425000px;}
.h5_c00383{height:58.886719px;}
.h6_c00383{height:60.468750px;}
.h4_c00383{height:64.775391px;}
.h3_c00383{height:70.664062px;}
.h1_c00383{height:72.562500px;}
.h2_c00383{height:75.256500px;}
.h0_c00383{height:1174.500000px;}
.w0_c00383{width:731.977200px;}
.w1_c00383{width:732.000000px;}
.x0_c00383{left:0.000000px;}
.x15_c00383{left:73.090200px;}
.x14_c00383{left:76.688700px;}
.x13_c00383{left:78.115200px;}
.x12_c00383{left:79.165200px;}
.xc_c00383{left:82.765200px;}
.xb_c00383{left:85.990200px;}
.x5_c00383{left:89.290200px;}
.xd_c00383{left:107.290200px;}
.xa_c00383{left:109.390200px;}
.x11_c00383{left:111.565200px;}
.x6_c00383{left:112.690200px;}
.x1_c00383{left:114.790200px;}
.x4_c00383{left:121.315200px;}
.x7_c00383{left:127.090200px;}
.xe_c00383{left:133.165200px;}
.x8_c00383{left:134.290200px;}
.x2_c00383{left:143.590200px;}
.x9_c00383{left:155.515200px;}
.x3_c00383{left:322.540200px;}
.x10_c00383{left:392.365200px;}
.xf_c00383{left:432.715200px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.v1_c00383{vertical-align:2.394667pt;}
.ls0_c00383{letter-spacing:0.000000pt;}
.ws0_c00383{word-spacing:0.000000pt;}
._0_c00383{width:24.900703pt;}
.fs2_c00383{font-size:53.333333pt;}
.fs1_c00383{font-size:58.666667pt;}
.fs0_c00383{font-size:64.000000pt;}
.y0_c00383{bottom:0.000000pt;}
.y17_c00383{bottom:494.265333pt;}
.y16_c00383{bottom:512.465333pt;}
.y15_c00383{bottom:532.598667pt;}
.y14_c00383{bottom:552.198667pt;}
.y13_c00383{bottom:572.265333pt;}
.y12_c00383{bottom:592.132000pt;}
.y11_c00383{bottom:740.333333pt;}
.y10_c00383{bottom:765.865333pt;}
.ye_c00383{bottom:806.532000pt;}
.yf_c00383{bottom:808.800000pt;}
.yc_c00383{bottom:824.133333pt;}
.yd_c00383{bottom:825.732000pt;}
.yb_c00383{bottom:847.466667pt;}
.ya_c00383{bottom:867.000000pt;}
.y9_c00383{bottom:886.198667pt;}
.y7_c00383{bottom:901.865333pt;}
.y6_c00383{bottom:901.933333pt;}
.y8_c00383{bottom:905.398667pt;}
.y5_c00383{bottom:918.865333pt;}
.y4_c00383{bottom:942.198667pt;}
.y1_c00383{bottom:988.600000pt;}
.y3_c00383{bottom:993.800000pt;}
.y2_c00383{bottom:1001.266667pt;}
.h5_c00383{height:52.343750pt;}
.h6_c00383{height:53.750000pt;}
.h4_c00383{height:57.578125pt;}
.h3_c00383{height:62.812500pt;}
.h1_c00383{height:64.500000pt;}
.h2_c00383{height:66.894667pt;}
.h0_c00383{height:1044.000000pt;}
.w0_c00383{width:650.646400pt;}
.w1_c00383{width:650.666667pt;}
.x0_c00383{left:0.000000pt;}
.x15_c00383{left:64.969067pt;}
.x14_c00383{left:68.167733pt;}
.x13_c00383{left:69.435733pt;}
.x12_c00383{left:70.369067pt;}
.xc_c00383{left:73.569067pt;}
.xb_c00383{left:76.435733pt;}
.x5_c00383{left:79.369067pt;}
.xd_c00383{left:95.369067pt;}
.xa_c00383{left:97.235733pt;}
.x11_c00383{left:99.169067pt;}
.x6_c00383{left:100.169067pt;}
.x1_c00383{left:102.035733pt;}
.x4_c00383{left:107.835733pt;}
.x7_c00383{left:112.969067pt;}
.xe_c00383{left:118.369067pt;}
.x8_c00383{left:119.369067pt;}
.x2_c00383{left:127.635733pt;}
.x9_c00383{left:138.235733pt;}
.x3_c00383{left:286.702400pt;}
.x10_c00383{left:348.769067pt;}
.xf_c00383{left:384.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e1f85b79d26dd9f434a0e2ae.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00384{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m0_c00384{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,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;}
}
.ws0_c00384{word-spacing:0.000000px;}
.fc0_c00384{color:transparent;}
.fs0_c00384{font-size:144.000000px;}
.y0_c00384{bottom:0.000000px;}
.y2_c00384{bottom:575.098500px;}
.y1_c00384{bottom:717.298500px;}
.h1_c00384{height:145.125000px;}
.h0_c00384{height:1174.500000px;}
.w0_c00384{width:731.977200px;}
.w1_c00384{width:732.000000px;}
.x0_c00384{left:0.000000px;}
.x1_c00384{left:84.563700px;}
.x2_c00384{left:180.715200px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls0_c00384{letter-spacing:0.000000pt;}
.ws0_c00384{word-spacing:0.000000pt;}
.fs0_c00384{font-size:128.000000pt;}
.y0_c00384{bottom:0.000000pt;}
.y2_c00384{bottom:511.198667pt;}
.y1_c00384{bottom:637.598667pt;}
.h1_c00384{height:129.000000pt;}
.h0_c00384{height:1044.000000pt;}
.w0_c00384{width:650.646400pt;}
.w1_c00384{width:650.666667pt;}
.x0_c00384{left:0.000000pt;}
.x1_c00384{left:75.167733pt;}
.x2_c00384{left:160.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00385{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
}
.y0_c00385{bottom:0.000000px;}
.h0_c00385{height:1174.500000px;}
.w0_c00385{width:731.977200px;}
.w1_c00385{width:732.000000px;}
.x0_c00385{left:0.000000px;}
@media print{
.y0_c00385{bottom:0.000000pt;}
.h0_c00385{height:1044.000000pt;}
.w0_c00385{width:650.646400pt;}
.w1_c00385{width:650.666667pt;}
.x0_c00385{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_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_a4a7759f3bd77d37716c0685.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00386;src:url('chunks/assets/font_d95f90edac594afab734d39e.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00386;src:url('chunks/assets/font_6d879dfa791d7dbf1b79aaa0.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00386;src:url('chunks/assets/font_d56a3af87e1da968b50b43b3.woff2')format("woff");}.ff4_c00386{font-family:ff4_c00386;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00386{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m14_c00386{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m12_c00386{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19_c00386{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc_c00386{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c00386{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00386{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00386{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00386{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2_c00386{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c00386{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4_c00386{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00386{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00386{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00386{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c00386{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c00386{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00386{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00386{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c00386{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00386{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00386{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00386{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00386{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.md_c00386{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mf_c00386{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m18_c00386{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m13_c00386{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m11_c00386{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.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;}
}
.ws0_c00386{word-spacing:0.000000px;}
.fc0_c00386{color:transparent;}
.fs3_c00386{font-size:60.000000px;}
.fs1_c00386{font-size:66.000000px;}
.fs2_c00386{font-size:72.000000px;}
.fs0_c00386{font-size:126.000000px;}
.y0_c00386{bottom:0.000000px;}
.y3b_c00386{bottom:78.298500px;}
.y3c_c00386{bottom:80.473500px;}
.y38_c00386{bottom:96.298500px;}
.y39_c00386{bottom:99.523500px;}
.y3a_c00386{bottom:100.648500px;}
.y30_c00386{bottom:111.073500px;}
.y31_c00386{bottom:112.500000px;}
.y32_c00386{bottom:112.875000px;}
.y33_c00386{bottom:114.673500px;}
.y34_c00386{bottom:115.423500px;}
.y35_c00386{bottom:116.473500px;}
.y36_c00386{bottom:116.848500px;}
.y37_c00386{bottom:117.598500px;}
.y2e_c00386{bottom:127.948500px;}
.y2f_c00386{bottom:131.250000px;}
.y2d_c00386{bottom:143.848500px;}
.y29_c00386{bottom:159.973500px;}
.y2a_c00386{bottom:162.898500px;}
.y2b_c00386{bottom:166.125000px;}
.y2c_c00386{bottom:166.500000px;}
.y27_c00386{bottom:225.523500px;}
.y28_c00386{bottom:228.448500px;}
.y26_c00386{bottom:249.000000px;}
.y24_c00386{bottom:269.098500px;}
.y25_c00386{bottom:270.223500px;}
.y23_c00386{bottom:290.025000px;}
.y22_c00386{bottom:310.875000px;}
.y21_c00386{bottom:331.423500px;}
.y1f_c00386{bottom:351.900000px;}
.y20_c00386{bottom:352.275000px;}
.y1d_c00386{bottom:373.125000px;}
.y1e_c00386{bottom:374.548500px;}
.y1c_c00386{bottom:393.673500px;}
.y1b_c00386{bottom:414.523500px;}
.y1a_c00386{bottom:458.473500px;}
.y19_c00386{bottom:458.848500px;}
.y18_c00386{bottom:459.523500px;}
.y13_c00386{bottom:468.523500px;}
.y17_c00386{bottom:475.423500px;}
.y16_c00386{bottom:475.723500px;}
.y15_c00386{bottom:476.098500px;}
.y14_c00386{bottom:476.848500px;}
.y12_c00386{bottom:521.098500px;}
.y11_c00386{bottom:543.448500px;}
.y10_c00386{bottom:543.750000px;}
.yf_c00386{bottom:559.648500px;}
.ye_c00386{bottom:560.023500px;}
.yd_c00386{bottom:561.073500px;}
.yc_c00386{bottom:561.750000px;}
.yb_c00386{bottom:563.923500px;}
.ya_c00386{bottom:585.898500px;}
.y9_c00386{bottom:603.148500px;}
.y8_c00386{bottom:606.823500px;}
.y7_c00386{bottom:608.250000px;}
.y6_c00386{bottom:663.673500px;}
.y5_c00386{bottom:678.823500px;}
.y4_c00386{bottom:683.848500px;}
.y3_c00386{bottom:693.898500px;}
.y2_c00386{bottom:699.298500px;}
.y1_c00386{bottom:860.550000px;}
.h5_c00386{height:58.857422px;}
.h4_c00386{height:64.743164px;}
.h2_c00386{height:64.775391px;}
.h6_c00386{height:66.515625px;}
.h3_c00386{height:70.664062px;}
.h1_c00386{height:123.662109px;}
.h0_c00386{height:1174.500000px;}
.w0_c00386{width:731.977200px;}
.w1_c00386{width:732.000000px;}
.x0_c00386{left:0.000000px;}
.x19_c00386{left:52.165200px;}
.x9_c00386{left:54.715200px;}
.x2_c00386{left:56.140200px;}
.x1f_c00386{left:71.965200px;}
.x4_c00386{left:73.090200px;}
.x5_c00386{left:83.515200px;}
.x1c_c00386{left:84.938700px;}
.xa_c00386{left:86.365200px;}
.x6_c00386{left:87.490200px;}
.x10_c00386{left:88.915200px;}
.x1b_c00386{left:92.515200px;}
.x1e_c00386{left:100.390200px;}
.x20_c00386{left:109.390200px;}
.x7_c00386{left:117.715200px;}
.xf_c00386{left:142.540200px;}
.x24_c00386{left:157.690200px;}
.x23_c00386{left:179.965200px;}
.x2b_c00386{left:184.315200px;}
.x1_c00386{left:215.290200px;}
.x8_c00386{left:228.565200px;}
.x25_c00386{left:239.365200px;}
.x15_c00386{left:254.890200px;}
.x11_c00386{left:258.115200px;}
.x3_c00386{left:299.140200px;}
.x12_c00386{left:322.915200px;}
.x26_c00386{left:326.140200px;}
.x1d_c00386{left:331.915200px;}
.x16_c00386{left:343.390200px;}
.xb_c00386{left:368.590200px;}
.x29_c00386{left:399.190200px;}
.x27_c00386{left:416.890200px;}
.x13_c00386{left:484.165200px;}
.xc_c00386{left:485.965200px;}
.x17_c00386{left:526.990200px;}
.x14_c00386{left:529.165200px;}
.x28_c00386{left:535.690200px;}
.x18_c00386{left:548.590200px;}
.x2a_c00386{left:580.990200px;}
.xd_c00386{left:585.340200px;}
.x21_c00386{left:597.940200px;}
.xe_c00386{left:617.365200px;}
.x22_c00386{left:628.915200px;}
.x1a_c00386{left:640.090200px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls0_c00386{letter-spacing:0.000000pt;}
.ws0_c00386{word-spacing:0.000000pt;}
.fs3_c00386{font-size:53.333333pt;}
.fs1_c00386{font-size:58.666667pt;}
.fs2_c00386{font-size:64.000000pt;}
.fs0_c00386{font-size:112.000000pt;}
.y0_c00386{bottom:0.000000pt;}
.y3b_c00386{bottom:69.598667pt;}
.y3c_c00386{bottom:71.532000pt;}
.y38_c00386{bottom:85.598667pt;}
.y39_c00386{bottom:88.465333pt;}
.y3a_c00386{bottom:89.465333pt;}
.y30_c00386{bottom:98.732000pt;}
.y31_c00386{bottom:100.000000pt;}
.y32_c00386{bottom:100.333333pt;}
.y33_c00386{bottom:101.932000pt;}
.y34_c00386{bottom:102.598667pt;}
.y35_c00386{bottom:103.532000pt;}
.y36_c00386{bottom:103.865333pt;}
.y37_c00386{bottom:104.532000pt;}
.y2e_c00386{bottom:113.732000pt;}
.y2f_c00386{bottom:116.666667pt;}
.y2d_c00386{bottom:127.865333pt;}
.y29_c00386{bottom:142.198667pt;}
.y2a_c00386{bottom:144.798667pt;}
.y2b_c00386{bottom:147.666667pt;}
.y2c_c00386{bottom:148.000000pt;}
.y27_c00386{bottom:200.465333pt;}
.y28_c00386{bottom:203.065333pt;}
.y26_c00386{bottom:221.333333pt;}
.y24_c00386{bottom:239.198667pt;}
.y25_c00386{bottom:240.198667pt;}
.y23_c00386{bottom:257.800000pt;}
.y22_c00386{bottom:276.333333pt;}
.y21_c00386{bottom:294.598667pt;}
.y1f_c00386{bottom:312.800000pt;}
.y20_c00386{bottom:313.133333pt;}
.y1d_c00386{bottom:331.666667pt;}
.y1e_c00386{bottom:332.932000pt;}
.y1c_c00386{bottom:349.932000pt;}
.y1b_c00386{bottom:368.465333pt;}
.y1a_c00386{bottom:407.532000pt;}
.y19_c00386{bottom:407.865333pt;}
.y18_c00386{bottom:408.465333pt;}
.y13_c00386{bottom:416.465333pt;}
.y17_c00386{bottom:422.598667pt;}
.y16_c00386{bottom:422.865333pt;}
.y15_c00386{bottom:423.198667pt;}
.y14_c00386{bottom:423.865333pt;}
.y12_c00386{bottom:463.198667pt;}
.y11_c00386{bottom:483.065333pt;}
.y10_c00386{bottom:483.333333pt;}
.yf_c00386{bottom:497.465333pt;}
.ye_c00386{bottom:497.798667pt;}
.yd_c00386{bottom:498.732000pt;}
.yc_c00386{bottom:499.333333pt;}
.yb_c00386{bottom:501.265333pt;}
.ya_c00386{bottom:520.798667pt;}
.y9_c00386{bottom:536.132000pt;}
.y8_c00386{bottom:539.398667pt;}
.y7_c00386{bottom:540.666667pt;}
.y6_c00386{bottom:589.932000pt;}
.y5_c00386{bottom:603.398667pt;}
.y4_c00386{bottom:607.865333pt;}
.y3_c00386{bottom:616.798667pt;}
.y2_c00386{bottom:621.598667pt;}
.y1_c00386{bottom:764.933333pt;}
.h5_c00386{height:52.317708pt;}
.h4_c00386{height:57.549479pt;}
.h2_c00386{height:57.578125pt;}
.h6_c00386{height:59.125000pt;}
.h3_c00386{height:62.812500pt;}
.h1_c00386{height:109.921875pt;}
.h0_c00386{height:1044.000000pt;}
.w0_c00386{width:650.646400pt;}
.w1_c00386{width:650.666667pt;}
.x0_c00386{left:0.000000pt;}
.x19_c00386{left:46.369067pt;}
.x9_c00386{left:48.635733pt;}
.x2_c00386{left:49.902400pt;}
.x1f_c00386{left:63.969067pt;}
.x4_c00386{left:64.969067pt;}
.x5_c00386{left:74.235733pt;}
.x1c_c00386{left:75.501067pt;}
.xa_c00386{left:76.769067pt;}
.x6_c00386{left:77.769067pt;}
.x10_c00386{left:79.035733pt;}
.x1b_c00386{left:82.235733pt;}
.x1e_c00386{left:89.235733pt;}
.x20_c00386{left:97.235733pt;}
.x7_c00386{left:104.635733pt;}
.xf_c00386{left:126.702400pt;}
.x24_c00386{left:140.169067pt;}
.x23_c00386{left:159.969067pt;}
.x2b_c00386{left:163.835733pt;}
.x1_c00386{left:191.369067pt;}
.x8_c00386{left:203.169067pt;}
.x25_c00386{left:212.769067pt;}
.x15_c00386{left:226.569067pt;}
.x11_c00386{left:229.435733pt;}
.x3_c00386{left:265.902400pt;}
.x12_c00386{left:287.035733pt;}
.x26_c00386{left:289.902400pt;}
.x1d_c00386{left:295.035733pt;}
.x16_c00386{left:305.235733pt;}
.xb_c00386{left:327.635733pt;}
.x29_c00386{left:354.835733pt;}
.x27_c00386{left:370.569067pt;}
.x13_c00386{left:430.369067pt;}
.xc_c00386{left:431.969067pt;}
.x17_c00386{left:468.435733pt;}
.x14_c00386{left:470.369067pt;}
.x28_c00386{left:476.169067pt;}
.x18_c00386{left:487.635733pt;}
.x2a_c00386{left:516.435733pt;}
.xd_c00386{left:520.302400pt;}
.x21_c00386{left:531.502400pt;}
.xe_c00386{left:548.769067pt;}
.x22_c00386{left:559.035733pt;}
.x1a_c00386{left:568.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72510753f4023b2351c372d.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00387;src:url('chunks/assets/font_58d1ba00406005508fb67f2a.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00387;src:url('chunks/assets/font_8f3cf630863dce41e6fa28b7.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00387;src:url('chunks/assets/font_dfca1af444eba9260b37d7c7.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c00387{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m17_c00387{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00387{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00387{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m14_c00387{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m19_c00387{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m0_c00387{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m16_c00387{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c00387{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00387{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11_c00387{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c00387{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00387{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c00387{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c00387{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c00387{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00387{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00387{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c00387{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00387{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00387{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00387{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00387{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00387{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00387{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00387{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00387{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c00387{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00387{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m10_c00387{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1_c00387{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00387{word-spacing:0.000000px;}
._0_c00387{margin-left:-67.449480px;}
.fc0_c00387{color:transparent;}
.fs1_c00387{font-size:60.000000px;}
.fs3_c00387{font-size:66.000000px;}
.fs0_c00387{font-size:72.000000px;}
.fs2_c00387{font-size:78.000000px;}
.y0_c00387{bottom:0.000000px;}
.y45_c00387{bottom:98.098500px;}
.y44_c00387{bottom:103.500000px;}
.y43_c00387{bottom:107.473500px;}
.y42_c00387{bottom:112.125000px;}
.y41_c00387{bottom:112.875000px;}
.y40_c00387{bottom:116.098500px;}
.y3f_c00387{bottom:116.848500px;}
.y3e_c00387{bottom:119.023500px;}
.y3d_c00387{bottom:122.250000px;}
.y3c_c00387{bottom:124.348500px;}
.y3b_c00387{bottom:130.500000px;}
.y3a_c00387{bottom:131.923500px;}
.y39_c00387{bottom:133.048500px;}
.y38_c00387{bottom:134.473500px;}
.y37_c00387{bottom:137.323500px;}
.y36_c00387{bottom:141.298500px;}
.y35_c00387{bottom:147.448500px;}
.y34_c00387{bottom:148.125000px;}
.y33_c00387{bottom:149.625000px;}
.y32_c00387{bottom:154.273500px;}
.y31_c00387{bottom:157.875000px;}
.y30_c00387{bottom:210.073500px;}
.y2f_c00387{bottom:232.348500px;}
.y2e_c00387{bottom:260.098500px;}
.y2d_c00387{bottom:276.673500px;}
.y2c_c00387{bottom:298.948500px;}
.y2b_c00387{bottom:320.923500px;}
.y2a_c00387{bottom:342.525000px;}
.y29_c00387{bottom:363.375000px;}
.y28_c00387{bottom:363.448500px;}
.y27_c00387{bottom:365.923500px;}
.y26_c00387{bottom:386.775000px;}
.y25_c00387{bottom:410.923500px;}
.y24_c00387{bottom:431.098500px;}
.y23_c00387{bottom:453.375000px;}
.y22_c00387{bottom:475.348500px;}
.y21_c00387{bottom:496.948500px;}
.y20_c00387{bottom:519.298500px;}
.y1f_c00387{bottom:540.898500px;}
.y1e_c00387{bottom:563.173500px;}
.y1d_c00387{bottom:584.473500px;}
.y1c_c00387{bottom:606.823500px;}
.y1b_c00387{bottom:628.723500px;}
.y1a_c00387{bottom:650.698500px;}
.y19_c00387{bottom:672.673500px;}
.y18_c00387{bottom:694.948500px;}
.y17_c00387{bottom:715.500000px;}
.y16_c00387{bottom:738.223500px;}
.y15_c00387{bottom:760.500000px;}
.y14_c00387{bottom:782.773500px;}
.y13_c00387{bottom:804.750000px;}
.y12_c00387{bottom:826.348500px;}
.yf_c00387{bottom:844.425000px;}
.y10_c00387{bottom:845.400000px;}
.y11_c00387{bottom:847.650000px;}
.yd_c00387{bottom:867.750000px;}
.ye_c00387{bottom:869.550000px;}
.yc_c00387{bottom:890.775000px;}
.yb_c00387{bottom:912.073500px;}
.ya_c00387{bottom:933.973500px;}
.y9_c00387{bottom:956.323500px;}
.y8_c00387{bottom:977.925000px;}
.y7_c00387{bottom:999.900000px;}
.y6_c00387{bottom:1021.500000px;}
.y5_c00387{bottom:1037.400000px;}
.y4_c00387{bottom:1062.900000px;}
.y1_c00387{bottom:1110.750000px;}
.y3_c00387{bottom:1120.500000px;}
.y2_c00387{bottom:1125.900000px;}
.h2_c00387{height:58.886719px;}
.h4_c00387{height:64.743164px;}
.h5_c00387{height:66.515625px;}
.h7_c00387{height:70.628906px;}
.h1_c00387{height:70.664062px;}
.h3_c00387{height:76.514648px;}
.h6_c00387{height:78.609375px;}
.h0_c00387{height:1174.500000px;}
.w0_c00387{width:731.977200px;}
.w1_c00387{width:732.000000px;}
.x0_c00387{left:0.000000px;}
.xd_c00387{left:57.940200px;}
.x9_c00387{left:59.365200px;}
.x8_c00387{left:60.490200px;}
.x7_c00387{left:61.540200px;}
.x6_c00387{left:62.590200px;}
.x4_c00387{left:63.715200px;}
.x16_c00387{left:77.365200px;}
.x24_c00387{left:79.165200px;}
.x1_c00387{left:83.140200px;}
.x12_c00387{left:89.965200px;}
.xe_c00387{left:91.390200px;}
.x13_c00387{left:92.515200px;}
.x5_c00387{left:95.740200px;}
.x2_c00387{left:111.940200px;}
.x17_c00387{left:115.915200px;}
.x25_c00387{left:118.090200px;}
.x1b_c00387{left:128.515200px;}
.xb_c00387{left:208.090200px;}
.xc_c00387{left:226.090200px;}
.x1f_c00387{left:229.690200px;}
.x20_c00387{left:257.365200px;}
.x26_c00387{left:263.515200px;}
.x1c_c00387{left:265.690200px;}
.x3_c00387{left:287.590200px;}
.x18_c00387{left:294.790200px;}
.x21_c00387{left:325.390200px;}
.xf_c00387{left:332.290200px;}
.x22_c00387{left:339.790200px;}
.x10_c00387{left:353.890200px;}
.x1d_c00387{left:383.740200px;}
.x1e_c00387{left:429.115200px;}
.x19_c00387{left:447.790200px;}
.x14_c00387{left:454.315200px;}
.xa_c00387{left:459.715200px;}
.x11_c00387{left:484.165200px;}
.x1a_c00387{left:490.990200px;}
.x15_c00387{left:557.590200px;}
.x23_c00387{left:616.990200px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls0_c00387{letter-spacing:0.000000pt;}
.ws0_c00387{word-spacing:0.000000pt;}
._0_c00387{margin-left:-59.955093pt;}
.fs1_c00387{font-size:53.333333pt;}
.fs3_c00387{font-size:58.666667pt;}
.fs0_c00387{font-size:64.000000pt;}
.fs2_c00387{font-size:69.333333pt;}
.y0_c00387{bottom:0.000000pt;}
.y45_c00387{bottom:87.198667pt;}
.y44_c00387{bottom:92.000000pt;}
.y43_c00387{bottom:95.532000pt;}
.y42_c00387{bottom:99.666667pt;}
.y41_c00387{bottom:100.333333pt;}
.y40_c00387{bottom:103.198667pt;}
.y3f_c00387{bottom:103.865333pt;}
.y3e_c00387{bottom:105.798667pt;}
.y3d_c00387{bottom:108.666667pt;}
.y3c_c00387{bottom:110.532000pt;}
.y3b_c00387{bottom:116.000000pt;}
.y3a_c00387{bottom:117.265333pt;}
.y39_c00387{bottom:118.265333pt;}
.y38_c00387{bottom:119.532000pt;}
.y37_c00387{bottom:122.065333pt;}
.y36_c00387{bottom:125.598667pt;}
.y35_c00387{bottom:131.065333pt;}
.y34_c00387{bottom:131.666667pt;}
.y33_c00387{bottom:133.000000pt;}
.y32_c00387{bottom:137.132000pt;}
.y31_c00387{bottom:140.333333pt;}
.y30_c00387{bottom:186.732000pt;}
.y2f_c00387{bottom:206.532000pt;}
.y2e_c00387{bottom:231.198667pt;}
.y2d_c00387{bottom:245.932000pt;}
.y2c_c00387{bottom:265.732000pt;}
.y2b_c00387{bottom:285.265333pt;}
.y2a_c00387{bottom:304.466667pt;}
.y29_c00387{bottom:323.000000pt;}
.y28_c00387{bottom:323.065333pt;}
.y27_c00387{bottom:325.265333pt;}
.y26_c00387{bottom:343.800000pt;}
.y25_c00387{bottom:365.265333pt;}
.y24_c00387{bottom:383.198667pt;}
.y23_c00387{bottom:403.000000pt;}
.y22_c00387{bottom:422.532000pt;}
.y21_c00387{bottom:441.732000pt;}
.y20_c00387{bottom:461.598667pt;}
.y1f_c00387{bottom:480.798667pt;}
.y1e_c00387{bottom:500.598667pt;}
.y1d_c00387{bottom:519.532000pt;}
.y1c_c00387{bottom:539.398667pt;}
.y1b_c00387{bottom:558.865333pt;}
.y1a_c00387{bottom:578.398667pt;}
.y19_c00387{bottom:597.932000pt;}
.y18_c00387{bottom:617.732000pt;}
.y17_c00387{bottom:636.000000pt;}
.y16_c00387{bottom:656.198667pt;}
.y15_c00387{bottom:676.000000pt;}
.y14_c00387{bottom:695.798667pt;}
.y13_c00387{bottom:715.333333pt;}
.y12_c00387{bottom:734.532000pt;}
.yf_c00387{bottom:750.600000pt;}
.y10_c00387{bottom:751.466667pt;}
.y11_c00387{bottom:753.466667pt;}
.yd_c00387{bottom:771.333333pt;}
.ye_c00387{bottom:772.933333pt;}
.yc_c00387{bottom:791.800000pt;}
.yb_c00387{bottom:810.732000pt;}
.ya_c00387{bottom:830.198667pt;}
.y9_c00387{bottom:850.065333pt;}
.y8_c00387{bottom:869.266667pt;}
.y7_c00387{bottom:888.800000pt;}
.y6_c00387{bottom:908.000000pt;}
.y5_c00387{bottom:922.133333pt;}
.y4_c00387{bottom:944.800000pt;}
.y1_c00387{bottom:987.333333pt;}
.y3_c00387{bottom:996.000000pt;}
.y2_c00387{bottom:1000.800000pt;}
.h2_c00387{height:52.343750pt;}
.h4_c00387{height:57.549479pt;}
.h5_c00387{height:59.125000pt;}
.h7_c00387{height:62.781250pt;}
.h1_c00387{height:62.812500pt;}
.h3_c00387{height:68.013021pt;}
.h6_c00387{height:69.875000pt;}
.h0_c00387{height:1044.000000pt;}
.w0_c00387{width:650.646400pt;}
.w1_c00387{width:650.666667pt;}
.x0_c00387{left:0.000000pt;}
.xd_c00387{left:51.502400pt;}
.x9_c00387{left:52.769067pt;}
.x8_c00387{left:53.769067pt;}
.x7_c00387{left:54.702400pt;}
.x6_c00387{left:55.635733pt;}
.x4_c00387{left:56.635733pt;}
.x16_c00387{left:68.769067pt;}
.x24_c00387{left:70.369067pt;}
.x1_c00387{left:73.902400pt;}
.x12_c00387{left:79.969067pt;}
.xe_c00387{left:81.235733pt;}
.x13_c00387{left:82.235733pt;}
.x5_c00387{left:85.102400pt;}
.x2_c00387{left:99.502400pt;}
.x17_c00387{left:103.035733pt;}
.x25_c00387{left:104.969067pt;}
.x1b_c00387{left:114.235733pt;}
.xb_c00387{left:184.969067pt;}
.xc_c00387{left:200.969067pt;}
.x1f_c00387{left:204.169067pt;}
.x20_c00387{left:228.769067pt;}
.x26_c00387{left:234.235733pt;}
.x1c_c00387{left:236.169067pt;}
.x3_c00387{left:255.635733pt;}
.x18_c00387{left:262.035733pt;}
.x21_c00387{left:289.235733pt;}
.xf_c00387{left:295.369067pt;}
.x22_c00387{left:302.035733pt;}
.x10_c00387{left:314.569067pt;}
.x1d_c00387{left:341.102400pt;}
.x1e_c00387{left:381.435733pt;}
.x19_c00387{left:398.035733pt;}
.x14_c00387{left:403.835733pt;}
.xa_c00387{left:408.635733pt;}
.x11_c00387{left:430.369067pt;}
.x1a_c00387{left:436.435733pt;}
.x15_c00387{left:495.635733pt;}
.x23_c00387{left:548.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63d10a0b2cbde907d04f4370.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00388;src:url('chunks/assets/font_44ef37b1f945ff078cbf1167.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00388;src:url('chunks/assets/font_c731fcbbdf939f5f68b1ac0b.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00388{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m10_c00388{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2_c00388{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m0_c00388{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c00388{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m13_c00388{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m11_c00388{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c00388{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5_c00388{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00388{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00388{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00388{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00388{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00388{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00388{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c00388{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c00388{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00388{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c00388{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00388{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00388{word-spacing:0.000000px;}
.fc0_c00388{color:transparent;}
.fs0_c00388{font-size:60.000000px;}
.fs3_c00388{font-size:66.000000px;}
.fs1_c00388{font-size:72.000000px;}
.fs2_c00388{font-size:84.000000px;}
.y0_c00388{bottom:0.000000px;}
.y3d_c00388{bottom:73.273500px;}
.y3e_c00388{bottom:75.750000px;}
.y3f_c00388{bottom:77.250000px;}
.y39_c00388{bottom:89.773500px;}
.y3a_c00388{bottom:90.898500px;}
.y3b_c00388{bottom:92.698500px;}
.y3c_c00388{bottom:95.923500px;}
.y35_c00388{bottom:106.723500px;}
.y36_c00388{bottom:107.773500px;}
.y37_c00388{bottom:111.073500px;}
.y38_c00388{bottom:115.423500px;}
.y32_c00388{bottom:122.923500px;}
.y33_c00388{bottom:124.723500px;}
.y34_c00388{bottom:129.750000px;}
.y31_c00388{bottom:201.448500px;}
.y30_c00388{bottom:219.823500px;}
.y2f_c00388{bottom:241.723500px;}
.y2e_c00388{bottom:261.900000px;}
.y2d_c00388{bottom:282.448500px;}
.y2c_c00388{bottom:302.923500px;}
.y2b_c00388{bottom:323.848500px;}
.y2a_c00388{bottom:345.073500px;}
.y29_c00388{bottom:365.625000px;}
.y28_c00388{bottom:386.473500px;}
.y27_c00388{bottom:407.023500px;}
.y26_c00388{bottom:426.750000px;}
.y23_c00388{bottom:448.348500px;}
.y24_c00388{bottom:449.098500px;}
.y25_c00388{bottom:449.473500px;}
.y22_c00388{bottom:470.023500px;}
.y21_c00388{bottom:491.250000px;}
.y1f_c00388{bottom:512.098500px;}
.y20_c00388{bottom:512.473500px;}
.y1e_c00388{bottom:533.323500px;}
.y1d_c00388{bottom:554.250000px;}
.y1c_c00388{bottom:575.473500px;}
.y1b_c00388{bottom:596.398500px;}
.y1a_c00388{bottom:617.625000px;}
.y19_c00388{bottom:638.098500px;}
.y18_c00388{bottom:638.848500px;}
.y17_c00388{bottom:639.223500px;}
.y16_c00388{bottom:660.750000px;}
.y15_c00388{bottom:680.923500px;}
.y14_c00388{bottom:701.848500px;}
.y13_c00388{bottom:722.700000px;}
.y12_c00388{bottom:743.923500px;}
.y11_c00388{bottom:767.325000px;}
.y10_c00388{bottom:786.448500px;}
.yf_c00388{bottom:808.050000px;}
.ye_c00388{bottom:829.650000px;}
.yd_c00388{bottom:850.875000px;}
.yc_c00388{bottom:871.425000px;}
.yb_c00388{bottom:892.650000px;}
.ya_c00388{bottom:913.125000px;}
.y9_c00388{bottom:933.675000px;}
.y8_c00388{bottom:938.698500px;}
.y7_c00388{bottom:950.175000px;}
.y6_c00388{bottom:955.650000px;}
.y5_c00388{bottom:979.050000px;}
.y4_c00388{bottom:998.473500px;}
.y3_c00388{bottom:1049.925000px;}
.y2_c00388{bottom:1054.275000px;}
.y1_c00388{bottom:1056.073500px;}
.h1_c00388{height:60.468750px;}
.h5_c00388{height:64.743164px;}
.h4_c00388{height:64.775391px;}
.h2_c00388{height:70.664062px;}
.h3_c00388{height:82.441406px;}
.h0_c00388{height:1174.500000px;}
.w0_c00388{width:731.977200px;}
.w1_c00388{width:732.000000px;}
.x0_c00388{left:0.000000px;}
.x9_c00388{left:50.365200px;}
.x14_c00388{left:51.790200px;}
.xe_c00388{left:52.915200px;}
.xb_c00388{left:53.965200px;}
.x7_c00388{left:55.090200px;}
.x4_c00388{left:56.140200px;}
.x15_c00388{left:70.540200px;}
.x18_c00388{left:71.965200px;}
.x13_c00388{left:83.515200px;}
.xa_c00388{left:86.740200px;}
.x5_c00388{left:88.165200px;}
.x16_c00388{left:108.715200px;}
.x1d_c00388{left:110.515200px;}
.x8_c00388{left:120.565200px;}
.x1b_c00388{left:165.190200px;}
.x19_c00388{left:174.565200px;}
.x1_c00388{left:269.290200px;}
.xc_c00388{left:287.590200px;}
.x1e_c00388{left:289.090200px;}
.xd_c00388{left:315.340200px;}
.x17_c00388{left:335.890200px;}
.x1c_c00388{left:346.690200px;}
.xf_c00388{left:446.365200px;}
.x11_c00388{left:450.340200px;}
.x2_c00388{left:460.090200px;}
.x10_c00388{left:481.690200px;}
.x12_c00388{left:483.115200px;}
.x1a_c00388{left:585.340200px;}
.x6_c00388{left:616.690200px;}
.x3_c00388{left:619.915200px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls0_c00388{letter-spacing:0.000000pt;}
.ws0_c00388{word-spacing:0.000000pt;}
.fs0_c00388{font-size:53.333333pt;}
.fs3_c00388{font-size:58.666667pt;}
.fs1_c00388{font-size:64.000000pt;}
.fs2_c00388{font-size:74.666667pt;}
.y0_c00388{bottom:0.000000pt;}
.y3d_c00388{bottom:65.132000pt;}
.y3e_c00388{bottom:67.333333pt;}
.y3f_c00388{bottom:68.666667pt;}
.y39_c00388{bottom:79.798667pt;}
.y3a_c00388{bottom:80.798667pt;}
.y3b_c00388{bottom:82.398667pt;}
.y3c_c00388{bottom:85.265333pt;}
.y35_c00388{bottom:94.865333pt;}
.y36_c00388{bottom:95.798667pt;}
.y37_c00388{bottom:98.732000pt;}
.y38_c00388{bottom:102.598667pt;}
.y32_c00388{bottom:109.265333pt;}
.y33_c00388{bottom:110.865333pt;}
.y34_c00388{bottom:115.333333pt;}
.y31_c00388{bottom:179.065333pt;}
.y30_c00388{bottom:195.398667pt;}
.y2f_c00388{bottom:214.865333pt;}
.y2e_c00388{bottom:232.800000pt;}
.y2d_c00388{bottom:251.065333pt;}
.y2c_c00388{bottom:269.265333pt;}
.y2b_c00388{bottom:287.865333pt;}
.y2a_c00388{bottom:306.732000pt;}
.y29_c00388{bottom:325.000000pt;}
.y28_c00388{bottom:343.532000pt;}
.y27_c00388{bottom:361.798667pt;}
.y26_c00388{bottom:379.333333pt;}
.y23_c00388{bottom:398.532000pt;}
.y24_c00388{bottom:399.198667pt;}
.y25_c00388{bottom:399.532000pt;}
.y22_c00388{bottom:417.798667pt;}
.y21_c00388{bottom:436.666667pt;}
.y1f_c00388{bottom:455.198667pt;}
.y20_c00388{bottom:455.532000pt;}
.y1e_c00388{bottom:474.065333pt;}
.y1d_c00388{bottom:492.666667pt;}
.y1c_c00388{bottom:511.532000pt;}
.y1b_c00388{bottom:530.132000pt;}
.y1a_c00388{bottom:549.000000pt;}
.y19_c00388{bottom:567.198667pt;}
.y18_c00388{bottom:567.865333pt;}
.y17_c00388{bottom:568.198667pt;}
.y16_c00388{bottom:587.333333pt;}
.y15_c00388{bottom:605.265333pt;}
.y14_c00388{bottom:623.865333pt;}
.y13_c00388{bottom:642.400000pt;}
.y12_c00388{bottom:661.265333pt;}
.y11_c00388{bottom:682.066667pt;}
.y10_c00388{bottom:699.065333pt;}
.yf_c00388{bottom:718.266667pt;}
.ye_c00388{bottom:737.466667pt;}
.yd_c00388{bottom:756.333333pt;}
.yc_c00388{bottom:774.600000pt;}
.yb_c00388{bottom:793.466667pt;}
.ya_c00388{bottom:811.666667pt;}
.y9_c00388{bottom:829.933333pt;}
.y8_c00388{bottom:834.398667pt;}
.y7_c00388{bottom:844.600000pt;}
.y6_c00388{bottom:849.466667pt;}
.y5_c00388{bottom:870.266667pt;}
.y4_c00388{bottom:887.532000pt;}
.y3_c00388{bottom:933.266667pt;}
.y2_c00388{bottom:937.133333pt;}
.y1_c00388{bottom:938.732000pt;}
.h1_c00388{height:53.750000pt;}
.h5_c00388{height:57.549479pt;}
.h4_c00388{height:57.578125pt;}
.h2_c00388{height:62.812500pt;}
.h3_c00388{height:73.281250pt;}
.h0_c00388{height:1044.000000pt;}
.w0_c00388{width:650.646400pt;}
.w1_c00388{width:650.666667pt;}
.x0_c00388{left:0.000000pt;}
.x9_c00388{left:44.769067pt;}
.x14_c00388{left:46.035733pt;}
.xe_c00388{left:47.035733pt;}
.xb_c00388{left:47.969067pt;}
.x7_c00388{left:48.969067pt;}
.x4_c00388{left:49.902400pt;}
.x15_c00388{left:62.702400pt;}
.x18_c00388{left:63.969067pt;}
.x13_c00388{left:74.235733pt;}
.xa_c00388{left:77.102400pt;}
.x5_c00388{left:78.369067pt;}
.x16_c00388{left:96.635733pt;}
.x1d_c00388{left:98.235733pt;}
.x8_c00388{left:107.169067pt;}
.x1b_c00388{left:146.835733pt;}
.x19_c00388{left:155.169067pt;}
.x1_c00388{left:239.369067pt;}
.xc_c00388{left:255.635733pt;}
.x1e_c00388{left:256.969067pt;}
.xd_c00388{left:280.302400pt;}
.x17_c00388{left:298.569067pt;}
.x1c_c00388{left:308.169067pt;}
.xf_c00388{left:396.769067pt;}
.x11_c00388{left:400.302400pt;}
.x2_c00388{left:408.969067pt;}
.x10_c00388{left:428.169067pt;}
.x12_c00388{left:429.435733pt;}
.x1a_c00388{left:520.302400pt;}
.x6_c00388{left:548.169067pt;}
.x3_c00388{left:551.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f4a278426adc8fbdb50c221.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00389;src:url('chunks/assets/font_da338fcf1ae93a4025002f0e.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00389;src:url('chunks/assets/font_d43713f1108efb056fb7617b.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00389;src:url('chunks/assets/font_fb2490cf3bc2dbc61f6c0377.woff2')format("woff");}.ff4_c00389{font-family:ff4_c00389;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00389{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md_c00389{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3_c00389{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4_c00389{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc_c00389{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.me_c00389{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7_c00389{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c00389{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m14_c00389{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00389{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mf_c00389{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m11_c00389{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00389{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m0_c00389{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c00389{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c00389{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c00389{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00389{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00389{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00389{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00389{color:transparent;}
.fs1_c00389{font-size:60.000000px;}
.fs0_c00389{font-size:66.000000px;}
.fs3_c00389{font-size:72.000000px;}
.fs4_c00389{font-size:78.000000px;}
.fs2_c00389{font-size:90.000000px;}
.y0_c00389{bottom:0.000000px;}
.y38_c00389{bottom:105.298500px;}
.y37_c00389{bottom:111.448500px;}
.y36_c00389{bottom:117.148500px;}
.y35_c00389{bottom:121.125000px;}
.y34_c00389{bottom:130.125000px;}
.y33_c00389{bottom:134.848500px;}
.y32_c00389{bottom:138.448500px;}
.y31_c00389{bottom:188.098500px;}
.y30_c00389{bottom:207.898500px;}
.y2f_c00389{bottom:230.548500px;}
.y2e_c00389{bottom:252.523500px;}
.y2d_c00389{bottom:274.500000px;}
.y2c_c00389{bottom:296.775000px;}
.y2b_c00389{bottom:318.750000px;}
.y2a_c00389{bottom:340.348500px;}
.y29_c00389{bottom:362.323500px;}
.y28_c00389{bottom:387.525000px;}
.y27_c00389{bottom:406.275000px;}
.y26_c00389{bottom:428.923500px;}
.y25_c00389{bottom:451.273500px;}
.y24_c00389{bottom:472.875000px;}
.y23_c00389{bottom:496.948500px;}
.y22_c00389{bottom:516.750000px;}
.y21_c00389{bottom:538.723500px;}
.y20_c00389{bottom:560.698500px;}
.y1f_c00389{bottom:582.673500px;}
.y1e_c00389{bottom:604.948500px;}
.y1d_c00389{bottom:627.000000px;}
.y1c_c00389{bottom:649.273500px;}
.y1b_c00389{bottom:671.250000px;}
.y1a_c00389{bottom:692.848500px;}
.y19_c00389{bottom:714.750000px;}
.y18_c00389{bottom:737.098500px;}
.y17_c00389{bottom:759.075000px;}
.y16_c00389{bottom:781.050000px;}
.y15_c00389{bottom:803.323500px;}
.y14_c00389{bottom:824.625000px;}
.y13_c00389{bottom:845.473500px;}
.y12_c00389{bottom:867.750000px;}
.y11_c00389{bottom:889.050000px;}
.y10_c00389{bottom:910.650000px;}
.yf_c00389{bottom:932.550000px;}
.yb_c00389{bottom:952.723500px;}
.yc_c00389{bottom:954.525000px;}
.yd_c00389{bottom:956.025000px;}
.ye_c00389{bottom:957.375000px;}
.ya_c00389{bottom:976.800000px;}
.y9_c00389{bottom:997.050000px;}
.y8_c00389{bottom:1019.698500px;}
.y5_c00389{bottom:1034.848500px;}
.y6_c00389{bottom:1039.875000px;}
.y7_c00389{bottom:1042.723500px;}
.y4_c00389{bottom:1062.900000px;}
.y1_c00389{bottom:1111.875000px;}
.y3_c00389{bottom:1119.073500px;}
.y2_c00389{bottom:1125.900000px;}
.h2_c00389{height:58.886719px;}
.h1_c00389{height:64.775391px;}
.h6_c00389{height:66.515625px;}
.h4_c00389{height:70.628906px;}
.h5_c00389{height:76.514648px;}
.h3_c00389{height:88.330078px;}
.h0_c00389{height:1174.500000px;}
.w0_c00389{width:731.977200px;}
.w1_c00389{width:732.000000px;}
.x0_c00389{left:0.000000px;}
.x11_c00389{left:58.990200px;}
.x10_c00389{left:60.115200px;}
.xe_c00389{left:61.540200px;}
.xd_c00389{left:62.590200px;}
.x9_c00389{left:64.765200px;}
.x4_c00389{left:65.890200px;}
.x5_c00389{left:66.940200px;}
.x13_c00389{left:79.915200px;}
.x8_c00389{left:86.365200px;}
.x1_c00389{left:87.790200px;}
.xf_c00389{left:92.140200px;}
.x12_c00389{left:93.563700px;}
.x2_c00389{left:116.290200px;}
.x14_c00389{left:117.715200px;}
.x6_c00389{left:241.915200px;}
.x15_c00389{left:281.140200px;}
.x3_c00389{left:292.990200px;}
.x16_c00389{left:319.690200px;}
.x7_c00389{left:359.290200px;}
.xa_c00389{left:374.365200px;}
.xb_c00389{left:390.190200px;}
.xc_c00389{left:521.965200px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls0_c00389{letter-spacing:0.000000pt;}
.ws0_c00389{word-spacing:0.000000pt;}
.fs1_c00389{font-size:53.333333pt;}
.fs0_c00389{font-size:58.666667pt;}
.fs3_c00389{font-size:64.000000pt;}
.fs4_c00389{font-size:69.333333pt;}
.fs2_c00389{font-size:80.000000pt;}
.y0_c00389{bottom:0.000000pt;}
.y38_c00389{bottom:93.598667pt;}
.y37_c00389{bottom:99.065333pt;}
.y36_c00389{bottom:104.132000pt;}
.y35_c00389{bottom:107.666667pt;}
.y34_c00389{bottom:115.666667pt;}
.y33_c00389{bottom:119.865333pt;}
.y32_c00389{bottom:123.065333pt;}
.y31_c00389{bottom:167.198667pt;}
.y30_c00389{bottom:184.798667pt;}
.y2f_c00389{bottom:204.932000pt;}
.y2e_c00389{bottom:224.465333pt;}
.y2d_c00389{bottom:244.000000pt;}
.y2c_c00389{bottom:263.800000pt;}
.y2b_c00389{bottom:283.333333pt;}
.y2a_c00389{bottom:302.532000pt;}
.y29_c00389{bottom:322.065333pt;}
.y28_c00389{bottom:344.466667pt;}
.y27_c00389{bottom:361.133333pt;}
.y26_c00389{bottom:381.265333pt;}
.y25_c00389{bottom:401.132000pt;}
.y24_c00389{bottom:420.333333pt;}
.y23_c00389{bottom:441.732000pt;}
.y22_c00389{bottom:459.333333pt;}
.y21_c00389{bottom:478.865333pt;}
.y20_c00389{bottom:498.398667pt;}
.y1f_c00389{bottom:517.932000pt;}
.y1e_c00389{bottom:537.732000pt;}
.y1d_c00389{bottom:557.333333pt;}
.y1c_c00389{bottom:577.132000pt;}
.y1b_c00389{bottom:596.666667pt;}
.y1a_c00389{bottom:615.865333pt;}
.y19_c00389{bottom:635.333333pt;}
.y18_c00389{bottom:655.198667pt;}
.y17_c00389{bottom:674.733333pt;}
.y16_c00389{bottom:694.266667pt;}
.y15_c00389{bottom:714.065333pt;}
.y14_c00389{bottom:733.000000pt;}
.y13_c00389{bottom:751.532000pt;}
.y12_c00389{bottom:771.333333pt;}
.y11_c00389{bottom:790.266667pt;}
.y10_c00389{bottom:809.466667pt;}
.yf_c00389{bottom:828.933333pt;}
.yb_c00389{bottom:846.865333pt;}
.yc_c00389{bottom:848.466667pt;}
.yd_c00389{bottom:849.800000pt;}
.ye_c00389{bottom:851.000000pt;}
.ya_c00389{bottom:868.266667pt;}
.y9_c00389{bottom:886.266667pt;}
.y8_c00389{bottom:906.398667pt;}
.y5_c00389{bottom:919.865333pt;}
.y6_c00389{bottom:924.333333pt;}
.y7_c00389{bottom:926.865333pt;}
.y4_c00389{bottom:944.800000pt;}
.y1_c00389{bottom:988.333333pt;}
.y3_c00389{bottom:994.732000pt;}
.y2_c00389{bottom:1000.800000pt;}
.h2_c00389{height:52.343750pt;}
.h1_c00389{height:57.578125pt;}
.h6_c00389{height:59.125000pt;}
.h4_c00389{height:62.781250pt;}
.h5_c00389{height:68.013021pt;}
.h3_c00389{height:78.515625pt;}
.h0_c00389{height:1044.000000pt;}
.w0_c00389{width:650.646400pt;}
.w1_c00389{width:650.666667pt;}
.x0_c00389{left:0.000000pt;}
.x11_c00389{left:52.435733pt;}
.x10_c00389{left:53.435733pt;}
.xe_c00389{left:54.702400pt;}
.xd_c00389{left:55.635733pt;}
.x9_c00389{left:57.569067pt;}
.x4_c00389{left:58.569067pt;}
.x5_c00389{left:59.502400pt;}
.x13_c00389{left:71.035733pt;}
.x8_c00389{left:76.769067pt;}
.x1_c00389{left:78.035733pt;}
.xf_c00389{left:81.902400pt;}
.x12_c00389{left:83.167733pt;}
.x2_c00389{left:103.369067pt;}
.x14_c00389{left:104.635733pt;}
.x6_c00389{left:215.035733pt;}
.x15_c00389{left:249.902400pt;}
.x3_c00389{left:260.435733pt;}
.x16_c00389{left:284.169067pt;}
.x7_c00389{left:319.369067pt;}
.xa_c00389{left:332.769067pt;}
.xb_c00389{left:346.835733pt;}
.xc_c00389{left:463.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7284902e3a10b0c39a355812.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00390;src:url('chunks/assets/font_51b3d84d6880f1ce1a48bb28.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00390;src:url('chunks/assets/font_e95d075a0944ab67c2579cbf.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00390;src:url('chunks/assets/font_5328c96da15fb981dc30b19b.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00390{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2_c00390{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m24_c00390{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00390{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m20_c00390{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4_c00390{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00390{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m15_c00390{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00390{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m13_c00390{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c00390{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00390{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00390{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00390{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00390{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m16_c00390{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c00390{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c00390{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00390{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00390{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00390{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00390{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00390{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00390{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00390{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00390{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m21_c00390{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00390{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c00390{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m22_c00390{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00390{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m23_c00390{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m19_c00390{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c00390{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c00390{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c00390{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m14_c00390{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3_c00390{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00390{word-spacing:0.000000px;}
.fc0_c00390{color:transparent;}
.fs0_c00390{font-size:60.000000px;}
.fs2_c00390{font-size:66.000000px;}
.fs1_c00390{font-size:72.000000px;}
.fs3_c00390{font-size:78.000000px;}
.y0_c00390{bottom:0.000000px;}
.y57_c00390{bottom:70.798500px;}
.y56_c00390{bottom:89.098500px;}
.y54_c00390{bottom:105.298500px;}
.y55_c00390{bottom:108.898500px;}
.y50_c00390{bottom:118.948500px;}
.y51_c00390{bottom:119.023500px;}
.y52_c00390{bottom:123.000000px;}
.y53_c00390{bottom:126.223500px;}
.y4a_c00390{bottom:134.773500px;}
.y4b_c00390{bottom:135.148500px;}
.y4c_c00390{bottom:135.898500px;}
.y4d_c00390{bottom:137.323500px;}
.y4e_c00390{bottom:138.823500px;}
.y4f_c00390{bottom:140.548500px;}
.y48_c00390{bottom:153.898500px;}
.y49_c00390{bottom:158.548500px;}
.y46_c00390{bottom:170.098500px;}
.y47_c00390{bottom:174.448500px;}
.y43_c00390{bottom:183.823500px;}
.y44_c00390{bottom:186.673500px;}
.y45_c00390{bottom:188.848500px;}
.y40_c00390{bottom:198.898500px;}
.y41_c00390{bottom:199.948500px;}
.y42_c00390{bottom:202.500000px;}
.y3e_c00390{bottom:216.148500px;}
.y3f_c00390{bottom:218.323500px;}
.y3c_c00390{bottom:232.048500px;}
.y3d_c00390{bottom:234.598500px;}
.y3b_c00390{bottom:276.298500px;}
.y3a_c00390{bottom:295.723500px;}
.y37_c00390{bottom:316.275000px;}
.y38_c00390{bottom:318.375000px;}
.y39_c00390{bottom:320.250000px;}
.y34_c00390{bottom:337.198500px;}
.y35_c00390{bottom:340.048500px;}
.y36_c00390{bottom:341.098500px;}
.y31_c00390{bottom:358.423500px;}
.y32_c00390{bottom:360.223500px;}
.y33_c00390{bottom:361.275000px;}
.y2d_c00390{bottom:378.150000px;}
.y2e_c00390{bottom:379.948500px;}
.y2f_c00390{bottom:380.698500px;}
.y30_c00390{bottom:382.125000px;}
.y2a_c00390{bottom:398.698500px;}
.y2b_c00390{bottom:400.125000px;}
.y2c_c00390{bottom:401.250000px;}
.y29_c00390{bottom:421.048500px;}
.y27_c00390{bottom:441.523500px;}
.y28_c00390{bottom:441.898500px;}
.y24_c00390{bottom:462.750000px;}
.y25_c00390{bottom:462.823500px;}
.y26_c00390{bottom:463.875000px;}
.y22_c00390{bottom:484.048500px;}
.y23_c00390{bottom:484.723500px;}
.y21_c00390{bottom:505.648500px;}
.y20_c00390{bottom:526.500000px;}
.y1f_c00390{bottom:547.423500px;}
.y1e_c00390{bottom:568.648500px;}
.y1d_c00390{bottom:589.500000px;}
.y1c_c00390{bottom:610.423500px;}
.y1b_c00390{bottom:630.223500px;}
.y1a_c00390{bottom:630.898500px;}
.y19_c00390{bottom:632.323500px;}
.y18_c00390{bottom:653.250000px;}
.y17_c00390{bottom:673.798500px;}
.y16_c00390{bottom:695.698500px;}
.y15_c00390{bottom:696.073500px;}
.y14_c00390{bottom:696.448500px;}
.y13_c00390{bottom:716.250000px;}
.y12_c00390{bottom:737.098500px;}
.y11_c00390{bottom:758.700000px;}
.y10_c00390{bottom:779.625000px;}
.yf_c00390{bottom:801.223500px;}
.ye_c00390{bottom:822.448500px;}
.yd_c00390{bottom:844.050000px;}
.yc_c00390{bottom:864.900000px;}
.yb_c00390{bottom:885.375000px;}
.ya_c00390{bottom:906.300000px;}
.y9_c00390{bottom:927.525000px;}
.y8_c00390{bottom:948.750000px;}
.y7_c00390{bottom:969.675000px;}
.y6_c00390{bottom:990.900000px;}
.y5_c00390{bottom:1042.348500px;}
.y3_c00390{bottom:1047.823500px;}
.y2_c00390{bottom:1049.250000px;}
.y1_c00390{bottom:1049.925000px;}
.y4_c00390{bottom:1056.823500px;}
.h2_c00390{height:58.886719px;}
.h1_c00390{height:60.468750px;}
.h8_c00390{height:64.743164px;}
.h5_c00390{height:64.775391px;}
.h7_c00390{height:70.628906px;}
.h4_c00390{height:70.664062px;}
.h3_c00390{height:72.562500px;}
.h6_c00390{height:76.514648px;}
.h0_c00390{height:1174.500000px;}
.w0_c00390{width:731.977200px;}
.w1_c00390{width:732.000000px;}
.x0_c00390{left:0.000000px;}
.x1b_c00390{left:71.290200px;}
.x8_c00390{left:72.340200px;}
.x9_c00390{left:73.765200px;}
.x7_c00390{left:74.890200px;}
.x36_c00390{left:77.365200px;}
.x23_c00390{left:88.540200px;}
.x31_c00390{left:90.715200px;}
.x35_c00390{left:100.390200px;}
.xc_c00390{left:104.740200px;}
.x6_c00390{left:106.915200px;}
.x24_c00390{left:125.965200px;}
.x26_c00390{left:128.140200px;}
.x2c_c00390{left:145.090200px;}
.x27_c00390{left:175.315200px;}
.x25_c00390{left:186.790200px;}
.xa_c00390{left:201.190200px;}
.x32_c00390{left:211.990200px;}
.x2d_c00390{left:215.590200px;}
.xb_c00390{left:221.740200px;}
.x19_c00390{left:226.765200px;}
.x17_c00390{left:237.565200px;}
.x2e_c00390{left:268.165200px;}
.x18_c00390{left:281.515200px;}
.x1_c00390{left:283.990200px;}
.x12_c00390{left:289.390200px;}
.x1c_c00390{left:309.940200px;}
.x13_c00390{left:318.940200px;}
.xf_c00390{left:329.365200px;}
.x1a_c00390{left:348.790200px;}
.x2f_c00390{left:400.690200px;}
.x14_c00390{left:403.913700px;}
.x2_c00390{left:409.315200px;}
.x3_c00390{left:416.515200px;}
.x15_c00390{left:420.115200px;}
.x20_c00390{left:455.365200px;}
.x28_c00390{left:464.740200px;}
.x30_c00390{left:470.515200px;}
.x4_c00390{left:476.965200px;}
.x1e_c00390{left:497.890200px;}
.x16_c00390{left:506.140200px;}
.x10_c00390{left:522.715200px;}
.xd_c00390{left:562.690200px;}
.x22_c00390{left:576.340200px;}
.x34_c00390{left:580.315200px;}
.x1d_c00390{left:581.740200px;}
.x29_c00390{left:587.140200px;}
.x21_c00390{left:595.090200px;}
.x1f_c00390{left:613.390200px;}
.xe_c00390{left:616.315200px;}
.x11_c00390{left:622.765200px;}
.x2b_c00390{left:634.690200px;}
.x5_c00390{left:638.965200px;}
.x2a_c00390{left:649.765200px;}
.x33_c00390{left:653.365200px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls0_c00390{letter-spacing:0.000000pt;}
.ws0_c00390{word-spacing:0.000000pt;}
.fs0_c00390{font-size:53.333333pt;}
.fs2_c00390{font-size:58.666667pt;}
.fs1_c00390{font-size:64.000000pt;}
.fs3_c00390{font-size:69.333333pt;}
.y0_c00390{bottom:0.000000pt;}
.y57_c00390{bottom:62.932000pt;}
.y56_c00390{bottom:79.198667pt;}
.y54_c00390{bottom:93.598667pt;}
.y55_c00390{bottom:96.798667pt;}
.y50_c00390{bottom:105.732000pt;}
.y51_c00390{bottom:105.798667pt;}
.y52_c00390{bottom:109.333333pt;}
.y53_c00390{bottom:112.198667pt;}
.y4a_c00390{bottom:119.798667pt;}
.y4b_c00390{bottom:120.132000pt;}
.y4c_c00390{bottom:120.798667pt;}
.y4d_c00390{bottom:122.065333pt;}
.y4e_c00390{bottom:123.398667pt;}
.y4f_c00390{bottom:124.932000pt;}
.y48_c00390{bottom:136.798667pt;}
.y49_c00390{bottom:140.932000pt;}
.y46_c00390{bottom:151.198667pt;}
.y47_c00390{bottom:155.065333pt;}
.y43_c00390{bottom:163.398667pt;}
.y44_c00390{bottom:165.932000pt;}
.y45_c00390{bottom:167.865333pt;}
.y40_c00390{bottom:176.798667pt;}
.y41_c00390{bottom:177.732000pt;}
.y42_c00390{bottom:180.000000pt;}
.y3e_c00390{bottom:192.132000pt;}
.y3f_c00390{bottom:194.065333pt;}
.y3c_c00390{bottom:206.265333pt;}
.y3d_c00390{bottom:208.532000pt;}
.y3b_c00390{bottom:245.598667pt;}
.y3a_c00390{bottom:262.865333pt;}
.y37_c00390{bottom:281.133333pt;}
.y38_c00390{bottom:283.000000pt;}
.y39_c00390{bottom:284.666667pt;}
.y34_c00390{bottom:299.732000pt;}
.y35_c00390{bottom:302.265333pt;}
.y36_c00390{bottom:303.198667pt;}
.y31_c00390{bottom:318.598667pt;}
.y32_c00390{bottom:320.198667pt;}
.y33_c00390{bottom:321.133333pt;}
.y2d_c00390{bottom:336.133333pt;}
.y2e_c00390{bottom:337.732000pt;}
.y2f_c00390{bottom:338.398667pt;}
.y30_c00390{bottom:339.666667pt;}
.y2a_c00390{bottom:354.398667pt;}
.y2b_c00390{bottom:355.666667pt;}
.y2c_c00390{bottom:356.666667pt;}
.y29_c00390{bottom:374.265333pt;}
.y27_c00390{bottom:392.465333pt;}
.y28_c00390{bottom:392.798667pt;}
.y24_c00390{bottom:411.333333pt;}
.y25_c00390{bottom:411.398667pt;}
.y26_c00390{bottom:412.333333pt;}
.y22_c00390{bottom:430.265333pt;}
.y23_c00390{bottom:430.865333pt;}
.y21_c00390{bottom:449.465333pt;}
.y20_c00390{bottom:468.000000pt;}
.y1f_c00390{bottom:486.598667pt;}
.y1e_c00390{bottom:505.465333pt;}
.y1d_c00390{bottom:524.000000pt;}
.y1c_c00390{bottom:542.598667pt;}
.y1b_c00390{bottom:560.198667pt;}
.y1a_c00390{bottom:560.798667pt;}
.y19_c00390{bottom:562.065333pt;}
.y18_c00390{bottom:580.666667pt;}
.y17_c00390{bottom:598.932000pt;}
.y16_c00390{bottom:618.398667pt;}
.y15_c00390{bottom:618.732000pt;}
.y14_c00390{bottom:619.065333pt;}
.y13_c00390{bottom:636.666667pt;}
.y12_c00390{bottom:655.198667pt;}
.y11_c00390{bottom:674.400000pt;}
.y10_c00390{bottom:693.000000pt;}
.yf_c00390{bottom:712.198667pt;}
.ye_c00390{bottom:731.065333pt;}
.yd_c00390{bottom:750.266667pt;}
.yc_c00390{bottom:768.800000pt;}
.yb_c00390{bottom:787.000000pt;}
.ya_c00390{bottom:805.600000pt;}
.y9_c00390{bottom:824.466667pt;}
.y8_c00390{bottom:843.333333pt;}
.y7_c00390{bottom:861.933333pt;}
.y6_c00390{bottom:880.800000pt;}
.y5_c00390{bottom:926.532000pt;}
.y3_c00390{bottom:931.398667pt;}
.y2_c00390{bottom:932.666667pt;}
.y1_c00390{bottom:933.266667pt;}
.y4_c00390{bottom:939.398667pt;}
.h2_c00390{height:52.343750pt;}
.h1_c00390{height:53.750000pt;}
.h8_c00390{height:57.549479pt;}
.h5_c00390{height:57.578125pt;}
.h7_c00390{height:62.781250pt;}
.h4_c00390{height:62.812500pt;}
.h3_c00390{height:64.500000pt;}
.h6_c00390{height:68.013021pt;}
.h0_c00390{height:1044.000000pt;}
.w0_c00390{width:650.646400pt;}
.w1_c00390{width:650.666667pt;}
.x0_c00390{left:0.000000pt;}
.x1b_c00390{left:63.369067pt;}
.x8_c00390{left:64.302400pt;}
.x9_c00390{left:65.569067pt;}
.x7_c00390{left:66.569067pt;}
.x36_c00390{left:68.769067pt;}
.x23_c00390{left:78.702400pt;}
.x31_c00390{left:80.635733pt;}
.x35_c00390{left:89.235733pt;}
.xc_c00390{left:93.102400pt;}
.x6_c00390{left:95.035733pt;}
.x24_c00390{left:111.969067pt;}
.x26_c00390{left:113.902400pt;}
.x2c_c00390{left:128.969067pt;}
.x27_c00390{left:155.835733pt;}
.x25_c00390{left:166.035733pt;}
.xa_c00390{left:178.835733pt;}
.x32_c00390{left:188.435733pt;}
.x2d_c00390{left:191.635733pt;}
.xb_c00390{left:197.102400pt;}
.x19_c00390{left:201.569067pt;}
.x17_c00390{left:211.169067pt;}
.x2e_c00390{left:238.369067pt;}
.x18_c00390{left:250.235733pt;}
.x1_c00390{left:252.435733pt;}
.x12_c00390{left:257.235733pt;}
.x1c_c00390{left:275.502400pt;}
.x13_c00390{left:283.502400pt;}
.xf_c00390{left:292.769067pt;}
.x1a_c00390{left:310.035733pt;}
.x2f_c00390{left:356.169067pt;}
.x14_c00390{left:359.034400pt;}
.x2_c00390{left:363.835733pt;}
.x3_c00390{left:370.235733pt;}
.x15_c00390{left:373.435733pt;}
.x20_c00390{left:404.769067pt;}
.x28_c00390{left:413.102400pt;}
.x30_c00390{left:418.235733pt;}
.x4_c00390{left:423.969067pt;}
.x1e_c00390{left:442.569067pt;}
.x16_c00390{left:449.902400pt;}
.x10_c00390{left:464.635733pt;}
.xd_c00390{left:500.169067pt;}
.x22_c00390{left:512.302400pt;}
.x34_c00390{left:515.835733pt;}
.x1d_c00390{left:517.102400pt;}
.x29_c00390{left:521.902400pt;}
.x21_c00390{left:528.969067pt;}
.x1f_c00390{left:545.235733pt;}
.xe_c00390{left:547.835733pt;}
.x11_c00390{left:553.569067pt;}
.x2b_c00390{left:564.169067pt;}
.x5_c00390{left:567.969067pt;}
.x2a_c00390{left:577.569067pt;}
.x33_c00390{left:580.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d132d6f9c6a3e9063cdfb17.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00391;src:url('chunks/assets/font_c5f2300c97530cf5edcc4ac6.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00391;src:url('chunks/assets/font_71021eba40c52a278312ec3b.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1e_c00391{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m16_c00391{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m1c_c00391{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00391{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c00391{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00391{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00391{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m18_c00391{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c00391{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m19_c00391{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17_c00391{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00391{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00391{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00391{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c00391{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00391{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00391{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00391{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c00391{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00391{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00391{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00391{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00391{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00391{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m14_c00391{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00391{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c00391{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m13_c00391{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mc_c00391{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c00391{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00391{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c00391{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls0_c00391{letter-spacing:0.000000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00391{word-spacing:0.000000px;}
.fc0_c00391{color:transparent;}
.fs4_c00391{font-size:54.000000px;}
.fs1_c00391{font-size:60.000000px;}
.fs3_c00391{font-size:66.000000px;}
.fs0_c00391{font-size:72.000000px;}
.fs2_c00391{font-size:78.000000px;}
.y0_c00391{bottom:0.000000px;}
.y51_c00391{bottom:98.473500px;}
.y50_c00391{bottom:100.273500px;}
.y4f_c00391{bottom:116.473500px;}
.y4e_c00391{bottom:133.348500px;}
.y4d_c00391{bottom:134.473500px;}
.y4c_c00391{bottom:147.073500px;}
.y4b_c00391{bottom:150.673500px;}
.y4a_c00391{bottom:151.423500px;}
.y49_c00391{bottom:160.723500px;}
.y48_c00391{bottom:168.298500px;}
.y47_c00391{bottom:169.423500px;}
.y46_c00391{bottom:177.673500px;}
.y45_c00391{bottom:185.923500px;}
.y44_c00391{bottom:187.048500px;}
.y43_c00391{bottom:211.125000px;}
.y41_c00391{bottom:220.875000px;}
.y42_c00391{bottom:221.548500px;}
.y40_c00391{bottom:222.298500px;}
.y3f_c00391{bottom:225.523500px;}
.y3e_c00391{bottom:226.948500px;}
.y3c_c00391{bottom:238.500000px;}
.y3d_c00391{bottom:239.625000px;}
.y3b_c00391{bottom:241.348500px;}
.y3a_c00391{bottom:260.848500px;}
.y39_c00391{bottom:275.250000px;}
.y38_c00391{bottom:293.250000px;}
.y37_c00391{bottom:309.073500px;}
.y36_c00391{bottom:310.875000px;}
.y35_c00391{bottom:327.823500px;}
.y34_c00391{bottom:333.900000px;}
.y33_c00391{bottom:344.698500px;}
.y32_c00391{bottom:345.750000px;}
.y31_c00391{bottom:349.798500px;}
.y30_c00391{bottom:362.698500px;}
.y2f_c00391{bottom:363.750000px;}
.y2e_c00391{bottom:365.923500px;}
.y2d_c00391{bottom:367.048500px;}
.y2c_c00391{bottom:427.125000px;}
.y2b_c00391{bottom:449.473500px;}
.y2a_c00391{bottom:471.448500px;}
.y29_c00391{bottom:493.348500px;}
.y28_c00391{bottom:515.323500px;}
.y26_c00391{bottom:536.625000px;}
.y27_c00391{bottom:536.923500px;}
.y25_c00391{bottom:537.673500px;}
.y24_c00391{bottom:558.898500px;}
.y23_c00391{bottom:559.198500px;}
.y22_c00391{bottom:581.173500px;}
.y21_c00391{bottom:603.148500px;}
.y20_c00391{bottom:625.500000px;}
.y1f_c00391{bottom:647.473500px;}
.y1d_c00391{bottom:669.073500px;}
.y1e_c00391{bottom:669.750000px;}
.y1c_c00391{bottom:691.348500px;}
.y1b_c00391{bottom:712.948500px;}
.y1a_c00391{bottom:735.298500px;}
.y17_c00391{bottom:756.148500px;}
.y18_c00391{bottom:756.598500px;}
.y19_c00391{bottom:757.273500px;}
.y16_c00391{bottom:779.250000px;}
.y15_c00391{bottom:801.525000px;}
.y14_c00391{bottom:823.500000px;}
.y13_c00391{bottom:844.723500px;}
.y12_c00391{bottom:866.323500px;}
.y11_c00391{bottom:887.550000px;}
.yf_c00391{bottom:906.300000px;}
.y10_c00391{bottom:909.150000px;}
.ye_c00391{bottom:930.750000px;}
.yd_c00391{bottom:953.400000px;}
.ya_c00391{bottom:973.650000px;}
.yb_c00391{bottom:977.175000px;}
.yc_c00391{bottom:977.250000px;}
.y7_c00391{bottom:993.823500px;}
.y8_c00391{bottom:997.425000px;}
.y9_c00391{bottom:998.848500px;}
.y6_c00391{bottom:1018.573500px;}
.y5_c00391{bottom:1039.500000px;}
.y4_c00391{bottom:1060.723500px;}
.y1_c00391{bottom:1108.650000px;}
.y3_c00391{bottom:1118.698500px;}
.y2_c00391{bottom:1124.323500px;}
.h7_c00391{height:52.998047px;}
.h2_c00391{height:58.886719px;}
.h8_c00391{height:60.468750px;}
.h6_c00391{height:64.743164px;}
.h5_c00391{height:64.775391px;}
.h3_c00391{height:70.664062px;}
.h1_c00391{height:72.562500px;}
.h4_c00391{height:76.514648px;}
.h0_c00391{height:1174.500000px;}
.w0_c00391{width:731.977200px;}
.w1_c00391{width:732.000000px;}
.x0_c00391{left:0.000000px;}
.x1f_c00391{left:38.515200px;}
.xd_c00391{left:39.565200px;}
.xc_c00391{left:40.990200px;}
.xb_c00391{left:42.490200px;}
.xa_c00391{left:44.290200px;}
.x5_c00391{left:46.765200px;}
.x4_c00391{left:47.890200px;}
.x2a_c00391{left:48.940200px;}
.x18_c00391{left:56.515200px;}
.x20_c00391{left:63.715200px;}
.x1d_c00391{left:64.765200px;}
.x1_c00391{left:67.690200px;}
.x10_c00391{left:71.590200px;}
.x28_c00391{left:79.915200px;}
.xe_c00391{left:91.390200px;}
.x19_c00391{left:93.188700px;}
.x2_c00391{left:94.690200px;}
.x11_c00391{left:103.315200px;}
.x13_c00391{left:156.565200px;}
.xf_c00391{left:170.590200px;}
.x23_c00391{left:172.763700px;}
.x1a_c00391{left:182.513700px;}
.x24_c00391{left:187.540200px;}
.x3_c00391{left:276.790200px;}
.x15_c00391{left:281.890200px;}
.x6_c00391{left:331.540200px;}
.x12_c00391{left:345.940200px;}
.x16_c00391{left:372.565200px;}
.x1b_c00391{left:423.715200px;}
.x25_c00391{left:454.315200px;}
.x8_c00391{left:469.390200px;}
.x7_c00391{left:480.190200px;}
.x21_c00391{left:512.965200px;}
.x14_c00391{left:553.315200px;}
.x9_c00391{left:555.490200px;}
.x29_c00391{left:585.340200px;}
.x26_c00391{left:587.140200px;}
.x22_c00391{left:607.315200px;}
.x1c_c00391{left:609.115200px;}
.x2d_c00391{left:624.565200px;}
.x2b_c00391{left:633.190200px;}
.x17_c00391{left:641.140200px;}
.x27_c00391{left:646.540200px;}
.x2c_c00391{left:661.690200px;}
.x1e_c00391{left:663.115200px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls0_c00391{letter-spacing:0.000000pt;}
.ws0_c00391{word-spacing:0.000000pt;}
.fs4_c00391{font-size:48.000000pt;}
.fs1_c00391{font-size:53.333333pt;}
.fs3_c00391{font-size:58.666667pt;}
.fs0_c00391{font-size:64.000000pt;}
.fs2_c00391{font-size:69.333333pt;}
.y0_c00391{bottom:0.000000pt;}
.y51_c00391{bottom:87.532000pt;}
.y50_c00391{bottom:89.132000pt;}
.y4f_c00391{bottom:103.532000pt;}
.y4e_c00391{bottom:118.532000pt;}
.y4d_c00391{bottom:119.532000pt;}
.y4c_c00391{bottom:130.732000pt;}
.y4b_c00391{bottom:133.932000pt;}
.y4a_c00391{bottom:134.598667pt;}
.y49_c00391{bottom:142.865333pt;}
.y48_c00391{bottom:149.598667pt;}
.y47_c00391{bottom:150.598667pt;}
.y46_c00391{bottom:157.932000pt;}
.y45_c00391{bottom:165.265333pt;}
.y44_c00391{bottom:166.265333pt;}
.y43_c00391{bottom:187.666667pt;}
.y41_c00391{bottom:196.333333pt;}
.y42_c00391{bottom:196.932000pt;}
.y40_c00391{bottom:197.598667pt;}
.y3f_c00391{bottom:200.465333pt;}
.y3e_c00391{bottom:201.732000pt;}
.y3c_c00391{bottom:212.000000pt;}
.y3d_c00391{bottom:213.000000pt;}
.y3b_c00391{bottom:214.532000pt;}
.y3a_c00391{bottom:231.865333pt;}
.y39_c00391{bottom:244.666667pt;}
.y38_c00391{bottom:260.666667pt;}
.y37_c00391{bottom:274.732000pt;}
.y36_c00391{bottom:276.333333pt;}
.y35_c00391{bottom:291.398667pt;}
.y34_c00391{bottom:296.800000pt;}
.y33_c00391{bottom:306.398667pt;}
.y32_c00391{bottom:307.333333pt;}
.y31_c00391{bottom:310.932000pt;}
.y30_c00391{bottom:322.398667pt;}
.y2f_c00391{bottom:323.333333pt;}
.y2e_c00391{bottom:325.265333pt;}
.y2d_c00391{bottom:326.265333pt;}
.y2c_c00391{bottom:379.666667pt;}
.y2b_c00391{bottom:399.532000pt;}
.y2a_c00391{bottom:419.065333pt;}
.y29_c00391{bottom:438.532000pt;}
.y28_c00391{bottom:458.065333pt;}
.y26_c00391{bottom:477.000000pt;}
.y27_c00391{bottom:477.265333pt;}
.y25_c00391{bottom:477.932000pt;}
.y24_c00391{bottom:496.798667pt;}
.y23_c00391{bottom:497.065333pt;}
.y22_c00391{bottom:516.598667pt;}
.y21_c00391{bottom:536.132000pt;}
.y20_c00391{bottom:556.000000pt;}
.y1f_c00391{bottom:575.532000pt;}
.y1d_c00391{bottom:594.732000pt;}
.y1e_c00391{bottom:595.333333pt;}
.y1c_c00391{bottom:614.532000pt;}
.y1b_c00391{bottom:633.732000pt;}
.y1a_c00391{bottom:653.598667pt;}
.y17_c00391{bottom:672.132000pt;}
.y18_c00391{bottom:672.532000pt;}
.y19_c00391{bottom:673.132000pt;}
.y16_c00391{bottom:692.666667pt;}
.y15_c00391{bottom:712.466667pt;}
.y14_c00391{bottom:732.000000pt;}
.y13_c00391{bottom:750.865333pt;}
.y12_c00391{bottom:770.065333pt;}
.y11_c00391{bottom:788.933333pt;}
.yf_c00391{bottom:805.600000pt;}
.y10_c00391{bottom:808.133333pt;}
.ye_c00391{bottom:827.333333pt;}
.yd_c00391{bottom:847.466667pt;}
.ya_c00391{bottom:865.466667pt;}
.yb_c00391{bottom:868.600000pt;}
.yc_c00391{bottom:868.666667pt;}
.y7_c00391{bottom:883.398667pt;}
.y8_c00391{bottom:886.600000pt;}
.y9_c00391{bottom:887.865333pt;}
.y6_c00391{bottom:905.398667pt;}
.y5_c00391{bottom:924.000000pt;}
.y4_c00391{bottom:942.865333pt;}
.y1_c00391{bottom:985.466667pt;}
.y3_c00391{bottom:994.398667pt;}
.y2_c00391{bottom:999.398667pt;}
.h7_c00391{height:47.109375pt;}
.h2_c00391{height:52.343750pt;}
.h8_c00391{height:53.750000pt;}
.h6_c00391{height:57.549479pt;}
.h5_c00391{height:57.578125pt;}
.h3_c00391{height:62.812500pt;}
.h1_c00391{height:64.500000pt;}
.h4_c00391{height:68.013021pt;}
.h0_c00391{height:1044.000000pt;}
.w0_c00391{width:650.646400pt;}
.w1_c00391{width:650.666667pt;}
.x0_c00391{left:0.000000pt;}
.x1f_c00391{left:34.235733pt;}
.xd_c00391{left:35.169067pt;}
.xc_c00391{left:36.435733pt;}
.xb_c00391{left:37.769067pt;}
.xa_c00391{left:39.369067pt;}
.x5_c00391{left:41.569067pt;}
.x4_c00391{left:42.569067pt;}
.x2a_c00391{left:43.502400pt;}
.x18_c00391{left:50.235733pt;}
.x20_c00391{left:56.635733pt;}
.x1d_c00391{left:57.569067pt;}
.x1_c00391{left:60.169067pt;}
.x10_c00391{left:63.635733pt;}
.x28_c00391{left:71.035733pt;}
.xe_c00391{left:81.235733pt;}
.x19_c00391{left:82.834400pt;}
.x2_c00391{left:84.169067pt;}
.x11_c00391{left:91.835733pt;}
.x13_c00391{left:139.169067pt;}
.xf_c00391{left:151.635733pt;}
.x23_c00391{left:153.567733pt;}
.x1a_c00391{left:162.234400pt;}
.x24_c00391{left:166.702400pt;}
.x3_c00391{left:246.035733pt;}
.x15_c00391{left:250.569067pt;}
.x6_c00391{left:294.702400pt;}
.x12_c00391{left:307.502400pt;}
.x16_c00391{left:331.169067pt;}
.x1b_c00391{left:376.635733pt;}
.x25_c00391{left:403.835733pt;}
.x8_c00391{left:417.235733pt;}
.x7_c00391{left:426.835733pt;}
.x21_c00391{left:455.969067pt;}
.x14_c00391{left:491.835733pt;}
.x9_c00391{left:493.769067pt;}
.x29_c00391{left:520.302400pt;}
.x26_c00391{left:521.902400pt;}
.x22_c00391{left:539.835733pt;}
.x1c_c00391{left:541.435733pt;}
.x2d_c00391{left:555.169067pt;}
.x2b_c00391{left:562.835733pt;}
.x17_c00391{left:569.902400pt;}
.x27_c00391{left:574.702400pt;}
.x2c_c00391{left:588.169067pt;}
.x1e_c00391{left:589.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f705a24da8e38787bc32d70f.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00392;src:url('chunks/assets/font_45eefc8cf400e5ddc595d333.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00392;src:url('chunks/assets/font_6361d9ad7ef74d244a5ac741.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00392;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1f_c00392{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m2_c00392{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00392{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c00392{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00392{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00392{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c00392{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c00392{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c00392{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c00392{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c00392{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00392{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4_c00392{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8_c00392{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00392{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00392{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00392{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c00392{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00392{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00392{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c00392{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00392{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00392{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00392{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00392{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00392{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m19_c00392{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c00392{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c00392{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m15_c00392{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m14_c00392{transform:matrix(3.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.962500,0.000000,0.000000,0.250000,0,0);}
.m1_c00392{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00392{word-spacing:0.000000px;}
.fc0_c00392{color:transparent;}
.fs2_c00392{font-size:24.000000px;}
.fs0_c00392{font-size:60.000000px;}
.fs3_c00392{font-size:66.000000px;}
.fs1_c00392{font-size:72.000000px;}
.y0_c00392{bottom:0.000000px;}
.y46_c00392{bottom:77.625000px;}
.y47_c00392{bottom:81.223500px;}
.y3f_c00392{bottom:96.298500px;}
.y40_c00392{bottom:99.523500px;}
.y41_c00392{bottom:100.948500px;}
.y42_c00392{bottom:102.000000px;}
.y43_c00392{bottom:102.823500px;}
.y44_c00392{bottom:103.198500px;}
.y45_c00392{bottom:103.500000px;}
.y3b_c00392{bottom:111.750000px;}
.y3c_c00392{bottom:113.923500px;}
.y3d_c00392{bottom:118.198500px;}
.y3e_c00392{bottom:120.000000px;}
.y3a_c00392{bottom:134.098500px;}
.y39_c00392{bottom:150.673500px;}
.y38_c00392{bottom:166.798500px;}
.y36_c00392{bottom:177.973500px;}
.y37_c00392{bottom:183.375000px;}
.y34_c00392{bottom:247.798500px;}
.y35_c00392{bottom:250.048500px;}
.y33_c00392{bottom:268.423500px;}
.y32_c00392{bottom:289.650000px;}
.y31_c00392{bottom:310.198500px;}
.y30_c00392{bottom:329.625000px;}
.y2f_c00392{bottom:351.900000px;}
.y2e_c00392{bottom:372.823500px;}
.y2b_c00392{bottom:390.823500px;}
.y2c_c00392{bottom:393.298500px;}
.y2d_c00392{bottom:393.673500px;}
.y2a_c00392{bottom:412.348500px;}
.y29_c00392{bottom:434.698500px;}
.y28_c00392{bottom:455.923500px;}
.y27_c00392{bottom:476.848500px;}
.y26_c00392{bottom:498.073500px;}
.y23_c00392{bottom:517.875000px;}
.y24_c00392{bottom:518.250000px;}
.y25_c00392{bottom:519.298500px;}
.y22_c00392{bottom:540.223500px;}
.y21_c00392{bottom:561.448500px;}
.y20_c00392{bottom:581.923500px;}
.y1e_c00392{bottom:582.973500px;}
.y1f_c00392{bottom:583.048500px;}
.y1d_c00392{bottom:603.898500px;}
.y1c_c00392{bottom:625.125000px;}
.y1b_c00392{bottom:646.048500px;}
.y1a_c00392{bottom:667.648500px;}
.y19_c00392{bottom:688.875000px;}
.y18_c00392{bottom:709.723500px;}
.y17_c00392{bottom:731.023500px;}
.y16_c00392{bottom:751.875000px;}
.y15_c00392{bottom:773.848500px;}
.y14_c00392{bottom:794.698500px;}
.y13_c00392{bottom:816.300000px;}
.y12_c00392{bottom:837.150000px;}
.y11_c00392{bottom:839.025000px;}
.y10_c00392{bottom:858.750000px;}
.yf_c00392{bottom:874.650000px;}
.ye_c00392{bottom:877.500000px;}
.yd_c00392{bottom:881.098500px;}
.yc_c00392{bottom:900.223500px;}
.yb_c00392{bottom:922.875000px;}
.ya_c00392{bottom:942.675000px;}
.y9_c00392{bottom:961.348500px;}
.y8_c00392{bottom:965.025000px;}
.y7_c00392{bottom:967.125000px;}
.y6_c00392{bottom:985.125000px;}
.y5_c00392{bottom:1000.948500px;}
.y4_c00392{bottom:1007.848500px;}
.y3_c00392{bottom:1057.875000px;}
.y1_c00392{bottom:1065.448500px;}
.y2_c00392{bottom:1072.275000px;}
.h5_c00392{height:23.554688px;}
.h6_c00392{height:58.857422px;}
.h1_c00392{height:58.886719px;}
.h8_c00392{height:64.020000px;}
.h7_c00392{height:64.743164px;}
.h4_c00392{height:70.628906px;}
.h3_c00392{height:70.664062px;}
.h2_c00392{height:72.562500px;}
.h0_c00392{height:1174.500000px;}
.w0_c00392{width:731.977200px;}
.w1_c00392{width:732.000000px;}
.x0_c00392{left:0.000000px;}
.xc_c00392{left:63.340200px;}
.x9_c00392{left:64.390200px;}
.x4_c00392{left:65.515200px;}
.x13_c00392{left:66.940200px;}
.x18_c00392{left:67.990200px;}
.x17_c00392{left:69.115200px;}
.x1c_c00392{left:72.715200px;}
.x1e_c00392{left:73.765200px;}
.x1a_c00392{left:78.490200px;}
.x28_c00392{left:80.965200px;}
.x1f_c00392{left:82.090200px;}
.xe_c00392{left:96.115200px;}
.x8_c00392{left:97.165200px;}
.x14_c00392{left:98.590200px;}
.x19_c00392{left:100.765200px;}
.x11_c00392{left:136.765200px;}
.xd_c00392{left:167.365200px;}
.x12_c00392{left:173.513700px;}
.x1d_c00392{left:183.940200px;}
.x22_c00392{left:241.915200px;}
.x6_c00392{left:277.165200px;}
.x1_c00392{left:280.090200px;}
.x15_c00392{left:305.290200px;}
.x7_c00392{left:307.765200px;}
.x20_c00392{left:322.165200px;}
.x23_c00392{left:324.715200px;}
.x24_c00392{left:339.790200px;}
.xf_c00392{left:419.740200px;}
.x21_c00392{left:427.315200px;}
.x16_c00392{left:430.163700px;}
.x25_c00392{left:436.315200px;}
.x10_c00392{left:443.515200px;}
.x2_c00392{left:471.940200px;}
.xa_c00392{left:474.490200px;}
.xb_c00392{left:510.790200px;}
.x5_c00392{left:515.140200px;}
.x26_c00392{left:622.090200px;}
.x3_c00392{left:632.140200px;}
.x27_c00392{left:641.140200px;}
.x1b_c00392{left:660.190200px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls0_c00392{letter-spacing:0.000000pt;}
.ws0_c00392{word-spacing:0.000000pt;}
.fs2_c00392{font-size:21.333333pt;}
.fs0_c00392{font-size:53.333333pt;}
.fs3_c00392{font-size:58.666667pt;}
.fs1_c00392{font-size:64.000000pt;}
.y0_c00392{bottom:0.000000pt;}
.y46_c00392{bottom:69.000000pt;}
.y47_c00392{bottom:72.198667pt;}
.y3f_c00392{bottom:85.598667pt;}
.y40_c00392{bottom:88.465333pt;}
.y41_c00392{bottom:89.732000pt;}
.y42_c00392{bottom:90.666667pt;}
.y43_c00392{bottom:91.398667pt;}
.y44_c00392{bottom:91.732000pt;}
.y45_c00392{bottom:92.000000pt;}
.y3b_c00392{bottom:99.333333pt;}
.y3c_c00392{bottom:101.265333pt;}
.y3d_c00392{bottom:105.065333pt;}
.y3e_c00392{bottom:106.666667pt;}
.y3a_c00392{bottom:119.198667pt;}
.y39_c00392{bottom:133.932000pt;}
.y38_c00392{bottom:148.265333pt;}
.y36_c00392{bottom:158.198667pt;}
.y37_c00392{bottom:163.000000pt;}
.y34_c00392{bottom:220.265333pt;}
.y35_c00392{bottom:222.265333pt;}
.y33_c00392{bottom:238.598667pt;}
.y32_c00392{bottom:257.466667pt;}
.y31_c00392{bottom:275.732000pt;}
.y30_c00392{bottom:293.000000pt;}
.y2f_c00392{bottom:312.800000pt;}
.y2e_c00392{bottom:331.398667pt;}
.y2b_c00392{bottom:347.398667pt;}
.y2c_c00392{bottom:349.598667pt;}
.y2d_c00392{bottom:349.932000pt;}
.y2a_c00392{bottom:366.532000pt;}
.y29_c00392{bottom:386.398667pt;}
.y28_c00392{bottom:405.265333pt;}
.y27_c00392{bottom:423.865333pt;}
.y26_c00392{bottom:442.732000pt;}
.y23_c00392{bottom:460.333333pt;}
.y24_c00392{bottom:460.666667pt;}
.y25_c00392{bottom:461.598667pt;}
.y22_c00392{bottom:480.198667pt;}
.y21_c00392{bottom:499.065333pt;}
.y20_c00392{bottom:517.265333pt;}
.y1e_c00392{bottom:518.198667pt;}
.y1f_c00392{bottom:518.265333pt;}
.y1d_c00392{bottom:536.798667pt;}
.y1c_c00392{bottom:555.666667pt;}
.y1b_c00392{bottom:574.265333pt;}
.y1a_c00392{bottom:593.465333pt;}
.y19_c00392{bottom:612.333333pt;}
.y18_c00392{bottom:630.865333pt;}
.y17_c00392{bottom:649.798667pt;}
.y16_c00392{bottom:668.333333pt;}
.y15_c00392{bottom:687.865333pt;}
.y14_c00392{bottom:706.398667pt;}
.y13_c00392{bottom:725.600000pt;}
.y12_c00392{bottom:744.133333pt;}
.y11_c00392{bottom:745.800000pt;}
.y10_c00392{bottom:763.333333pt;}
.yf_c00392{bottom:777.466667pt;}
.ye_c00392{bottom:780.000000pt;}
.yd_c00392{bottom:783.198667pt;}
.yc_c00392{bottom:800.198667pt;}
.yb_c00392{bottom:820.333333pt;}
.ya_c00392{bottom:837.933333pt;}
.y9_c00392{bottom:854.532000pt;}
.y8_c00392{bottom:857.800000pt;}
.y7_c00392{bottom:859.666667pt;}
.y6_c00392{bottom:875.666667pt;}
.y5_c00392{bottom:889.732000pt;}
.y4_c00392{bottom:895.865333pt;}
.y3_c00392{bottom:940.333333pt;}
.y1_c00392{bottom:947.065333pt;}
.y2_c00392{bottom:953.133333pt;}
.h5_c00392{height:20.937500pt;}
.h6_c00392{height:52.317708pt;}
.h1_c00392{height:52.343750pt;}
.h8_c00392{height:56.906667pt;}
.h7_c00392{height:57.549479pt;}
.h4_c00392{height:62.781250pt;}
.h3_c00392{height:62.812500pt;}
.h2_c00392{height:64.500000pt;}
.h0_c00392{height:1044.000000pt;}
.w0_c00392{width:650.646400pt;}
.w1_c00392{width:650.666667pt;}
.x0_c00392{left:0.000000pt;}
.xc_c00392{left:56.302400pt;}
.x9_c00392{left:57.235733pt;}
.x4_c00392{left:58.235733pt;}
.x13_c00392{left:59.502400pt;}
.x18_c00392{left:60.435733pt;}
.x17_c00392{left:61.435733pt;}
.x1c_c00392{left:64.635733pt;}
.x1e_c00392{left:65.569067pt;}
.x1a_c00392{left:69.769067pt;}
.x28_c00392{left:71.969067pt;}
.x1f_c00392{left:72.969067pt;}
.xe_c00392{left:85.435733pt;}
.x8_c00392{left:86.369067pt;}
.x14_c00392{left:87.635733pt;}
.x19_c00392{left:89.569067pt;}
.x11_c00392{left:121.569067pt;}
.xd_c00392{left:148.769067pt;}
.x12_c00392{left:154.234400pt;}
.x1d_c00392{left:163.502400pt;}
.x22_c00392{left:215.035733pt;}
.x6_c00392{left:246.369067pt;}
.x1_c00392{left:248.969067pt;}
.x15_c00392{left:271.369067pt;}
.x7_c00392{left:273.569067pt;}
.x20_c00392{left:286.369067pt;}
.x23_c00392{left:288.635733pt;}
.x24_c00392{left:302.035733pt;}
.xf_c00392{left:373.102400pt;}
.x21_c00392{left:379.835733pt;}
.x16_c00392{left:382.367733pt;}
.x25_c00392{left:387.835733pt;}
.x10_c00392{left:394.235733pt;}
.x2_c00392{left:419.502400pt;}
.xa_c00392{left:421.769067pt;}
.xb_c00392{left:454.035733pt;}
.x5_c00392{left:457.902400pt;}
.x26_c00392{left:552.969067pt;}
.x3_c00392{left:561.902400pt;}
.x27_c00392{left:569.902400pt;}
.x1b_c00392{left:586.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_337c0d9b4196ed59cc3b8cf1.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00393{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00393{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00393{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00393{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m0_c00393{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00393{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00393{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00393{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00393{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00393{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00393{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00393{color:transparent;}
.fs0_c00393{font-size:60.000000px;}
.fs1_c00393{font-size:72.000000px;}
.fs2_c00393{font-size:90.000000px;}
.y0_c00393{bottom:0.000000px;}
.yf_c00393{bottom:875.698500px;}
.ye_c00393{bottom:896.925000px;}
.yd_c00393{bottom:917.775000px;}
.yc_c00393{bottom:936.900000px;}
.yb_c00393{bottom:939.073500px;}
.ya_c00393{bottom:960.300000px;}
.y9_c00393{bottom:981.900000px;}
.y8_c00393{bottom:1002.750000px;}
.y7_c00393{bottom:1021.500000px;}
.y6_c00393{bottom:1039.875000px;}
.y5_c00393{bottom:1043.473500px;}
.y4_c00393{bottom:1064.323500px;}
.y1_c00393{bottom:1120.875000px;}
.y3_c00393{bottom:1126.948500px;}
.y2_c00393{bottom:1134.375000px;}
.h1_c00393{height:58.886719px;}
.h2_c00393{height:70.664062px;}
.h3_c00393{height:88.330078px;}
.h0_c00393{height:1174.500000px;}
.w0_c00393{width:731.977200px;}
.w1_c00393{width:732.000000px;}
.x0_c00393{left:0.000000px;}
.xc_c00393{left:65.890200px;}
.xa_c00393{left:66.940200px;}
.x9_c00393{left:68.740200px;}
.x5_c00393{left:73.090200px;}
.x4_c00393{left:74.515200px;}
.x7_c00393{left:81.715200px;}
.x1_c00393{left:93.940200px;}
.xd_c00393{left:96.115200px;}
.x8_c00393{left:101.890200px;}
.x2_c00393{left:120.940200px;}
.x3_c00393{left:293.740200px;}
.x6_c00393{left:663.115200px;}
.xb_c00393{left:667.090200px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls0_c00393{letter-spacing:0.000000pt;}
.ws0_c00393{word-spacing:0.000000pt;}
.fs0_c00393{font-size:53.333333pt;}
.fs1_c00393{font-size:64.000000pt;}
.fs2_c00393{font-size:80.000000pt;}
.y0_c00393{bottom:0.000000pt;}
.yf_c00393{bottom:778.398667pt;}
.ye_c00393{bottom:797.266667pt;}
.yd_c00393{bottom:815.800000pt;}
.yc_c00393{bottom:832.800000pt;}
.yb_c00393{bottom:834.732000pt;}
.ya_c00393{bottom:853.600000pt;}
.y9_c00393{bottom:872.800000pt;}
.y8_c00393{bottom:891.333333pt;}
.y7_c00393{bottom:908.000000pt;}
.y6_c00393{bottom:924.333333pt;}
.y5_c00393{bottom:927.532000pt;}
.y4_c00393{bottom:946.065333pt;}
.y1_c00393{bottom:996.333333pt;}
.y3_c00393{bottom:1001.732000pt;}
.y2_c00393{bottom:1008.333333pt;}
.h1_c00393{height:52.343750pt;}
.h2_c00393{height:62.812500pt;}
.h3_c00393{height:78.515625pt;}
.h0_c00393{height:1044.000000pt;}
.w0_c00393{width:650.646400pt;}
.w1_c00393{width:650.666667pt;}
.x0_c00393{left:0.000000pt;}
.xc_c00393{left:58.569067pt;}
.xa_c00393{left:59.502400pt;}
.x9_c00393{left:61.102400pt;}
.x5_c00393{left:64.969067pt;}
.x4_c00393{left:66.235733pt;}
.x7_c00393{left:72.635733pt;}
.x1_c00393{left:83.502400pt;}
.xd_c00393{left:85.435733pt;}
.x8_c00393{left:90.569067pt;}
.x2_c00393{left:107.502400pt;}
.x3_c00393{left:261.102400pt;}
.x6_c00393{left:589.435733pt;}
.xb_c00393{left:592.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b5f25adff2c28ea7675094c.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00394;src:url('chunks/assets/font_2fdb3809e8520fda7bb2e968.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00394;src:url('chunks/assets/font_d2805e3b588550a4c7509465.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00394{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.m0_c00394{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6_c00394{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c00394{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00394{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c00394{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00394{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c00394{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00394{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00394{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c00394{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00394{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00394{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00394{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00394{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3_c00394{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00394{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00394{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00394{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c00394{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00394{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mf_c00394{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m14_c00394{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m10_c00394{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00394{word-spacing:0.000000px;}
.fc0_c00394{color:transparent;}
.fs2_c00394{font-size:60.000000px;}
.fs1_c00394{font-size:66.000000px;}
.fs0_c00394{font-size:72.000000px;}
.fs3_c00394{font-size:84.000000px;}
.y0_c00394{bottom:0.000000px;}
.y37_c00394{bottom:87.673500px;}
.y38_c00394{bottom:89.098500px;}
.y39_c00394{bottom:89.473500px;}
.y36_c00394{bottom:106.048500px;}
.y35_c00394{bottom:128.698500px;}
.y33_c00394{bottom:148.198500px;}
.y34_c00394{bottom:151.048500px;}
.y32_c00394{bottom:169.348500px;}
.y2d_c00394{bottom:185.625000px;}
.y2e_c00394{bottom:187.798500px;}
.y2f_c00394{bottom:189.598500px;}
.y30_c00394{bottom:190.273500px;}
.y31_c00394{bottom:192.073500px;}
.y2b_c00394{bottom:208.948500px;}
.y2c_c00394{bottom:210.750000px;}
.y26_c00394{bottom:227.023500px;}
.y27_c00394{bottom:229.500000px;}
.y28_c00394{bottom:229.798500px;}
.y29_c00394{bottom:229.875000px;}
.y2a_c00394{bottom:230.250000px;}
.y25_c00394{bottom:250.048500px;}
.y22_c00394{bottom:269.473500px;}
.y23_c00394{bottom:270.150000px;}
.y24_c00394{bottom:270.900000px;}
.y21_c00394{bottom:290.323500px;}
.y20_c00394{bottom:311.548500px;}
.y1e_c00394{bottom:331.348500px;}
.y1f_c00394{bottom:333.525000px;}
.y1c_c00394{bottom:352.275000px;}
.y1d_c00394{bottom:353.698500px;}
.y1b_c00394{bottom:372.823500px;}
.y1a_c00394{bottom:394.798500px;}
.y19_c00394{bottom:415.273500px;}
.y18_c00394{bottom:436.500000px;}
.y17_c00394{bottom:436.875000px;}
.y16_c00394{bottom:457.048500px;}
.y15_c00394{bottom:457.723500px;}
.y14_c00394{bottom:458.098500px;}
.y13_c00394{bottom:479.323500px;}
.y12_c00394{bottom:500.548500px;}
.y11_c00394{bottom:521.773500px;}
.y10_c00394{bottom:543.448500px;}
.yf_c00394{bottom:563.923500px;}
.ye_c00394{bottom:564.673500px;}
.yd_c00394{bottom:582.673500px;}
.yc_c00394{bottom:584.848500px;}
.yb_c00394{bottom:586.273500px;}
.ya_c00394{bottom:606.823500px;}
.y9_c00394{bottom:627.298500px;}
.y8_c00394{bottom:648.898500px;}
.y7_c00394{bottom:670.125000px;}
.y6_c00394{bottom:691.348500px;}
.y5_c00394{bottom:712.573500px;}
.y4_c00394{bottom:733.500000px;}
.y3_c00394{bottom:791.473500px;}
.y2_c00394{bottom:809.098500px;}
.y1_c00394{bottom:883.275000px;}
.h3_c00394{height:58.886719px;}
.h2_c00394{height:64.775391px;}
.h4_c00394{height:70.628906px;}
.h1_c00394{height:70.664062px;}
.h5_c00394{height:82.400391px;}
.h0_c00394{height:1174.500000px;}
.w0_c00394{width:731.977200px;}
.w1_c00394{width:732.000000px;}
.x0_c00394{left:0.000000px;}
.x5_c00394{left:46.090200px;}
.x2_c00394{left:47.890200px;}
.x6_c00394{left:48.940200px;}
.x12_c00394{left:69.115200px;}
.x7_c00394{left:70.165200px;}
.xb_c00394{left:71.290200px;}
.x1c_c00394{left:73.090200px;}
.x4_c00394{left:80.590200px;}
.xe_c00394{left:108.340200px;}
.xf_c00394{left:137.140200px;}
.x8_c00394{left:164.890200px;}
.x13_c00394{left:166.990200px;}
.x15_c00394{left:168.115200px;}
.x14_c00394{left:178.165200px;}
.xa_c00394{left:182.513700px;}
.x10_c00394{left:202.990200px;}
.x3_c00394{left:286.915200px;}
.x1d_c00394{left:315.715200px;}
.x1_c00394{left:352.765200px;}
.x18_c00394{left:393.788700px;}
.xc_c00394{left:399.190200px;}
.x16_c00394{left:441.715200px;}
.x19_c00394{left:448.165200px;}
.x1e_c00394{left:449.965200px;}
.x17_c00394{left:463.990200px;}
.x1b_c00394{left:507.190200px;}
.xd_c00394{left:539.965200px;}
.x1a_c00394{left:555.490200px;}
.x20_c00394{left:575.290200px;}
.x22_c00394{left:579.565200px;}
.x1f_c00394{left:595.765200px;}
.x11_c00394{left:598.690200px;}
.x9_c00394{left:614.890200px;}
.x23_c00394{left:619.165200px;}
.x21_c00394{left:627.790200px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls0_c00394{letter-spacing:0.000000pt;}
.ws0_c00394{word-spacing:0.000000pt;}
.fs2_c00394{font-size:53.333333pt;}
.fs1_c00394{font-size:58.666667pt;}
.fs0_c00394{font-size:64.000000pt;}
.fs3_c00394{font-size:74.666667pt;}
.y0_c00394{bottom:0.000000pt;}
.y37_c00394{bottom:77.932000pt;}
.y38_c00394{bottom:79.198667pt;}
.y39_c00394{bottom:79.532000pt;}
.y36_c00394{bottom:94.265333pt;}
.y35_c00394{bottom:114.398667pt;}
.y33_c00394{bottom:131.732000pt;}
.y34_c00394{bottom:134.265333pt;}
.y32_c00394{bottom:150.532000pt;}
.y2d_c00394{bottom:165.000000pt;}
.y2e_c00394{bottom:166.932000pt;}
.y2f_c00394{bottom:168.532000pt;}
.y30_c00394{bottom:169.132000pt;}
.y31_c00394{bottom:170.732000pt;}
.y2b_c00394{bottom:185.732000pt;}
.y2c_c00394{bottom:187.333333pt;}
.y26_c00394{bottom:201.798667pt;}
.y27_c00394{bottom:204.000000pt;}
.y28_c00394{bottom:204.265333pt;}
.y29_c00394{bottom:204.333333pt;}
.y2a_c00394{bottom:204.666667pt;}
.y25_c00394{bottom:222.265333pt;}
.y22_c00394{bottom:239.532000pt;}
.y23_c00394{bottom:240.133333pt;}
.y24_c00394{bottom:240.800000pt;}
.y21_c00394{bottom:258.065333pt;}
.y20_c00394{bottom:276.932000pt;}
.y1e_c00394{bottom:294.532000pt;}
.y1f_c00394{bottom:296.466667pt;}
.y1c_c00394{bottom:313.133333pt;}
.y1d_c00394{bottom:314.398667pt;}
.y1b_c00394{bottom:331.398667pt;}
.y1a_c00394{bottom:350.932000pt;}
.y19_c00394{bottom:369.132000pt;}
.y18_c00394{bottom:388.000000pt;}
.y17_c00394{bottom:388.333333pt;}
.y16_c00394{bottom:406.265333pt;}
.y15_c00394{bottom:406.865333pt;}
.y14_c00394{bottom:407.198667pt;}
.y13_c00394{bottom:426.065333pt;}
.y12_c00394{bottom:444.932000pt;}
.y11_c00394{bottom:463.798667pt;}
.y10_c00394{bottom:483.065333pt;}
.yf_c00394{bottom:501.265333pt;}
.ye_c00394{bottom:501.932000pt;}
.yd_c00394{bottom:517.932000pt;}
.yc_c00394{bottom:519.865333pt;}
.yb_c00394{bottom:521.132000pt;}
.ya_c00394{bottom:539.398667pt;}
.y9_c00394{bottom:557.598667pt;}
.y8_c00394{bottom:576.798667pt;}
.y7_c00394{bottom:595.666667pt;}
.y6_c00394{bottom:614.532000pt;}
.y5_c00394{bottom:633.398667pt;}
.y4_c00394{bottom:652.000000pt;}
.y3_c00394{bottom:703.532000pt;}
.y2_c00394{bottom:719.198667pt;}
.y1_c00394{bottom:785.133333pt;}
.h3_c00394{height:52.343750pt;}
.h2_c00394{height:57.578125pt;}
.h4_c00394{height:62.781250pt;}
.h1_c00394{height:62.812500pt;}
.h5_c00394{height:73.244792pt;}
.h0_c00394{height:1044.000000pt;}
.w0_c00394{width:650.646400pt;}
.w1_c00394{width:650.666667pt;}
.x0_c00394{left:0.000000pt;}
.x5_c00394{left:40.969067pt;}
.x2_c00394{left:42.569067pt;}
.x6_c00394{left:43.502400pt;}
.x12_c00394{left:61.435733pt;}
.x7_c00394{left:62.369067pt;}
.xb_c00394{left:63.369067pt;}
.x1c_c00394{left:64.969067pt;}
.x4_c00394{left:71.635733pt;}
.xe_c00394{left:96.302400pt;}
.xf_c00394{left:121.902400pt;}
.x8_c00394{left:146.569067pt;}
.x13_c00394{left:148.435733pt;}
.x15_c00394{left:149.435733pt;}
.x14_c00394{left:158.369067pt;}
.xa_c00394{left:162.234400pt;}
.x10_c00394{left:180.435733pt;}
.x3_c00394{left:255.035733pt;}
.x1d_c00394{left:280.635733pt;}
.x1_c00394{left:313.569067pt;}
.x18_c00394{left:350.034400pt;}
.xc_c00394{left:354.835733pt;}
.x16_c00394{left:392.635733pt;}
.x19_c00394{left:398.369067pt;}
.x1e_c00394{left:399.969067pt;}
.x17_c00394{left:412.435733pt;}
.x1b_c00394{left:450.835733pt;}
.xd_c00394{left:479.969067pt;}
.x1a_c00394{left:493.769067pt;}
.x20_c00394{left:511.369067pt;}
.x22_c00394{left:515.169067pt;}
.x1f_c00394{left:529.569067pt;}
.x11_c00394{left:532.169067pt;}
.x9_c00394{left:546.569067pt;}
.x23_c00394{left:550.369067pt;}
.x21_c00394{left:558.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_92497cb2d7b0f6bdf3e41bd4.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00395;src:url('chunks/assets/font_49bb0a329300587b80915e3e.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00395;src:url('chunks/assets/font_a8025ec283bcccb7f440cb1b.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c00395{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00395{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00395{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00395{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c00395{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00395{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c00395{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c00395{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00395{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c00395{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c00395{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8_c00395{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00395{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c00395{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00395{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c00395{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00395{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00395{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c00395{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00395{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c00395{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00395{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c00395{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c00395{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m16_c00395{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.ma_c00395{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9_c00395{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1_c00395{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00395{color:transparent;}
.fs1_c00395{font-size:60.000000px;}
.fs0_c00395{font-size:66.000000px;}
.fs2_c00395{font-size:72.000000px;}
.fs3_c00395{font-size:84.000000px;}
.y0_c00395{bottom:0.000000px;}
.y3e_c00395{bottom:130.125000px;}
.y3d_c00395{bottom:137.323500px;}
.y3c_c00395{bottom:137.698500px;}
.y3b_c00395{bottom:139.500000px;}
.y3a_c00395{bottom:145.573500px;}
.y39_c00395{bottom:154.648500px;}
.y38_c00395{bottom:155.698500px;}
.y37_c00395{bottom:158.548500px;}
.y36_c00395{bottom:161.848500px;}
.y34_c00395{bottom:228.750000px;}
.y35_c00395{bottom:229.500000px;}
.y33_c00395{bottom:231.973500px;}
.y32_c00395{bottom:252.148500px;}
.y31_c00395{bottom:273.823500px;}
.y30_c00395{bottom:295.048500px;}
.y2f_c00395{bottom:316.948500px;}
.y2e_c00395{bottom:336.750000px;}
.y2d_c00395{bottom:338.625000px;}
.y2c_c00395{bottom:359.848500px;}
.y2b_c00395{bottom:381.448500px;}
.y2a_c00395{bottom:403.048500px;}
.y28_c00395{bottom:423.523500px;}
.y29_c00395{bottom:423.598500px;}
.y27_c00395{bottom:424.948500px;}
.y26_c00395{bottom:447.298500px;}
.y25_c00395{bottom:467.848500px;}
.y24_c00395{bottom:489.448500px;}
.y23_c00395{bottom:511.048500px;}
.y22_c00395{bottom:532.273500px;}
.y21_c00395{bottom:553.500000px;}
.y20_c00395{bottom:574.723500px;}
.y1f_c00395{bottom:596.023500px;}
.y1e_c00395{bottom:617.625000px;}
.y1c_c00395{bottom:638.773500px;}
.y1d_c00395{bottom:639.523500px;}
.y1b_c00395{bottom:660.823500px;}
.y1a_c00395{bottom:682.723500px;}
.y19_c00395{bottom:703.948500px;}
.y18_c00395{bottom:725.250000px;}
.y17_c00395{bottom:747.148500px;}
.y16_c00395{bottom:768.448500px;}
.y15_c00395{bottom:789.973500px;}
.y14_c00395{bottom:807.675000px;}
.y13_c00395{bottom:831.823500px;}
.y11_c00395{bottom:850.125000px;}
.y12_c00395{bottom:853.050000px;}
.y10_c00395{bottom:872.848500px;}
.ye_c00395{bottom:894.823500px;}
.yf_c00395{bottom:895.875000px;}
.yd_c00395{bottom:916.425000px;}
.yc_c00395{bottom:938.323500px;}
.yb_c00395{bottom:958.500000px;}
.ya_c00395{bottom:980.098500px;}
.y9_c00395{bottom:1000.948500px;}
.y6_c00395{bottom:1018.275000px;}
.y8_c00395{bottom:1022.625000px;}
.y7_c00395{bottom:1023.300000px;}
.y5_c00395{bottom:1041.675000px;}
.y4_c00395{bottom:1062.525000px;}
.y1_c00395{bottom:1110.073500px;}
.y3_c00395{bottom:1119.073500px;}
.y2_c00395{bottom:1124.625000px;}
.h2_c00395{height:58.886719px;}
.h7_c00395{height:60.468750px;}
.h6_c00395{height:64.743164px;}
.h1_c00395{height:64.775391px;}
.h3_c00395{height:70.664062px;}
.h4_c00395{height:72.562500px;}
.h5_c00395{height:82.441406px;}
.h0_c00395{height:1174.500000px;}
.w0_c00395{width:731.977200px;}
.w1_c00395{width:732.000000px;}
.x0_c00395{left:0.000000px;}
.x14_c00395{left:59.740200px;}
.x12_c00395{left:60.790200px;}
.x11_c00395{left:62.290200px;}
.xf_c00395{left:63.715200px;}
.xa_c00395{left:65.140200px;}
.x5_c00395{left:67.315200px;}
.x4_c00395{left:68.740200px;}
.x1d_c00395{left:77.365200px;}
.x15_c00395{left:80.965200px;}
.x16_c00395{left:82.390200px;}
.x10_c00395{left:83.515200px;}
.xd_c00395{left:84.938700px;}
.x9_c00395{left:87.490200px;}
.x1_c00395{left:88.915200px;}
.x1a_c00395{left:89.965200px;}
.x17_c00395{left:91.765200px;}
.x8_c00395{left:94.990200px;}
.x1e_c00395{left:114.490200px;}
.x2_c00395{left:117.340200px;}
.xe_c00395{left:128.140200px;}
.x13_c00395{left:137.890200px;}
.x3_c00395{left:296.290200px;}
.x1f_c00395{left:314.965200px;}
.x6_c00395{left:359.965200px;}
.x1b_c00395{left:423.715200px;}
.x20_c00395{left:429.788700px;}
.x1c_c00395{left:453.190200px;}
.x7_c00395{left:464.365200px;}
.x21_c00395{left:474.490200px;}
.x19_c00395{left:582.790200px;}
.x18_c00395{left:623.890200px;}
.xb_c00395{left:625.990200px;}
.x22_c00395{left:647.965200px;}
.xc_c00395{left:651.190200px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls0_c00395{letter-spacing:0.000000pt;}
.ws0_c00395{word-spacing:0.000000pt;}
.fs1_c00395{font-size:53.333333pt;}
.fs0_c00395{font-size:58.666667pt;}
.fs2_c00395{font-size:64.000000pt;}
.fs3_c00395{font-size:74.666667pt;}
.y0_c00395{bottom:0.000000pt;}
.y3e_c00395{bottom:115.666667pt;}
.y3d_c00395{bottom:122.065333pt;}
.y3c_c00395{bottom:122.398667pt;}
.y3b_c00395{bottom:124.000000pt;}
.y3a_c00395{bottom:129.398667pt;}
.y39_c00395{bottom:137.465333pt;}
.y38_c00395{bottom:138.398667pt;}
.y37_c00395{bottom:140.932000pt;}
.y36_c00395{bottom:143.865333pt;}
.y34_c00395{bottom:203.333333pt;}
.y35_c00395{bottom:204.000000pt;}
.y33_c00395{bottom:206.198667pt;}
.y32_c00395{bottom:224.132000pt;}
.y31_c00395{bottom:243.398667pt;}
.y30_c00395{bottom:262.265333pt;}
.y2f_c00395{bottom:281.732000pt;}
.y2e_c00395{bottom:299.333333pt;}
.y2d_c00395{bottom:301.000000pt;}
.y2c_c00395{bottom:319.865333pt;}
.y2b_c00395{bottom:339.065333pt;}
.y2a_c00395{bottom:358.265333pt;}
.y28_c00395{bottom:376.465333pt;}
.y29_c00395{bottom:376.532000pt;}
.y27_c00395{bottom:377.732000pt;}
.y26_c00395{bottom:397.598667pt;}
.y25_c00395{bottom:415.865333pt;}
.y24_c00395{bottom:435.065333pt;}
.y23_c00395{bottom:454.265333pt;}
.y22_c00395{bottom:473.132000pt;}
.y21_c00395{bottom:492.000000pt;}
.y20_c00395{bottom:510.865333pt;}
.y1f_c00395{bottom:529.798667pt;}
.y1e_c00395{bottom:549.000000pt;}
.y1c_c00395{bottom:567.798667pt;}
.y1d_c00395{bottom:568.465333pt;}
.y1b_c00395{bottom:587.398667pt;}
.y1a_c00395{bottom:606.865333pt;}
.y19_c00395{bottom:625.732000pt;}
.y18_c00395{bottom:644.666667pt;}
.y17_c00395{bottom:664.132000pt;}
.y16_c00395{bottom:683.065333pt;}
.y15_c00395{bottom:702.198667pt;}
.y14_c00395{bottom:717.933333pt;}
.y13_c00395{bottom:739.398667pt;}
.y11_c00395{bottom:755.666667pt;}
.y12_c00395{bottom:758.266667pt;}
.y10_c00395{bottom:775.865333pt;}
.ye_c00395{bottom:795.398667pt;}
.yf_c00395{bottom:796.333333pt;}
.yd_c00395{bottom:814.600000pt;}
.yc_c00395{bottom:834.065333pt;}
.yb_c00395{bottom:852.000000pt;}
.ya_c00395{bottom:871.198667pt;}
.y9_c00395{bottom:889.732000pt;}
.y6_c00395{bottom:905.133333pt;}
.y8_c00395{bottom:909.000000pt;}
.y7_c00395{bottom:909.600000pt;}
.y5_c00395{bottom:925.933333pt;}
.y4_c00395{bottom:944.466667pt;}
.y1_c00395{bottom:986.732000pt;}
.y3_c00395{bottom:994.732000pt;}
.y2_c00395{bottom:999.666667pt;}
.h2_c00395{height:52.343750pt;}
.h7_c00395{height:53.750000pt;}
.h6_c00395{height:57.549479pt;}
.h1_c00395{height:57.578125pt;}
.h3_c00395{height:62.812500pt;}
.h4_c00395{height:64.500000pt;}
.h5_c00395{height:73.281250pt;}
.h0_c00395{height:1044.000000pt;}
.w0_c00395{width:650.646400pt;}
.w1_c00395{width:650.666667pt;}
.x0_c00395{left:0.000000pt;}
.x14_c00395{left:53.102400pt;}
.x12_c00395{left:54.035733pt;}
.x11_c00395{left:55.369067pt;}
.xf_c00395{left:56.635733pt;}
.xa_c00395{left:57.902400pt;}
.x5_c00395{left:59.835733pt;}
.x4_c00395{left:61.102400pt;}
.x1d_c00395{left:68.769067pt;}
.x15_c00395{left:71.969067pt;}
.x16_c00395{left:73.235733pt;}
.x10_c00395{left:74.235733pt;}
.xd_c00395{left:75.501067pt;}
.x9_c00395{left:77.769067pt;}
.x1_c00395{left:79.035733pt;}
.x1a_c00395{left:79.969067pt;}
.x17_c00395{left:81.569067pt;}
.x8_c00395{left:84.435733pt;}
.x1e_c00395{left:101.769067pt;}
.x2_c00395{left:104.302400pt;}
.xe_c00395{left:113.902400pt;}
.x13_c00395{left:122.569067pt;}
.x3_c00395{left:263.369067pt;}
.x1f_c00395{left:279.969067pt;}
.x6_c00395{left:319.969067pt;}
.x1b_c00395{left:376.635733pt;}
.x20_c00395{left:382.034400pt;}
.x1c_c00395{left:402.835733pt;}
.x7_c00395{left:412.769067pt;}
.x21_c00395{left:421.769067pt;}
.x19_c00395{left:518.035733pt;}
.x18_c00395{left:554.569067pt;}
.xb_c00395{left:556.435733pt;}
.x22_c00395{left:575.969067pt;}
.xc_c00395{left:578.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dd31fbd03597130ed2b40bf0.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00396;src:url('chunks/assets/font_4249a98036bffbf7ac50bfa0.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00396;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00396{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00396{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me_c00396{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_c00396{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00396{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c00396{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c00396{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c00396{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00396{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00396{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m17_c00396{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00396{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00396{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00396{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00396{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c00396{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00396{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c00396{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16_c00396{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00396{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00396{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c00396{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m15_c00396{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m14_c00396{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m13_c00396{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c00396{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m9_c00396{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m18_c00396{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,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;}
}
.ws0_c00396{word-spacing:0.000000px;}
.fc0_c00396{color:transparent;}
.fs2_c00396{font-size:54.000000px;}
.fs0_c00396{font-size:60.000000px;}
.fs3_c00396{font-size:66.000000px;}
.fs1_c00396{font-size:72.000000px;}
.y0_c00396{bottom:0.000000px;}
.y3c_c00396{bottom:51.298500px;}
.y3b_c00396{bottom:72.598500px;}
.y3a_c00396{bottom:89.848500px;}
.y39_c00396{bottom:105.973500px;}
.y38_c00396{bottom:122.250000px;}
.y35_c00396{bottom:134.848500px;}
.y36_c00396{bottom:135.523500px;}
.y37_c00396{bottom:138.823500px;}
.y34_c00396{bottom:155.323500px;}
.y33_c00396{bottom:171.148500px;}
.y32_c00396{bottom:187.348500px;}
.y31_c00396{bottom:203.548500px;}
.y30_c00396{bottom:219.375000px;}
.y2f_c00396{bottom:235.573500px;}
.y2e_c00396{bottom:251.773500px;}
.y2b_c00396{bottom:267.973500px;}
.y2c_c00396{bottom:269.775000px;}
.y2d_c00396{bottom:270.150000px;}
.y2a_c00396{bottom:284.173500px;}
.y29_c00396{bottom:300.750000px;}
.y28_c00396{bottom:317.400000px;}
.y27_c00396{bottom:334.275000px;}
.y26_c00396{bottom:350.848500px;}
.y25_c00396{bottom:367.723500px;}
.y24_c00396{bottom:384.000000px;}
.y23_c00396{bottom:400.798500px;}
.y22_c00396{bottom:417.375000px;}
.y21_c00396{bottom:434.023500px;}
.y20_c00396{bottom:508.125000px;}
.y1f_c00396{bottom:529.423500px;}
.y1e_c00396{bottom:550.648500px;}
.y1d_c00396{bottom:570.073500px;}
.y1c_c00396{bottom:571.500000px;}
.y1b_c00396{bottom:593.098500px;}
.y1a_c00396{bottom:614.323500px;}
.y19_c00396{bottom:635.250000px;}
.y18_c00396{bottom:656.473500px;}
.y17_c00396{bottom:677.698500px;}
.y16_c00396{bottom:699.298500px;}
.y15_c00396{bottom:719.848500px;}
.y14_c00396{bottom:742.875000px;}
.y13_c00396{bottom:762.298500px;}
.y12_c00396{bottom:783.898500px;}
.y11_c00396{bottom:805.500000px;}
.y10_c00396{bottom:824.250000px;}
.yf_c00396{bottom:827.473500px;}
.ye_c00396{bottom:828.900000px;}
.yd_c00396{bottom:847.573500px;}
.yc_c00396{bottom:871.050000px;}
.yb_c00396{bottom:889.723500px;}
.ya_c00396{bottom:910.948500px;}
.y9_c00396{bottom:931.875000px;}
.y8_c00396{bottom:952.723500px;}
.y7_c00396{bottom:970.723500px;}
.y6_c00396{bottom:975.073500px;}
.y5_c00396{bottom:977.925000px;}
.y4_c00396{bottom:995.550000px;}
.y2_c00396{bottom:1047.375000px;}
.y1_c00396{bottom:1054.650000px;}
.y3_c00396{bottom:1124.775000px;}
.h3_c00396{height:52.998047px;}
.h5_c00396{height:58.886719px;}
.h1_c00396{height:60.468750px;}
.h6_c00396{height:64.743164px;}
.h4_c00396{height:70.664062px;}
.h2_c00396{height:72.562500px;}
.h0_c00396{height:1174.500000px;}
.w0_c00396{width:731.977200px;}
.w1_c00396{width:732.000000px;}
.x0_c00396{left:0.000000px;}
.x4_c00396{left:35.963700px;}
.x5_c00396{left:37.390200px;}
.x9_c00396{left:39.190200px;}
.xc_c00396{left:41.365200px;}
.xf_c00396{left:42.790200px;}
.x10_c00396{left:43.915200px;}
.x12_c00396{left:45.715200px;}
.x15_c00396{left:47.515200px;}
.x16_c00396{left:48.940200px;}
.x1a_c00396{left:50.365200px;}
.x11_c00396{left:52.165200px;}
.x14_c00396{left:53.965200px;}
.x19_c00396{left:57.565200px;}
.xe_c00396{left:58.990200px;}
.x8_c00396{left:71.290200px;}
.x17_c00396{left:110.515200px;}
.x18_c00396{left:126.340200px;}
.x1_c00396{left:249.790200px;}
.xa_c00396{left:262.765200px;}
.xb_c00396{left:290.515200px;}
.x6_c00396{left:303.115200px;}
.x7_c00396{left:325.390200px;}
.x1b_c00396{left:570.565200px;}
.x13_c00396{left:596.515200px;}
.x2_c00396{left:605.515200px;}
.xd_c00396{left:633.565200px;}
.x3_c00396{left:741.940200px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls0_c00396{letter-spacing:0.000000pt;}
.ws0_c00396{word-spacing:0.000000pt;}
.fs2_c00396{font-size:48.000000pt;}
.fs0_c00396{font-size:53.333333pt;}
.fs3_c00396{font-size:58.666667pt;}
.fs1_c00396{font-size:64.000000pt;}
.y0_c00396{bottom:0.000000pt;}
.y3c_c00396{bottom:45.598667pt;}
.y3b_c00396{bottom:64.532000pt;}
.y3a_c00396{bottom:79.865333pt;}
.y39_c00396{bottom:94.198667pt;}
.y38_c00396{bottom:108.666667pt;}
.y35_c00396{bottom:119.865333pt;}
.y36_c00396{bottom:120.465333pt;}
.y37_c00396{bottom:123.398667pt;}
.y34_c00396{bottom:138.065333pt;}
.y33_c00396{bottom:152.132000pt;}
.y32_c00396{bottom:166.532000pt;}
.y31_c00396{bottom:180.932000pt;}
.y30_c00396{bottom:195.000000pt;}
.y2f_c00396{bottom:209.398667pt;}
.y2e_c00396{bottom:223.798667pt;}
.y2b_c00396{bottom:238.198667pt;}
.y2c_c00396{bottom:239.800000pt;}
.y2d_c00396{bottom:240.133333pt;}
.y2a_c00396{bottom:252.598667pt;}
.y29_c00396{bottom:267.333333pt;}
.y28_c00396{bottom:282.133333pt;}
.y27_c00396{bottom:297.133333pt;}
.y26_c00396{bottom:311.865333pt;}
.y25_c00396{bottom:326.865333pt;}
.y24_c00396{bottom:341.333333pt;}
.y23_c00396{bottom:356.265333pt;}
.y22_c00396{bottom:371.000000pt;}
.y21_c00396{bottom:385.798667pt;}
.y20_c00396{bottom:451.666667pt;}
.y1f_c00396{bottom:470.598667pt;}
.y1e_c00396{bottom:489.465333pt;}
.y1d_c00396{bottom:506.732000pt;}
.y1c_c00396{bottom:508.000000pt;}
.y1b_c00396{bottom:527.198667pt;}
.y1a_c00396{bottom:546.065333pt;}
.y19_c00396{bottom:564.666667pt;}
.y18_c00396{bottom:583.532000pt;}
.y17_c00396{bottom:602.398667pt;}
.y16_c00396{bottom:621.598667pt;}
.y15_c00396{bottom:639.865333pt;}
.y14_c00396{bottom:660.333333pt;}
.y13_c00396{bottom:677.598667pt;}
.y12_c00396{bottom:696.798667pt;}
.y11_c00396{bottom:716.000000pt;}
.y10_c00396{bottom:732.666667pt;}
.yf_c00396{bottom:735.532000pt;}
.ye_c00396{bottom:736.800000pt;}
.yd_c00396{bottom:753.398667pt;}
.yc_c00396{bottom:774.266667pt;}
.yb_c00396{bottom:790.865333pt;}
.ya_c00396{bottom:809.732000pt;}
.y9_c00396{bottom:828.333333pt;}
.y8_c00396{bottom:846.865333pt;}
.y7_c00396{bottom:862.865333pt;}
.y6_c00396{bottom:866.732000pt;}
.y5_c00396{bottom:869.266667pt;}
.y4_c00396{bottom:884.933333pt;}
.y2_c00396{bottom:931.000000pt;}
.y1_c00396{bottom:937.466667pt;}
.y3_c00396{bottom:999.800000pt;}
.h3_c00396{height:47.109375pt;}
.h5_c00396{height:52.343750pt;}
.h1_c00396{height:53.750000pt;}
.h6_c00396{height:57.549479pt;}
.h4_c00396{height:62.812500pt;}
.h2_c00396{height:64.500000pt;}
.h0_c00396{height:1044.000000pt;}
.w0_c00396{width:650.646400pt;}
.w1_c00396{width:650.666667pt;}
.x0_c00396{left:0.000000pt;}
.x4_c00396{left:31.967733pt;}
.x5_c00396{left:33.235733pt;}
.x9_c00396{left:34.835733pt;}
.xc_c00396{left:36.769067pt;}
.xf_c00396{left:38.035733pt;}
.x10_c00396{left:39.035733pt;}
.x12_c00396{left:40.635733pt;}
.x15_c00396{left:42.235733pt;}
.x16_c00396{left:43.502400pt;}
.x1a_c00396{left:44.769067pt;}
.x11_c00396{left:46.369067pt;}
.x14_c00396{left:47.969067pt;}
.x19_c00396{left:51.169067pt;}
.xe_c00396{left:52.435733pt;}
.x8_c00396{left:63.369067pt;}
.x17_c00396{left:98.235733pt;}
.x18_c00396{left:112.302400pt;}
.x1_c00396{left:222.035733pt;}
.xa_c00396{left:233.569067pt;}
.xb_c00396{left:258.235733pt;}
.x6_c00396{left:269.435733pt;}
.x7_c00396{left:289.235733pt;}
.x1b_c00396{left:507.169067pt;}
.x13_c00396{left:530.235733pt;}
.x2_c00396{left:538.235733pt;}
.xd_c00396{left:563.169067pt;}
.x3_c00396{left:659.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb397cd5752408e91a6b986a.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00397;src:url('chunks/assets/font_090656d7a3611275e3540231.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00397;src:url('chunks/assets/font_264c5aa621397e794f0589f6.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00397;src:url('chunks/assets/font_5a76f37d8e285a04beddfb2b.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1c_c00397{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00397{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m14_c00397{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m24_c00397{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00397{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m12_c00397{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00397{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00397{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m11_c00397{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c00397{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb_c00397{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c00397{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m27_c00397{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c00397{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c00397{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17_c00397{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00397{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c00397{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c00397{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m19_c00397{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m28_c00397{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00397{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00397{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m16_c00397{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00397{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00397{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c00397{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00397{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c00397{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m22_c00397{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00397{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m23_c00397{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m0_c00397{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c00397{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c00397{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m26_c00397{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c00397{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m25_c00397{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m15_c00397{transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);}
.m18_c00397{transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c00397{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00397{color:transparent;}
.fs0_c00397{font-size:60.000000px;}
.fs3_c00397{font-size:66.000000px;}
.fs1_c00397{font-size:72.000000px;}
.fs2_c00397{font-size:78.000000px;}
.y0_c00397{bottom:0.000000px;}
.y56_c00397{bottom:122.250000px;}
.y54_c00397{bottom:132.673500px;}
.y53_c00397{bottom:133.048500px;}
.y55_c00397{bottom:134.098500px;}
.y52_c00397{bottom:138.000000px;}
.y51_c00397{bottom:142.723500px;}
.y4f_c00397{bottom:149.625000px;}
.y50_c00397{bottom:149.923500px;}
.y4e_c00397{bottom:151.723500px;}
.y4d_c00397{bottom:155.323500px;}
.y4c_c00397{bottom:159.000000px;}
.y4b_c00397{bottom:167.923500px;}
.y4a_c00397{bottom:171.523500px;}
.y49_c00397{bottom:184.798500px;}
.y48_c00397{bottom:186.298500px;}
.y47_c00397{bottom:202.500000px;}
.y46_c00397{bottom:207.148500px;}
.y45_c00397{bottom:208.198500px;}
.y44_c00397{bottom:269.473500px;}
.y43_c00397{bottom:291.448500px;}
.y42_c00397{bottom:311.923500px;}
.y41_c00397{bottom:314.473500px;}
.y40_c00397{bottom:314.848500px;}
.y3f_c00397{bottom:315.900000px;}
.y3e_c00397{bottom:334.275000px;}
.y3d_c00397{bottom:355.875000px;}
.y3c_c00397{bottom:377.473500px;}
.y3b_c00397{bottom:399.073500px;}
.y3a_c00397{bottom:420.298500px;}
.y39_c00397{bottom:421.723500px;}
.y38_c00397{bottom:442.273500px;}
.y37_c00397{bottom:463.500000px;}
.y36_c00397{bottom:464.923500px;}
.y35_c00397{bottom:485.473500px;}
.y34_c00397{bottom:506.698500px;}
.y33_c00397{bottom:507.073500px;}
.y32_c00397{bottom:527.923500px;}
.y30_c00397{bottom:549.148500px;}
.y31_c00397{bottom:549.223500px;}
.y2f_c00397{bottom:570.448500px;}
.y2e_c00397{bottom:591.673500px;}
.y2c_c00397{bottom:613.273500px;}
.y2d_c00397{bottom:613.648500px;}
.y2b_c00397{bottom:635.250000px;}
.y2a_c00397{bottom:656.773500px;}
.y27_c00397{bottom:676.948500px;}
.y28_c00397{bottom:677.023500px;}
.y29_c00397{bottom:678.448500px;}
.y24_c00397{bottom:697.125000px;}
.y25_c00397{bottom:697.500000px;}
.y26_c00397{bottom:699.673500px;}
.y22_c00397{bottom:718.723500px;}
.y23_c00397{bottom:721.273500px;}
.y21_c00397{bottom:739.648500px;}
.y1e_c00397{bottom:761.173500px;}
.y1f_c00397{bottom:761.250000px;}
.y20_c00397{bottom:764.098500px;}
.y1c_c00397{bottom:782.473500px;}
.y1d_c00397{bottom:784.273500px;}
.y1b_c00397{bottom:806.625000px;}
.y18_c00397{bottom:825.675000px;}
.y19_c00397{bottom:827.848500px;}
.y1a_c00397{bottom:828.223500px;}
.y15_c00397{bottom:845.848500px;}
.y16_c00397{bottom:848.025000px;}
.y17_c00397{bottom:849.073500px;}
.y13_c00397{bottom:865.275000px;}
.y14_c00397{bottom:869.925000px;}
.y12_c00397{bottom:889.425000px;}
.y11_c00397{bottom:912.073500px;}
.yf_c00397{bottom:928.948500px;}
.y10_c00397{bottom:933.973500px;}
.ye_c00397{bottom:954.900000px;}
.yd_c00397{bottom:975.823500px;}
.ya_c00397{bottom:988.800000px;}
.yb_c00397{bottom:990.223500px;}
.yc_c00397{bottom:996.675000px;}
.y9_c00397{bottom:1017.150000px;}
.y8_c00397{bottom:1029.375000px;}
.y3_c00397{bottom:1049.925000px;}
.y4_c00397{bottom:1051.050000px;}
.y5_c00397{bottom:1055.025000px;}
.y6_c00397{bottom:1057.875000px;}
.y7_c00397{bottom:1060.425000px;}
.y1_c00397{bottom:1106.098500px;}
.y2_c00397{bottom:1114.723500px;}
.h5_c00397{height:58.886719px;}
.h1_c00397{height:60.468750px;}
.h8_c00397{height:64.775391px;}
.h7_c00397{height:66.515625px;}
.h4_c00397{height:70.628906px;}
.h2_c00397{height:70.664062px;}
.h3_c00397{height:72.562500px;}
.h6_c00397{height:76.514648px;}
.h0_c00397{height:1174.500000px;}
.w0_c00397{width:731.977200px;}
.w1_c00397{width:732.000000px;}
.x0_c00397{left:0.000000px;}
.x26_c00397{left:66.190200px;}
.x23_c00397{left:67.990200px;}
.x1f_c00397{left:69.115200px;}
.x19_c00397{left:71.290200px;}
.x16_c00397{left:72.340200px;}
.x11_c00397{left:73.390200px;}
.xe_c00397{left:74.515200px;}
.xd_c00397{left:75.563700px;}
.xa_c00397{left:76.688700px;}
.x8_c00397{left:77.740200px;}
.x4_c00397{left:80.965200px;}
.x2c_c00397{left:82.765200px;}
.x27_c00397{left:88.165200px;}
.x24_c00397{left:89.590200px;}
.x20_c00397{left:91.390200px;}
.x1b_c00397{left:92.515200px;}
.x12_c00397{left:93.940200px;}
.xf_c00397{left:95.365200px;}
.x1_c00397{left:98.590200px;}
.x28_c00397{left:100.090200px;}
.x21_c00397{left:105.490200px;}
.x1c_c00397{left:107.290200px;}
.x9_c00397{left:109.390200px;}
.x25_c00397{left:111.190200px;}
.x22_c00397{left:112.990200px;}
.x1d_c00397{left:114.115200px;}
.xb_c00397{left:119.515200px;}
.x2_c00397{left:128.890200px;}
.x1e_c00397{left:135.340200px;}
.x2d_c00397{left:139.690200px;}
.xc_c00397{left:143.290200px;}
.x29_c00397{left:162.715200px;}
.x1a_c00397{left:169.915200px;}
.x13_c00397{left:179.590200px;}
.x5_c00397{left:181.388700px;}
.x10_c00397{left:183.190200px;}
.x2e_c00397{left:189.340200px;}
.x14_c00397{left:205.540200px;}
.x2a_c00397{left:216.340200px;}
.x2b_c00397{left:243.340200px;}
.x17_c00397{left:277.165200px;}
.x6_c00397{left:295.165200px;}
.x3_c00397{left:301.315200px;}
.x18_c00397{left:309.940200px;}
.x33_c00397{left:339.115200px;}
.x7_c00397{left:364.315200px;}
.x15_c00397{left:390.565200px;}
.x30_c00397{left:402.115200px;}
.x31_c00397{left:513.340200px;}
.x32_c00397{left:559.765200px;}
.x34_c00397{left:589.690200px;}
.x35_c00397{left:629.965200px;}
.x2f_c00397{left:662.365200px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls0_c00397{letter-spacing:0.000000pt;}
.ws0_c00397{word-spacing:0.000000pt;}
.fs0_c00397{font-size:53.333333pt;}
.fs3_c00397{font-size:58.666667pt;}
.fs1_c00397{font-size:64.000000pt;}
.fs2_c00397{font-size:69.333333pt;}
.y0_c00397{bottom:0.000000pt;}
.y56_c00397{bottom:108.666667pt;}
.y54_c00397{bottom:117.932000pt;}
.y53_c00397{bottom:118.265333pt;}
.y55_c00397{bottom:119.198667pt;}
.y52_c00397{bottom:122.666667pt;}
.y51_c00397{bottom:126.865333pt;}
.y4f_c00397{bottom:133.000000pt;}
.y50_c00397{bottom:133.265333pt;}
.y4e_c00397{bottom:134.865333pt;}
.y4d_c00397{bottom:138.065333pt;}
.y4c_c00397{bottom:141.333333pt;}
.y4b_c00397{bottom:149.265333pt;}
.y4a_c00397{bottom:152.465333pt;}
.y49_c00397{bottom:164.265333pt;}
.y48_c00397{bottom:165.598667pt;}
.y47_c00397{bottom:180.000000pt;}
.y46_c00397{bottom:184.132000pt;}
.y45_c00397{bottom:185.065333pt;}
.y44_c00397{bottom:239.532000pt;}
.y43_c00397{bottom:259.065333pt;}
.y42_c00397{bottom:277.265333pt;}
.y41_c00397{bottom:279.532000pt;}
.y40_c00397{bottom:279.865333pt;}
.y3f_c00397{bottom:280.800000pt;}
.y3e_c00397{bottom:297.133333pt;}
.y3d_c00397{bottom:316.333333pt;}
.y3c_c00397{bottom:335.532000pt;}
.y3b_c00397{bottom:354.732000pt;}
.y3a_c00397{bottom:373.598667pt;}
.y39_c00397{bottom:374.865333pt;}
.y38_c00397{bottom:393.132000pt;}
.y37_c00397{bottom:412.000000pt;}
.y36_c00397{bottom:413.265333pt;}
.y35_c00397{bottom:431.532000pt;}
.y34_c00397{bottom:450.398667pt;}
.y33_c00397{bottom:450.732000pt;}
.y32_c00397{bottom:469.265333pt;}
.y30_c00397{bottom:488.132000pt;}
.y31_c00397{bottom:488.198667pt;}
.y2f_c00397{bottom:507.065333pt;}
.y2e_c00397{bottom:525.932000pt;}
.y2c_c00397{bottom:545.132000pt;}
.y2d_c00397{bottom:545.465333pt;}
.y2b_c00397{bottom:564.666667pt;}
.y2a_c00397{bottom:583.798667pt;}
.y27_c00397{bottom:601.732000pt;}
.y28_c00397{bottom:601.798667pt;}
.y29_c00397{bottom:603.065333pt;}
.y24_c00397{bottom:619.666667pt;}
.y25_c00397{bottom:620.000000pt;}
.y26_c00397{bottom:621.932000pt;}
.y22_c00397{bottom:638.865333pt;}
.y23_c00397{bottom:641.132000pt;}
.y21_c00397{bottom:657.465333pt;}
.y1e_c00397{bottom:676.598667pt;}
.y1f_c00397{bottom:676.666667pt;}
.y20_c00397{bottom:679.198667pt;}
.y1c_c00397{bottom:695.532000pt;}
.y1d_c00397{bottom:697.132000pt;}
.y1b_c00397{bottom:717.000000pt;}
.y18_c00397{bottom:733.933333pt;}
.y19_c00397{bottom:735.865333pt;}
.y1a_c00397{bottom:736.198667pt;}
.y15_c00397{bottom:751.865333pt;}
.y16_c00397{bottom:753.800000pt;}
.y17_c00397{bottom:754.732000pt;}
.y13_c00397{bottom:769.133333pt;}
.y14_c00397{bottom:773.266667pt;}
.y12_c00397{bottom:790.600000pt;}
.y11_c00397{bottom:810.732000pt;}
.yf_c00397{bottom:825.732000pt;}
.y10_c00397{bottom:830.198667pt;}
.ye_c00397{bottom:848.800000pt;}
.yd_c00397{bottom:867.398667pt;}
.ya_c00397{bottom:878.933333pt;}
.yb_c00397{bottom:880.198667pt;}
.yc_c00397{bottom:885.933333pt;}
.y9_c00397{bottom:904.133333pt;}
.y8_c00397{bottom:915.000000pt;}
.y3_c00397{bottom:933.266667pt;}
.y4_c00397{bottom:934.266667pt;}
.y5_c00397{bottom:937.800000pt;}
.y6_c00397{bottom:940.333333pt;}
.y7_c00397{bottom:942.600000pt;}
.y1_c00397{bottom:983.198667pt;}
.y2_c00397{bottom:990.865333pt;}
.h5_c00397{height:52.343750pt;}
.h1_c00397{height:53.750000pt;}
.h8_c00397{height:57.578125pt;}
.h7_c00397{height:59.125000pt;}
.h4_c00397{height:62.781250pt;}
.h2_c00397{height:62.812500pt;}
.h3_c00397{height:64.500000pt;}
.h6_c00397{height:68.013021pt;}
.h0_c00397{height:1044.000000pt;}
.w0_c00397{width:650.646400pt;}
.w1_c00397{width:650.666667pt;}
.x0_c00397{left:0.000000pt;}
.x26_c00397{left:58.835733pt;}
.x23_c00397{left:60.435733pt;}
.x1f_c00397{left:61.435733pt;}
.x19_c00397{left:63.369067pt;}
.x16_c00397{left:64.302400pt;}
.x11_c00397{left:65.235733pt;}
.xe_c00397{left:66.235733pt;}
.xd_c00397{left:67.167733pt;}
.xa_c00397{left:68.167733pt;}
.x8_c00397{left:69.102400pt;}
.x4_c00397{left:71.969067pt;}
.x2c_c00397{left:73.569067pt;}
.x27_c00397{left:78.369067pt;}
.x24_c00397{left:79.635733pt;}
.x20_c00397{left:81.235733pt;}
.x1b_c00397{left:82.235733pt;}
.x12_c00397{left:83.502400pt;}
.xf_c00397{left:84.769067pt;}
.x1_c00397{left:87.635733pt;}
.x28_c00397{left:88.969067pt;}
.x21_c00397{left:93.769067pt;}
.x1c_c00397{left:95.369067pt;}
.x9_c00397{left:97.235733pt;}
.x25_c00397{left:98.835733pt;}
.x22_c00397{left:100.435733pt;}
.x1d_c00397{left:101.435733pt;}
.xb_c00397{left:106.235733pt;}
.x2_c00397{left:114.569067pt;}
.x1e_c00397{left:120.302400pt;}
.x2d_c00397{left:124.169067pt;}
.xc_c00397{left:127.369067pt;}
.x29_c00397{left:144.635733pt;}
.x1a_c00397{left:151.035733pt;}
.x13_c00397{left:159.635733pt;}
.x5_c00397{left:161.234400pt;}
.x10_c00397{left:162.835733pt;}
.x2e_c00397{left:168.302400pt;}
.x14_c00397{left:182.702400pt;}
.x2a_c00397{left:192.302400pt;}
.x2b_c00397{left:216.302400pt;}
.x17_c00397{left:246.369067pt;}
.x6_c00397{left:262.369067pt;}
.x3_c00397{left:267.835733pt;}
.x18_c00397{left:275.502400pt;}
.x33_c00397{left:301.435733pt;}
.x7_c00397{left:323.835733pt;}
.x15_c00397{left:347.169067pt;}
.x30_c00397{left:357.435733pt;}
.x31_c00397{left:456.302400pt;}
.x32_c00397{left:497.569067pt;}
.x34_c00397{left:524.169067pt;}
.x35_c00397{left:559.969067pt;}
.x2f_c00397{left:588.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e940d8e54394a081a077e1f.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00398;src:url('chunks/assets/font_ec47388804befefb6915054d.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00398;src:url('chunks/assets/font_852ed60a83c64b502b4f79b6.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00398{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m8_c00398{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4_c00398{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c00398{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m0_c00398{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c00398{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00398{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00398{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00398{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c00398{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00398{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00398{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c00398{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00398{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1_c00398{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00398{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00398{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c00398{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c00398{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m14_c00398{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c00398{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mf_c00398{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.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;}
}
.ws0_c00398{word-spacing:0.000000px;}
.fc0_c00398{color:transparent;}
.fs0_c00398{font-size:60.000000px;}
.fs1_c00398{font-size:72.000000px;}
.y0_c00398{bottom:0.000000px;}
.y35_c00398{bottom:80.848500px;}
.y34_c00398{bottom:101.698500px;}
.y33_c00398{bottom:121.500000px;}
.y32_c00398{bottom:141.673500px;}
.y31_c00398{bottom:162.523500px;}
.y30_c00398{bottom:182.698500px;}
.y2f_c00398{bottom:202.798500px;}
.y2e_c00398{bottom:222.000000px;}
.y2d_c00398{bottom:242.473500px;}
.y2c_c00398{bottom:263.025000px;}
.y2b_c00398{bottom:283.875000px;}
.y2a_c00398{bottom:303.673500px;}
.y29_c00398{bottom:325.275000px;}
.y28_c00398{bottom:346.125000px;}
.y27_c00398{bottom:366.973500px;}
.y25_c00398{bottom:387.223500px;}
.y26_c00398{bottom:387.900000px;}
.y24_c00398{bottom:408.073500px;}
.y23_c00398{bottom:429.000000px;}
.y22_c00398{bottom:449.848500px;}
.y21_c00398{bottom:471.073500px;}
.y20_c00398{bottom:492.673500px;}
.y1f_c00398{bottom:513.898500px;}
.y1e_c00398{bottom:534.750000px;}
.y1d_c00398{bottom:556.048500px;}
.y1c_c00398{bottom:577.273500px;}
.y1b_c00398{bottom:598.500000px;}
.y1a_c00398{bottom:619.723500px;}
.y19_c00398{bottom:640.948500px;}
.y18_c00398{bottom:661.500000px;}
.y17_c00398{bottom:662.548500px;}
.y16_c00398{bottom:682.723500px;}
.y15_c00398{bottom:683.848500px;}
.y14_c00398{bottom:705.073500px;}
.y13_c00398{bottom:725.625000px;}
.y12_c00398{bottom:746.848500px;}
.y11_c00398{bottom:768.375000px;}
.y10_c00398{bottom:789.973500px;}
.yf_c00398{bottom:810.900000px;}
.ye_c00398{bottom:833.925000px;}
.yd_c00398{bottom:854.098500px;}
.yc_c00398{bottom:875.323500px;}
.yb_c00398{bottom:895.875000px;}
.ya_c00398{bottom:897.973500px;}
.y9_c00398{bottom:898.348500px;}
.y8_c00398{bottom:918.223500px;}
.y7_c00398{bottom:938.323500px;}
.y6_c00398{bottom:958.875000px;}
.y5_c00398{bottom:962.775000px;}
.y4_c00398{bottom:981.150000px;}
.y3_c00398{bottom:983.698500px;}
.y2_c00398{bottom:1002.750000px;}
.y1_c00398{bottom:1060.800000px;}
.h1_c00398{height:58.886719px;}
.h4_c00398{height:70.628906px;}
.h2_c00398{height:70.664062px;}
.h3_c00398{height:72.562500px;}
.h0_c00398{height:1174.500000px;}
.w0_c00398{width:731.977200px;}
.w1_c00398{width:732.000000px;}
.x0_c00398{left:0.000000px;}
.x2_c00398{left:38.515200px;}
.x7_c00398{left:39.565200px;}
.x8_c00398{left:40.690200px;}
.xd_c00398{left:41.740200px;}
.xe_c00398{left:42.790200px;}
.x11_c00398{left:45.340200px;}
.x13_c00398{left:47.140200px;}
.x15_c00398{left:49.690200px;}
.x16_c00398{left:51.115200px;}
.x4_c00398{left:60.490200px;}
.xa_c00398{left:61.915200px;}
.x9_c00398{left:70.915200px;}
.x3_c00398{left:74.515200px;}
.x5_c00398{left:76.688700px;}
.x12_c00398{left:77.740200px;}
.x14_c00398{left:79.165200px;}
.x6_c00398{left:83.140200px;}
.xb_c00398{left:140.365200px;}
.xc_c00398{left:190.763700px;}
.x1_c00398{left:249.115200px;}
.xf_c00398{left:494.965200px;}
.x10_c00398{left:514.765200px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls0_c00398{letter-spacing:0.000000pt;}
.ws0_c00398{word-spacing:0.000000pt;}
.fs0_c00398{font-size:53.333333pt;}
.fs1_c00398{font-size:64.000000pt;}
.y0_c00398{bottom:0.000000pt;}
.y35_c00398{bottom:71.865333pt;}
.y34_c00398{bottom:90.398667pt;}
.y33_c00398{bottom:108.000000pt;}
.y32_c00398{bottom:125.932000pt;}
.y31_c00398{bottom:144.465333pt;}
.y30_c00398{bottom:162.398667pt;}
.y2f_c00398{bottom:180.265333pt;}
.y2e_c00398{bottom:197.333333pt;}
.y2d_c00398{bottom:215.532000pt;}
.y2c_c00398{bottom:233.800000pt;}
.y2b_c00398{bottom:252.333333pt;}
.y2a_c00398{bottom:269.932000pt;}
.y29_c00398{bottom:289.133333pt;}
.y28_c00398{bottom:307.666667pt;}
.y27_c00398{bottom:326.198667pt;}
.y25_c00398{bottom:344.198667pt;}
.y26_c00398{bottom:344.800000pt;}
.y24_c00398{bottom:362.732000pt;}
.y23_c00398{bottom:381.333333pt;}
.y22_c00398{bottom:399.865333pt;}
.y21_c00398{bottom:418.732000pt;}
.y20_c00398{bottom:437.932000pt;}
.y1f_c00398{bottom:456.798667pt;}
.y1e_c00398{bottom:475.333333pt;}
.y1d_c00398{bottom:494.265333pt;}
.y1c_c00398{bottom:513.132000pt;}
.y1b_c00398{bottom:532.000000pt;}
.y1a_c00398{bottom:550.865333pt;}
.y19_c00398{bottom:569.732000pt;}
.y18_c00398{bottom:588.000000pt;}
.y17_c00398{bottom:588.932000pt;}
.y16_c00398{bottom:606.865333pt;}
.y15_c00398{bottom:607.865333pt;}
.y14_c00398{bottom:626.732000pt;}
.y13_c00398{bottom:645.000000pt;}
.y12_c00398{bottom:663.865333pt;}
.y11_c00398{bottom:683.000000pt;}
.y10_c00398{bottom:702.198667pt;}
.yf_c00398{bottom:720.800000pt;}
.ye_c00398{bottom:741.266667pt;}
.yd_c00398{bottom:759.198667pt;}
.yc_c00398{bottom:778.065333pt;}
.yb_c00398{bottom:796.333333pt;}
.ya_c00398{bottom:798.198667pt;}
.y9_c00398{bottom:798.532000pt;}
.y8_c00398{bottom:816.198667pt;}
.y7_c00398{bottom:834.065333pt;}
.y6_c00398{bottom:852.333333pt;}
.y5_c00398{bottom:855.800000pt;}
.y4_c00398{bottom:872.133333pt;}
.y3_c00398{bottom:874.398667pt;}
.y2_c00398{bottom:891.333333pt;}
.y1_c00398{bottom:942.933333pt;}
.h1_c00398{height:52.343750pt;}
.h4_c00398{height:62.781250pt;}
.h2_c00398{height:62.812500pt;}
.h3_c00398{height:64.500000pt;}
.h0_c00398{height:1044.000000pt;}
.w0_c00398{width:650.646400pt;}
.w1_c00398{width:650.666667pt;}
.x0_c00398{left:0.000000pt;}
.x2_c00398{left:34.235733pt;}
.x7_c00398{left:35.169067pt;}
.x8_c00398{left:36.169067pt;}
.xd_c00398{left:37.102400pt;}
.xe_c00398{left:38.035733pt;}
.x11_c00398{left:40.302400pt;}
.x13_c00398{left:41.902400pt;}
.x15_c00398{left:44.169067pt;}
.x16_c00398{left:45.435733pt;}
.x4_c00398{left:53.769067pt;}
.xa_c00398{left:55.035733pt;}
.x9_c00398{left:63.035733pt;}
.x3_c00398{left:66.235733pt;}
.x5_c00398{left:68.167733pt;}
.x12_c00398{left:69.102400pt;}
.x14_c00398{left:70.369067pt;}
.x6_c00398{left:73.902400pt;}
.xb_c00398{left:124.769067pt;}
.xc_c00398{left:169.567733pt;}
.x1_c00398{left:221.435733pt;}
.xf_c00398{left:439.969067pt;}
.x10_c00398{left:457.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_329706f8bf6b604c1b0af4d9.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00399;src:url('chunks/assets/font_02a3e79211665a60cbed9e80.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00399{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md_c00399{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c00399{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00399{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c00399{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c00399{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00399{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00399{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m0_c00399{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00399{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00399{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00399{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00399{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00399{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00399{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00399{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c00399{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00399{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c00399{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00399{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00399{color:transparent;}
.fs0_c00399{font-size:60.000000px;}
.fs1_c00399{font-size:72.000000px;}
.fs3_c00399{font-size:78.000000px;}
.fs2_c00399{font-size:84.000000px;}
.y0_c00399{bottom:0.000000px;}
.y38_c00399{bottom:220.500000px;}
.y37_c00399{bottom:223.348500px;}
.y35_c00399{bottom:239.173500px;}
.y36_c00399{bottom:239.625000px;}
.y34_c00399{bottom:241.723500px;}
.y33_c00399{bottom:262.948500px;}
.y32_c00399{bottom:284.250000px;}
.y30_c00399{bottom:303.673500px;}
.y31_c00399{bottom:304.048500px;}
.y2f_c00399{bottom:306.525000px;}
.y2e_c00399{bottom:327.448500px;}
.y2d_c00399{bottom:348.973500px;}
.y2c_c00399{bottom:370.650000px;}
.y2b_c00399{bottom:392.173500px;}
.y2a_c00399{bottom:413.773500px;}
.y29_c00399{bottom:435.750000px;}
.y28_c00399{bottom:457.348500px;}
.y27_c00399{bottom:478.648500px;}
.y26_c00399{bottom:500.173500px;}
.y25_c00399{bottom:521.473500px;}
.y24_c00399{bottom:542.698500px;}
.y23_c00399{bottom:564.298500px;}
.y22_c00399{bottom:584.848500px;}
.y21_c00399{bottom:585.523500px;}
.y20_c00399{bottom:585.898500px;}
.y1e_c00399{bottom:606.750000px;}
.y1d_c00399{bottom:606.823500px;}
.y1f_c00399{bottom:607.125000px;}
.y1c_c00399{bottom:628.723500px;}
.y1b_c00399{bottom:650.323500px;}
.y1a_c00399{bottom:671.923500px;}
.y19_c00399{bottom:693.223500px;}
.y18_c00399{bottom:714.825000px;}
.y17_c00399{bottom:736.048500px;}
.y16_c00399{bottom:757.575000px;}
.y15_c00399{bottom:757.648500px;}
.y14_c00399{bottom:779.250000px;}
.y13_c00399{bottom:800.848500px;}
.y12_c00399{bottom:821.698500px;}
.y11_c00399{bottom:842.625000px;}
.y10_c00399{bottom:863.848500px;}
.yf_c00399{bottom:885.073500px;}
.ye_c00399{bottom:906.675000px;}
.yd_c00399{bottom:927.900000px;}
.yc_c00399{bottom:948.750000px;}
.yb_c00399{bottom:970.348500px;}
.y8_c00399{bottom:985.125000px;}
.y9_c00399{bottom:988.050000px;}
.ya_c00399{bottom:991.650000px;}
.y7_c00399{bottom:1011.750000px;}
.y6_c00399{bottom:1032.598500px;}
.y5_c00399{bottom:1044.900000px;}
.y4_c00399{bottom:1052.848500px;}
.y1_c00399{bottom:1101.073500px;}
.y3_c00399{bottom:1110.375000px;}
.y2_c00399{bottom:1115.848500px;}
.h1_c00399{height:58.886719px;}
.h3_c00399{height:60.468750px;}
.h2_c00399{height:70.664062px;}
.h5_c00399{height:78.609375px;}
.h4_c00399{height:82.441406px;}
.h0_c00399{height:1174.500000px;}
.w0_c00399{width:731.977200px;}
.w1_c00399{width:732.000000px;}
.x0_c00399{left:0.000000px;}
.x19_c00399{left:65.890200px;}
.x16_c00399{left:67.315200px;}
.x13_c00399{left:68.740200px;}
.xe_c00399{left:70.165200px;}
.xc_c00399{left:71.290200px;}
.xb_c00399{left:73.090200px;}
.xa_c00399{left:74.140200px;}
.x9_c00399{left:75.938700px;}
.x6_c00399{left:76.990200px;}
.x5_c00399{left:78.490200px;}
.x1_c00399{left:97.915200px;}
.x11_c00399{left:100.090200px;}
.x4_c00399{left:115.165200px;}
.x2_c00399{left:125.290200px;}
.x1a_c00399{left:154.765200px;}
.x7_c00399{left:183.190200px;}
.x8_c00399{left:209.140200px;}
.xf_c00399{left:229.990200px;}
.x10_c00399{left:256.990200px;}
.x3_c00399{left:299.890200px;}
.xd_c00399{left:494.965200px;}
.x12_c00399{left:519.790200px;}
.x17_c00399{left:536.740200px;}
.x14_c00399{left:579.190200px;}
.x18_c00399{left:618.790200px;}
.x15_c00399{left:660.565200px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls0_c00399{letter-spacing:0.000000pt;}
.ws0_c00399{word-spacing:0.000000pt;}
.fs0_c00399{font-size:53.333333pt;}
.fs1_c00399{font-size:64.000000pt;}
.fs3_c00399{font-size:69.333333pt;}
.fs2_c00399{font-size:74.666667pt;}
.y0_c00399{bottom:0.000000pt;}
.y38_c00399{bottom:196.000000pt;}
.y37_c00399{bottom:198.532000pt;}
.y35_c00399{bottom:212.598667pt;}
.y36_c00399{bottom:213.000000pt;}
.y34_c00399{bottom:214.865333pt;}
.y33_c00399{bottom:233.732000pt;}
.y32_c00399{bottom:252.666667pt;}
.y30_c00399{bottom:269.932000pt;}
.y31_c00399{bottom:270.265333pt;}
.y2f_c00399{bottom:272.466667pt;}
.y2e_c00399{bottom:291.065333pt;}
.y2d_c00399{bottom:310.198667pt;}
.y2c_c00399{bottom:329.466667pt;}
.y2b_c00399{bottom:348.598667pt;}
.y2a_c00399{bottom:367.798667pt;}
.y29_c00399{bottom:387.333333pt;}
.y28_c00399{bottom:406.532000pt;}
.y27_c00399{bottom:425.465333pt;}
.y26_c00399{bottom:444.598667pt;}
.y25_c00399{bottom:463.532000pt;}
.y24_c00399{bottom:482.398667pt;}
.y23_c00399{bottom:501.598667pt;}
.y22_c00399{bottom:519.865333pt;}
.y21_c00399{bottom:520.465333pt;}
.y20_c00399{bottom:520.798667pt;}
.y1e_c00399{bottom:539.333333pt;}
.y1d_c00399{bottom:539.398667pt;}
.y1f_c00399{bottom:539.666667pt;}
.y1c_c00399{bottom:558.865333pt;}
.y1b_c00399{bottom:578.065333pt;}
.y1a_c00399{bottom:597.265333pt;}
.y19_c00399{bottom:616.198667pt;}
.y18_c00399{bottom:635.400000pt;}
.y17_c00399{bottom:654.265333pt;}
.y16_c00399{bottom:673.400000pt;}
.y15_c00399{bottom:673.465333pt;}
.y14_c00399{bottom:692.666667pt;}
.y13_c00399{bottom:711.865333pt;}
.y12_c00399{bottom:730.398667pt;}
.y11_c00399{bottom:749.000000pt;}
.y10_c00399{bottom:767.865333pt;}
.yf_c00399{bottom:786.732000pt;}
.ye_c00399{bottom:805.933333pt;}
.yd_c00399{bottom:824.800000pt;}
.yc_c00399{bottom:843.333333pt;}
.yb_c00399{bottom:862.532000pt;}
.y8_c00399{bottom:875.666667pt;}
.y9_c00399{bottom:878.266667pt;}
.ya_c00399{bottom:881.466667pt;}
.y7_c00399{bottom:899.333333pt;}
.y6_c00399{bottom:917.865333pt;}
.y5_c00399{bottom:928.800000pt;}
.y4_c00399{bottom:935.865333pt;}
.y1_c00399{bottom:978.732000pt;}
.y3_c00399{bottom:987.000000pt;}
.y2_c00399{bottom:991.865333pt;}
.h1_c00399{height:52.343750pt;}
.h3_c00399{height:53.750000pt;}
.h2_c00399{height:62.812500pt;}
.h5_c00399{height:69.875000pt;}
.h4_c00399{height:73.281250pt;}
.h0_c00399{height:1044.000000pt;}
.w0_c00399{width:650.646400pt;}
.w1_c00399{width:650.666667pt;}
.x0_c00399{left:0.000000pt;}
.x19_c00399{left:58.569067pt;}
.x16_c00399{left:59.835733pt;}
.x13_c00399{left:61.102400pt;}
.xe_c00399{left:62.369067pt;}
.xc_c00399{left:63.369067pt;}
.xb_c00399{left:64.969067pt;}
.xa_c00399{left:65.902400pt;}
.x9_c00399{left:67.501067pt;}
.x6_c00399{left:68.435733pt;}
.x5_c00399{left:69.769067pt;}
.x1_c00399{left:87.035733pt;}
.x11_c00399{left:88.969067pt;}
.x4_c00399{left:102.369067pt;}
.x2_c00399{left:111.369067pt;}
.x1a_c00399{left:137.569067pt;}
.x7_c00399{left:162.835733pt;}
.x8_c00399{left:185.902400pt;}
.xf_c00399{left:204.435733pt;}
.x10_c00399{left:228.435733pt;}
.x3_c00399{left:266.569067pt;}
.xd_c00399{left:439.969067pt;}
.x12_c00399{left:462.035733pt;}
.x17_c00399{left:477.102400pt;}
.x14_c00399{left:514.835733pt;}
.x18_c00399{left:550.035733pt;}
.x15_c00399{left:587.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_433c5c66f5819f5079b890d0.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00400;src:url('chunks/assets/font_3cce1e0f7a347b173857e282.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00400;src:url('chunks/assets/font_6b617b6ec694a5ab8cf871e5.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00400;src:url('chunks/assets/font_3a90468edbd7c5221a21ab8d.woff2')format("woff");}.ff4_c00400{font-family:ff4_c00400;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00400{transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);}
.m0_c00400{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m20_c00400{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mc_c00400{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m8_c00400{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md_c00400{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m14_c00400{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m32_c00400{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma_c00400{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m3_c00400{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m17_c00400{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m16_c00400{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf_c00400{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m5_c00400{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m10_c00400{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.me_c00400{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9_c00400{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m4_c00400{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7_c00400{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2_c00400{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m27_c00400{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00400{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6_c00400{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00400{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00400{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m15_c00400{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m39_c00400{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m38_c00400{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c00400{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m37_c00400{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00400{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m18_c00400{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m26_c00400{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00400{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m21_c00400{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c00400{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19_c00400{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00400{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m34_c00400{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m35_c00400{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m30_c00400{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00400{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m25_c00400{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m31_c00400{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00400{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m29_c00400{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m36_c00400{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m23_c00400{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m33_c00400{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m22_c00400{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m28_c00400{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00400{transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00400{transform:matrix(1.972500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.972500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.972500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00400{transform:matrix(2.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.637500,0.000000,0.000000,0.250000,0,0);}
.m24_c00400{transform:matrix(2.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.700000,0.000000,0.000000,0.250000,0,0);}
.m11_c00400{transform:matrix(4.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00400{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.v2_c00400{vertical-align:1.500000px;}
.v1_c00400{vertical-align:27.294000px;}
.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;}
}
.ws0_c00400{word-spacing:-18.000000px;}
.ws1_c00400{word-spacing:0.000000px;}
._0_c00400{margin-left:-4.623424px;}
._1_c00400{width:17.171002px;}
.fc0_c00400{color:transparent;}
.fs5_c00400{font-size:42.000000px;}
.fs6_c00400{font-size:48.000000px;}
.fs2_c00400{font-size:60.000000px;}
.fs1_c00400{font-size:66.000000px;}
.fs0_c00400{font-size:72.000000px;}
.fs4_c00400{font-size:78.000000px;}
.fs3_c00400{font-size:84.000000px;}
.y0_c00400{bottom:0.000000px;}
.y93_c00400{bottom:79.348500px;}
.y94_c00400{bottom:80.473500px;}
.y95_c00400{bottom:82.273500px;}
.y90_c00400{bottom:98.098500px;}
.y91_c00400{bottom:103.500000px;}
.y92_c00400{bottom:105.973500px;}
.y8b_c00400{bottom:113.548500px;}
.y8c_c00400{bottom:114.298500px;}
.y8d_c00400{bottom:116.098500px;}
.y8e_c00400{bottom:118.273500px;}
.y8f_c00400{bottom:121.125000px;}
.y79_c00400{bottom:192.000000px;}
.y1d_c00400{bottom:196.348500px;}
.y78_c00400{bottom:198.898500px;}
.y1c_c00400{bottom:211.798500px;}
.y85_c00400{bottom:219.823500px;}
.y86_c00400{bottom:220.125000px;}
.y87_c00400{bottom:220.500000px;}
.y8a_c00400{bottom:223.423500px;}
.y1b_c00400{bottom:227.698500px;}
.y89_c00400{bottom:239.923500px;}
.y19_c00400{bottom:242.098500px;}
.y1a_c00400{bottom:243.598500px;}
.y77_c00400{bottom:269.473500px;}
.y18_c00400{bottom:272.400000px;}
.y35_c00400{bottom:273.750000px;}
.y88_c00400{bottom:275.923500px;}
.y76_c00400{bottom:286.423500px;}
.y17_c00400{bottom:288.900000px;}
.y34_c00400{bottom:289.650000px;}
.y82_c00400{bottom:299.323500px;}
.y83_c00400{bottom:300.073500px;}
.y84_c00400{bottom:300.448500px;}
.y16_c00400{bottom:305.473500px;}
.y33_c00400{bottom:306.525000px;}
.y80_c00400{bottom:317.400000px;}
.y81_c00400{bottom:317.698500px;}
.y13_c00400{bottom:320.548500px;}
.y14_c00400{bottom:320.625000px;}
.y15_c00400{bottom:322.048500px;}
.y32_c00400{bottom:322.723500px;}
.y7f_c00400{bottom:349.048500px;}
.y12_c00400{bottom:350.473500px;}
.y31_c00400{bottom:351.598500px;}
.y75_c00400{bottom:355.125000px;}
.y7e_c00400{bottom:365.625000px;}
.y11_c00400{bottom:367.423500px;}
.y30_c00400{bottom:368.098500px;}
.y72_c00400{bottom:377.473500px;}
.y71_c00400{bottom:379.275000px;}
.y73_c00400{bottom:379.650000px;}
.y74_c00400{bottom:380.323500px;}
.y10_c00400{bottom:383.250000px;}
.y2e_c00400{bottom:384.598500px;}
.y2f_c00400{bottom:384.973500px;}
.y6e_c00400{bottom:396.150000px;}
.y6f_c00400{bottom:396.900000px;}
.y70_c00400{bottom:397.275000px;}
.y2d_c00400{bottom:401.250000px;}
.y6c_c00400{bottom:426.823500px;}
.y3b_c00400{bottom:429.000000px;}
.y6b_c00400{bottom:434.698500px;}
.y3a_c00400{bottom:445.500000px;}
.y67_c00400{bottom:458.773500px;}
.y69_c00400{bottom:459.598500px;}
.y6a_c00400{bottom:459.898500px;}
.yf_c00400{bottom:462.448500px;}
.y39_c00400{bottom:462.823500px;}
.y68_c00400{bottom:476.848500px;}
.ye_c00400{bottom:478.648500px;}
.y7d_c00400{bottom:507.448500px;}
.yd_c00400{bottom:508.500000px;}
.y65_c00400{bottom:514.948500px;}
.y66_c00400{bottom:515.023500px;}
.y7c_c00400{bottom:524.323500px;}
.y38_c00400{bottom:525.375000px;}
.y63_c00400{bottom:539.473500px;}
.y62_c00400{bottom:539.773500px;}
.y64_c00400{bottom:539.848500px;}
.y37_c00400{bottom:541.648500px;}
.yc_c00400{bottom:542.023500px;}
.y60_c00400{bottom:556.723500px;}
.y61_c00400{bottom:557.098500px;}
.yb_c00400{bottom:558.223500px;}
.y36_c00400{bottom:558.523500px;}
.y5f_c00400{bottom:583.723500px;}
.ya_c00400{bottom:587.698500px;}
.y5e_c00400{bottom:595.648500px;}
.y2c_c00400{bottom:604.273500px;}
.y9_c00400{bottom:604.648500px;}
.y5d_c00400{bottom:620.773500px;}
.y5c_c00400{bottom:620.848500px;}
.y2a_c00400{bottom:621.148500px;}
.y8_c00400{bottom:621.223500px;}
.y2b_c00400{bottom:621.523500px;}
.y7_c00400{bottom:637.423500px;}
.y5b_c00400{bottom:638.098500px;}
.y1_c00400{bottom:653.548500px;}
.y21_c00400{bottom:666.898500px;}
.y59_c00400{bottom:668.023500px;}
.y57_c00400{bottom:676.273500px;}
.y58_c00400{bottom:682.798500px;}
.y20_c00400{bottom:683.848500px;}
.y5a_c00400{bottom:684.898500px;}
.y1f_c00400{bottom:700.348500px;}
.y6_c00400{bottom:701.473500px;}
.y56_c00400{bottom:702.223500px;}
.y52_c00400{bottom:702.523500px;}
.y55_c00400{bottom:702.598500px;}
.y51_c00400{bottom:702.898500px;}
.y5_c00400{bottom:718.048500px;}
.y54_c00400{bottom:719.473500px;}
.y53_c00400{bottom:719.848500px;}
.y29_c00400{bottom:745.723500px;}
.y7b_c00400{bottom:748.273500px;}
.y50_c00400{bottom:757.273500px;}
.y28_c00400{bottom:762.673500px;}
.y7a_c00400{bottom:765.223500px;}
.y27_c00400{bottom:780.000000px;}
.y4_c00400{bottom:781.425000px;}
.y4c_c00400{bottom:782.773500px;}
.y4f_c00400{bottom:782.848500px;}
.y4e_c00400{bottom:783.148500px;}
.y4d_c00400{bottom:784.198500px;}
.y26_c00400{bottom:796.500000px;}
.y3_c00400{bottom:797.925000px;}
.y4b_c00400{bottom:800.098500px;}
.y4a_c00400{bottom:800.473500px;}
.y25_c00400{bottom:826.050000px;}
.y42_c00400{bottom:829.198500px;}
.y41_c00400{bottom:839.025000px;}
.y24_c00400{bottom:843.300000px;}
.y23_c00400{bottom:858.823500px;}
.y40_c00400{bottom:864.223500px;}
.y3f_c00400{bottom:864.525000px;}
.y49_c00400{bottom:865.573500px;}
.y48_c00400{bottom:865.948500px;}
.y22_c00400{bottom:875.698500px;}
.y3e_c00400{bottom:880.723500px;}
.y3d_c00400{bottom:881.098500px;}
.y3c_c00400{bottom:881.848500px;}
.y1e_c00400{bottom:934.348500px;}
.y2_c00400{bottom:935.473500px;}
.y47_c00400{bottom:938.698500px;}
.y46_c00400{bottom:1000.573500px;}
.y45_c00400{bottom:1060.723500px;}
.y43_c00400{bottom:1065.823500px;}
.y44_c00400{bottom:1074.073500px;}
.y6d_c00400{bottom:1174.500000px;}
.h9_c00400{height:41.220703px;}
.ha_c00400{height:47.109375px;}
.h4_c00400{height:58.886719px;}
.hc_c00400{height:64.743164px;}
.h3_c00400{height:64.775391px;}
.h1_c00400{height:70.664062px;}
.h2_c00400{height:72.562500px;}
.h8_c00400{height:76.514648px;}
.hb_c00400{height:78.014648px;}
.h7_c00400{height:78.609375px;}
.h5_c00400{height:82.441406px;}
.h6_c00400{height:97.958063px;}
.h0_c00400{height:1174.500000px;}
.w0_c00400{width:731.977200px;}
.w1_c00400{width:732.000000px;}
.x32_c00400{left:-21.259800px;}
.x1_c00400{left:-7.611300px;}
.x0_c00400{left:0.000000px;}
.x3d_c00400{left:66.940200px;}
.x24_c00400{left:75.188700px;}
.x20_c00400{left:76.313700px;}
.x36_c00400{left:79.165200px;}
.x39_c00400{left:82.390200px;}
.x40_c00400{left:102.190200px;}
.x37_c00400{left:135.715200px;}
.x1f_c00400{left:143.965200px;}
.x31_c00400{left:163.390200px;}
.x25_c00400{left:172.090200px;}
.x2f_c00400{left:180.340200px;}
.x38_c00400{left:183.565200px;}
.x2c_c00400{left:188.590200px;}
.x21_c00400{left:190.763700px;}
.x41_c00400{left:201.565200px;}
.x3a_c00400{left:240.115200px;}
.x26_c00400{left:253.390200px;}
.x33_c00400{left:255.190200px;}
.x23_c00400{left:256.315200px;}
.x15_c00400{left:257.740200px;}
.x34_c00400{left:259.915200px;}
.x27_c00400{left:262.390200px;}
.x1e_c00400{left:264.565200px;}
.x28_c00400{left:268.915200px;}
.x19_c00400{left:269.965200px;}
.x16_c00400{left:271.090200px;}
.x1b_c00400{left:309.940200px;}
.x18_c00400{left:330.115200px;}
.x2d_c00400{left:346.315200px;}
.x22_c00400{left:348.490200px;}
.x17_c00400{left:349.915200px;}
.x2b_c00400{left:363.565200px;}
.x29_c00400{left:377.965200px;}
.x30_c00400{left:381.940200px;}
.x2e_c00400{left:389.515200px;}
.x3e_c00400{left:404.590200px;}
.x2a_c00400{left:411.115200px;}
.x35_c00400{left:412.538700px;}
.x1a_c00400{left:413.590200px;}
.x3b_c00400{left:418.315200px;}
.x3c_c00400{left:432.715200px;}
.x1c_c00400{left:478.390200px;}
.x2_c00400{left:518.740200px;}
.x6_c00400{left:529.540200px;}
.x7_c00400{left:536.740200px;}
.x8_c00400{left:585.340200px;}
.x3f_c00400{left:588.565200px;}
.x9_c00400{left:592.915200px;}
.x5_c00400{left:594.340200px;}
.x4_c00400{left:595.390200px;}
.x3_c00400{left:597.190200px;}
.xa_c00400{left:625.315200px;}
.x14_c00400{left:626.365200px;}
.xc_c00400{left:627.790200px;}
.xd_c00400{left:629.290200px;}
.x1d_c00400{left:632.140200px;}
.x12_c00400{left:633.565200px;}
.xf_c00400{left:634.990200px;}
.xb_c00400{left:636.115200px;}
.xe_c00400{left:637.915200px;}
.x10_c00400{left:642.940200px;}
.x13_c00400{left:646.540200px;}
.x11_c00400{left:668.890200px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.v2_c00400{vertical-align:1.333333pt;}
.v1_c00400{vertical-align:24.261333pt;}
.ls0_c00400{letter-spacing:0.000000pt;}
.ws0_c00400{word-spacing:-16.000000pt;}
.ws1_c00400{word-spacing:0.000000pt;}
._0_c00400{margin-left:-4.109711pt;}
._1_c00400{width:15.263113pt;}
.fs5_c00400{font-size:37.333333pt;}
.fs6_c00400{font-size:42.666667pt;}
.fs2_c00400{font-size:53.333333pt;}
.fs1_c00400{font-size:58.666667pt;}
.fs0_c00400{font-size:64.000000pt;}
.fs4_c00400{font-size:69.333333pt;}
.fs3_c00400{font-size:74.666667pt;}
.y0_c00400{bottom:0.000000pt;}
.y93_c00400{bottom:70.532000pt;}
.y94_c00400{bottom:71.532000pt;}
.y95_c00400{bottom:73.132000pt;}
.y90_c00400{bottom:87.198667pt;}
.y91_c00400{bottom:92.000000pt;}
.y92_c00400{bottom:94.198667pt;}
.y8b_c00400{bottom:100.932000pt;}
.y8c_c00400{bottom:101.598667pt;}
.y8d_c00400{bottom:103.198667pt;}
.y8e_c00400{bottom:105.132000pt;}
.y8f_c00400{bottom:107.666667pt;}
.y79_c00400{bottom:170.666667pt;}
.y1d_c00400{bottom:174.532000pt;}
.y78_c00400{bottom:176.798667pt;}
.y1c_c00400{bottom:188.265333pt;}
.y85_c00400{bottom:195.398667pt;}
.y86_c00400{bottom:195.666667pt;}
.y87_c00400{bottom:196.000000pt;}
.y8a_c00400{bottom:198.598667pt;}
.y1b_c00400{bottom:202.398667pt;}
.y89_c00400{bottom:213.265333pt;}
.y19_c00400{bottom:215.198667pt;}
.y1a_c00400{bottom:216.532000pt;}
.y77_c00400{bottom:239.532000pt;}
.y18_c00400{bottom:242.133333pt;}
.y35_c00400{bottom:243.333333pt;}
.y88_c00400{bottom:245.265333pt;}
.y76_c00400{bottom:254.598667pt;}
.y17_c00400{bottom:256.800000pt;}
.y34_c00400{bottom:257.466667pt;}
.y82_c00400{bottom:266.065333pt;}
.y83_c00400{bottom:266.732000pt;}
.y84_c00400{bottom:267.065333pt;}
.y16_c00400{bottom:271.532000pt;}
.y33_c00400{bottom:272.466667pt;}
.y80_c00400{bottom:282.133333pt;}
.y81_c00400{bottom:282.398667pt;}
.y13_c00400{bottom:284.932000pt;}
.y14_c00400{bottom:285.000000pt;}
.y15_c00400{bottom:286.265333pt;}
.y32_c00400{bottom:286.865333pt;}
.y7f_c00400{bottom:310.265333pt;}
.y12_c00400{bottom:311.532000pt;}
.y31_c00400{bottom:312.532000pt;}
.y75_c00400{bottom:315.666667pt;}
.y7e_c00400{bottom:325.000000pt;}
.y11_c00400{bottom:326.598667pt;}
.y30_c00400{bottom:327.198667pt;}
.y72_c00400{bottom:335.532000pt;}
.y71_c00400{bottom:337.133333pt;}
.y73_c00400{bottom:337.466667pt;}
.y74_c00400{bottom:338.065333pt;}
.y10_c00400{bottom:340.666667pt;}
.y2e_c00400{bottom:341.865333pt;}
.y2f_c00400{bottom:342.198667pt;}
.y6e_c00400{bottom:352.133333pt;}
.y6f_c00400{bottom:352.800000pt;}
.y70_c00400{bottom:353.133333pt;}
.y2d_c00400{bottom:356.666667pt;}
.y6c_c00400{bottom:379.398667pt;}
.y3b_c00400{bottom:381.333333pt;}
.y6b_c00400{bottom:386.398667pt;}
.y3a_c00400{bottom:396.000000pt;}
.y67_c00400{bottom:407.798667pt;}
.y69_c00400{bottom:408.532000pt;}
.y6a_c00400{bottom:408.798667pt;}
.yf_c00400{bottom:411.065333pt;}
.y39_c00400{bottom:411.398667pt;}
.y68_c00400{bottom:423.865333pt;}
.ye_c00400{bottom:425.465333pt;}
.y7d_c00400{bottom:451.065333pt;}
.yd_c00400{bottom:452.000000pt;}
.y65_c00400{bottom:457.732000pt;}
.y66_c00400{bottom:457.798667pt;}
.y7c_c00400{bottom:466.065333pt;}
.y38_c00400{bottom:467.000000pt;}
.y63_c00400{bottom:479.532000pt;}
.y62_c00400{bottom:479.798667pt;}
.y64_c00400{bottom:479.865333pt;}
.y37_c00400{bottom:481.465333pt;}
.yc_c00400{bottom:481.798667pt;}
.y60_c00400{bottom:494.865333pt;}
.y61_c00400{bottom:495.198667pt;}
.yb_c00400{bottom:496.198667pt;}
.y36_c00400{bottom:496.465333pt;}
.y5f_c00400{bottom:518.865333pt;}
.ya_c00400{bottom:522.398667pt;}
.y5e_c00400{bottom:529.465333pt;}
.y2c_c00400{bottom:537.132000pt;}
.y9_c00400{bottom:537.465333pt;}
.y5d_c00400{bottom:551.798667pt;}
.y5c_c00400{bottom:551.865333pt;}
.y2a_c00400{bottom:552.132000pt;}
.y8_c00400{bottom:552.198667pt;}
.y2b_c00400{bottom:552.465333pt;}
.y7_c00400{bottom:566.598667pt;}
.y5b_c00400{bottom:567.198667pt;}
.y1_c00400{bottom:580.932000pt;}
.y21_c00400{bottom:592.798667pt;}
.y59_c00400{bottom:593.798667pt;}
.y57_c00400{bottom:601.132000pt;}
.y58_c00400{bottom:606.932000pt;}
.y20_c00400{bottom:607.865333pt;}
.y5a_c00400{bottom:608.798667pt;}
.y1f_c00400{bottom:622.532000pt;}
.y6_c00400{bottom:623.532000pt;}
.y56_c00400{bottom:624.198667pt;}
.y52_c00400{bottom:624.465333pt;}
.y55_c00400{bottom:624.532000pt;}
.y51_c00400{bottom:624.798667pt;}
.y5_c00400{bottom:638.265333pt;}
.y54_c00400{bottom:639.532000pt;}
.y53_c00400{bottom:639.865333pt;}
.y29_c00400{bottom:662.865333pt;}
.y7b_c00400{bottom:665.132000pt;}
.y50_c00400{bottom:673.132000pt;}
.y28_c00400{bottom:677.932000pt;}
.y7a_c00400{bottom:680.198667pt;}
.y27_c00400{bottom:693.333333pt;}
.y4_c00400{bottom:694.600000pt;}
.y4c_c00400{bottom:695.798667pt;}
.y4f_c00400{bottom:695.865333pt;}
.y4e_c00400{bottom:696.132000pt;}
.y4d_c00400{bottom:697.065333pt;}
.y26_c00400{bottom:708.000000pt;}
.y3_c00400{bottom:709.266667pt;}
.y4b_c00400{bottom:711.198667pt;}
.y4a_c00400{bottom:711.532000pt;}
.y25_c00400{bottom:734.266667pt;}
.y42_c00400{bottom:737.065333pt;}
.y41_c00400{bottom:745.800000pt;}
.y24_c00400{bottom:749.600000pt;}
.y23_c00400{bottom:763.398667pt;}
.y40_c00400{bottom:768.198667pt;}
.y3f_c00400{bottom:768.466667pt;}
.y49_c00400{bottom:769.398667pt;}
.y48_c00400{bottom:769.732000pt;}
.y22_c00400{bottom:778.398667pt;}
.y3e_c00400{bottom:782.865333pt;}
.y3d_c00400{bottom:783.198667pt;}
.y3c_c00400{bottom:783.865333pt;}
.y1e_c00400{bottom:830.532000pt;}
.y2_c00400{bottom:831.532000pt;}
.y47_c00400{bottom:834.398667pt;}
.y46_c00400{bottom:889.398667pt;}
.y45_c00400{bottom:942.865333pt;}
.y43_c00400{bottom:947.398667pt;}
.y44_c00400{bottom:954.732000pt;}
.y6d_c00400{bottom:1044.000000pt;}
.h9_c00400{height:36.640625pt;}
.ha_c00400{height:41.875000pt;}
.h4_c00400{height:52.343750pt;}
.hc_c00400{height:57.549479pt;}
.h3_c00400{height:57.578125pt;}
.h1_c00400{height:62.812500pt;}
.h2_c00400{height:64.500000pt;}
.h8_c00400{height:68.013021pt;}
.hb_c00400{height:69.346354pt;}
.h7_c00400{height:69.875000pt;}
.h5_c00400{height:73.281250pt;}
.h6_c00400{height:87.073833pt;}
.h0_c00400{height:1044.000000pt;}
.w0_c00400{width:650.646400pt;}
.w1_c00400{width:650.666667pt;}
.x32_c00400{left:-18.897600pt;}
.x1_c00400{left:-6.765600pt;}
.x0_c00400{left:0.000000pt;}
.x3d_c00400{left:59.502400pt;}
.x24_c00400{left:66.834400pt;}
.x20_c00400{left:67.834400pt;}
.x36_c00400{left:70.369067pt;}
.x39_c00400{left:73.235733pt;}
.x40_c00400{left:90.835733pt;}
.x37_c00400{left:120.635733pt;}
.x1f_c00400{left:127.969067pt;}
.x31_c00400{left:145.235733pt;}
.x25_c00400{left:152.969067pt;}
.x2f_c00400{left:160.302400pt;}
.x38_c00400{left:163.169067pt;}
.x2c_c00400{left:167.635733pt;}
.x21_c00400{left:169.567733pt;}
.x41_c00400{left:179.169067pt;}
.x3a_c00400{left:213.435733pt;}
.x26_c00400{left:225.235733pt;}
.x33_c00400{left:226.835733pt;}
.x23_c00400{left:227.835733pt;}
.x15_c00400{left:229.102400pt;}
.x34_c00400{left:231.035733pt;}
.x27_c00400{left:233.235733pt;}
.x1e_c00400{left:235.169067pt;}
.x28_c00400{left:239.035733pt;}
.x19_c00400{left:239.969067pt;}
.x16_c00400{left:240.969067pt;}
.x1b_c00400{left:275.502400pt;}
.x18_c00400{left:293.435733pt;}
.x2d_c00400{left:307.835733pt;}
.x22_c00400{left:309.769067pt;}
.x17_c00400{left:311.035733pt;}
.x2b_c00400{left:323.169067pt;}
.x29_c00400{left:335.969067pt;}
.x30_c00400{left:339.502400pt;}
.x2e_c00400{left:346.235733pt;}
.x3e_c00400{left:359.635733pt;}
.x2a_c00400{left:365.435733pt;}
.x35_c00400{left:366.701067pt;}
.x1a_c00400{left:367.635733pt;}
.x3b_c00400{left:371.835733pt;}
.x3c_c00400{left:384.635733pt;}
.x1c_c00400{left:425.235733pt;}
.x2_c00400{left:461.102400pt;}
.x6_c00400{left:470.702400pt;}
.x7_c00400{left:477.102400pt;}
.x8_c00400{left:520.302400pt;}
.x3f_c00400{left:523.169067pt;}
.x9_c00400{left:527.035733pt;}
.x5_c00400{left:528.302400pt;}
.x4_c00400{left:529.235733pt;}
.x3_c00400{left:530.835733pt;}
.xa_c00400{left:555.835733pt;}
.x14_c00400{left:556.769067pt;}
.xc_c00400{left:558.035733pt;}
.xd_c00400{left:559.369067pt;}
.x1d_c00400{left:561.902400pt;}
.x12_c00400{left:563.169067pt;}
.xf_c00400{left:564.435733pt;}
.xb_c00400{left:565.435733pt;}
.xe_c00400{left:567.035733pt;}
.x10_c00400{left:571.502400pt;}
.x13_c00400{left:574.702400pt;}
.x11_c00400{left:594.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5ed5bc5fdf314a0dfbf9669.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00401;src:url('chunks/assets/font_3c56c72631e0dd763fd100fd.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00401;src:url('chunks/assets/font_7ac6a70b02d87db6610dc02c.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00401;src:url('chunks/assets/font_a4388e2b81f0e9592fa671ed.woff2')format("woff");}.ff4_c00401{font-family:ff4_c00401;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c00401{transform:matrix(0.052500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052500,0.000000,0.000000,0.250000,0,0);}
.m31_c00401{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00401{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m28_c00401{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m8_c00401{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m25_c00401{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m32_c00401{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00401{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00401{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m24_c00401{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mc_c00401{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00401{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m34_c00401{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma_c00401{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m13_c00401{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m11_c00401{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00401{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me_c00401{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m26_c00401{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00401{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4_c00401{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md_c00401{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m12_c00401{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m27_c00401{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00401{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m29_c00401{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m10_c00401{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3_c00401{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m21_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);}
.m1d_c00401{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb_c00401{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00401{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m17_c00401{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m0_c00401{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m15_c00401{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c00401{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m36_c00401{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00401{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00401{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m23_c00401{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00401{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00401{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00401{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m41_c00401{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00401{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00401{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00401{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m40_c00401{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m42_c00401{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m43_c00401{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m7_c00401{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m35_c00401{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m14_c00401{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m38_c00401{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m37_c00401{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m39_c00401{transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);}
.m16_c00401{transform:matrix(1.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.735000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00401{transform:matrix(1.922500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.922500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.922500,0.000000,0.000000,0.250000,0,0);}
.m18_c00401{transform:matrix(1.975000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.975000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.975000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00401{transform:matrix(2.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.097500,0.000000,0.000000,0.250000,0,0);}
.m30_c00401{transform:matrix(2.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.100000,0.000000,0.000000,0.250000,0,0);}
.m9_c00401{transform:matrix(2.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.162500,0.000000,0.000000,0.250000,0,0);}
.m20_c00401{transform:matrix(2.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.637500,0.000000,0.000000,0.250000,0,0);}
.m22_c00401{transform:matrix(3.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.000000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00401{transform:matrix(3.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.110000,0.000000,0.000000,0.250000,0,0);}
.m33_c00401{transform:matrix(3.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.297500,0.000000,0.000000,0.250000,0,0);}
.m19_c00401{transform:matrix(3.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.425000,0.000000,0.000000,0.250000,0,0);}
.m1_c00401{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v3_c00401{vertical-align:-8.406000px;}
.v0_c00401{vertical-align:0.000000px;}
.v2_c00401{vertical-align:7.206000px;}
.v1_c00401{vertical-align:18.600000px;}
.v4_c00401{vertical-align:67.794000px;}
.ls3_c00401{letter-spacing:0.000000px;}
.ls0_c00401{letter-spacing:0.615000px;}
.ls2_c00401{letter-spacing:373.437128px;}
.ls1_c00401{letter-spacing:378.009602px;}
.sc__c00401{text-shadow:none;}
.sc0_c00401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00401{-webkit-text-stroke:0px transparent;}
.sc0_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00401{word-spacing:0.000000px;}
._0_c00401{width:290.091523px;}
.fc0_c00401{color:transparent;}
.fs5_c00401{font-size:42.000000px;}
.fs4_c00401{font-size:48.000000px;}
.fs3_c00401{font-size:54.000000px;}
.fs1_c00401{font-size:60.000000px;}
.fs6_c00401{font-size:66.000000px;}
.fs0_c00401{font-size:72.000000px;}
.fs2_c00401{font-size:78.000000px;}
.y0_c00401{bottom:0.000000px;}
.y83_c00401{bottom:262.948500px;}
.y81_c00401{bottom:278.848500px;}
.y82_c00401{bottom:279.900000px;}
.y80_c00401{bottom:280.650000px;}
.y7f_c00401{bottom:284.250000px;}
.y7d_c00401{bottom:301.125000px;}
.y7e_c00401{bottom:301.798500px;}
.y7c_c00401{bottom:301.875000px;}
.y7b_c00401{bottom:323.473500px;}
.y7a_c00401{bottom:344.698500px;}
.y79_c00401{bottom:366.673500px;}
.y78_c00401{bottom:388.275000px;}
.y77_c00401{bottom:409.500000px;}
.y76_c00401{bottom:431.098500px;}
.y75_c00401{bottom:453.448500px;}
.y74_c00401{bottom:475.048500px;}
.y73_c00401{bottom:496.273500px;}
.y72_c00401{bottom:517.875000px;}
.y71_c00401{bottom:539.098500px;}
.y70_c00401{bottom:615.073500px;}
.y6d_c00401{bottom:616.125000px;}
.y6c_c00401{bottom:616.500000px;}
.y69_c00401{bottom:623.323500px;}
.y6a_c00401{bottom:625.125000px;}
.y6f_c00401{bottom:632.323500px;}
.y6b_c00401{bottom:633.823500px;}
.y6e_c00401{bottom:634.875000px;}
.y68_c00401{bottom:649.648500px;}
.y67_c00401{bottom:650.698500px;}
.y66_c00401{bottom:651.073500px;}
.y65_c00401{bottom:651.448500px;}
.y64_c00401{bottom:651.823500px;}
.y63_c00401{bottom:652.500000px;}
.y62_c00401{bottom:666.898500px;}
.y61_c00401{bottom:668.023500px;}
.y5f_c00401{bottom:668.698500px;}
.y60_c00401{bottom:669.750000px;}
.y5e_c00401{bottom:697.798500px;}
.y5d_c00401{bottom:699.000000px;}
.y59_c00401{bottom:699.298500px;}
.y5a_c00401{bottom:700.048500px;}
.y56_c00401{bottom:707.923500px;}
.y5c_c00401{bottom:713.323500px;}
.y58_c00401{bottom:716.173500px;}
.y57_c00401{bottom:716.250000px;}
.y5b_c00401{bottom:717.298500px;}
.y55_c00401{bottom:731.700000px;}
.y51_c00401{bottom:732.825000px;}
.y50_c00401{bottom:733.125000px;}
.y52_c00401{bottom:733.200000px;}
.y53_c00401{bottom:733.500000px;}
.y54_c00401{bottom:734.625000px;}
.y4f_c00401{bottom:749.023500px;}
.y4e_c00401{bottom:750.075000px;}
.y4c_c00401{bottom:750.825000px;}
.y4d_c00401{bottom:751.875000px;}
.y4a_c00401{bottom:780.675000px;}
.y40_c00401{bottom:781.348500px;}
.y47_c00401{bottom:781.425000px;}
.y49_c00401{bottom:782.098500px;}
.y46_c00401{bottom:789.675000px;}
.y43_c00401{bottom:789.973500px;}
.y44_c00401{bottom:790.050000px;}
.y45_c00401{bottom:790.425000px;}
.y4b_c00401{bottom:797.550000px;}
.y3f_c00401{bottom:797.925000px;}
.y41_c00401{bottom:798.973500px;}
.y42_c00401{bottom:799.050000px;}
.y48_c00401{bottom:799.425000px;}
.y39_c00401{bottom:813.448500px;}
.y3a_c00401{bottom:813.823500px;}
.y3b_c00401{bottom:814.500000px;}
.y3e_c00401{bottom:815.250000px;}
.y3d_c00401{bottom:816.300000px;}
.y3c_c00401{bottom:816.675000px;}
.y38_c00401{bottom:829.948500px;}
.y35_c00401{bottom:831.823500px;}
.y36_c00401{bottom:832.125000px;}
.y37_c00401{bottom:833.175000px;}
.y33_c00401{bottom:860.925000px;}
.y30_c00401{bottom:861.973500px;}
.y2d_c00401{bottom:868.875000px;}
.y2e_c00401{bottom:869.250000px;}
.y34_c00401{bottom:877.125000px;}
.y32_c00401{bottom:878.250000px;}
.y2f_c00401{bottom:878.925000px;}
.y31_c00401{bottom:881.473500px;}
.y26_c00401{bottom:891.223500px;}
.y27_c00401{bottom:891.525000px;}
.y28_c00401{bottom:893.400000px;}
.y29_c00401{bottom:893.698500px;}
.y2b_c00401{bottom:894.375000px;}
.y2c_c00401{bottom:894.448500px;}
.y2a_c00401{bottom:895.500000px;}
.y22_c00401{bottom:910.650000px;}
.y23_c00401{bottom:911.323500px;}
.y25_c00401{bottom:912.750000px;}
.y24_c00401{bottom:914.625000px;}
.y21_c00401{bottom:941.925000px;}
.y1b_c00401{bottom:943.050000px;}
.y1c_c00401{bottom:943.425000px;}
.y1e_c00401{bottom:944.098500px;}
.y16_c00401{bottom:948.750000px;}
.y17_c00401{bottom:950.250000px;}
.y18_c00401{bottom:951.300000px;}
.y20_c00401{bottom:958.875000px;}
.y1f_c00401{bottom:959.925000px;}
.y19_c00401{bottom:960.675000px;}
.y1a_c00401{bottom:961.050000px;}
.y1d_c00401{bottom:963.525000px;}
.yf_c00401{bottom:969.675000px;}
.y10_c00401{bottom:970.723500px;}
.y11_c00401{bottom:974.698500px;}
.y12_c00401{bottom:975.073500px;}
.y15_c00401{bottom:975.823500px;}
.y14_c00401{bottom:976.875000px;}
.y13_c00401{bottom:978.675000px;}
.ye_c00401{bottom:991.650000px;}
.yb_c00401{bottom:992.025000px;}
.yc_c00401{bottom:992.698500px;}
.yd_c00401{bottom:995.925000px;}
.y4_c00401{bottom:1044.223500px;}
.y5_c00401{bottom:1048.125000px;}
.y6_c00401{bottom:1049.250000px;}
.ya_c00401{bottom:1049.925000px;}
.y9_c00401{bottom:1051.050000px;}
.y8_c00401{bottom:1051.348500px;}
.y7_c00401{bottom:1052.098500px;}
.y1_c00401{bottom:1105.723500px;}
.y3_c00401{bottom:1115.098500px;}
.y2_c00401{bottom:1120.500000px;}
.hb_c00401{height:43.804688px;}
.h7_c00401{height:50.062500px;}
.h5_c00401{height:52.998047px;}
.h2_c00401{height:58.886719px;}
.hd_c00401{height:64.775391px;}
.hc_c00401{height:66.515625px;}
.h6_c00401{height:70.628906px;}
.h9_c00401{height:70.664062px;}
.h1_c00401{height:72.562500px;}
.h3_c00401{height:76.552734px;}
.he_c00401{height:78.609375px;}
.h8_c00401{height:83.758734px;}
.h4_c00401{height:95.152734px;}
.ha_c00401{height:144.346734px;}
.h0_c00401{height:1174.500000px;}
.w0_c00401{width:731.977200px;}
.w1_c00401{width:732.000000px;}
.x0_c00401{left:0.000000px;}
.x52_c00401{left:66.190200px;}
.x53_c00401{left:67.315200px;}
.x4c_c00401{left:68.740200px;}
.x4d_c00401{left:70.165200px;}
.x2b_c00401{left:75.938700px;}
.x11_c00401{left:77.740200px;}
.x48_c00401{left:79.915200px;}
.x1_c00401{left:83.515200px;}
.x50_c00401{left:96.115200px;}
.x51_c00401{left:98.290200px;}
.x2_c00401{left:111.940200px;}
.x12_c00401{left:134.965200px;}
.x4_c00401{left:142.540200px;}
.x20_c00401{left:153.340200px;}
.x2c_c00401{left:160.165200px;}
.x3d_c00401{left:179.290200px;}
.x49_c00401{left:213.790200px;}
.x21_c00401{left:248.740200px;}
.xc_c00401{left:250.165200px;}
.x15_c00401{left:251.290200px;}
.x4a_c00401{left:260.965200px;}
.x13_c00401{left:262.765200px;}
.x1e_c00401{left:264.565200px;}
.x36_c00401{left:265.690200px;}
.x47_c00401{left:266.740200px;}
.x4e_c00401{left:267.790200px;}
.x3_c00401{left:284.365200px;}
.x5_c00401{left:290.890200px;}
.x6_c00401{left:316.390200px;}
.x14_c00401{left:323.965200px;}
.x22_c00401{left:325.090200px;}
.x2d_c00401{left:327.190200px;}
.x3e_c00401{left:329.365200px;}
.xd_c00401{left:342.340200px;}
.x1f_c00401{left:343.765200px;}
.x2a_c00401{left:344.890200px;}
.x3b_c00401{left:346.690200px;}
.x37_c00401{left:376.163700px;}
.x32_c00401{left:380.140200px;}
.x33_c00401{left:382.990200px;}
.x26_c00401{left:390.565200px;}
.x30_c00401{left:394.913700px;}
.x16_c00401{left:395.965200px;}
.x3f_c00401{left:397.090200px;}
.x34_c00401{left:398.140200px;}
.x40_c00401{left:400.690200px;}
.x17_c00401{left:406.390200px;}
.x27_c00401{left:408.565200px;}
.x28_c00401{left:409.690200px;}
.x41_c00401{left:411.490200px;}
.x42_c00401{left:413.288700px;}
.x35_c00401{left:433.090200px;}
.x19_c00401{left:473.365200px;}
.x38_c00401{left:477.340200px;}
.x43_c00401{left:479.515200px;}
.x18_c00401{left:481.690200px;}
.x31_c00401{left:485.590200px;}
.x4f_c00401{left:487.765200px;}
.x23_c00401{left:491.365200px;}
.xe_c00401{left:529.915200px;}
.x1a_c00401{left:531.340200px;}
.x29_c00401{left:532.765200px;}
.x39_c00401{left:533.890200px;}
.x44_c00401{left:534.940200px;}
.x4b_c00401{left:536.365200px;}
.x7_c00401{left:562.990200px;}
.xf_c00401{left:588.565200px;}
.x24_c00401{left:591.490200px;}
.x1b_c00401{left:598.315200px;}
.x8_c00401{left:599.740200px;}
.x3a_c00401{left:601.915200px;}
.x2e_c00401{left:602.965200px;}
.x45_c00401{left:604.390200px;}
.x9_c00401{left:607.315200px;}
.xa_c00401{left:609.115200px;}
.xb_c00401{left:622.090200px;}
.x54_c00401{left:633.940200px;}
.x10_c00401{left:637.165200px;}
.x1c_c00401{left:640.090200px;}
.x1d_c00401{left:641.140200px;}
.x25_c00401{left:643.315200px;}
.x2f_c00401{left:644.740200px;}
.x3c_c00401{left:645.790200px;}
.x46_c00401{left:646.915200px;}
.x55_c00401{left:655.915200px;}
@media print{
.v3_c00401{vertical-align:-7.472000pt;}
.v0_c00401{vertical-align:0.000000pt;}
.v2_c00401{vertical-align:6.405333pt;}
.v1_c00401{vertical-align:16.533333pt;}
.v4_c00401{vertical-align:60.261333pt;}
.ls3_c00401{letter-spacing:0.000000pt;}
.ls0_c00401{letter-spacing:0.546667pt;}
.ls2_c00401{letter-spacing:331.944114pt;}
.ls1_c00401{letter-spacing:336.008535pt;}
.ws0_c00401{word-spacing:0.000000pt;}
._0_c00401{width:257.859131pt;}
.fs5_c00401{font-size:37.333333pt;}
.fs4_c00401{font-size:42.666667pt;}
.fs3_c00401{font-size:48.000000pt;}
.fs1_c00401{font-size:53.333333pt;}
.fs6_c00401{font-size:58.666667pt;}
.fs0_c00401{font-size:64.000000pt;}
.fs2_c00401{font-size:69.333333pt;}
.y0_c00401{bottom:0.000000pt;}
.y83_c00401{bottom:233.732000pt;}
.y81_c00401{bottom:247.865333pt;}
.y82_c00401{bottom:248.800000pt;}
.y80_c00401{bottom:249.466667pt;}
.y7f_c00401{bottom:252.666667pt;}
.y7d_c00401{bottom:267.666667pt;}
.y7e_c00401{bottom:268.265333pt;}
.y7c_c00401{bottom:268.333333pt;}
.y7b_c00401{bottom:287.532000pt;}
.y7a_c00401{bottom:306.398667pt;}
.y79_c00401{bottom:325.932000pt;}
.y78_c00401{bottom:345.133333pt;}
.y77_c00401{bottom:364.000000pt;}
.y76_c00401{bottom:383.198667pt;}
.y75_c00401{bottom:403.065333pt;}
.y74_c00401{bottom:422.265333pt;}
.y73_c00401{bottom:441.132000pt;}
.y72_c00401{bottom:460.333333pt;}
.y71_c00401{bottom:479.198667pt;}
.y70_c00401{bottom:546.732000pt;}
.y6d_c00401{bottom:547.666667pt;}
.y6c_c00401{bottom:548.000000pt;}
.y69_c00401{bottom:554.065333pt;}
.y6a_c00401{bottom:555.666667pt;}
.y6f_c00401{bottom:562.065333pt;}
.y6b_c00401{bottom:563.398667pt;}
.y6e_c00401{bottom:564.333333pt;}
.y68_c00401{bottom:577.465333pt;}
.y67_c00401{bottom:578.398667pt;}
.y66_c00401{bottom:578.732000pt;}
.y65_c00401{bottom:579.065333pt;}
.y64_c00401{bottom:579.398667pt;}
.y63_c00401{bottom:580.000000pt;}
.y62_c00401{bottom:592.798667pt;}
.y61_c00401{bottom:593.798667pt;}
.y5f_c00401{bottom:594.398667pt;}
.y60_c00401{bottom:595.333333pt;}
.y5e_c00401{bottom:620.265333pt;}
.y5d_c00401{bottom:621.333333pt;}
.y59_c00401{bottom:621.598667pt;}
.y5a_c00401{bottom:622.265333pt;}
.y56_c00401{bottom:629.265333pt;}
.y5c_c00401{bottom:634.065333pt;}
.y58_c00401{bottom:636.598667pt;}
.y57_c00401{bottom:636.666667pt;}
.y5b_c00401{bottom:637.598667pt;}
.y55_c00401{bottom:650.400000pt;}
.y51_c00401{bottom:651.400000pt;}
.y50_c00401{bottom:651.666667pt;}
.y52_c00401{bottom:651.733333pt;}
.y53_c00401{bottom:652.000000pt;}
.y54_c00401{bottom:653.000000pt;}
.y4f_c00401{bottom:665.798667pt;}
.y4e_c00401{bottom:666.733333pt;}
.y4c_c00401{bottom:667.400000pt;}
.y4d_c00401{bottom:668.333333pt;}
.y4a_c00401{bottom:693.933333pt;}
.y40_c00401{bottom:694.532000pt;}
.y47_c00401{bottom:694.600000pt;}
.y49_c00401{bottom:695.198667pt;}
.y46_c00401{bottom:701.933333pt;}
.y43_c00401{bottom:702.198667pt;}
.y44_c00401{bottom:702.266667pt;}
.y45_c00401{bottom:702.600000pt;}
.y4b_c00401{bottom:708.933333pt;}
.y3f_c00401{bottom:709.266667pt;}
.y41_c00401{bottom:710.198667pt;}
.y42_c00401{bottom:710.266667pt;}
.y48_c00401{bottom:710.600000pt;}
.y39_c00401{bottom:723.065333pt;}
.y3a_c00401{bottom:723.398667pt;}
.y3b_c00401{bottom:724.000000pt;}
.y3e_c00401{bottom:724.666667pt;}
.y3d_c00401{bottom:725.600000pt;}
.y3c_c00401{bottom:725.933333pt;}
.y38_c00401{bottom:737.732000pt;}
.y35_c00401{bottom:739.398667pt;}
.y36_c00401{bottom:739.666667pt;}
.y37_c00401{bottom:740.600000pt;}
.y33_c00401{bottom:765.266667pt;}
.y30_c00401{bottom:766.198667pt;}
.y2d_c00401{bottom:772.333333pt;}
.y2e_c00401{bottom:772.666667pt;}
.y34_c00401{bottom:779.666667pt;}
.y32_c00401{bottom:780.666667pt;}
.y2f_c00401{bottom:781.266667pt;}
.y31_c00401{bottom:783.532000pt;}
.y26_c00401{bottom:792.198667pt;}
.y27_c00401{bottom:792.466667pt;}
.y28_c00401{bottom:794.133333pt;}
.y29_c00401{bottom:794.398667pt;}
.y2b_c00401{bottom:795.000000pt;}
.y2c_c00401{bottom:795.065333pt;}
.y2a_c00401{bottom:796.000000pt;}
.y22_c00401{bottom:809.466667pt;}
.y23_c00401{bottom:810.065333pt;}
.y25_c00401{bottom:811.333333pt;}
.y24_c00401{bottom:813.000000pt;}
.y21_c00401{bottom:837.266667pt;}
.y1b_c00401{bottom:838.266667pt;}
.y1c_c00401{bottom:838.600000pt;}
.y1e_c00401{bottom:839.198667pt;}
.y16_c00401{bottom:843.333333pt;}
.y17_c00401{bottom:844.666667pt;}
.y18_c00401{bottom:845.600000pt;}
.y20_c00401{bottom:852.333333pt;}
.y1f_c00401{bottom:853.266667pt;}
.y19_c00401{bottom:853.933333pt;}
.y1a_c00401{bottom:854.266667pt;}
.y1d_c00401{bottom:856.466667pt;}
.yf_c00401{bottom:861.933333pt;}
.y10_c00401{bottom:862.865333pt;}
.y11_c00401{bottom:866.398667pt;}
.y12_c00401{bottom:866.732000pt;}
.y15_c00401{bottom:867.398667pt;}
.y14_c00401{bottom:868.333333pt;}
.y13_c00401{bottom:869.933333pt;}
.ye_c00401{bottom:881.466667pt;}
.yb_c00401{bottom:881.800000pt;}
.yc_c00401{bottom:882.398667pt;}
.yd_c00401{bottom:885.266667pt;}
.y4_c00401{bottom:928.198667pt;}
.y5_c00401{bottom:931.666667pt;}
.y6_c00401{bottom:932.666667pt;}
.ya_c00401{bottom:933.266667pt;}
.y9_c00401{bottom:934.266667pt;}
.y8_c00401{bottom:934.532000pt;}
.y7_c00401{bottom:935.198667pt;}
.y1_c00401{bottom:982.865333pt;}
.y3_c00401{bottom:991.198667pt;}
.y2_c00401{bottom:996.000000pt;}
.hb_c00401{height:38.937500pt;}
.h7_c00401{height:44.500000pt;}
.h5_c00401{height:47.109375pt;}
.h2_c00401{height:52.343750pt;}
.hd_c00401{height:57.578125pt;}
.hc_c00401{height:59.125000pt;}
.h6_c00401{height:62.781250pt;}
.h9_c00401{height:62.812500pt;}
.h1_c00401{height:64.500000pt;}
.h3_c00401{height:68.046875pt;}
.he_c00401{height:69.875000pt;}
.h8_c00401{height:74.452208pt;}
.h4_c00401{height:84.580208pt;}
.ha_c00401{height:128.308208pt;}
.h0_c00401{height:1044.000000pt;}
.w0_c00401{width:650.646400pt;}
.w1_c00401{width:650.666667pt;}
.x0_c00401{left:0.000000pt;}
.x52_c00401{left:58.835733pt;}
.x53_c00401{left:59.835733pt;}
.x4c_c00401{left:61.102400pt;}
.x4d_c00401{left:62.369067pt;}
.x2b_c00401{left:67.501067pt;}
.x11_c00401{left:69.102400pt;}
.x48_c00401{left:71.035733pt;}
.x1_c00401{left:74.235733pt;}
.x50_c00401{left:85.435733pt;}
.x51_c00401{left:87.369067pt;}
.x2_c00401{left:99.502400pt;}
.x12_c00401{left:119.969067pt;}
.x4_c00401{left:126.702400pt;}
.x20_c00401{left:136.302400pt;}
.x2c_c00401{left:142.369067pt;}
.x3d_c00401{left:159.369067pt;}
.x49_c00401{left:190.035733pt;}
.x21_c00401{left:221.102400pt;}
.xc_c00401{left:222.369067pt;}
.x15_c00401{left:223.369067pt;}
.x4a_c00401{left:231.969067pt;}
.x13_c00401{left:233.569067pt;}
.x1e_c00401{left:235.169067pt;}
.x36_c00401{left:236.169067pt;}
.x47_c00401{left:237.102400pt;}
.x4e_c00401{left:238.035733pt;}
.x3_c00401{left:252.769067pt;}
.x5_c00401{left:258.569067pt;}
.x6_c00401{left:281.235733pt;}
.x14_c00401{left:287.969067pt;}
.x22_c00401{left:288.969067pt;}
.x2d_c00401{left:290.835733pt;}
.x3e_c00401{left:292.769067pt;}
.xd_c00401{left:304.302400pt;}
.x1f_c00401{left:305.569067pt;}
.x2a_c00401{left:306.569067pt;}
.x3b_c00401{left:308.169067pt;}
.x37_c00401{left:334.367733pt;}
.x32_c00401{left:337.902400pt;}
.x33_c00401{left:340.435733pt;}
.x26_c00401{left:347.169067pt;}
.x30_c00401{left:351.034400pt;}
.x16_c00401{left:351.969067pt;}
.x3f_c00401{left:352.969067pt;}
.x34_c00401{left:353.902400pt;}
.x40_c00401{left:356.169067pt;}
.x17_c00401{left:361.235733pt;}
.x27_c00401{left:363.169067pt;}
.x28_c00401{left:364.169067pt;}
.x41_c00401{left:365.769067pt;}
.x42_c00401{left:367.367733pt;}
.x35_c00401{left:384.969067pt;}
.x19_c00401{left:420.769067pt;}
.x38_c00401{left:424.302400pt;}
.x43_c00401{left:426.235733pt;}
.x18_c00401{left:428.169067pt;}
.x31_c00401{left:431.635733pt;}
.x4f_c00401{left:433.569067pt;}
.x23_c00401{left:436.769067pt;}
.xe_c00401{left:471.035733pt;}
.x1a_c00401{left:472.302400pt;}
.x29_c00401{left:473.569067pt;}
.x39_c00401{left:474.569067pt;}
.x44_c00401{left:475.502400pt;}
.x4b_c00401{left:476.769067pt;}
.x7_c00401{left:500.435733pt;}
.xf_c00401{left:523.169067pt;}
.x24_c00401{left:525.769067pt;}
.x1b_c00401{left:531.835733pt;}
.x8_c00401{left:533.102400pt;}
.x3a_c00401{left:535.035733pt;}
.x2e_c00401{left:535.969067pt;}
.x45_c00401{left:537.235733pt;}
.x9_c00401{left:539.835733pt;}
.xa_c00401{left:541.435733pt;}
.xb_c00401{left:552.969067pt;}
.x54_c00401{left:563.502400pt;}
.x10_c00401{left:566.369067pt;}
.x1c_c00401{left:568.969067pt;}
.x1d_c00401{left:569.902400pt;}
.x25_c00401{left:571.835733pt;}
.x2f_c00401{left:573.102400pt;}
.x3c_c00401{left:574.035733pt;}
.x46_c00401{left:575.035733pt;}
.x55_c00401{left:583.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e23fedd9c6ae2383dd61d3d7.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00402;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.575000;font-style:normal;font-weight:normal;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_f7bafd6fc458032cfffcb820.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00402;src:url('chunks/assets/font_70555ba9d79960ae72ed6651.woff2')format("woff");}.ff4_c00402{font-family:ff4_c00402;line-height:1.284180;font-style:normal;font-weight:normal;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_ab29c61dff267cbf8bbccf36.woff2')format("woff");}.ff5_c00402{font-family:ff5_c00402;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00402{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m2_c00402{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m27_c00402{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m29_c00402{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m5_c00402{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m17_c00402{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00402{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8_c00402{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m6_c00402{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7_c00402{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00402{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9_c00402{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1e_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);}
.m4_c00402{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m13_c00402{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19_c00402{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c00402{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m32_c00402{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c00402{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c00402{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c00402{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m24_c00402{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00402{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00402{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m0_c00402{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c00402{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c00402{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c00402{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00402{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c00402{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00402{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00402{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m12_c00402{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c00402{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00402{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00402{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00402{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00402{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00402{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m21_c00402{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00402{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m31_c00402{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00402{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m25_c00402{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00402{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m22_c00402{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m23_c00402{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m28_c00402{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m20_c00402{transform:matrix(0.897500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.897500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.897500,0.000000,0.000000,0.250000,0,0);}
.m26_c00402{transform:matrix(4.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.610000,0.000000,0.000000,0.250000,0,0);}
.mf_c00402{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws1_c00402{word-spacing:-18.000000px;}
.ws0_c00402{word-spacing:-16.500000px;}
.ws2_c00402{word-spacing:0.000000px;}
._0_c00402{width:2.433750px;}
.fc0_c00402{color:transparent;}
.fs0_c00402{font-size:30.000000px;}
.fs4_c00402{font-size:48.000000px;}
.fs6_c00402{font-size:54.000000px;}
.fs1_c00402{font-size:60.000000px;}
.fs5_c00402{font-size:66.000000px;}
.fs3_c00402{font-size:72.000000px;}
.fs2_c00402{font-size:78.000000px;}
.y0_c00402{bottom:0.000000px;}
.y5f_c00402{bottom:89.473500px;}
.y5b_c00402{bottom:111.073500px;}
.y5c_c00402{bottom:111.448500px;}
.y5d_c00402{bottom:112.875000px;}
.y5e_c00402{bottom:115.423500px;}
.y5a_c00402{bottom:133.723500px;}
.y56_c00402{bottom:150.598500px;}
.y57_c00402{bottom:151.348500px;}
.y58_c00402{bottom:152.098500px;}
.y59_c00402{bottom:156.073500px;}
.y55_c00402{bottom:174.448500px;}
.y54_c00402{bottom:190.648500px;}
.y53_c00402{bottom:213.973500px;}
.y4f_c00402{bottom:231.298500px;}
.y50_c00402{bottom:233.473500px;}
.y51_c00402{bottom:233.848500px;}
.y52_c00402{bottom:237.448500px;}
.y4e_c00402{bottom:254.323500px;}
.y4b_c00402{bottom:274.500000px;}
.y4c_c00402{bottom:275.923500px;}
.y4d_c00402{bottom:276.673500px;}
.y4a_c00402{bottom:295.048500px;}
.y49_c00402{bottom:316.275000px;}
.y47_c00402{bottom:335.400000px;}
.y48_c00402{bottom:337.125000px;}
.y45_c00402{bottom:356.625000px;}
.y46_c00402{bottom:358.723500px;}
.y42_c00402{bottom:398.698500px;}
.y44_c00402{bottom:399.750000px;}
.y43_c00402{bottom:400.125000px;}
.y3d_c00402{bottom:415.648500px;}
.y3e_c00402{bottom:415.948500px;}
.y41_c00402{bottom:416.023500px;}
.y40_c00402{bottom:416.323500px;}
.y3f_c00402{bottom:416.698500px;}
.y3a_c00402{bottom:432.898500px;}
.y3b_c00402{bottom:433.198500px;}
.y3c_c00402{bottom:433.273500px;}
.y38_c00402{bottom:449.473500px;}
.y39_c00402{bottom:449.773500px;}
.y37_c00402{bottom:449.848500px;}
.y36_c00402{bottom:466.423500px;}
.y35_c00402{bottom:467.098500px;}
.y34_c00402{bottom:508.875000px;}
.y33_c00402{bottom:529.723500px;}
.y32_c00402{bottom:550.948500px;}
.y2f_c00402{bottom:617.250000px;}
.y2d_c00402{bottom:617.548500px;}
.y2e_c00402{bottom:617.625000px;}
.y24_c00402{bottom:619.048500px;}
.y18_c00402{bottom:619.723500px;}
.y17_c00402{bottom:620.098500px;}
.y30_c00402{bottom:651.000000px;}
.y2c_c00402{bottom:651.073500px;}
.y23_c00402{bottom:652.500000px;}
.y16_c00402{bottom:654.298500px;}
.y2b_c00402{bottom:684.523500px;}
.y22_c00402{bottom:686.323500px;}
.y15_c00402{bottom:688.500000px;}
.y14_c00402{bottom:688.798500px;}
.y2a_c00402{bottom:718.048500px;}
.y21_c00402{bottom:720.223500px;}
.y13_c00402{bottom:722.325000px;}
.y12_c00402{bottom:722.700000px;}
.y29_c00402{bottom:751.500000px;}
.y20_c00402{bottom:754.048500px;}
.y1f_c00402{bottom:754.423500px;}
.y10_c00402{bottom:757.575000px;}
.y11_c00402{bottom:757.648500px;}
.y28_c00402{bottom:785.023500px;}
.y1e_c00402{bottom:787.875000px;}
.y1d_c00402{bottom:788.250000px;}
.yf_c00402{bottom:791.473500px;}
.ye_c00402{bottom:791.848500px;}
.y27_c00402{bottom:819.223500px;}
.y1c_c00402{bottom:822.823500px;}
.yd_c00402{bottom:824.625000px;}
.yc_c00402{bottom:842.550000px;}
.y26_c00402{bottom:852.675000px;}
.y1b_c00402{bottom:856.275000px;}
.yb_c00402{bottom:858.073500px;}
.y25_c00402{bottom:885.073500px;}
.y1a_c00402{bottom:889.348500px;}
.y19_c00402{bottom:890.473500px;}
.ya_c00402{bottom:892.275000px;}
.y9_c00402{bottom:931.125000px;}
.y31_c00402{bottom:933.973500px;}
.y8_c00402{bottom:967.125000px;}
.y4_c00402{bottom:967.875000px;}
.y6_c00402{bottom:971.473500px;}
.y7_c00402{bottom:991.948500px;}
.y5_c00402{bottom:997.050000px;}
.y3_c00402{bottom:1057.800000px;}
.y2_c00402{bottom:1065.073500px;}
.y1_c00402{bottom:1164.448500px;}
.h1_c00402{height:29.443359px;}
.h2_c00402{height:32.010000px;}
.h6_c00402{height:47.085938px;}
.ha_c00402{height:52.971680px;}
.hb_c00402{height:58.886719px;}
.h3_c00402{height:60.468750px;}
.h7_c00402{height:64.775391px;}
.h9_c00402{height:66.515625px;}
.hc_c00402{height:70.628906px;}
.h5_c00402{height:70.664062px;}
.h8_c00402{height:72.562500px;}
.h4_c00402{height:78.609375px;}
.h0_c00402{height:1174.500000px;}
.w0_c00402{width:731.977200px;}
.w1_c00402{width:732.000000px;}
.x0_c00402{left:0.000000px;}
.x28_c00402{left:71.590200px;}
.x29_c00402{left:72.715200px;}
.x39_c00402{left:74.890200px;}
.x3d_c00402{left:76.990200px;}
.x45_c00402{left:78.115200px;}
.x13_c00402{left:87.115200px;}
.xe_c00402{left:88.915200px;}
.xc_c00402{left:90.715200px;}
.x6_c00402{left:102.190200px;}
.x27_c00402{left:104.740200px;}
.x3e_c00402{left:107.965200px;}
.x3f_c00402{left:117.715200px;}
.x10_c00402{left:134.590200px;}
.x38_c00402{left:138.565200px;}
.x14_c00402{left:140.740200px;}
.xf_c00402{left:143.965200px;}
.x36_c00402{left:147.940200px;}
.x11_c00402{left:150.790200px;}
.x12_c00402{left:159.115200px;}
.x30_c00402{left:160.915200px;}
.xd_c00402{left:185.740200px;}
.x2a_c00402{left:207.340200px;}
.x31_c00402{left:209.140200px;}
.x3b_c00402{left:228.190200px;}
.x40_c00402{left:261.340200px;}
.x42_c00402{left:267.790200px;}
.x15_c00402{left:269.290200px;}
.x4_c00402{left:287.590200px;}
.x2f_c00402{left:294.490200px;}
.x7_c00402{left:310.990200px;}
.x1a_c00402{left:324.715200px;}
.x8_c00402{left:326.515200px;}
.x17_c00402{left:328.315200px;}
.x16_c00402{left:335.140200px;}
.x43_c00402{left:339.790200px;}
.x26_c00402{left:342.715200px;}
.x2c_c00402{left:353.890200px;}
.x19_c00402{left:357.490200px;}
.x44_c00402{left:382.990200px;}
.x2b_c00402{left:389.890200px;}
.x18_c00402{left:395.288700px;}
.x41_c00402{left:399.940200px;}
.x37_c00402{left:402.115200px;}
.x2d_c00402{left:428.740200px;}
.x32_c00402{left:469.090200px;}
.x1b_c00402{left:479.515200px;}
.x33_c00402{left:496.765200px;}
.x2e_c00402{left:502.915200px;}
.xa_c00402{left:504.340200px;}
.x3a_c00402{left:511.915200px;}
.x9_c00402{left:520.540200px;}
.x25_c00402{left:533.515200px;}
.x1e_c00402{left:534.940200px;}
.x1d_c00402{left:535.990200px;}
.x1c_c00402{left:537.490200px;}
.xb_c00402{left:541.390200px;}
.x34_c00402{left:550.390200px;}
.x1_c00402{left:562.990200px;}
.x1f_c00402{left:564.790200px;}
.x20_c00402{left:565.915200px;}
.x21_c00402{left:586.090200px;}
.x22_c00402{left:587.890200px;}
.x2_c00402{left:591.115200px;}
.x3_c00402{left:593.290200px;}
.x23_c00402{left:600.490200px;}
.x24_c00402{left:602.290200px;}
.x35_c00402{left:610.540200px;}
.x3c_c00402{left:635.365200px;}
.x5_c00402{left:642.940200px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls0_c00402{letter-spacing:0.000000pt;}
.ws1_c00402{word-spacing:-16.000000pt;}
.ws0_c00402{word-spacing:-14.666667pt;}
.ws2_c00402{word-spacing:0.000000pt;}
._0_c00402{width:2.163333pt;}
.fs0_c00402{font-size:26.666667pt;}
.fs4_c00402{font-size:42.666667pt;}
.fs6_c00402{font-size:48.000000pt;}
.fs1_c00402{font-size:53.333333pt;}
.fs5_c00402{font-size:58.666667pt;}
.fs3_c00402{font-size:64.000000pt;}
.fs2_c00402{font-size:69.333333pt;}
.y0_c00402{bottom:0.000000pt;}
.y5f_c00402{bottom:79.532000pt;}
.y5b_c00402{bottom:98.732000pt;}
.y5c_c00402{bottom:99.065333pt;}
.y5d_c00402{bottom:100.333333pt;}
.y5e_c00402{bottom:102.598667pt;}
.y5a_c00402{bottom:118.865333pt;}
.y56_c00402{bottom:133.865333pt;}
.y57_c00402{bottom:134.532000pt;}
.y58_c00402{bottom:135.198667pt;}
.y59_c00402{bottom:138.732000pt;}
.y55_c00402{bottom:155.065333pt;}
.y54_c00402{bottom:169.465333pt;}
.y53_c00402{bottom:190.198667pt;}
.y4f_c00402{bottom:205.598667pt;}
.y50_c00402{bottom:207.532000pt;}
.y51_c00402{bottom:207.865333pt;}
.y52_c00402{bottom:211.065333pt;}
.y4e_c00402{bottom:226.065333pt;}
.y4b_c00402{bottom:244.000000pt;}
.y4c_c00402{bottom:245.265333pt;}
.y4d_c00402{bottom:245.932000pt;}
.y4a_c00402{bottom:262.265333pt;}
.y49_c00402{bottom:281.133333pt;}
.y47_c00402{bottom:298.133333pt;}
.y48_c00402{bottom:299.666667pt;}
.y45_c00402{bottom:317.000000pt;}
.y46_c00402{bottom:318.865333pt;}
.y42_c00402{bottom:354.398667pt;}
.y44_c00402{bottom:355.333333pt;}
.y43_c00402{bottom:355.666667pt;}
.y3d_c00402{bottom:369.465333pt;}
.y3e_c00402{bottom:369.732000pt;}
.y41_c00402{bottom:369.798667pt;}
.y40_c00402{bottom:370.065333pt;}
.y3f_c00402{bottom:370.398667pt;}
.y3a_c00402{bottom:384.798667pt;}
.y3b_c00402{bottom:385.065333pt;}
.y3c_c00402{bottom:385.132000pt;}
.y38_c00402{bottom:399.532000pt;}
.y39_c00402{bottom:399.798667pt;}
.y37_c00402{bottom:399.865333pt;}
.y36_c00402{bottom:414.598667pt;}
.y35_c00402{bottom:415.198667pt;}
.y34_c00402{bottom:452.333333pt;}
.y33_c00402{bottom:470.865333pt;}
.y32_c00402{bottom:489.732000pt;}
.y2f_c00402{bottom:548.666667pt;}
.y2d_c00402{bottom:548.932000pt;}
.y2e_c00402{bottom:549.000000pt;}
.y24_c00402{bottom:550.265333pt;}
.y18_c00402{bottom:550.865333pt;}
.y17_c00402{bottom:551.198667pt;}
.y30_c00402{bottom:578.666667pt;}
.y2c_c00402{bottom:578.732000pt;}
.y23_c00402{bottom:580.000000pt;}
.y16_c00402{bottom:581.598667pt;}
.y2b_c00402{bottom:608.465333pt;}
.y22_c00402{bottom:610.065333pt;}
.y15_c00402{bottom:612.000000pt;}
.y14_c00402{bottom:612.265333pt;}
.y2a_c00402{bottom:638.265333pt;}
.y21_c00402{bottom:640.198667pt;}
.y13_c00402{bottom:642.066667pt;}
.y12_c00402{bottom:642.400000pt;}
.y29_c00402{bottom:668.000000pt;}
.y20_c00402{bottom:670.265333pt;}
.y1f_c00402{bottom:670.598667pt;}
.y10_c00402{bottom:673.400000pt;}
.y11_c00402{bottom:673.465333pt;}
.y28_c00402{bottom:697.798667pt;}
.y1e_c00402{bottom:700.333333pt;}
.y1d_c00402{bottom:700.666667pt;}
.yf_c00402{bottom:703.532000pt;}
.ye_c00402{bottom:703.865333pt;}
.y27_c00402{bottom:728.198667pt;}
.y1c_c00402{bottom:731.398667pt;}
.yd_c00402{bottom:733.000000pt;}
.yc_c00402{bottom:748.933333pt;}
.y26_c00402{bottom:757.933333pt;}
.y1b_c00402{bottom:761.133333pt;}
.yb_c00402{bottom:762.732000pt;}
.y25_c00402{bottom:786.732000pt;}
.y1a_c00402{bottom:790.532000pt;}
.y19_c00402{bottom:791.532000pt;}
.ya_c00402{bottom:793.133333pt;}
.y9_c00402{bottom:827.666667pt;}
.y31_c00402{bottom:830.198667pt;}
.y8_c00402{bottom:859.666667pt;}
.y4_c00402{bottom:860.333333pt;}
.y6_c00402{bottom:863.532000pt;}
.y7_c00402{bottom:881.732000pt;}
.y5_c00402{bottom:886.266667pt;}
.y3_c00402{bottom:940.266667pt;}
.y2_c00402{bottom:946.732000pt;}
.y1_c00402{bottom:1035.065333pt;}
.h1_c00402{height:26.171875pt;}
.h2_c00402{height:28.453333pt;}
.h6_c00402{height:41.854167pt;}
.ha_c00402{height:47.085938pt;}
.hb_c00402{height:52.343750pt;}
.h3_c00402{height:53.750000pt;}
.h7_c00402{height:57.578125pt;}
.h9_c00402{height:59.125000pt;}
.hc_c00402{height:62.781250pt;}
.h5_c00402{height:62.812500pt;}
.h8_c00402{height:64.500000pt;}
.h4_c00402{height:69.875000pt;}
.h0_c00402{height:1044.000000pt;}
.w0_c00402{width:650.646400pt;}
.w1_c00402{width:650.666667pt;}
.x0_c00402{left:0.000000pt;}
.x28_c00402{left:63.635733pt;}
.x29_c00402{left:64.635733pt;}
.x39_c00402{left:66.569067pt;}
.x3d_c00402{left:68.435733pt;}
.x45_c00402{left:69.435733pt;}
.x13_c00402{left:77.435733pt;}
.xe_c00402{left:79.035733pt;}
.xc_c00402{left:80.635733pt;}
.x6_c00402{left:90.835733pt;}
.x27_c00402{left:93.102400pt;}
.x3e_c00402{left:95.969067pt;}
.x3f_c00402{left:104.635733pt;}
.x10_c00402{left:119.635733pt;}
.x38_c00402{left:123.169067pt;}
.x14_c00402{left:125.102400pt;}
.xf_c00402{left:127.969067pt;}
.x36_c00402{left:131.502400pt;}
.x11_c00402{left:134.035733pt;}
.x12_c00402{left:141.435733pt;}
.x30_c00402{left:143.035733pt;}
.xd_c00402{left:165.102400pt;}
.x2a_c00402{left:184.302400pt;}
.x31_c00402{left:185.902400pt;}
.x3b_c00402{left:202.835733pt;}
.x40_c00402{left:232.302400pt;}
.x42_c00402{left:238.035733pt;}
.x15_c00402{left:239.369067pt;}
.x4_c00402{left:255.635733pt;}
.x2f_c00402{left:261.769067pt;}
.x7_c00402{left:276.435733pt;}
.x1a_c00402{left:288.635733pt;}
.x8_c00402{left:290.235733pt;}
.x17_c00402{left:291.835733pt;}
.x16_c00402{left:297.902400pt;}
.x43_c00402{left:302.035733pt;}
.x26_c00402{left:304.635733pt;}
.x2c_c00402{left:314.569067pt;}
.x19_c00402{left:317.769067pt;}
.x44_c00402{left:340.435733pt;}
.x2b_c00402{left:346.569067pt;}
.x18_c00402{left:351.367733pt;}
.x41_c00402{left:355.502400pt;}
.x37_c00402{left:357.435733pt;}
.x2d_c00402{left:381.102400pt;}
.x32_c00402{left:416.969067pt;}
.x1b_c00402{left:426.235733pt;}
.x33_c00402{left:441.569067pt;}
.x2e_c00402{left:447.035733pt;}
.xa_c00402{left:448.302400pt;}
.x3a_c00402{left:455.035733pt;}
.x9_c00402{left:462.702400pt;}
.x25_c00402{left:474.235733pt;}
.x1e_c00402{left:475.502400pt;}
.x1d_c00402{left:476.435733pt;}
.x1c_c00402{left:477.769067pt;}
.xb_c00402{left:481.235733pt;}
.x34_c00402{left:489.235733pt;}
.x1_c00402{left:500.435733pt;}
.x1f_c00402{left:502.035733pt;}
.x20_c00402{left:503.035733pt;}
.x21_c00402{left:520.969067pt;}
.x22_c00402{left:522.569067pt;}
.x2_c00402{left:525.435733pt;}
.x3_c00402{left:527.369067pt;}
.x23_c00402{left:533.769067pt;}
.x24_c00402{left:535.369067pt;}
.x35_c00402{left:542.702400pt;}
.x3c_c00402{left:564.769067pt;}
.x5_c00402{left:571.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab209e67741dfba68b24db5a.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00403;src:url('chunks/assets/font_124ec98dc10ac30431712460.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00403;src:url('chunks/assets/font_2e3ccdd7721e538ac8d6e113.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00403{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m8_c00403{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2_c00403{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c00403{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00403{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00403{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00403{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00403{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00403{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00403{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00403{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00403{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c00403{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3_c00403{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1_c00403{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.ls0_c00403{letter-spacing:0.000000px;}
.sc__c00403{text-shadow:none;}
.sc0_c00403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00403{-webkit-text-stroke:0px transparent;}
.sc0_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00403{word-spacing:0.000000px;}
.fc0_c00403{color:transparent;}
.fs1_c00403{font-size:54.000000px;}
.fs2_c00403{font-size:66.000000px;}
.fs3_c00403{font-size:72.000000px;}
.fs0_c00403{font-size:78.000000px;}
.y0_c00403{bottom:0.000000px;}
.y1b_c00403{bottom:775.648500px;}
.y1a_c00403{bottom:796.875000px;}
.y19_c00403{bottom:817.723500px;}
.y17_c00403{bottom:838.275000px;}
.y18_c00403{bottom:838.650000px;}
.y16_c00403{bottom:859.198500px;}
.y15_c00403{bottom:879.675000px;}
.y14_c00403{bottom:901.275000px;}
.y13_c00403{bottom:922.875000px;}
.y12_c00403{bottom:942.300000px;}
.y10_c00403{bottom:942.675000px;}
.y11_c00403{bottom:944.473500px;}
.yf_c00403{bottom:963.900000px;}
.ye_c00403{bottom:965.698500px;}
.yd_c00403{bottom:986.625000px;}
.yc_c00403{bottom:1007.848500px;}
.yb_c00403{bottom:1025.098500px;}
.ya_c00403{bottom:1028.400000px;}
.y8_c00403{bottom:1044.525000px;}
.y9_c00403{bottom:1049.550000px;}
.y4_c00403{bottom:1064.698500px;}
.y5_c00403{bottom:1065.823500px;}
.y7_c00403{bottom:1066.198500px;}
.y6_c00403{bottom:1070.098500px;}
.y1_c00403{bottom:1119.073500px;}
.y3_c00403{bottom:1125.900000px;}
.y2_c00403{bottom:1132.948500px;}
.h2_c00403{height:54.421875px;}
.h3_c00403{height:66.515625px;}
.h4_c00403{height:70.664062px;}
.h1_c00403{height:76.514648px;}
.h0_c00403{height:1174.500000px;}
.w0_c00403{width:731.977200px;}
.w1_c00403{width:732.000000px;}
.x0_c00403{left:0.000000px;}
.x14_c00403{left:54.340200px;}
.x13_c00403{left:55.765200px;}
.x12_c00403{left:57.190200px;}
.xf_c00403{left:58.690200px;}
.xd_c00403{left:60.115200px;}
.xc_c00403{left:61.540200px;}
.xb_c00403{left:63.340200px;}
.x8_c00403{left:64.390200px;}
.x1_c00403{left:80.590200px;}
.x4_c00403{left:95.740200px;}
.x2_c00403{left:109.765200px;}
.x5_c00403{left:127.390200px;}
.x10_c00403{left:135.340200px;}
.x9_c00403{left:205.165200px;}
.x6_c00403{left:228.940200px;}
.x3_c00403{left:281.515200px;}
.xe_c00403{left:578.890200px;}
.xa_c00403{left:631.090200px;}
.x11_c00403{left:656.965200px;}
.x7_c00403{left:660.940200px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls0_c00403{letter-spacing:0.000000pt;}
.ws0_c00403{word-spacing:0.000000pt;}
.fs1_c00403{font-size:48.000000pt;}
.fs2_c00403{font-size:58.666667pt;}
.fs3_c00403{font-size:64.000000pt;}
.fs0_c00403{font-size:69.333333pt;}
.y0_c00403{bottom:0.000000pt;}
.y1b_c00403{bottom:689.465333pt;}
.y1a_c00403{bottom:708.333333pt;}
.y19_c00403{bottom:726.865333pt;}
.y17_c00403{bottom:745.133333pt;}
.y18_c00403{bottom:745.466667pt;}
.y16_c00403{bottom:763.732000pt;}
.y15_c00403{bottom:781.933333pt;}
.y14_c00403{bottom:801.133333pt;}
.y13_c00403{bottom:820.333333pt;}
.y12_c00403{bottom:837.600000pt;}
.y10_c00403{bottom:837.933333pt;}
.y11_c00403{bottom:839.532000pt;}
.yf_c00403{bottom:856.800000pt;}
.ye_c00403{bottom:858.398667pt;}
.yd_c00403{bottom:877.000000pt;}
.yc_c00403{bottom:895.865333pt;}
.yb_c00403{bottom:911.198667pt;}
.ya_c00403{bottom:914.133333pt;}
.y8_c00403{bottom:928.466667pt;}
.y9_c00403{bottom:932.933333pt;}
.y4_c00403{bottom:946.398667pt;}
.y5_c00403{bottom:947.398667pt;}
.y7_c00403{bottom:947.732000pt;}
.y6_c00403{bottom:951.198667pt;}
.y1_c00403{bottom:994.732000pt;}
.y3_c00403{bottom:1000.800000pt;}
.y2_c00403{bottom:1007.065333pt;}
.h2_c00403{height:48.375000pt;}
.h3_c00403{height:59.125000pt;}
.h4_c00403{height:62.812500pt;}
.h1_c00403{height:68.013021pt;}
.h0_c00403{height:1044.000000pt;}
.w0_c00403{width:650.646400pt;}
.w1_c00403{width:650.666667pt;}
.x0_c00403{left:0.000000pt;}
.x14_c00403{left:48.302400pt;}
.x13_c00403{left:49.569067pt;}
.x12_c00403{left:50.835733pt;}
.xf_c00403{left:52.169067pt;}
.xd_c00403{left:53.435733pt;}
.xc_c00403{left:54.702400pt;}
.xb_c00403{left:56.302400pt;}
.x8_c00403{left:57.235733pt;}
.x1_c00403{left:71.635733pt;}
.x4_c00403{left:85.102400pt;}
.x2_c00403{left:97.569067pt;}
.x5_c00403{left:113.235733pt;}
.x10_c00403{left:120.302400pt;}
.x9_c00403{left:182.369067pt;}
.x6_c00403{left:203.502400pt;}
.x3_c00403{left:250.235733pt;}
.xe_c00403{left:514.569067pt;}
.xa_c00403{left:560.969067pt;}
.x11_c00403{left:583.969067pt;}
.x7_c00403{left:587.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_767d2ab6f01c44ed0010b312.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00404;src:url('chunks/assets/font_6be6488dfae0019a1638c323.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c00404{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1_c00404{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c00404{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c00404{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c00404{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00404{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c00404{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00404{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00404{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00404{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00404{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00404{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00404{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00404{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00404{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00404{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.v0_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;}
}
.ws0_c00404{word-spacing:0.000000px;}
.fc0_c00404{color:transparent;}
.fs0_c00404{font-size:54.000000px;}
.fs1_c00404{font-size:72.000000px;}
.y0_c00404{bottom:0.000000px;}
.y24_c00404{bottom:87.673500px;}
.y23_c00404{bottom:108.223500px;}
.y22_c00404{bottom:126.898500px;}
.y21_c00404{bottom:148.500000px;}
.y20_c00404{bottom:168.673500px;}
.y1f_c00404{bottom:188.473500px;}
.y1e_c00404{bottom:208.648500px;}
.y1d_c00404{bottom:228.823500px;}
.y1c_c00404{bottom:249.298500px;}
.y1b_c00404{bottom:269.775000px;}
.y1a_c00404{bottom:290.323500px;}
.y19_c00404{bottom:310.875000px;}
.y18_c00404{bottom:331.348500px;}
.y17_c00404{bottom:351.900000px;}
.y16_c00404{bottom:372.750000px;}
.y15_c00404{bottom:393.673500px;}
.y14_c00404{bottom:414.148500px;}
.y13_c00404{bottom:435.073500px;}
.y12_c00404{bottom:456.298500px;}
.y11_c00404{bottom:477.223500px;}
.y10_c00404{bottom:498.375000px;}
.yf_c00404{bottom:519.673500px;}
.ye_c00404{bottom:540.598500px;}
.yd_c00404{bottom:562.125000px;}
.yc_c00404{bottom:582.973500px;}
.yb_c00404{bottom:603.898500px;}
.ya_c00404{bottom:626.625000px;}
.y9_c00404{bottom:645.673500px;}
.y8_c00404{bottom:667.273500px;}
.y7_c00404{bottom:688.500000px;}
.y6_c00404{bottom:709.423500px;}
.y5_c00404{bottom:730.648500px;}
.y4_c00404{bottom:751.500000px;}
.y3_c00404{bottom:806.550000px;}
.y2_c00404{bottom:881.098500px;}
.y26_c00404{bottom:1059.675000px;}
.y1_c00404{bottom:1064.698500px;}
.y25_c00404{bottom:1090.275000px;}
.h1_c00404{height:54.421875px;}
.h2_c00404{height:70.664062px;}
.h0_c00404{height:1174.500000px;}
.w0_c00404{width:731.977200px;}
.w1_c00404{width:732.000000px;}
.x0_c00404{left:0.000000px;}
.x5_c00404{left:57.565200px;}
.x6_c00404{left:59.365200px;}
.x4_c00404{left:89.590200px;}
.x7_c00404{left:91.765200px;}
.x3_c00404{left:207.715200px;}
.x1_c00404{left:271.765200px;}
.x2_c00404{left:358.540200px;}
.x8_c00404{left:614.140200px;}
.x9_c00404{left:623.515200px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls0_c00404{letter-spacing:0.000000pt;}
.ws0_c00404{word-spacing:0.000000pt;}
.fs0_c00404{font-size:48.000000pt;}
.fs1_c00404{font-size:64.000000pt;}
.y0_c00404{bottom:0.000000pt;}
.y24_c00404{bottom:77.932000pt;}
.y23_c00404{bottom:96.198667pt;}
.y22_c00404{bottom:112.798667pt;}
.y21_c00404{bottom:132.000000pt;}
.y20_c00404{bottom:149.932000pt;}
.y1f_c00404{bottom:167.532000pt;}
.y1e_c00404{bottom:185.465333pt;}
.y1d_c00404{bottom:203.398667pt;}
.y1c_c00404{bottom:221.598667pt;}
.y1b_c00404{bottom:239.800000pt;}
.y1a_c00404{bottom:258.065333pt;}
.y19_c00404{bottom:276.333333pt;}
.y18_c00404{bottom:294.532000pt;}
.y17_c00404{bottom:312.800000pt;}
.y16_c00404{bottom:331.333333pt;}
.y15_c00404{bottom:349.932000pt;}
.y14_c00404{bottom:368.132000pt;}
.y13_c00404{bottom:386.732000pt;}
.y12_c00404{bottom:405.598667pt;}
.y11_c00404{bottom:424.198667pt;}
.y10_c00404{bottom:443.000000pt;}
.yf_c00404{bottom:461.932000pt;}
.ye_c00404{bottom:480.532000pt;}
.yd_c00404{bottom:499.666667pt;}
.yc_c00404{bottom:518.198667pt;}
.yb_c00404{bottom:536.798667pt;}
.ya_c00404{bottom:557.000000pt;}
.y9_c00404{bottom:573.932000pt;}
.y8_c00404{bottom:593.132000pt;}
.y7_c00404{bottom:612.000000pt;}
.y6_c00404{bottom:630.598667pt;}
.y5_c00404{bottom:649.465333pt;}
.y4_c00404{bottom:668.000000pt;}
.y3_c00404{bottom:716.933333pt;}
.y2_c00404{bottom:783.198667pt;}
.y26_c00404{bottom:941.933333pt;}
.y1_c00404{bottom:946.398667pt;}
.y25_c00404{bottom:969.133333pt;}
.h1_c00404{height:48.375000pt;}
.h2_c00404{height:62.812500pt;}
.h0_c00404{height:1044.000000pt;}
.w0_c00404{width:650.646400pt;}
.w1_c00404{width:650.666667pt;}
.x0_c00404{left:0.000000pt;}
.x5_c00404{left:51.169067pt;}
.x6_c00404{left:52.769067pt;}
.x4_c00404{left:79.635733pt;}
.x7_c00404{left:81.569067pt;}
.x3_c00404{left:184.635733pt;}
.x1_c00404{left:241.569067pt;}
.x2_c00404{left:318.702400pt;}
.x8_c00404{left:545.902400pt;}
.x9_c00404{left:554.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a734877afabdde78e55bdd24.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m2_c00405{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5_c00405{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c00405{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00405{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00405{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c00405{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00405{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00405{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00405{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00405{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00405{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00405{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00405{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c00405{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00405{color:transparent;}
.fs1_c00405{font-size:60.000000px;}
.fs0_c00405{font-size:72.000000px;}
.y0_c00405{bottom:0.000000px;}
.y2e_c00405{bottom:120.375000px;}
.y2d_c00405{bottom:182.023500px;}
.y2c_c00405{bottom:202.875000px;}
.y2b_c00405{bottom:224.773500px;}
.y2a_c00405{bottom:246.823500px;}
.y29_c00405{bottom:268.423500px;}
.y28_c00405{bottom:290.025000px;}
.y27_c00405{bottom:311.173500px;}
.y26_c00405{bottom:332.473500px;}
.y25_c00405{bottom:353.698500px;}
.y24_c00405{bottom:375.298500px;}
.y23_c00405{bottom:397.275000px;}
.y22_c00405{bottom:418.500000px;}
.y21_c00405{bottom:440.098500px;}
.y20_c00405{bottom:461.698500px;}
.y1f_c00405{bottom:484.723500px;}
.y1e_c00405{bottom:504.598500px;}
.y1d_c00405{bottom:526.125000px;}
.y1c_c00405{bottom:547.723500px;}
.y1b_c00405{bottom:568.648500px;}
.y1a_c00405{bottom:590.548500px;}
.y19_c00405{bottom:612.148500px;}
.y18_c00405{bottom:633.448500px;}
.y17_c00405{bottom:655.048500px;}
.y16_c00405{bottom:676.648500px;}
.y15_c00405{bottom:697.875000px;}
.y14_c00405{bottom:719.473500px;}
.y13_c00405{bottom:740.700000px;}
.y12_c00405{bottom:762.298500px;}
.y11_c00405{bottom:783.898500px;}
.y10_c00405{bottom:805.500000px;}
.yf_c00405{bottom:826.723500px;}
.ye_c00405{bottom:847.275000px;}
.yd_c00405{bottom:868.125000px;}
.yc_c00405{bottom:888.973500px;}
.yb_c00405{bottom:909.525000px;}
.ya_c00405{bottom:931.875000px;}
.y9_c00405{bottom:953.473500px;}
.y8_c00405{bottom:970.348500px;}
.y7_c00405{bottom:995.925000px;}
.y6_c00405{bottom:1016.775000px;}
.y5_c00405{bottom:1037.025000px;}
.y4_c00405{bottom:1057.500000px;}
.y1_c00405{bottom:1104.675000px;}
.y3_c00405{bottom:1114.050000px;}
.y2_c00405{bottom:1119.448500px;}
.h2_c00405{height:58.886719px;}
.h1_c00405{height:70.664062px;}
.h0_c00405{height:1174.500000px;}
.w0_c00405{width:731.977200px;}
.w1_c00405{width:732.000000px;}
.x0_c00405{left:0.000000px;}
.xa_c00405{left:50.740200px;}
.x9_c00405{left:52.540200px;}
.x7_c00405{left:53.590200px;}
.x5_c00405{left:54.715200px;}
.x4_c00405{left:56.140200px;}
.x1_c00405{left:75.938700px;}
.xb_c00405{left:82.765200px;}
.xc_c00405{left:84.188700px;}
.x8_c00405{left:85.313700px;}
.x6_c00405{left:86.365200px;}
.x2_c00405{left:102.940200px;}
.x3_c00405{left:275.365200px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls0_c00405{letter-spacing:0.000000pt;}
.ws0_c00405{word-spacing:0.000000pt;}
.fs1_c00405{font-size:53.333333pt;}
.fs0_c00405{font-size:64.000000pt;}
.y0_c00405{bottom:0.000000pt;}
.y2e_c00405{bottom:107.000000pt;}
.y2d_c00405{bottom:161.798667pt;}
.y2c_c00405{bottom:180.333333pt;}
.y2b_c00405{bottom:199.798667pt;}
.y2a_c00405{bottom:219.398667pt;}
.y29_c00405{bottom:238.598667pt;}
.y28_c00405{bottom:257.800000pt;}
.y27_c00405{bottom:276.598667pt;}
.y26_c00405{bottom:295.532000pt;}
.y25_c00405{bottom:314.398667pt;}
.y24_c00405{bottom:333.598667pt;}
.y23_c00405{bottom:353.133333pt;}
.y22_c00405{bottom:372.000000pt;}
.y21_c00405{bottom:391.198667pt;}
.y20_c00405{bottom:410.398667pt;}
.y1f_c00405{bottom:430.865333pt;}
.y1e_c00405{bottom:448.532000pt;}
.y1d_c00405{bottom:467.666667pt;}
.y1c_c00405{bottom:486.865333pt;}
.y1b_c00405{bottom:505.465333pt;}
.y1a_c00405{bottom:524.932000pt;}
.y19_c00405{bottom:544.132000pt;}
.y18_c00405{bottom:563.065333pt;}
.y17_c00405{bottom:582.265333pt;}
.y16_c00405{bottom:601.465333pt;}
.y15_c00405{bottom:620.333333pt;}
.y14_c00405{bottom:639.532000pt;}
.y13_c00405{bottom:658.400000pt;}
.y12_c00405{bottom:677.598667pt;}
.y11_c00405{bottom:696.798667pt;}
.y10_c00405{bottom:716.000000pt;}
.yf_c00405{bottom:734.865333pt;}
.ye_c00405{bottom:753.133333pt;}
.yd_c00405{bottom:771.666667pt;}
.yc_c00405{bottom:790.198667pt;}
.yb_c00405{bottom:808.466667pt;}
.ya_c00405{bottom:828.333333pt;}
.y9_c00405{bottom:847.532000pt;}
.y8_c00405{bottom:862.532000pt;}
.y7_c00405{bottom:885.266667pt;}
.y6_c00405{bottom:903.800000pt;}
.y5_c00405{bottom:921.800000pt;}
.y4_c00405{bottom:940.000000pt;}
.y1_c00405{bottom:981.933333pt;}
.y3_c00405{bottom:990.266667pt;}
.y2_c00405{bottom:995.065333pt;}
.h2_c00405{height:52.343750pt;}
.h1_c00405{height:62.812500pt;}
.h0_c00405{height:1044.000000pt;}
.w0_c00405{width:650.646400pt;}
.w1_c00405{width:650.666667pt;}
.x0_c00405{left:0.000000pt;}
.xa_c00405{left:45.102400pt;}
.x9_c00405{left:46.702400pt;}
.x7_c00405{left:47.635733pt;}
.x5_c00405{left:48.635733pt;}
.x4_c00405{left:49.902400pt;}
.x1_c00405{left:67.501067pt;}
.xb_c00405{left:73.569067pt;}
.xc_c00405{left:74.834400pt;}
.x8_c00405{left:75.834400pt;}
.x6_c00405{left:76.769067pt;}
.x2_c00405{left:91.502400pt;}
.x3_c00405{left:244.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a4d4be0a9aa32dff8e39330a.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00406;src:url('chunks/assets/font_562b1b771478826dcd560576.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00406{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c00406{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00406{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c00406{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c00406{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c00406{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c00406{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00406{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m0_c00406{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00406{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00406{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00406{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00406{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00406{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00406{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00406{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00406{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00406{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c00406{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c00406{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c00406{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7_c00406{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,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:0.000000px;}
.fc0_c00406{color:transparent;}
.fs0_c00406{font-size:54.000000px;}
.fs2_c00406{font-size:66.000000px;}
.fs1_c00406{font-size:72.000000px;}
.y0_c00406{bottom:0.000000px;}
.y37_c00406{bottom:77.625000px;}
.y38_c00406{bottom:78.673500px;}
.y36_c00406{bottom:103.125000px;}
.y35_c00406{bottom:120.073500px;}
.y34_c00406{bottom:143.473500px;}
.y33_c00406{bottom:161.473500px;}
.y32_c00406{bottom:184.125000px;}
.y31_c00406{bottom:200.023500px;}
.y2e_c00406{bottom:223.048500px;}
.y2f_c00406{bottom:224.473500px;}
.y30_c00406{bottom:226.273500px;}
.y2d_c00406{bottom:243.523500px;}
.y2c_c00406{bottom:263.698500px;}
.y2b_c00406{bottom:283.500000px;}
.y2a_c00406{bottom:304.798500px;}
.y29_c00406{bottom:326.025000px;}
.y28_c00406{bottom:346.500000px;}
.y27_c00406{bottom:367.348500px;}
.y26_c00406{bottom:388.275000px;}
.y25_c00406{bottom:408.448500px;}
.y24_c00406{bottom:429.298500px;}
.y23_c00406{bottom:450.223500px;}
.y21_c00406{bottom:471.073500px;}
.y22_c00406{bottom:471.750000px;}
.y20_c00406{bottom:492.298500px;}
.y1f_c00406{bottom:513.523500px;}
.y1e_c00406{bottom:534.823500px;}
.y1d_c00406{bottom:555.673500px;}
.y1c_c00406{bottom:576.898500px;}
.y1b_c00406{bottom:597.823500px;}
.y1a_c00406{bottom:619.048500px;}
.y19_c00406{bottom:639.898500px;}
.y18_c00406{bottom:661.198500px;}
.y17_c00406{bottom:682.048500px;}
.y16_c00406{bottom:703.648500px;}
.y15_c00406{bottom:724.200000px;}
.y14_c00406{bottom:745.723500px;}
.y13_c00406{bottom:766.648500px;}
.y12_c00406{bottom:787.875000px;}
.y11_c00406{bottom:810.525000px;}
.y10_c00406{bottom:831.073500px;}
.yf_c00406{bottom:852.300000px;}
.ye_c00406{bottom:868.125000px;}
.yd_c00406{bottom:873.525000px;}
.yc_c00406{bottom:893.698500px;}
.yb_c00406{bottom:914.250000px;}
.ya_c00406{bottom:918.525000px;}
.y9_c00406{bottom:930.750000px;}
.y8_c00406{bottom:936.223500px;}
.y7_c00406{bottom:956.698500px;}
.y6_c00406{bottom:982.573500px;}
.y5_c00406{bottom:983.323500px;}
.y4_c00406{bottom:993.000000px;}
.y3_c00406{bottom:999.223500px;}
.y2_c00406{bottom:1052.473500px;}
.y1_c00406{bottom:1057.875000px;}
.h1_c00406{height:54.421875px;}
.h3_c00406{height:64.775391px;}
.h2_c00406{height:70.664062px;}
.h0_c00406{height:1174.500000px;}
.w0_c00406{width:731.977200px;}
.w1_c00406{width:732.000000px;}
.x0_c00406{left:0.000000px;}
.x3_c00406{left:64.090200px;}
.x5_c00406{left:65.140200px;}
.xb_c00406{left:66.565200px;}
.xf_c00406{left:68.365200px;}
.x11_c00406{left:69.490200px;}
.x14_c00406{left:70.540200px;}
.x7_c00406{left:96.790200px;}
.x6_c00406{left:97.915200px;}
.xc_c00406{left:100.390200px;}
.x10_c00406{left:101.515200px;}
.x15_c00406{left:102.565200px;}
.x9_c00406{left:126.340200px;}
.xd_c00406{left:161.290200px;}
.xe_c00406{left:189.340200px;}
.x1_c00406{left:273.190200px;}
.x12_c00406{left:512.965200px;}
.x13_c00406{left:542.890200px;}
.xa_c00406{left:626.365200px;}
.x2_c00406{left:631.090200px;}
.x4_c00406{left:642.190200px;}
.x8_c00406{left:644.365200px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls0_c00406{letter-spacing:0.000000pt;}
.ws0_c00406{word-spacing:0.000000pt;}
.fs0_c00406{font-size:48.000000pt;}
.fs2_c00406{font-size:58.666667pt;}
.fs1_c00406{font-size:64.000000pt;}
.y0_c00406{bottom:0.000000pt;}
.y37_c00406{bottom:69.000000pt;}
.y38_c00406{bottom:69.932000pt;}
.y36_c00406{bottom:91.666667pt;}
.y35_c00406{bottom:106.732000pt;}
.y34_c00406{bottom:127.532000pt;}
.y33_c00406{bottom:143.532000pt;}
.y32_c00406{bottom:163.666667pt;}
.y31_c00406{bottom:177.798667pt;}
.y2e_c00406{bottom:198.265333pt;}
.y2f_c00406{bottom:199.532000pt;}
.y30_c00406{bottom:201.132000pt;}
.y2d_c00406{bottom:216.465333pt;}
.y2c_c00406{bottom:234.398667pt;}
.y2b_c00406{bottom:252.000000pt;}
.y2a_c00406{bottom:270.932000pt;}
.y29_c00406{bottom:289.800000pt;}
.y28_c00406{bottom:308.000000pt;}
.y27_c00406{bottom:326.532000pt;}
.y26_c00406{bottom:345.133333pt;}
.y25_c00406{bottom:363.065333pt;}
.y24_c00406{bottom:381.598667pt;}
.y23_c00406{bottom:400.198667pt;}
.y21_c00406{bottom:418.732000pt;}
.y22_c00406{bottom:419.333333pt;}
.y20_c00406{bottom:437.598667pt;}
.y1f_c00406{bottom:456.465333pt;}
.y1e_c00406{bottom:475.398667pt;}
.y1d_c00406{bottom:493.932000pt;}
.y1c_c00406{bottom:512.798667pt;}
.y1b_c00406{bottom:531.398667pt;}
.y1a_c00406{bottom:550.265333pt;}
.y19_c00406{bottom:568.798667pt;}
.y18_c00406{bottom:587.732000pt;}
.y17_c00406{bottom:606.265333pt;}
.y16_c00406{bottom:625.465333pt;}
.y15_c00406{bottom:643.733333pt;}
.y14_c00406{bottom:662.865333pt;}
.y13_c00406{bottom:681.465333pt;}
.y12_c00406{bottom:700.333333pt;}
.y11_c00406{bottom:720.466667pt;}
.y10_c00406{bottom:738.732000pt;}
.yf_c00406{bottom:757.600000pt;}
.ye_c00406{bottom:771.666667pt;}
.yd_c00406{bottom:776.466667pt;}
.yc_c00406{bottom:794.398667pt;}
.yb_c00406{bottom:812.666667pt;}
.ya_c00406{bottom:816.466667pt;}
.y9_c00406{bottom:827.333333pt;}
.y8_c00406{bottom:832.198667pt;}
.y7_c00406{bottom:850.398667pt;}
.y6_c00406{bottom:873.398667pt;}
.y5_c00406{bottom:874.065333pt;}
.y4_c00406{bottom:882.666667pt;}
.y3_c00406{bottom:888.198667pt;}
.y2_c00406{bottom:935.532000pt;}
.y1_c00406{bottom:940.333333pt;}
.h1_c00406{height:48.375000pt;}
.h3_c00406{height:57.578125pt;}
.h2_c00406{height:62.812500pt;}
.h0_c00406{height:1044.000000pt;}
.w0_c00406{width:650.646400pt;}
.w1_c00406{width:650.666667pt;}
.x0_c00406{left:0.000000pt;}
.x3_c00406{left:56.969067pt;}
.x5_c00406{left:57.902400pt;}
.xb_c00406{left:59.169067pt;}
.xf_c00406{left:60.769067pt;}
.x11_c00406{left:61.769067pt;}
.x14_c00406{left:62.702400pt;}
.x7_c00406{left:86.035733pt;}
.x6_c00406{left:87.035733pt;}
.xc_c00406{left:89.235733pt;}
.x10_c00406{left:90.235733pt;}
.x15_c00406{left:91.169067pt;}
.x9_c00406{left:112.302400pt;}
.xd_c00406{left:143.369067pt;}
.xe_c00406{left:168.302400pt;}
.x1_c00406{left:242.835733pt;}
.x12_c00406{left:455.969067pt;}
.x13_c00406{left:482.569067pt;}
.xa_c00406{left:556.769067pt;}
.x2_c00406{left:560.969067pt;}
.x4_c00406{left:570.835733pt;}
.x8_c00406{left:572.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_92ba0fab2b212b60364c328b.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00407;src:url('chunks/assets/font_c96e1b9d4fc4c9d48ba70c98.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00407{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c00407{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8_c00407{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00407{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00407{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00407{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2_c00407{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00407{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c00407{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00407{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00407{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00407{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00407{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00407{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00407{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00407{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00407{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c00407{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00407{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00407{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c00407{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00407{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00407{color:transparent;}
.fs1_c00407{font-size:54.000000px;}
.fs0_c00407{font-size:66.000000px;}
.fs2_c00407{font-size:72.000000px;}
.fs3_c00407{font-size:78.000000px;}
.y0_c00407{bottom:0.000000px;}
.y3a_c00407{bottom:116.098500px;}
.y39_c00407{bottom:139.500000px;}
.y38_c00407{bottom:158.250000px;}
.y37_c00407{bottom:158.548500px;}
.y35_c00407{bottom:179.098500px;}
.y36_c00407{bottom:179.473500px;}
.y34_c00407{bottom:181.948500px;}
.y32_c00407{bottom:200.698500px;}
.y33_c00407{bottom:201.375000px;}
.y31_c00407{bottom:203.923500px;}
.y30_c00407{bottom:222.973500px;}
.y2f_c00407{bottom:229.875000px;}
.y2e_c00407{bottom:244.948500px;}
.y2d_c00407{bottom:268.348500px;}
.y2c_c00407{bottom:288.525000px;}
.y2b_c00407{bottom:308.400000px;}
.y2a_c00407{bottom:309.375000px;}
.y29_c00407{bottom:313.048500px;}
.y28_c00407{bottom:334.275000px;}
.y27_c00407{bottom:352.573500px;}
.y26_c00407{bottom:357.673500px;}
.y25_c00407{bottom:373.500000px;}
.y24_c00407{bottom:374.250000px;}
.y23_c00407{bottom:396.150000px;}
.y22_c00407{bottom:417.750000px;}
.y21_c00407{bottom:439.348500px;}
.y20_c00407{bottom:462.448500px;}
.y1f_c00407{bottom:482.548500px;}
.y1e_c00407{bottom:503.773500px;}
.y1d_c00407{bottom:526.125000px;}
.y1c_c00407{bottom:546.673500px;}
.y1b_c00407{bottom:567.898500px;}
.y1a_c00407{bottom:589.500000px;}
.y19_c00407{bottom:611.098500px;}
.y18_c00407{bottom:633.073500px;}
.y17_c00407{bottom:654.298500px;}
.y16_c00407{bottom:675.898500px;}
.y15_c00407{bottom:697.500000px;}
.y14_c00407{bottom:718.723500px;}
.y13_c00407{bottom:739.273500px;}
.y12_c00407{bottom:761.173500px;}
.y11_c00407{bottom:783.523500px;}
.y10_c00407{bottom:805.500000px;}
.yf_c00407{bottom:826.425000px;}
.ye_c00407{bottom:847.573500px;}
.yd_c00407{bottom:864.223500px;}
.yc_c00407{bottom:888.675000px;}
.yb_c00407{bottom:910.275000px;}
.ya_c00407{bottom:932.250000px;}
.y9_c00407{bottom:950.925000px;}
.y8_c00407{bottom:974.323500px;}
.y7_c00407{bottom:996.300000px;}
.y6_c00407{bottom:1017.150000px;}
.y5_c00407{bottom:1037.698500px;}
.y4_c00407{bottom:1057.800000px;}
.y1_c00407{bottom:1104.300000px;}
.y3_c00407{bottom:1113.973500px;}
.y2_c00407{bottom:1119.073500px;}
.h2_c00407{height:54.421875px;}
.h1_c00407{height:66.515625px;}
.h3_c00407{height:70.664062px;}
.h4_c00407{height:78.609375px;}
.h0_c00407{height:1174.500000px;}
.w0_c00407{width:731.977200px;}
.w1_c00407{width:732.000000px;}
.x0_c00407{left:0.000000px;}
.xc_c00407{left:41.740200px;}
.xa_c00407{left:43.165200px;}
.x9_c00407{left:44.590200px;}
.x7_c00407{left:46.090200px;}
.x6_c00407{left:47.890200px;}
.x5_c00407{left:48.940200px;}
.x12_c00407{left:62.590200px;}
.x1a_c00407{left:64.765200px;}
.x1_c00407{left:67.990200px;}
.xd_c00407{left:72.340200px;}
.xb_c00407{left:74.140200px;}
.x8_c00407{left:75.563700px;}
.x4_c00407{left:78.790200px;}
.xf_c00407{left:83.140200px;}
.x14_c00407{left:89.590200px;}
.x2_c00407{left:97.165200px;}
.x10_c00407{left:215.965200px;}
.x3_c00407{left:267.490200px;}
.x15_c00407{left:381.565200px;}
.x17_c00407{left:409.315200px;}
.x18_c00407{left:438.115200px;}
.x11_c00407{left:563.740200px;}
.x16_c00407{left:584.590200px;}
.xe_c00407{left:631.390200px;}
.x13_c00407{left:636.490200px;}
.x19_c00407{left:638.290200px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls0_c00407{letter-spacing:0.000000pt;}
.ws0_c00407{word-spacing:0.000000pt;}
.fs1_c00407{font-size:48.000000pt;}
.fs0_c00407{font-size:58.666667pt;}
.fs2_c00407{font-size:64.000000pt;}
.fs3_c00407{font-size:69.333333pt;}
.y0_c00407{bottom:0.000000pt;}
.y3a_c00407{bottom:103.198667pt;}
.y39_c00407{bottom:124.000000pt;}
.y38_c00407{bottom:140.666667pt;}
.y37_c00407{bottom:140.932000pt;}
.y35_c00407{bottom:159.198667pt;}
.y36_c00407{bottom:159.532000pt;}
.y34_c00407{bottom:161.732000pt;}
.y32_c00407{bottom:178.398667pt;}
.y33_c00407{bottom:179.000000pt;}
.y31_c00407{bottom:181.265333pt;}
.y30_c00407{bottom:198.198667pt;}
.y2f_c00407{bottom:204.333333pt;}
.y2e_c00407{bottom:217.732000pt;}
.y2d_c00407{bottom:238.532000pt;}
.y2c_c00407{bottom:256.466667pt;}
.y2b_c00407{bottom:274.133333pt;}
.y2a_c00407{bottom:275.000000pt;}
.y29_c00407{bottom:278.265333pt;}
.y28_c00407{bottom:297.133333pt;}
.y27_c00407{bottom:313.398667pt;}
.y26_c00407{bottom:317.932000pt;}
.y25_c00407{bottom:332.000000pt;}
.y24_c00407{bottom:332.666667pt;}
.y23_c00407{bottom:352.133333pt;}
.y22_c00407{bottom:371.333333pt;}
.y21_c00407{bottom:390.532000pt;}
.y20_c00407{bottom:411.065333pt;}
.y1f_c00407{bottom:428.932000pt;}
.y1e_c00407{bottom:447.798667pt;}
.y1d_c00407{bottom:467.666667pt;}
.y1c_c00407{bottom:485.932000pt;}
.y1b_c00407{bottom:504.798667pt;}
.y1a_c00407{bottom:524.000000pt;}
.y19_c00407{bottom:543.198667pt;}
.y18_c00407{bottom:562.732000pt;}
.y17_c00407{bottom:581.598667pt;}
.y16_c00407{bottom:600.798667pt;}
.y15_c00407{bottom:620.000000pt;}
.y14_c00407{bottom:638.865333pt;}
.y13_c00407{bottom:657.132000pt;}
.y12_c00407{bottom:676.598667pt;}
.y11_c00407{bottom:696.465333pt;}
.y10_c00407{bottom:716.000000pt;}
.yf_c00407{bottom:734.600000pt;}
.ye_c00407{bottom:753.398667pt;}
.yd_c00407{bottom:768.198667pt;}
.yc_c00407{bottom:789.933333pt;}
.yb_c00407{bottom:809.133333pt;}
.ya_c00407{bottom:828.666667pt;}
.y9_c00407{bottom:845.266667pt;}
.y8_c00407{bottom:866.065333pt;}
.y7_c00407{bottom:885.600000pt;}
.y6_c00407{bottom:904.133333pt;}
.y5_c00407{bottom:922.398667pt;}
.y4_c00407{bottom:940.266667pt;}
.y1_c00407{bottom:981.600000pt;}
.y3_c00407{bottom:990.198667pt;}
.y2_c00407{bottom:994.732000pt;}
.h2_c00407{height:48.375000pt;}
.h1_c00407{height:59.125000pt;}
.h3_c00407{height:62.812500pt;}
.h4_c00407{height:69.875000pt;}
.h0_c00407{height:1044.000000pt;}
.w0_c00407{width:650.646400pt;}
.w1_c00407{width:650.666667pt;}
.x0_c00407{left:0.000000pt;}
.xc_c00407{left:37.102400pt;}
.xa_c00407{left:38.369067pt;}
.x9_c00407{left:39.635733pt;}
.x7_c00407{left:40.969067pt;}
.x6_c00407{left:42.569067pt;}
.x5_c00407{left:43.502400pt;}
.x12_c00407{left:55.635733pt;}
.x1a_c00407{left:57.569067pt;}
.x1_c00407{left:60.435733pt;}
.xd_c00407{left:64.302400pt;}
.xb_c00407{left:65.902400pt;}
.x8_c00407{left:67.167733pt;}
.x4_c00407{left:70.035733pt;}
.xf_c00407{left:73.902400pt;}
.x14_c00407{left:79.635733pt;}
.x2_c00407{left:86.369067pt;}
.x10_c00407{left:191.969067pt;}
.x3_c00407{left:237.769067pt;}
.x15_c00407{left:339.169067pt;}
.x17_c00407{left:363.835733pt;}
.x18_c00407{left:389.435733pt;}
.x11_c00407{left:501.102400pt;}
.x16_c00407{left:519.635733pt;}
.xe_c00407{left:561.235733pt;}
.x13_c00407{left:565.769067pt;}
.x19_c00407{left:567.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_23117849caa5e16b54a8805d.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00408;src:url('chunks/assets/font_76946c4c0a74eb62548df3f4.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00408{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me_c00408{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00408{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m6_c00408{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10_c00408{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf_c00408{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00408{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c00408{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00408{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00408{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00408{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00408{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00408{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00408{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00408{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c00408{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1_c00408{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.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;}
}
.ws0_c00408{word-spacing:0.000000px;}
.fc0_c00408{color:transparent;}
.fs0_c00408{font-size:60.000000px;}
.fs1_c00408{font-size:72.000000px;}
.y0_c00408{bottom:0.000000px;}
.y35_c00408{bottom:85.798500px;}
.y32_c00408{bottom:106.798500px;}
.y33_c00408{bottom:110.323500px;}
.y34_c00408{bottom:111.073500px;}
.y31_c00408{bottom:127.273500px;}
.y30_c00408{bottom:150.298500px;}
.y2f_c00408{bottom:169.723500px;}
.y2e_c00408{bottom:189.523500px;}
.y2d_c00408{bottom:209.698500px;}
.y2c_c00408{bottom:228.073500px;}
.y2b_c00408{bottom:249.673500px;}
.y2a_c00408{bottom:270.223500px;}
.y29_c00408{bottom:291.073500px;}
.y28_c00408{bottom:309.448500px;}
.y27_c00408{bottom:332.098500px;}
.y26_c00408{bottom:352.948500px;}
.y25_c00408{bottom:373.500000px;}
.y24_c00408{bottom:394.048500px;}
.y23_c00408{bottom:414.898500px;}
.y22_c00408{bottom:435.448500px;}
.y21_c00408{bottom:455.923500px;}
.y20_c00408{bottom:476.473500px;}
.y1f_c00408{bottom:477.223500px;}
.y1e_c00408{bottom:498.448500px;}
.y1d_c00408{bottom:519.298500px;}
.y1c_c00408{bottom:540.223500px;}
.y1b_c00408{bottom:561.375000px;}
.y1a_c00408{bottom:582.673500px;}
.y19_c00408{bottom:603.598500px;}
.y18_c00408{bottom:624.823500px;}
.y17_c00408{bottom:646.048500px;}
.y16_c00408{bottom:667.273500px;}
.y15_c00408{bottom:688.500000px;}
.y14_c00408{bottom:709.723500px;}
.y13_c00408{bottom:730.575000px;}
.y12_c00408{bottom:752.548500px;}
.y11_c00408{bottom:773.098500px;}
.y10_c00408{bottom:794.698500px;}
.yf_c00408{bottom:815.625000px;}
.ye_c00408{bottom:837.150000px;}
.yd_c00408{bottom:859.125000px;}
.yc_c00408{bottom:879.300000px;}
.yb_c00408{bottom:899.848500px;}
.ya_c00408{bottom:921.448500px;}
.y9_c00408{bottom:942.300000px;}
.y8_c00408{bottom:963.223500px;}
.y7_c00408{bottom:977.550000px;}
.y6_c00408{bottom:985.125000px;}
.y5_c00408{bottom:1005.000000px;}
.y4_c00408{bottom:1008.900000px;}
.y3_c00408{bottom:1058.550000px;}
.y2_c00408{bottom:1062.525000px;}
.y1_c00408{bottom:1064.400000px;}
.h1_c00408{height:60.468750px;}
.h3_c00408{height:70.664062px;}
.h2_c00408{height:72.562500px;}
.h0_c00408{height:1174.500000px;}
.w0_c00408{width:731.977200px;}
.w1_c00408{width:732.000000px;}
.x0_c00408{left:0.000000px;}
.x4_c00408{left:62.290200px;}
.x6_c00408{left:64.090200px;}
.xb_c00408{left:65.140200px;}
.xc_c00408{left:66.190200px;}
.xe_c00408{left:67.315200px;}
.xf_c00408{left:68.365200px;}
.x10_c00408{left:69.490200px;}
.x12_c00408{left:70.915200px;}
.x13_c00408{left:71.965200px;}
.x8_c00408{left:85.313700px;}
.x9_c00408{left:96.790200px;}
.xa_c00408{left:97.915200px;}
.x11_c00408{left:101.890200px;}
.x14_c00408{left:104.740200px;}
.x5_c00408{left:161.590200px;}
.x1_c00408{left:276.790200px;}
.x15_c00408{left:416.515200px;}
.x16_c00408{left:443.140200px;}
.x2_c00408{left:470.140200px;}
.x3_c00408{left:630.715200px;}
.xd_c00408{left:651.940200px;}
.x7_c00408{left:660.565200px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls0_c00408{letter-spacing:0.000000pt;}
.ws0_c00408{word-spacing:0.000000pt;}
.fs0_c00408{font-size:53.333333pt;}
.fs1_c00408{font-size:64.000000pt;}
.y0_c00408{bottom:0.000000pt;}
.y35_c00408{bottom:76.265333pt;}
.y32_c00408{bottom:94.932000pt;}
.y33_c00408{bottom:98.065333pt;}
.y34_c00408{bottom:98.732000pt;}
.y31_c00408{bottom:113.132000pt;}
.y30_c00408{bottom:133.598667pt;}
.y2f_c00408{bottom:150.865333pt;}
.y2e_c00408{bottom:168.465333pt;}
.y2d_c00408{bottom:186.398667pt;}
.y2c_c00408{bottom:202.732000pt;}
.y2b_c00408{bottom:221.932000pt;}
.y2a_c00408{bottom:240.198667pt;}
.y29_c00408{bottom:258.732000pt;}
.y28_c00408{bottom:275.065333pt;}
.y27_c00408{bottom:295.198667pt;}
.y26_c00408{bottom:313.732000pt;}
.y25_c00408{bottom:332.000000pt;}
.y24_c00408{bottom:350.265333pt;}
.y23_c00408{bottom:368.798667pt;}
.y22_c00408{bottom:387.065333pt;}
.y21_c00408{bottom:405.265333pt;}
.y20_c00408{bottom:423.532000pt;}
.y1f_c00408{bottom:424.198667pt;}
.y1e_c00408{bottom:443.065333pt;}
.y1d_c00408{bottom:461.598667pt;}
.y1c_c00408{bottom:480.198667pt;}
.y1b_c00408{bottom:499.000000pt;}
.y1a_c00408{bottom:517.932000pt;}
.y19_c00408{bottom:536.532000pt;}
.y18_c00408{bottom:555.398667pt;}
.y17_c00408{bottom:574.265333pt;}
.y16_c00408{bottom:593.132000pt;}
.y15_c00408{bottom:612.000000pt;}
.y14_c00408{bottom:630.865333pt;}
.y13_c00408{bottom:649.400000pt;}
.y12_c00408{bottom:668.932000pt;}
.y11_c00408{bottom:687.198667pt;}
.y10_c00408{bottom:706.398667pt;}
.yf_c00408{bottom:725.000000pt;}
.ye_c00408{bottom:744.133333pt;}
.yd_c00408{bottom:763.666667pt;}
.yc_c00408{bottom:781.600000pt;}
.yb_c00408{bottom:799.865333pt;}
.ya_c00408{bottom:819.065333pt;}
.y9_c00408{bottom:837.600000pt;}
.y8_c00408{bottom:856.198667pt;}
.y7_c00408{bottom:868.933333pt;}
.y6_c00408{bottom:875.666667pt;}
.y5_c00408{bottom:893.333333pt;}
.y4_c00408{bottom:896.800000pt;}
.y3_c00408{bottom:940.933333pt;}
.y2_c00408{bottom:944.466667pt;}
.y1_c00408{bottom:946.133333pt;}
.h1_c00408{height:53.750000pt;}
.h3_c00408{height:62.812500pt;}
.h2_c00408{height:64.500000pt;}
.h0_c00408{height:1044.000000pt;}
.w0_c00408{width:650.646400pt;}
.w1_c00408{width:650.666667pt;}
.x0_c00408{left:0.000000pt;}
.x4_c00408{left:55.369067pt;}
.x6_c00408{left:56.969067pt;}
.xb_c00408{left:57.902400pt;}
.xc_c00408{left:58.835733pt;}
.xe_c00408{left:59.835733pt;}
.xf_c00408{left:60.769067pt;}
.x10_c00408{left:61.769067pt;}
.x12_c00408{left:63.035733pt;}
.x13_c00408{left:63.969067pt;}
.x8_c00408{left:75.834400pt;}
.x9_c00408{left:86.035733pt;}
.xa_c00408{left:87.035733pt;}
.x11_c00408{left:90.569067pt;}
.x14_c00408{left:93.102400pt;}
.x5_c00408{left:143.635733pt;}
.x1_c00408{left:246.035733pt;}
.x15_c00408{left:370.235733pt;}
.x16_c00408{left:393.902400pt;}
.x2_c00408{left:417.902400pt;}
.x3_c00408{left:560.635733pt;}
.xd_c00408{left:579.502400pt;}
.x7_c00408{left:587.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1be63f2e8e14b84eb28ab03c.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00409;src:url('chunks/assets/font_aec81808023f713e5e6ba7c9.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00409;src:url('chunks/assets/font_8cad08fcbe960fd64296cf20.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c00409{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5_c00409{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m14_c00409{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m16_c00409{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00409{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c00409{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00409{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12_c00409{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00409{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c00409{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c00409{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00409{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00409{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00409{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00409{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00409{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00409{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md_c00409{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00409{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00409{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00409{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00409{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c00409{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00409{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00409{color:transparent;}
.fs1_c00409{font-size:60.000000px;}
.fs0_c00409{font-size:66.000000px;}
.fs2_c00409{font-size:72.000000px;}
.fs3_c00409{font-size:78.000000px;}
.y0_c00409{bottom:0.000000px;}
.y38_c00409{bottom:122.548500px;}
.y37_c00409{bottom:126.598500px;}
.y35_c00409{bottom:138.823500px;}
.y34_c00409{bottom:139.125000px;}
.y36_c00409{bottom:139.875000px;}
.y33_c00409{bottom:142.723500px;}
.y32_c00409{bottom:215.098500px;}
.y31_c00409{bottom:231.673500px;}
.y30_c00409{bottom:278.098500px;}
.y2e_c00409{bottom:296.098500px;}
.y2d_c00409{bottom:296.775000px;}
.y2f_c00409{bottom:296.848500px;}
.y2b_c00409{bottom:317.323500px;}
.y2c_c00409{bottom:317.698500px;}
.y2a_c00409{bottom:318.375000px;}
.y29_c00409{bottom:340.423500px;}
.y28_c00409{bottom:360.900000px;}
.y27_c00409{bottom:382.500000px;}
.y26_c00409{bottom:404.098500px;}
.y25_c00409{bottom:426.073500px;}
.y24_c00409{bottom:448.048500px;}
.y23_c00409{bottom:469.273500px;}
.y22_c00409{bottom:490.875000px;}
.y21_c00409{bottom:512.473500px;}
.y20_c00409{bottom:533.698500px;}
.y1f_c00409{bottom:555.298500px;}
.y1e_c00409{bottom:576.223500px;}
.y1d_c00409{bottom:598.125000px;}
.y1c_c00409{bottom:619.723500px;}
.y1b_c00409{bottom:641.323500px;}
.y1a_c00409{bottom:663.298500px;}
.y19_c00409{bottom:684.523500px;}
.y18_c00409{bottom:705.823500px;}
.y17_c00409{bottom:727.348500px;}
.y16_c00409{bottom:749.023500px;}
.y15_c00409{bottom:770.925000px;}
.y14_c00409{bottom:792.150000px;}
.y13_c00409{bottom:813.448500px;}
.y12_c00409{bottom:834.675000px;}
.y11_c00409{bottom:855.900000px;}
.y10_c00409{bottom:876.073500px;}
.yf_c00409{bottom:897.300000px;}
.ye_c00409{bottom:918.900000px;}
.yd_c00409{bottom:940.125000px;}
.yb_c00409{bottom:961.050000px;}
.yc_c00409{bottom:963.525000px;}
.ya_c00409{bottom:983.323500px;}
.y9_c00409{bottom:995.250000px;}
.y8_c00409{bottom:1024.723500px;}
.y5_c00409{bottom:1036.650000px;}
.y6_c00409{bottom:1039.125000px;}
.y7_c00409{bottom:1046.025000px;}
.y4_c00409{bottom:1065.750000px;}
.y1_c00409{bottom:1111.875000px;}
.y3_c00409{bottom:1121.925000px;}
.y2_c00409{bottom:1127.025000px;}
.h2_c00409{height:58.886719px;}
.h1_c00409{height:64.775391px;}
.h5_c00409{height:70.628906px;}
.h3_c00409{height:70.664062px;}
.h4_c00409{height:72.562500px;}
.h6_c00409{height:76.514648px;}
.h0_c00409{height:1174.500000px;}
.w0_c00409{width:731.977200px;}
.w1_c00409{width:732.000000px;}
.x0_c00409{left:0.000000px;}
.x15_c00409{left:44.290200px;}
.x10_c00409{left:45.340200px;}
.xe_c00409{left:46.390200px;}
.xd_c00409{left:48.190200px;}
.xc_c00409{left:49.690200px;}
.x8_c00409{left:51.790200px;}
.x5_c00409{left:52.915200px;}
.x16_c00409{left:64.090200px;}
.x1_c00409{left:74.890200px;}
.xf_c00409{left:76.313700px;}
.x9_c00409{left:80.590200px;}
.x4_c00409{left:83.890200px;}
.x2_c00409{left:102.190200px;}
.x6_c00409{left:165.565200px;}
.x7_c00409{left:173.513700px;}
.x3_c00409{left:274.990200px;}
.x1a_c00409{left:314.965200px;}
.x17_c00409{left:344.515200px;}
.xa_c00409{left:517.990200px;}
.x18_c00409{left:539.965200px;}
.xb_c00409{left:556.540200px;}
.x11_c00409{left:607.690200px;}
.x19_c00409{left:612.715200px;}
.x13_c00409{left:615.565200px;}
.x12_c00409{left:627.790200px;}
.x14_c00409{left:637.915200px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls0_c00409{letter-spacing:0.000000pt;}
.ws0_c00409{word-spacing:0.000000pt;}
.fs1_c00409{font-size:53.333333pt;}
.fs0_c00409{font-size:58.666667pt;}
.fs2_c00409{font-size:64.000000pt;}
.fs3_c00409{font-size:69.333333pt;}
.y0_c00409{bottom:0.000000pt;}
.y38_c00409{bottom:108.932000pt;}
.y37_c00409{bottom:112.532000pt;}
.y35_c00409{bottom:123.398667pt;}
.y34_c00409{bottom:123.666667pt;}
.y36_c00409{bottom:124.333333pt;}
.y33_c00409{bottom:126.865333pt;}
.y32_c00409{bottom:191.198667pt;}
.y31_c00409{bottom:205.932000pt;}
.y30_c00409{bottom:247.198667pt;}
.y2e_c00409{bottom:263.198667pt;}
.y2d_c00409{bottom:263.800000pt;}
.y2f_c00409{bottom:263.865333pt;}
.y2b_c00409{bottom:282.065333pt;}
.y2c_c00409{bottom:282.398667pt;}
.y2a_c00409{bottom:283.000000pt;}
.y29_c00409{bottom:302.598667pt;}
.y28_c00409{bottom:320.800000pt;}
.y27_c00409{bottom:340.000000pt;}
.y26_c00409{bottom:359.198667pt;}
.y25_c00409{bottom:378.732000pt;}
.y24_c00409{bottom:398.265333pt;}
.y23_c00409{bottom:417.132000pt;}
.y22_c00409{bottom:436.333333pt;}
.y21_c00409{bottom:455.532000pt;}
.y20_c00409{bottom:474.398667pt;}
.y1f_c00409{bottom:493.598667pt;}
.y1e_c00409{bottom:512.198667pt;}
.y1d_c00409{bottom:531.666667pt;}
.y1c_c00409{bottom:550.865333pt;}
.y1b_c00409{bottom:570.065333pt;}
.y1a_c00409{bottom:589.598667pt;}
.y19_c00409{bottom:608.465333pt;}
.y18_c00409{bottom:627.398667pt;}
.y17_c00409{bottom:646.532000pt;}
.y16_c00409{bottom:665.798667pt;}
.y15_c00409{bottom:685.266667pt;}
.y14_c00409{bottom:704.133333pt;}
.y13_c00409{bottom:723.065333pt;}
.y12_c00409{bottom:741.933333pt;}
.y11_c00409{bottom:760.800000pt;}
.y10_c00409{bottom:778.732000pt;}
.yf_c00409{bottom:797.600000pt;}
.ye_c00409{bottom:816.800000pt;}
.yd_c00409{bottom:835.666667pt;}
.yb_c00409{bottom:854.266667pt;}
.yc_c00409{bottom:856.466667pt;}
.ya_c00409{bottom:874.065333pt;}
.y9_c00409{bottom:884.666667pt;}
.y8_c00409{bottom:910.865333pt;}
.y5_c00409{bottom:921.466667pt;}
.y6_c00409{bottom:923.666667pt;}
.y7_c00409{bottom:929.800000pt;}
.y4_c00409{bottom:947.333333pt;}
.y1_c00409{bottom:988.333333pt;}
.y3_c00409{bottom:997.266667pt;}
.y2_c00409{bottom:1001.800000pt;}
.h2_c00409{height:52.343750pt;}
.h1_c00409{height:57.578125pt;}
.h5_c00409{height:62.781250pt;}
.h3_c00409{height:62.812500pt;}
.h4_c00409{height:64.500000pt;}
.h6_c00409{height:68.013021pt;}
.h0_c00409{height:1044.000000pt;}
.w0_c00409{width:650.646400pt;}
.w1_c00409{width:650.666667pt;}
.x0_c00409{left:0.000000pt;}
.x15_c00409{left:39.369067pt;}
.x10_c00409{left:40.302400pt;}
.xe_c00409{left:41.235733pt;}
.xd_c00409{left:42.835733pt;}
.xc_c00409{left:44.169067pt;}
.x8_c00409{left:46.035733pt;}
.x5_c00409{left:47.035733pt;}
.x16_c00409{left:56.969067pt;}
.x1_c00409{left:66.569067pt;}
.xf_c00409{left:67.834400pt;}
.x9_c00409{left:71.635733pt;}
.x4_c00409{left:74.569067pt;}
.x2_c00409{left:90.835733pt;}
.x6_c00409{left:147.169067pt;}
.x7_c00409{left:154.234400pt;}
.x3_c00409{left:244.435733pt;}
.x1a_c00409{left:279.969067pt;}
.x17_c00409{left:306.235733pt;}
.xa_c00409{left:460.435733pt;}
.x18_c00409{left:479.969067pt;}
.xb_c00409{left:494.702400pt;}
.x11_c00409{left:540.169067pt;}
.x19_c00409{left:544.635733pt;}
.x13_c00409{left:547.169067pt;}
.x12_c00409{left:558.035733pt;}
.x14_c00409{left:567.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d933beb4cfc242b9f38ed4c6.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00410;src:url('chunks/assets/font_694c5dd593913cd40e119928.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00410;src:url('chunks/assets/font_48b63409752a03c355afc6ff.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00410{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m4_c00410{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m13_c00410{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00410{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5_c00410{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00410{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00410{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00410{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00410{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00410{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00410{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c00410{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00410{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00410{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00410{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00410{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c00410{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00410{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00410{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00410{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00410{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00410{vertical-align:0.000000px;}
.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;}
}
.ws0_c00410{word-spacing:0.000000px;}
.fc0_c00410{color:transparent;}
.fs0_c00410{font-size:54.000000px;}
.fs1_c00410{font-size:72.000000px;}
.y0_c00410{bottom:0.000000px;}
.y34_c00410{bottom:88.723500px;}
.y33_c00410{bottom:110.698500px;}
.y32_c00410{bottom:131.173500px;}
.y31_c00410{bottom:151.348500px;}
.y30_c00410{bottom:171.148500px;}
.y2f_c00410{bottom:191.398500px;}
.y2e_c00410{bottom:211.500000px;}
.y2d_c00410{bottom:230.625000px;}
.y2b_c00410{bottom:251.848500px;}
.y2c_c00410{bottom:252.898500px;}
.y2a_c00410{bottom:272.025000px;}
.y29_c00410{bottom:292.125000px;}
.y28_c00410{bottom:313.348500px;}
.y27_c00410{bottom:334.275000px;}
.y26_c00410{bottom:355.125000px;}
.y25_c00410{bottom:376.048500px;}
.y24_c00410{bottom:396.525000px;}
.y23_c00410{bottom:416.698500px;}
.y22_c00410{bottom:437.923500px;}
.y21_c00410{bottom:458.848500px;}
.y20_c00410{bottom:480.073500px;}
.y1f_c00410{bottom:500.923500px;}
.y1e_c00410{bottom:522.523500px;}
.y1d_c00410{bottom:543.448500px;}
.y1c_c00410{bottom:564.673500px;}
.y1b_c00410{bottom:585.898500px;}
.y1a_c00410{bottom:606.448500px;}
.y19_c00410{bottom:607.125000px;}
.y18_c00410{bottom:607.500000px;}
.y17_c00410{bottom:628.048500px;}
.y16_c00410{bottom:649.273500px;}
.y15_c00410{bottom:670.500000px;}
.y14_c00410{bottom:691.798500px;}
.y13_c00410{bottom:713.398500px;}
.y12_c00410{bottom:733.500000px;}
.y11_c00410{bottom:755.473500px;}
.y10_c00410{bottom:777.073500px;}
.yf_c00410{bottom:797.925000px;}
.ye_c00410{bottom:819.525000px;}
.yd_c00410{bottom:840.823500px;}
.yc_c00410{bottom:862.425000px;}
.yb_c00410{bottom:883.275000px;}
.ya_c00410{bottom:904.125000px;}
.y9_c00410{bottom:925.348500px;}
.y8_c00410{bottom:945.900000px;}
.y7_c00410{bottom:967.500000px;}
.y6_c00410{bottom:988.723500px;}
.y5_c00410{bottom:1009.275000px;}
.y4_c00410{bottom:1064.323500px;}
.y3_c00410{bottom:1067.550000px;}
.y2_c00410{bottom:1068.675000px;}
.y1_c00410{bottom:1069.348500px;}
.h2_c00410{height:52.998047px;}
.h1_c00410{height:54.421875px;}
.h5_c00410{height:70.628906px;}
.h4_c00410{height:70.664062px;}
.h3_c00410{height:72.562500px;}
.h0_c00410{height:1174.500000px;}
.w0_c00410{width:731.977200px;}
.w1_c00410{width:732.000000px;}
.x0_c00410{left:0.000000px;}
.xa_c00410{left:58.690200px;}
.x9_c00410{left:59.740200px;}
.x7_c00410{left:61.165200px;}
.xe_c00410{left:62.590200px;}
.xf_c00410{left:64.090200px;}
.x12_c00410{left:66.190200px;}
.x13_c00410{left:67.315200px;}
.x14_c00410{left:68.740200px;}
.x8_c00410{left:71.965200px;}
.xd_c00410{left:91.390200px;}
.x6_c00410{left:93.188700px;}
.x10_c00410{left:96.490200px;}
.x1_c00410{left:272.140200px;}
.xb_c00410{left:316.765200px;}
.xc_c00410{left:388.765200px;}
.x2_c00410{left:399.190200px;}
.x3_c00410{left:405.715200px;}
.x4_c00410{left:466.540200px;}
.x11_c00410{left:619.540200px;}
.x5_c00410{left:627.790200px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls0_c00410{letter-spacing:0.000000pt;}
.ws0_c00410{word-spacing:0.000000pt;}
.fs0_c00410{font-size:48.000000pt;}
.fs1_c00410{font-size:64.000000pt;}
.y0_c00410{bottom:0.000000pt;}
.y34_c00410{bottom:78.865333pt;}
.y33_c00410{bottom:98.398667pt;}
.y32_c00410{bottom:116.598667pt;}
.y31_c00410{bottom:134.532000pt;}
.y30_c00410{bottom:152.132000pt;}
.y2f_c00410{bottom:170.132000pt;}
.y2e_c00410{bottom:188.000000pt;}
.y2d_c00410{bottom:205.000000pt;}
.y2b_c00410{bottom:223.865333pt;}
.y2c_c00410{bottom:224.798667pt;}
.y2a_c00410{bottom:241.800000pt;}
.y29_c00410{bottom:259.666667pt;}
.y28_c00410{bottom:278.532000pt;}
.y27_c00410{bottom:297.133333pt;}
.y26_c00410{bottom:315.666667pt;}
.y25_c00410{bottom:334.265333pt;}
.y24_c00410{bottom:352.466667pt;}
.y23_c00410{bottom:370.398667pt;}
.y22_c00410{bottom:389.265333pt;}
.y21_c00410{bottom:407.865333pt;}
.y20_c00410{bottom:426.732000pt;}
.y1f_c00410{bottom:445.265333pt;}
.y1e_c00410{bottom:464.465333pt;}
.y1d_c00410{bottom:483.065333pt;}
.y1c_c00410{bottom:501.932000pt;}
.y1b_c00410{bottom:520.798667pt;}
.y1a_c00410{bottom:539.065333pt;}
.y19_c00410{bottom:539.666667pt;}
.y18_c00410{bottom:540.000000pt;}
.y17_c00410{bottom:558.265333pt;}
.y16_c00410{bottom:577.132000pt;}
.y15_c00410{bottom:596.000000pt;}
.y14_c00410{bottom:614.932000pt;}
.y13_c00410{bottom:634.132000pt;}
.y12_c00410{bottom:652.000000pt;}
.y11_c00410{bottom:671.532000pt;}
.y10_c00410{bottom:690.732000pt;}
.yf_c00410{bottom:709.266667pt;}
.ye_c00410{bottom:728.466667pt;}
.yd_c00410{bottom:747.398667pt;}
.yc_c00410{bottom:766.600000pt;}
.yb_c00410{bottom:785.133333pt;}
.ya_c00410{bottom:803.666667pt;}
.y9_c00410{bottom:822.532000pt;}
.y8_c00410{bottom:840.800000pt;}
.y7_c00410{bottom:860.000000pt;}
.y6_c00410{bottom:878.865333pt;}
.y5_c00410{bottom:897.133333pt;}
.y4_c00410{bottom:946.065333pt;}
.y3_c00410{bottom:948.933333pt;}
.y2_c00410{bottom:949.933333pt;}
.y1_c00410{bottom:950.532000pt;}
.h2_c00410{height:47.109375pt;}
.h1_c00410{height:48.375000pt;}
.h5_c00410{height:62.781250pt;}
.h4_c00410{height:62.812500pt;}
.h3_c00410{height:64.500000pt;}
.h0_c00410{height:1044.000000pt;}
.w0_c00410{width:650.646400pt;}
.w1_c00410{width:650.666667pt;}
.x0_c00410{left:0.000000pt;}
.xa_c00410{left:52.169067pt;}
.x9_c00410{left:53.102400pt;}
.x7_c00410{left:54.369067pt;}
.xe_c00410{left:55.635733pt;}
.xf_c00410{left:56.969067pt;}
.x12_c00410{left:58.835733pt;}
.x13_c00410{left:59.835733pt;}
.x14_c00410{left:61.102400pt;}
.x8_c00410{left:63.969067pt;}
.xd_c00410{left:81.235733pt;}
.x6_c00410{left:82.834400pt;}
.x10_c00410{left:85.769067pt;}
.x1_c00410{left:241.902400pt;}
.xb_c00410{left:281.569067pt;}
.xc_c00410{left:345.569067pt;}
.x2_c00410{left:354.835733pt;}
.x3_c00410{left:360.635733pt;}
.x4_c00410{left:414.702400pt;}
.x11_c00410{left:550.702400pt;}
.x5_c00410{left:558.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb5c171020b92aeb72f92e86.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00411;src:url('chunks/assets/font_59f8b7c2f66949a0af367105.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14_c00411{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11_c00411{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m12_c00411{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c00411{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m13_c00411{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m10_c00411{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c00411{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00411{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00411{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c00411{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00411{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m0_c00411{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6_c00411{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c00411{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00411{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00411{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00411{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00411{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00411{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00411{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00411{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c00411{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00411{color:transparent;}
.fs1_c00411{font-size:54.000000px;}
.fs0_c00411{font-size:60.000000px;}
.fs2_c00411{font-size:72.000000px;}
.fs3_c00411{font-size:84.000000px;}
.y0_c00411{bottom:0.000000px;}
.y38_c00411{bottom:116.473500px;}
.y39_c00411{bottom:116.773500px;}
.y37_c00411{bottom:120.448500px;}
.y36_c00411{bottom:139.875000px;}
.y35_c00411{bottom:160.423500px;}
.y34_c00411{bottom:187.048500px;}
.y33_c00411{bottom:188.848500px;}
.y32_c00411{bottom:203.923500px;}
.y31_c00411{bottom:225.148500px;}
.y30_c00411{bottom:227.323500px;}
.y2f_c00411{bottom:229.125000px;}
.y2e_c00411{bottom:246.750000px;}
.y2d_c00411{bottom:249.298500px;}
.y2c_c00411{bottom:269.473500px;}
.y2b_c00411{bottom:291.073500px;}
.y2a_c00411{bottom:313.723500px;}
.y29_c00411{bottom:334.275000px;}
.y28_c00411{bottom:355.875000px;}
.y27_c00411{bottom:377.473500px;}
.y26_c00411{bottom:399.073500px;}
.y25_c00411{bottom:420.673500px;}
.y24_c00411{bottom:442.573500px;}
.y23_c00411{bottom:463.875000px;}
.y22_c00411{bottom:485.473500px;}
.y21_c00411{bottom:506.698500px;}
.y20_c00411{bottom:528.298500px;}
.y1f_c00411{bottom:549.523500px;}
.y1e_c00411{bottom:570.750000px;}
.y1d_c00411{bottom:592.423500px;}
.y1c_c00411{bottom:613.948500px;}
.y1b_c00411{bottom:614.323500px;}
.y1a_c00411{bottom:634.500000px;}
.y19_c00411{bottom:657.223500px;}
.y18_c00411{bottom:679.125000px;}
.y17_c00411{bottom:700.723500px;}
.y16_c00411{bottom:722.023500px;}
.y15_c00411{bottom:743.548500px;}
.y14_c00411{bottom:765.223500px;}
.y12_c00411{bottom:786.750000px;}
.y13_c00411{bottom:787.125000px;}
.y11_c00411{bottom:808.348500px;}
.y10_c00411{bottom:829.650000px;}
.yf_c00411{bottom:850.500000px;}
.ye_c00411{bottom:868.500000px;}
.yd_c00411{bottom:892.573500px;}
.yc_c00411{bottom:913.500000px;}
.yb_c00411{bottom:935.098500px;}
.ya_c00411{bottom:956.698500px;}
.y9_c00411{bottom:978.300000px;}
.y7_c00411{bottom:993.073500px;}
.y8_c00411{bottom:999.900000px;}
.y6_c00411{bottom:1019.698500px;}
.y5_c00411{bottom:1040.250000px;}
.y4_c00411{bottom:1061.098500px;}
.y1_c00411{bottom:1107.525000px;}
.y3_c00411{bottom:1117.573500px;}
.y2_c00411{bottom:1122.675000px;}
.h2_c00411{height:54.421875px;}
.h1_c00411{height:58.886719px;}
.h3_c00411{height:70.664062px;}
.h4_c00411{height:72.562500px;}
.h5_c00411{height:82.441406px;}
.h6_c00411{height:84.656250px;}
.h0_c00411{height:1174.500000px;}
.w0_c00411{width:731.977200px;}
.w1_c00411{width:732.000000px;}
.x0_c00411{left:0.000000px;}
.x14_c00411{left:43.915200px;}
.x12_c00411{left:44.965200px;}
.x11_c00411{left:46.390200px;}
.xd_c00411{left:47.515200px;}
.xb_c00411{left:48.940200px;}
.x8_c00411{left:50.365200px;}
.x9_c00411{left:51.790200px;}
.x7_c00411{left:52.915200px;}
.x5_c00411{left:55.390200px;}
.x18_c00411{left:70.540200px;}
.x1_c00411{left:74.890200px;}
.xe_c00411{left:77.740200px;}
.x13_c00411{left:79.165200px;}
.xa_c00411{left:82.090200px;}
.x4_c00411{left:86.740200px;}
.x2_c00411{left:102.190200px;}
.x16_c00411{left:218.140200px;}
.x6_c00411{left:231.115200px;}
.x17_c00411{left:249.790200px;}
.x3_c00411{left:277.915200px;}
.x15_c00411{left:426.190200px;}
.xf_c00411{left:499.315200px;}
.x19_c00411{left:501.490200px;}
.x10_c00411{left:542.140200px;}
.x1a_c00411{left:607.315200px;}
.xc_c00411{left:652.990200px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls0_c00411{letter-spacing:0.000000pt;}
.ws0_c00411{word-spacing:0.000000pt;}
.fs1_c00411{font-size:48.000000pt;}
.fs0_c00411{font-size:53.333333pt;}
.fs2_c00411{font-size:64.000000pt;}
.fs3_c00411{font-size:74.666667pt;}
.y0_c00411{bottom:0.000000pt;}
.y38_c00411{bottom:103.532000pt;}
.y39_c00411{bottom:103.798667pt;}
.y37_c00411{bottom:107.065333pt;}
.y36_c00411{bottom:124.333333pt;}
.y35_c00411{bottom:142.598667pt;}
.y34_c00411{bottom:166.265333pt;}
.y33_c00411{bottom:167.865333pt;}
.y32_c00411{bottom:181.265333pt;}
.y31_c00411{bottom:200.132000pt;}
.y30_c00411{bottom:202.065333pt;}
.y2f_c00411{bottom:203.666667pt;}
.y2e_c00411{bottom:219.333333pt;}
.y2d_c00411{bottom:221.598667pt;}
.y2c_c00411{bottom:239.532000pt;}
.y2b_c00411{bottom:258.732000pt;}
.y2a_c00411{bottom:278.865333pt;}
.y29_c00411{bottom:297.133333pt;}
.y28_c00411{bottom:316.333333pt;}
.y27_c00411{bottom:335.532000pt;}
.y26_c00411{bottom:354.732000pt;}
.y25_c00411{bottom:373.932000pt;}
.y24_c00411{bottom:393.398667pt;}
.y23_c00411{bottom:412.333333pt;}
.y22_c00411{bottom:431.532000pt;}
.y21_c00411{bottom:450.398667pt;}
.y20_c00411{bottom:469.598667pt;}
.y1f_c00411{bottom:488.465333pt;}
.y1e_c00411{bottom:507.333333pt;}
.y1d_c00411{bottom:526.598667pt;}
.y1c_c00411{bottom:545.732000pt;}
.y1b_c00411{bottom:546.065333pt;}
.y1a_c00411{bottom:564.000000pt;}
.y19_c00411{bottom:584.198667pt;}
.y18_c00411{bottom:603.666667pt;}
.y17_c00411{bottom:622.865333pt;}
.y16_c00411{bottom:641.798667pt;}
.y15_c00411{bottom:660.932000pt;}
.y14_c00411{bottom:680.198667pt;}
.y12_c00411{bottom:699.333333pt;}
.y13_c00411{bottom:699.666667pt;}
.y11_c00411{bottom:718.532000pt;}
.y10_c00411{bottom:737.466667pt;}
.yf_c00411{bottom:756.000000pt;}
.ye_c00411{bottom:772.000000pt;}
.yd_c00411{bottom:793.398667pt;}
.yc_c00411{bottom:812.000000pt;}
.yb_c00411{bottom:831.198667pt;}
.ya_c00411{bottom:850.398667pt;}
.y9_c00411{bottom:869.600000pt;}
.y7_c00411{bottom:882.732000pt;}
.y8_c00411{bottom:888.800000pt;}
.y6_c00411{bottom:906.398667pt;}
.y5_c00411{bottom:924.666667pt;}
.y4_c00411{bottom:943.198667pt;}
.y1_c00411{bottom:984.466667pt;}
.y3_c00411{bottom:993.398667pt;}
.y2_c00411{bottom:997.933333pt;}
.h2_c00411{height:48.375000pt;}
.h1_c00411{height:52.343750pt;}
.h3_c00411{height:62.812500pt;}
.h4_c00411{height:64.500000pt;}
.h5_c00411{height:73.281250pt;}
.h6_c00411{height:75.250000pt;}
.h0_c00411{height:1044.000000pt;}
.w0_c00411{width:650.646400pt;}
.w1_c00411{width:650.666667pt;}
.x0_c00411{left:0.000000pt;}
.x14_c00411{left:39.035733pt;}
.x12_c00411{left:39.969067pt;}
.x11_c00411{left:41.235733pt;}
.xd_c00411{left:42.235733pt;}
.xb_c00411{left:43.502400pt;}
.x8_c00411{left:44.769067pt;}
.x9_c00411{left:46.035733pt;}
.x7_c00411{left:47.035733pt;}
.x5_c00411{left:49.235733pt;}
.x18_c00411{left:62.702400pt;}
.x1_c00411{left:66.569067pt;}
.xe_c00411{left:69.102400pt;}
.x13_c00411{left:70.369067pt;}
.xa_c00411{left:72.969067pt;}
.x4_c00411{left:77.102400pt;}
.x2_c00411{left:90.835733pt;}
.x16_c00411{left:193.902400pt;}
.x6_c00411{left:205.435733pt;}
.x17_c00411{left:222.035733pt;}
.x3_c00411{left:247.035733pt;}
.x15_c00411{left:378.835733pt;}
.xf_c00411{left:443.835733pt;}
.x19_c00411{left:445.769067pt;}
.x10_c00411{left:481.902400pt;}
.x1a_c00411{left:539.835733pt;}
.xc_c00411{left:580.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff1365bdb5e962518ba651ae.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00412;src:url('chunks/assets/font_721b08f0e8f88a34811a03f9.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00412{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2_c00412{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c00412{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c00412{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc_c00412{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m6_c00412{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00412{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c00412{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00412{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m0_c00412{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8_c00412{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00412{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00412{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00412{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00412{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00412{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00412{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00412{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00412{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.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;}
}
.ws0_c00412{word-spacing:0.000000px;}
.fc0_c00412{color:transparent;}
.fs0_c00412{font-size:54.000000px;}
.fs1_c00412{font-size:72.000000px;}
.y0_c00412{bottom:0.000000px;}
.y38_c00412{bottom:59.625000px;}
.y37_c00412{bottom:84.823500px;}
.y36_c00412{bottom:101.398500px;}
.y35_c00412{bottom:125.848500px;}
.y34_c00412{bottom:144.523500px;}
.y33_c00412{bottom:166.500000px;}
.y32_c00412{bottom:186.973500px;}
.y31_c00412{bottom:207.148500px;}
.y30_c00412{bottom:226.948500px;}
.y2f_c00412{bottom:246.823500px;}
.y2e_c00412{bottom:267.000000px;}
.y2d_c00412{bottom:287.098500px;}
.y2c_c00412{bottom:308.323500px;}
.y2b_c00412{bottom:328.875000px;}
.y2a_c00412{bottom:350.098500px;}
.y29_c00412{bottom:370.650000px;}
.y28_c00412{bottom:390.823500px;}
.y27_c00412{bottom:411.673500px;}
.y26_c00412{bottom:431.848500px;}
.y25_c00412{bottom:453.448500px;}
.y24_c00412{bottom:474.673500px;}
.y23_c00412{bottom:495.898500px;}
.y22_c00412{bottom:516.823500px;}
.y21_c00412{bottom:538.048500px;}
.y20_c00412{bottom:559.198500px;}
.y1f_c00412{bottom:580.125000px;}
.y1e_c00412{bottom:601.348500px;}
.y1d_c00412{bottom:622.273500px;}
.y1c_c00412{bottom:643.500000px;}
.y1b_c00412{bottom:661.125000px;}
.y1a_c00412{bottom:664.723500px;}
.y19_c00412{bottom:685.948500px;}
.y18_c00412{bottom:707.250000px;}
.y17_c00412{bottom:723.450000px;}
.y16_c00412{bottom:728.098500px;}
.y15_c00412{bottom:750.075000px;}
.y14_c00412{bottom:770.250000px;}
.y13_c00412{bottom:793.650000px;}
.y12_c00412{bottom:813.448500px;}
.y11_c00412{bottom:834.973500px;}
.y10_c00412{bottom:855.525000px;}
.yf_c00412{bottom:869.550000px;}
.ye_c00412{bottom:876.823500px;}
.yd_c00412{bottom:897.300000px;}
.yc_c00412{bottom:917.848500px;}
.yb_c00412{bottom:920.698500px;}
.ya_c00412{bottom:932.550000px;}
.y9_c00412{bottom:939.823500px;}
.y8_c00412{bottom:963.525000px;}
.y7_c00412{bottom:964.275000px;}
.y6_c00412{bottom:974.698500px;}
.y5_c00412{bottom:982.275000px;}
.y4_c00412{bottom:1003.500000px;}
.y3_c00412{bottom:1053.525000px;}
.y1_c00412{bottom:1061.400000px;}
.y2_c00412{bottom:1067.625000px;}
.h1_c00412{height:54.421875px;}
.h3_c00412{height:70.664062px;}
.h2_c00412{height:72.562500px;}
.h0_c00412{height:1174.500000px;}
.w0_c00412{width:731.977200px;}
.w1_c00412{width:732.000000px;}
.x0_c00412{left:0.000000px;}
.x4_c00412{left:30.190200px;}
.x6_c00412{left:31.990200px;}
.xd_c00412{left:33.790200px;}
.x10_c00412{left:34.915200px;}
.x11_c00412{left:36.715200px;}
.x13_c00412{left:37.765200px;}
.x12_c00412{left:38.890200px;}
.x15_c00412{left:39.940200px;}
.x16_c00412{left:42.115200px;}
.x18_c00412{left:43.540200px;}
.x1b_c00412{left:45.715200px;}
.x1c_c00412{left:47.140200px;}
.x8_c00412{left:63.715200px;}
.xc_c00412{left:65.890200px;}
.xe_c00412{left:67.690200px;}
.x14_c00412{left:71.290200px;}
.x17_c00412{left:74.140200px;}
.x19_c00412{left:75.563700px;}
.x1d_c00412{left:77.740200px;}
.x1a_c00412{left:78.790200px;}
.xa_c00412{left:83.515200px;}
.x7_c00412{left:106.540200px;}
.x1_c00412{left:242.965200px;}
.x2_c00412{left:435.190200px;}
.x9_c00412{left:552.565200px;}
.x1e_c00412{left:573.115200px;}
.x5_c00412{left:592.915200px;}
.x3_c00412{left:596.515200px;}
.xb_c00412{left:619.915200px;}
.xf_c00412{left:623.140200px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls0_c00412{letter-spacing:0.000000pt;}
.ws0_c00412{word-spacing:0.000000pt;}
.fs0_c00412{font-size:48.000000pt;}
.fs1_c00412{font-size:64.000000pt;}
.y0_c00412{bottom:0.000000pt;}
.y38_c00412{bottom:53.000000pt;}
.y37_c00412{bottom:75.398667pt;}
.y36_c00412{bottom:90.132000pt;}
.y35_c00412{bottom:111.865333pt;}
.y34_c00412{bottom:128.465333pt;}
.y33_c00412{bottom:148.000000pt;}
.y32_c00412{bottom:166.198667pt;}
.y31_c00412{bottom:184.132000pt;}
.y30_c00412{bottom:201.732000pt;}
.y2f_c00412{bottom:219.398667pt;}
.y2e_c00412{bottom:237.333333pt;}
.y2d_c00412{bottom:255.198667pt;}
.y2c_c00412{bottom:274.065333pt;}
.y2b_c00412{bottom:292.333333pt;}
.y2a_c00412{bottom:311.198667pt;}
.y29_c00412{bottom:329.466667pt;}
.y28_c00412{bottom:347.398667pt;}
.y27_c00412{bottom:365.932000pt;}
.y26_c00412{bottom:383.865333pt;}
.y25_c00412{bottom:403.065333pt;}
.y24_c00412{bottom:421.932000pt;}
.y23_c00412{bottom:440.798667pt;}
.y22_c00412{bottom:459.398667pt;}
.y21_c00412{bottom:478.265333pt;}
.y20_c00412{bottom:497.065333pt;}
.y1f_c00412{bottom:515.666667pt;}
.y1e_c00412{bottom:534.532000pt;}
.y1d_c00412{bottom:553.132000pt;}
.y1c_c00412{bottom:572.000000pt;}
.y1b_c00412{bottom:587.666667pt;}
.y1a_c00412{bottom:590.865333pt;}
.y19_c00412{bottom:609.732000pt;}
.y18_c00412{bottom:628.666667pt;}
.y17_c00412{bottom:643.066667pt;}
.y16_c00412{bottom:647.198667pt;}
.y15_c00412{bottom:666.733333pt;}
.y14_c00412{bottom:684.666667pt;}
.y13_c00412{bottom:705.466667pt;}
.y12_c00412{bottom:723.065333pt;}
.y11_c00412{bottom:742.198667pt;}
.y10_c00412{bottom:760.466667pt;}
.yf_c00412{bottom:772.933333pt;}
.ye_c00412{bottom:779.398667pt;}
.yd_c00412{bottom:797.600000pt;}
.yc_c00412{bottom:815.865333pt;}
.yb_c00412{bottom:818.398667pt;}
.ya_c00412{bottom:828.933333pt;}
.y9_c00412{bottom:835.398667pt;}
.y8_c00412{bottom:856.466667pt;}
.y7_c00412{bottom:857.133333pt;}
.y6_c00412{bottom:866.398667pt;}
.y5_c00412{bottom:873.133333pt;}
.y4_c00412{bottom:892.000000pt;}
.y3_c00412{bottom:936.466667pt;}
.y1_c00412{bottom:943.466667pt;}
.y2_c00412{bottom:949.000000pt;}
.h1_c00412{height:48.375000pt;}
.h3_c00412{height:62.812500pt;}
.h2_c00412{height:64.500000pt;}
.h0_c00412{height:1044.000000pt;}
.w0_c00412{width:650.646400pt;}
.w1_c00412{width:650.666667pt;}
.x0_c00412{left:0.000000pt;}
.x4_c00412{left:26.835733pt;}
.x6_c00412{left:28.435733pt;}
.xd_c00412{left:30.035733pt;}
.x10_c00412{left:31.035733pt;}
.x11_c00412{left:32.635733pt;}
.x13_c00412{left:33.569067pt;}
.x12_c00412{left:34.569067pt;}
.x15_c00412{left:35.502400pt;}
.x16_c00412{left:37.435733pt;}
.x18_c00412{left:38.702400pt;}
.x1b_c00412{left:40.635733pt;}
.x1c_c00412{left:41.902400pt;}
.x8_c00412{left:56.635733pt;}
.xc_c00412{left:58.569067pt;}
.xe_c00412{left:60.169067pt;}
.x14_c00412{left:63.369067pt;}
.x17_c00412{left:65.902400pt;}
.x19_c00412{left:67.167733pt;}
.x1d_c00412{left:69.102400pt;}
.x1a_c00412{left:70.035733pt;}
.xa_c00412{left:74.235733pt;}
.x7_c00412{left:94.702400pt;}
.x1_c00412{left:215.969067pt;}
.x2_c00412{left:386.835733pt;}
.x9_c00412{left:491.169067pt;}
.x1e_c00412{left:509.435733pt;}
.x5_c00412{left:527.035733pt;}
.x3_c00412{left:530.235733pt;}
.xb_c00412{left:551.035733pt;}
.xf_c00412{left:553.902400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3654fd7bf111627aa36a12f3.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00413;src:url('chunks/assets/font_b242a73263e0fc5c4350c271.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00413;src:url('chunks/assets/font_1707a55cfe35fa475deb8d83.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00413;src:url('chunks/assets/font_24160ed8cadbefafbd3e9c82.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00413{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m0_c00413{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c00413{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c00413{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c00413{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c00413{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00413{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m17_c00413{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00413{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00413{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00413{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00413{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00413{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m18_c00413{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00413{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00413{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00413{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m16_c00413{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m10_c00413{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c00413{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c00413{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m19_c00413{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m9_c00413{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m15_c00413{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m12_c00413{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2_c00413{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.ls0_c00413{letter-spacing:0.000000px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00413{word-spacing:0.000000px;}
.fc0_c00413{color:transparent;}
.fs0_c00413{font-size:42.000000px;}
.fs2_c00413{font-size:60.000000px;}
.fs4_c00413{font-size:66.000000px;}
.fs3_c00413{font-size:72.000000px;}
.fs1_c00413{font-size:78.000000px;}
.y0_c00413{bottom:0.000000px;}
.y3b_c00413{bottom:116.773500px;}
.y3a_c00413{bottom:136.573500px;}
.y39_c00413{bottom:138.073500px;}
.y38_c00413{bottom:164.698500px;}
.y37_c00413{bottom:180.523500px;}
.y36_c00413{bottom:202.500000px;}
.y35_c00413{bottom:224.473500px;}
.y34_c00413{bottom:246.073500px;}
.y33_c00413{bottom:267.598500px;}
.y32_c00413{bottom:289.650000px;}
.y31_c00413{bottom:311.250000px;}
.y30_c00413{bottom:332.775000px;}
.y2f_c00413{bottom:354.448500px;}
.y2e_c00413{bottom:376.348500px;}
.y2d_c00413{bottom:397.948500px;}
.y2c_c00413{bottom:419.923500px;}
.y2b_c00413{bottom:441.523500px;}
.y2a_c00413{bottom:462.448500px;}
.y28_c00413{bottom:462.750000px;}
.y29_c00413{bottom:463.125000px;}
.y27_c00413{bottom:484.723500px;}
.y25_c00413{bottom:506.023500px;}
.y26_c00413{bottom:506.323500px;}
.y24_c00413{bottom:527.548500px;}
.y23_c00413{bottom:549.223500px;}
.y22_c00413{bottom:570.750000px;}
.y21_c00413{bottom:592.723500px;}
.y1f_c00413{bottom:613.948500px;}
.y1e_c00413{bottom:614.023500px;}
.y20_c00413{bottom:614.323500px;}
.y1d_c00413{bottom:635.923500px;}
.y1c_c00413{bottom:657.898500px;}
.y1a_c00413{bottom:678.073500px;}
.y1b_c00413{bottom:679.198500px;}
.y19_c00413{bottom:700.723500px;}
.y18_c00413{bottom:721.950000px;}
.y17_c00413{bottom:744.298500px;}
.y16_c00413{bottom:763.723500px;}
.y15_c00413{bottom:787.125000px;}
.y14_c00413{bottom:808.723500px;}
.y13_c00413{bottom:830.025000px;}
.y12_c00413{bottom:850.875000px;}
.y11_c00413{bottom:872.098500px;}
.y10_c00413{bottom:893.698500px;}
.yf_c00413{bottom:913.125000px;}
.ye_c00413{bottom:936.525000px;}
.yc_c00413{bottom:953.473500px;}
.yd_c00413{bottom:957.823500px;}
.yb_c00413{bottom:979.050000px;}
.ya_c00413{bottom:1000.275000px;}
.y7_c00413{bottom:1014.300000px;}
.y8_c00413{bottom:1017.525000px;}
.y9_c00413{bottom:1021.500000px;}
.y6_c00413{bottom:1041.300000px;}
.y5_c00413{bottom:1062.525000px;}
.y2_c00413{bottom:1111.125000px;}
.y1_c00413{bottom:1111.198500px;}
.y4_c00413{bottom:1119.750000px;}
.y3_c00413{bottom:1122.150000px;}
.h1_c00413{height:41.200195px;}
.h3_c00413{height:58.886719px;}
.h6_c00413{height:64.743164px;}
.h5_c00413{height:64.775391px;}
.h7_c00413{height:66.515625px;}
.h4_c00413{height:70.664062px;}
.h2_c00413{height:78.609375px;}
.h0_c00413{height:1174.500000px;}
.w0_c00413{width:731.977200px;}
.w1_c00413{width:732.000000px;}
.x0_c00413{left:0.000000px;}
.x19_c00413{left:49.990200px;}
.x1a_c00413{left:51.490200px;}
.x13_c00413{left:54.340200px;}
.x10_c00413{left:56.140200px;}
.xe_c00413{left:57.190200px;}
.xd_c00413{left:58.315200px;}
.xc_c00413{left:59.365200px;}
.x9_c00413{left:61.915200px;}
.x6_c00413{left:64.390200px;}
.x5_c00413{left:66.190200px;}
.x1b_c00413{left:80.965200px;}
.x18_c00413{left:82.390200px;}
.xa_c00413{left:85.688700px;}
.x1_c00413{left:87.115200px;}
.x11_c00413{left:89.290200px;}
.xf_c00413{left:90.715200px;}
.xb_c00413{left:92.515200px;}
.x2_c00413{left:106.915200px;}
.x3_c00413{left:119.515200px;}
.x15_c00413{left:127.765200px;}
.x14_c00413{left:145.090200px;}
.x7_c00413{left:149.365200px;}
.x12_c00413{left:153.715200px;}
.x8_c00413{left:195.115200px;}
.x4_c00413{left:292.315200px;}
.x16_c00413{left:487.765200px;}
.x17_c00413{left:512.590200px;}
.x1c_c00413{left:540.340200px;}
.x1d_c00413{left:613.390200px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls0_c00413{letter-spacing:0.000000pt;}
.ws0_c00413{word-spacing:0.000000pt;}
.fs0_c00413{font-size:37.333333pt;}
.fs2_c00413{font-size:53.333333pt;}
.fs4_c00413{font-size:58.666667pt;}
.fs3_c00413{font-size:64.000000pt;}
.fs1_c00413{font-size:69.333333pt;}
.y0_c00413{bottom:0.000000pt;}
.y3b_c00413{bottom:103.798667pt;}
.y3a_c00413{bottom:121.398667pt;}
.y39_c00413{bottom:122.732000pt;}
.y38_c00413{bottom:146.398667pt;}
.y37_c00413{bottom:160.465333pt;}
.y36_c00413{bottom:180.000000pt;}
.y35_c00413{bottom:199.532000pt;}
.y34_c00413{bottom:218.732000pt;}
.y33_c00413{bottom:237.865333pt;}
.y32_c00413{bottom:257.466667pt;}
.y31_c00413{bottom:276.666667pt;}
.y30_c00413{bottom:295.800000pt;}
.y2f_c00413{bottom:315.065333pt;}
.y2e_c00413{bottom:334.532000pt;}
.y2d_c00413{bottom:353.732000pt;}
.y2c_c00413{bottom:373.265333pt;}
.y2b_c00413{bottom:392.465333pt;}
.y2a_c00413{bottom:411.065333pt;}
.y28_c00413{bottom:411.333333pt;}
.y29_c00413{bottom:411.666667pt;}
.y27_c00413{bottom:430.865333pt;}
.y25_c00413{bottom:449.798667pt;}
.y26_c00413{bottom:450.065333pt;}
.y24_c00413{bottom:468.932000pt;}
.y23_c00413{bottom:488.198667pt;}
.y22_c00413{bottom:507.333333pt;}
.y21_c00413{bottom:526.865333pt;}
.y1f_c00413{bottom:545.732000pt;}
.y1e_c00413{bottom:545.798667pt;}
.y20_c00413{bottom:546.065333pt;}
.y1d_c00413{bottom:565.265333pt;}
.y1c_c00413{bottom:584.798667pt;}
.y1a_c00413{bottom:602.732000pt;}
.y1b_c00413{bottom:603.732000pt;}
.y19_c00413{bottom:622.865333pt;}
.y18_c00413{bottom:641.733333pt;}
.y17_c00413{bottom:661.598667pt;}
.y16_c00413{bottom:678.865333pt;}
.y15_c00413{bottom:699.666667pt;}
.y14_c00413{bottom:718.865333pt;}
.y13_c00413{bottom:737.800000pt;}
.y12_c00413{bottom:756.333333pt;}
.y11_c00413{bottom:775.198667pt;}
.y10_c00413{bottom:794.398667pt;}
.yf_c00413{bottom:811.666667pt;}
.ye_c00413{bottom:832.466667pt;}
.yc_c00413{bottom:847.532000pt;}
.yd_c00413{bottom:851.398667pt;}
.yb_c00413{bottom:870.266667pt;}
.ya_c00413{bottom:889.133333pt;}
.y7_c00413{bottom:901.600000pt;}
.y8_c00413{bottom:904.466667pt;}
.y9_c00413{bottom:908.000000pt;}
.y6_c00413{bottom:925.600000pt;}
.y5_c00413{bottom:944.466667pt;}
.y2_c00413{bottom:987.666667pt;}
.y1_c00413{bottom:987.732000pt;}
.y4_c00413{bottom:995.333333pt;}
.y3_c00413{bottom:997.466667pt;}
.h1_c00413{height:36.622396pt;}
.h3_c00413{height:52.343750pt;}
.h6_c00413{height:57.549479pt;}
.h5_c00413{height:57.578125pt;}
.h7_c00413{height:59.125000pt;}
.h4_c00413{height:62.812500pt;}
.h2_c00413{height:69.875000pt;}
.h0_c00413{height:1044.000000pt;}
.w0_c00413{width:650.646400pt;}
.w1_c00413{width:650.666667pt;}
.x0_c00413{left:0.000000pt;}
.x19_c00413{left:44.435733pt;}
.x1a_c00413{left:45.769067pt;}
.x13_c00413{left:48.302400pt;}
.x10_c00413{left:49.902400pt;}
.xe_c00413{left:50.835733pt;}
.xd_c00413{left:51.835733pt;}
.xc_c00413{left:52.769067pt;}
.x9_c00413{left:55.035733pt;}
.x6_c00413{left:57.235733pt;}
.x5_c00413{left:58.835733pt;}
.x1b_c00413{left:71.969067pt;}
.x18_c00413{left:73.235733pt;}
.xa_c00413{left:76.167733pt;}
.x1_c00413{left:77.435733pt;}
.x11_c00413{left:79.369067pt;}
.xf_c00413{left:80.635733pt;}
.xb_c00413{left:82.235733pt;}
.x2_c00413{left:95.035733pt;}
.x3_c00413{left:106.235733pt;}
.x15_c00413{left:113.569067pt;}
.x14_c00413{left:128.969067pt;}
.x7_c00413{left:132.769067pt;}
.x12_c00413{left:136.635733pt;}
.x8_c00413{left:173.435733pt;}
.x4_c00413{left:259.835733pt;}
.x16_c00413{left:433.569067pt;}
.x17_c00413{left:455.635733pt;}
.x1c_c00413{left:480.302400pt;}
.x1d_c00413{left:545.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f184b95cc5c0230aec7fc0ef.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00414;src:url('chunks/assets/font_bcbf49fd695fb3860a47499f.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00414{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00414{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c00414{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m11_c00414{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c00414{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c00414{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00414{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me_c00414{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6_c00414{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00414{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00414{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00414{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00414{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00414{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00414{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c00414{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00414{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c00414{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c00414{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mc_c00414{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m13_c00414{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3_c00414{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1_c00414{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.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;}
}
.ws0_c00414{word-spacing:0.000000px;}
.fc0_c00414{color:transparent;}
.fs0_c00414{font-size:54.000000px;}
.fs2_c00414{font-size:66.000000px;}
.fs1_c00414{font-size:72.000000px;}
.y0_c00414{bottom:0.000000px;}
.y3c_c00414{bottom:138.448500px;}
.y3a_c00414{bottom:158.923500px;}
.y3b_c00414{bottom:164.398500px;}
.y39_c00414{bottom:184.500000px;}
.y38_c00414{bottom:203.923500px;}
.y36_c00414{bottom:223.798500px;}
.y37_c00414{bottom:227.698500px;}
.y32_c00414{bottom:239.923500px;}
.y33_c00414{bottom:242.773500px;}
.y34_c00414{bottom:244.648500px;}
.y35_c00414{bottom:247.500000px;}
.y31_c00414{bottom:263.400000px;}
.y30_c00414{bottom:284.625000px;}
.y2f_c00414{bottom:302.548500px;}
.y2e_c00414{bottom:325.650000px;}
.y2a_c00414{bottom:344.323500px;}
.y29_c00414{bottom:344.400000px;}
.y2b_c00414{bottom:344.698500px;}
.y2c_c00414{bottom:345.750000px;}
.y2d_c00414{bottom:347.923500px;}
.y28_c00414{bottom:365.250000px;}
.y27_c00414{bottom:388.573500px;}
.y25_c00414{bottom:406.648500px;}
.y26_c00414{bottom:409.125000px;}
.y24_c00414{bottom:429.298500px;}
.y23_c00414{bottom:450.223500px;}
.y22_c00414{bottom:471.073500px;}
.y21_c00414{bottom:492.673500px;}
.y20_c00414{bottom:513.523500px;}
.y1f_c00414{bottom:534.448500px;}
.y1e_c00414{bottom:555.673500px;}
.y1d_c00414{bottom:576.898500px;}
.y1c_c00414{bottom:598.125000px;}
.y1b_c00414{bottom:619.048500px;}
.y1a_c00414{bottom:640.273500px;}
.y19_c00414{bottom:660.448500px;}
.y18_c00414{bottom:661.875000px;}
.y17_c00414{bottom:683.473500px;}
.y16_c00414{bottom:703.648500px;}
.y15_c00414{bottom:724.500000px;}
.y14_c00414{bottom:741.825000px;}
.y13_c00414{bottom:745.798500px;}
.y12_c00414{bottom:767.325000px;}
.y11_c00414{bottom:787.875000px;}
.y10_c00414{bottom:811.275000px;}
.yf_c00414{bottom:830.698500px;}
.ye_c00414{bottom:832.875000px;}
.yd_c00414{bottom:854.098500px;}
.yc_c00414{bottom:873.525000px;}
.yb_c00414{bottom:893.698500px;}
.ya_c00414{bottom:914.625000px;}
.y9_c00414{bottom:939.750000px;}
.y8_c00414{bottom:956.323500px;}
.y7_c00414{bottom:982.275000px;}
.y6_c00414{bottom:998.400000px;}
.y5_c00414{bottom:1003.198500px;}
.y4_c00414{bottom:1003.800000px;}
.y3_c00414{bottom:1049.550000px;}
.y1_c00414{bottom:1057.500000px;}
.y2_c00414{bottom:1063.650000px;}
.h1_c00414{height:54.421875px;}
.h5_c00414{height:64.775391px;}
.h3_c00414{height:66.515625px;}
.h2_c00414{height:70.664062px;}
.h4_c00414{height:72.562500px;}
.h0_c00414{height:1174.500000px;}
.w0_c00414{width:731.977200px;}
.w1_c00414{width:732.000000px;}
.x0_c00414{left:0.000000px;}
.x7_c00414{left:49.690200px;}
.x9_c00414{left:50.740200px;}
.xc_c00414{left:52.165200px;}
.x11_c00414{left:53.590200px;}
.x12_c00414{left:54.715200px;}
.x14_c00414{left:56.515200px;}
.x1b_c00414{left:58.315200px;}
.x21_c00414{left:59.365200px;}
.x22_c00414{left:60.490200px;}
.x4_c00414{left:80.965200px;}
.x8_c00414{left:82.090200px;}
.xb_c00414{left:83.140200px;}
.xe_c00414{left:84.938700px;}
.x16_c00414{left:86.365200px;}
.x13_c00414{left:88.165200px;}
.x1f_c00414{left:89.290200px;}
.x5_c00414{left:105.115200px;}
.x17_c00414{left:118.765200px;}
.x1c_c00414{left:121.315200px;}
.x6_c00414{left:136.765200px;}
.xa_c00414{left:138.190200px;}
.x18_c00414{left:149.740200px;}
.x23_c00414{left:183.940200px;}
.xf_c00414{left:189.715200px;}
.x15_c00414{left:220.315200px;}
.x19_c00414{left:225.715200px;}
.x1_c00414{left:264.190200px;}
.x10_c00414{left:272.515200px;}
.x1d_c00414{left:279.715200px;}
.x1a_c00414{left:331.540200px;}
.x2_c00414{left:455.365200px;}
.x20_c00414{left:588.565200px;}
.x1e_c00414{left:612.340200px;}
.x3_c00414{left:614.515200px;}
.xd_c00414{left:632.515200px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls0_c00414{letter-spacing:0.000000pt;}
.ws0_c00414{word-spacing:0.000000pt;}
.fs0_c00414{font-size:48.000000pt;}
.fs2_c00414{font-size:58.666667pt;}
.fs1_c00414{font-size:64.000000pt;}
.y0_c00414{bottom:0.000000pt;}
.y3c_c00414{bottom:123.065333pt;}
.y3a_c00414{bottom:141.265333pt;}
.y3b_c00414{bottom:146.132000pt;}
.y39_c00414{bottom:164.000000pt;}
.y38_c00414{bottom:181.265333pt;}
.y36_c00414{bottom:198.932000pt;}
.y37_c00414{bottom:202.398667pt;}
.y32_c00414{bottom:213.265333pt;}
.y33_c00414{bottom:215.798667pt;}
.y34_c00414{bottom:217.465333pt;}
.y35_c00414{bottom:220.000000pt;}
.y31_c00414{bottom:234.133333pt;}
.y30_c00414{bottom:253.000000pt;}
.y2f_c00414{bottom:268.932000pt;}
.y2e_c00414{bottom:289.466667pt;}
.y2a_c00414{bottom:306.065333pt;}
.y29_c00414{bottom:306.133333pt;}
.y2b_c00414{bottom:306.398667pt;}
.y2c_c00414{bottom:307.333333pt;}
.y2d_c00414{bottom:309.265333pt;}
.y28_c00414{bottom:324.666667pt;}
.y27_c00414{bottom:345.398667pt;}
.y25_c00414{bottom:361.465333pt;}
.y26_c00414{bottom:363.666667pt;}
.y24_c00414{bottom:381.598667pt;}
.y23_c00414{bottom:400.198667pt;}
.y22_c00414{bottom:418.732000pt;}
.y21_c00414{bottom:437.932000pt;}
.y20_c00414{bottom:456.465333pt;}
.y1f_c00414{bottom:475.065333pt;}
.y1e_c00414{bottom:493.932000pt;}
.y1d_c00414{bottom:512.798667pt;}
.y1c_c00414{bottom:531.666667pt;}
.y1b_c00414{bottom:550.265333pt;}
.y1a_c00414{bottom:569.132000pt;}
.y19_c00414{bottom:587.065333pt;}
.y18_c00414{bottom:588.333333pt;}
.y17_c00414{bottom:607.532000pt;}
.y16_c00414{bottom:625.465333pt;}
.y15_c00414{bottom:644.000000pt;}
.y14_c00414{bottom:659.400000pt;}
.y13_c00414{bottom:662.932000pt;}
.y12_c00414{bottom:682.066667pt;}
.y11_c00414{bottom:700.333333pt;}
.y10_c00414{bottom:721.133333pt;}
.yf_c00414{bottom:738.398667pt;}
.ye_c00414{bottom:740.333333pt;}
.yd_c00414{bottom:759.198667pt;}
.yc_c00414{bottom:776.466667pt;}
.yb_c00414{bottom:794.398667pt;}
.ya_c00414{bottom:813.000000pt;}
.y9_c00414{bottom:835.333333pt;}
.y8_c00414{bottom:850.065333pt;}
.y7_c00414{bottom:873.133333pt;}
.y6_c00414{bottom:887.466667pt;}
.y5_c00414{bottom:891.732000pt;}
.y4_c00414{bottom:892.266667pt;}
.y3_c00414{bottom:932.933333pt;}
.y1_c00414{bottom:940.000000pt;}
.y2_c00414{bottom:945.466667pt;}
.h1_c00414{height:48.375000pt;}
.h5_c00414{height:57.578125pt;}
.h3_c00414{height:59.125000pt;}
.h2_c00414{height:62.812500pt;}
.h4_c00414{height:64.500000pt;}
.h0_c00414{height:1044.000000pt;}
.w0_c00414{width:650.646400pt;}
.w1_c00414{width:650.666667pt;}
.x0_c00414{left:0.000000pt;}
.x7_c00414{left:44.169067pt;}
.x9_c00414{left:45.102400pt;}
.xc_c00414{left:46.369067pt;}
.x11_c00414{left:47.635733pt;}
.x12_c00414{left:48.635733pt;}
.x14_c00414{left:50.235733pt;}
.x1b_c00414{left:51.835733pt;}
.x21_c00414{left:52.769067pt;}
.x22_c00414{left:53.769067pt;}
.x4_c00414{left:71.969067pt;}
.x8_c00414{left:72.969067pt;}
.xb_c00414{left:73.902400pt;}
.xe_c00414{left:75.501067pt;}
.x16_c00414{left:76.769067pt;}
.x13_c00414{left:78.369067pt;}
.x1f_c00414{left:79.369067pt;}
.x5_c00414{left:93.435733pt;}
.x17_c00414{left:105.569067pt;}
.x1c_c00414{left:107.835733pt;}
.x6_c00414{left:121.569067pt;}
.xa_c00414{left:122.835733pt;}
.x18_c00414{left:133.102400pt;}
.x23_c00414{left:163.502400pt;}
.xf_c00414{left:168.635733pt;}
.x15_c00414{left:195.835733pt;}
.x19_c00414{left:200.635733pt;}
.x1_c00414{left:234.835733pt;}
.x10_c00414{left:242.235733pt;}
.x1d_c00414{left:248.635733pt;}
.x1a_c00414{left:294.702400pt;}
.x2_c00414{left:404.769067pt;}
.x20_c00414{left:523.169067pt;}
.x1e_c00414{left:544.302400pt;}
.x3_c00414{left:546.235733pt;}
.xd_c00414{left:562.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a3ecf00b94f51ad21971e40b.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00415;src:url('chunks/assets/font_794c5cccd78c904423f7c311.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00415;src:url('chunks/assets/font_6f0e850137cbd559b807fa89.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00415;src:url('chunks/assets/font_f764c92773c5234c8c50f2a5.woff2')format("woff");}.ff4_c00415{font-family:ff4_c00415;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00415;src:url('chunks/assets/font_39517b2302cbbcc488bb9a18.woff2')format("woff");}.ff5_c00415{font-family:ff5_c00415;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00415{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.me_c00415{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m18_c00415{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m20_c00415{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m17_c00415{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m15_c00415{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m21_c00415{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m19_c00415{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m14_c00415{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00415{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m13_c00415{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00415{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m2_c00415{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3_c00415{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m0_c00415{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m22_c00415{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md_c00415{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma_c00415{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc_c00415{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00415{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00415{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00415{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4_c00415{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00415{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c00415{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m28_c00415{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00415{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m27_c00415{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00415{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m26_c00415{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m24_c00415{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00415{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00415{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00415{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00415{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m25_c00415{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m23_c00415{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m29_c00415{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00415{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m9_c00415{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c00415{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6_c00415{transform:matrix(3.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.772500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00415{transform:matrix(4.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.137500,0.000000,0.000000,0.250000,0,0);}
.m12_c00415{transform:matrix(4.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.500000,0.000000,0.000000,0.250000,0,0);}
.mb_c00415{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.v1_c00415{vertical-align:4.500000px;}
.ls0_c00415{letter-spacing:0.000000px;}
.sc__c00415{text-shadow:none;}
.sc0_c00415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00415{-webkit-text-stroke:0px transparent;}
.sc0_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00415{word-spacing:0.000000px;}
._0_c00415{margin-left:-6.987130px;}
.fc0_c00415{color:transparent;}
.fs3_c00415{font-size:12.000000px;}
.fs0_c00415{font-size:54.000000px;}
.fs5_c00415{font-size:60.000000px;}
.fs4_c00415{font-size:63.000000px;}
.fs1_c00415{font-size:66.000000px;}
.fs2_c00415{font-size:72.000000px;}
.y0_c00415{bottom:0.000000px;}
.y52_c00415{bottom:112.500000px;}
.y51_c00415{bottom:115.423500px;}
.y50_c00415{bottom:118.198500px;}
.y4f_c00415{bottom:180.148500px;}
.y4e_c00415{bottom:201.823500px;}
.y4d_c00415{bottom:223.723500px;}
.y4c_c00415{bottom:245.323500px;}
.y4b_c00415{bottom:267.673500px;}
.y4a_c00415{bottom:289.275000px;}
.y49_c00415{bottom:311.250000px;}
.y48_c00415{bottom:332.473500px;}
.y47_c00415{bottom:354.073500px;}
.y46_c00415{bottom:375.673500px;}
.y45_c00415{bottom:397.573500px;}
.y44_c00415{bottom:419.548500px;}
.y43_c00415{bottom:441.148500px;}
.y42_c00415{bottom:462.448500px;}
.y41_c00415{bottom:484.348500px;}
.y40_c00415{bottom:505.648500px;}
.y3f_c00415{bottom:526.875000px;}
.y3e_c00415{bottom:548.473500px;}
.y3d_c00415{bottom:569.698500px;}
.y3c_c00415{bottom:591.298500px;}
.y3b_c00415{bottom:612.898500px;}
.y3a_c00415{bottom:635.173500px;}
.y39_c00415{bottom:656.473500px;}
.y38_c00415{bottom:678.375000px;}
.y37_c00415{bottom:699.973500px;}
.y36_c00415{bottom:718.348500px;}
.y35_c00415{bottom:743.250000px;}
.y34_c00415{bottom:764.848500px;}
.y32_c00415{bottom:783.148500px;}
.y33_c00415{bottom:786.750000px;}
.y2c_c00415{bottom:851.550000px;}
.y2e_c00415{bottom:853.348500px;}
.y2d_c00415{bottom:854.775000px;}
.y27_c00415{bottom:867.750000px;}
.y28_c00415{bottom:869.250000px;}
.y29_c00415{bottom:869.925000px;}
.y2b_c00415{bottom:870.675000px;}
.y2a_c00415{bottom:871.425000px;}
.y16_c00415{bottom:884.698500px;}
.y17_c00415{bottom:886.125000px;}
.y1e_c00415{bottom:887.175000px;}
.y1c_c00415{bottom:888.300000px;}
.y26_c00415{bottom:888.675000px;}
.y11_c00415{bottom:895.198500px;}
.y12_c00415{bottom:901.650000px;}
.y13_c00415{bottom:903.073500px;}
.y14_c00415{bottom:904.125000px;}
.y15_c00415{bottom:904.500000px;}
.y1b_c00415{bottom:904.875000px;}
.y24_c00415{bottom:905.550000px;}
.y25_c00415{bottom:906.000000px;}
.yd_c00415{bottom:918.150000px;}
.ye_c00415{bottom:920.025000px;}
.yf_c00415{bottom:920.698500px;}
.y10_c00415{bottom:921.073500px;}
.y1d_c00415{bottom:921.750000px;}
.y1a_c00415{bottom:922.500000px;}
.y22_c00415{bottom:923.250000px;}
.y23_c00415{bottom:923.625000px;}
.yc_c00415{bottom:935.098500px;}
.y18_c00415{bottom:939.823500px;}
.y21_c00415{bottom:940.875000px;}
.y9_c00415{bottom:953.848500px;}
.ya_c00415{bottom:956.698500px;}
.yb_c00415{bottom:957.073500px;}
.y6_c00415{bottom:967.125000px;}
.y7_c00415{bottom:970.425000px;}
.y8_c00415{bottom:972.525000px;}
.y20_c00415{bottom:973.650000px;}
.y19_c00415{bottom:974.323500px;}
.y1f_c00415{bottom:975.073500px;}
.y5_c00415{bottom:988.723500px;}
.y4_c00415{bottom:1030.198500px;}
.y2_c00415{bottom:1032.675000px;}
.y3_c00415{bottom:1043.098500px;}
.y1_c00415{bottom:1045.650000px;}
.y2f_c00415{bottom:1102.500000px;}
.y31_c00415{bottom:1112.550000px;}
.y30_c00415{bottom:1117.050000px;}
.h5_c00415{height:11.777344px;}
.h1_c00415{height:54.421875px;}
.h7_c00415{height:60.468750px;}
.h6_c00415{height:61.831055px;}
.h2_c00415{height:64.775391px;}
.h8_c00415{height:68.835938px;}
.h4_c00415{height:69.275391px;}
.h9_c00415{height:70.664062px;}
.h3_c00415{height:75.093750px;}
.h0_c00415{height:1174.500000px;}
.w0_c00415{width:731.977200px;}
.w1_c00415{width:732.000000px;}
.x0_c00415{left:0.000000px;}
.x28_c00415{left:47.140200px;}
.x29_c00415{left:48.190200px;}
.x27_c00415{left:49.690200px;}
.x26_c00415{left:50.740200px;}
.x25_c00415{left:51.790200px;}
.xf_c00415{left:59.740200px;}
.x6_c00415{left:61.915200px;}
.x7_c00415{left:63.340200px;}
.x2b_c00415{left:65.890200px;}
.x13_c00415{left:67.315200px;}
.xa_c00415{left:68.740200px;}
.x5_c00415{left:70.915200px;}
.x21_c00415{left:79.165200px;}
.x2a_c00415{left:80.290200px;}
.xd_c00415{left:83.890200px;}
.x8_c00415{left:85.990200px;}
.x22_c00415{left:106.165200px;}
.xe_c00415{left:131.365200px;}
.x2c_c00415{left:151.915200px;}
.x2d_c00415{left:170.590200px;}
.x24_c00415{left:172.763700px;}
.x1f_c00415{left:219.565200px;}
.x10_c00415{left:225.340200px;}
.x16_c00415{left:229.990200px;}
.x14_c00415{left:236.515200px;}
.x11_c00415{left:240.790200px;}
.x17_c00415{left:249.115200px;}
.x15_c00415{left:251.965200px;}
.x9_c00415{left:261.715200px;}
.x23_c00415{left:280.090200px;}
.x12_c00415{left:291.940200px;}
.xb_c00415{left:349.915200px;}
.xc_c00415{left:369.340200px;}
.x18_c00415{left:389.890200px;}
.x2_c00415{left:414.715200px;}
.x19_c00415{left:416.890200px;}
.x20_c00415{left:417.940200px;}
.x1a_c00415{left:432.340200px;}
.x1_c00415{left:434.515200px;}
.x1b_c00415{left:460.090200px;}
.x4_c00415{left:547.540200px;}
.x1c_c00415{left:553.690200px;}
.x1d_c00415{left:562.690200px;}
.x3_c00415{left:570.190200px;}
.x1e_c00415{left:591.490200px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.v1_c00415{vertical-align:4.000000pt;}
.ls0_c00415{letter-spacing:0.000000pt;}
.ws0_c00415{word-spacing:0.000000pt;}
._0_c00415{margin-left:-6.210782pt;}
.fs3_c00415{font-size:10.666667pt;}
.fs0_c00415{font-size:48.000000pt;}
.fs5_c00415{font-size:53.333333pt;}
.fs4_c00415{font-size:56.000000pt;}
.fs1_c00415{font-size:58.666667pt;}
.fs2_c00415{font-size:64.000000pt;}
.y0_c00415{bottom:0.000000pt;}
.y52_c00415{bottom:100.000000pt;}
.y51_c00415{bottom:102.598667pt;}
.y50_c00415{bottom:105.065333pt;}
.y4f_c00415{bottom:160.132000pt;}
.y4e_c00415{bottom:179.398667pt;}
.y4d_c00415{bottom:198.865333pt;}
.y4c_c00415{bottom:218.065333pt;}
.y4b_c00415{bottom:237.932000pt;}
.y4a_c00415{bottom:257.133333pt;}
.y49_c00415{bottom:276.666667pt;}
.y48_c00415{bottom:295.532000pt;}
.y47_c00415{bottom:314.732000pt;}
.y46_c00415{bottom:333.932000pt;}
.y45_c00415{bottom:353.398667pt;}
.y44_c00415{bottom:372.932000pt;}
.y43_c00415{bottom:392.132000pt;}
.y42_c00415{bottom:411.065333pt;}
.y41_c00415{bottom:430.532000pt;}
.y40_c00415{bottom:449.465333pt;}
.y3f_c00415{bottom:468.333333pt;}
.y3e_c00415{bottom:487.532000pt;}
.y3d_c00415{bottom:506.398667pt;}
.y3c_c00415{bottom:525.598667pt;}
.y3b_c00415{bottom:544.798667pt;}
.y3a_c00415{bottom:564.598667pt;}
.y39_c00415{bottom:583.532000pt;}
.y38_c00415{bottom:603.000000pt;}
.y37_c00415{bottom:622.198667pt;}
.y36_c00415{bottom:638.532000pt;}
.y35_c00415{bottom:660.666667pt;}
.y34_c00415{bottom:679.865333pt;}
.y32_c00415{bottom:696.132000pt;}
.y33_c00415{bottom:699.333333pt;}
.y2c_c00415{bottom:756.933333pt;}
.y2e_c00415{bottom:758.532000pt;}
.y2d_c00415{bottom:759.800000pt;}
.y27_c00415{bottom:771.333333pt;}
.y28_c00415{bottom:772.666667pt;}
.y29_c00415{bottom:773.266667pt;}
.y2b_c00415{bottom:773.933333pt;}
.y2a_c00415{bottom:774.600000pt;}
.y16_c00415{bottom:786.398667pt;}
.y17_c00415{bottom:787.666667pt;}
.y1e_c00415{bottom:788.600000pt;}
.y1c_c00415{bottom:789.600000pt;}
.y26_c00415{bottom:789.933333pt;}
.y11_c00415{bottom:795.732000pt;}
.y12_c00415{bottom:801.466667pt;}
.y13_c00415{bottom:802.732000pt;}
.y14_c00415{bottom:803.666667pt;}
.y15_c00415{bottom:804.000000pt;}
.y1b_c00415{bottom:804.333333pt;}
.y24_c00415{bottom:804.933333pt;}
.y25_c00415{bottom:805.333333pt;}
.yd_c00415{bottom:816.133333pt;}
.ye_c00415{bottom:817.800000pt;}
.yf_c00415{bottom:818.398667pt;}
.y10_c00415{bottom:818.732000pt;}
.y1d_c00415{bottom:819.333333pt;}
.y1a_c00415{bottom:820.000000pt;}
.y22_c00415{bottom:820.666667pt;}
.y23_c00415{bottom:821.000000pt;}
.yc_c00415{bottom:831.198667pt;}
.y18_c00415{bottom:835.398667pt;}
.y21_c00415{bottom:836.333333pt;}
.y9_c00415{bottom:847.865333pt;}
.ya_c00415{bottom:850.398667pt;}
.yb_c00415{bottom:850.732000pt;}
.y6_c00415{bottom:859.666667pt;}
.y7_c00415{bottom:862.600000pt;}
.y8_c00415{bottom:864.466667pt;}
.y20_c00415{bottom:865.466667pt;}
.y19_c00415{bottom:866.065333pt;}
.y1f_c00415{bottom:866.732000pt;}
.y5_c00415{bottom:878.865333pt;}
.y4_c00415{bottom:915.732000pt;}
.y2_c00415{bottom:917.933333pt;}
.y3_c00415{bottom:927.198667pt;}
.y1_c00415{bottom:929.466667pt;}
.y2f_c00415{bottom:980.000000pt;}
.y31_c00415{bottom:988.933333pt;}
.y30_c00415{bottom:992.933333pt;}
.h5_c00415{height:10.468750pt;}
.h1_c00415{height:48.375000pt;}
.h7_c00415{height:53.750000pt;}
.h6_c00415{height:54.960938pt;}
.h2_c00415{height:57.578125pt;}
.h8_c00415{height:61.187500pt;}
.h4_c00415{height:61.578125pt;}
.h9_c00415{height:62.812500pt;}
.h3_c00415{height:66.750000pt;}
.h0_c00415{height:1044.000000pt;}
.w0_c00415{width:650.646400pt;}
.w1_c00415{width:650.666667pt;}
.x0_c00415{left:0.000000pt;}
.x28_c00415{left:41.902400pt;}
.x29_c00415{left:42.835733pt;}
.x27_c00415{left:44.169067pt;}
.x26_c00415{left:45.102400pt;}
.x25_c00415{left:46.035733pt;}
.xf_c00415{left:53.102400pt;}
.x6_c00415{left:55.035733pt;}
.x7_c00415{left:56.302400pt;}
.x2b_c00415{left:58.569067pt;}
.x13_c00415{left:59.835733pt;}
.xa_c00415{left:61.102400pt;}
.x5_c00415{left:63.035733pt;}
.x21_c00415{left:70.369067pt;}
.x2a_c00415{left:71.369067pt;}
.xd_c00415{left:74.569067pt;}
.x8_c00415{left:76.435733pt;}
.x22_c00415{left:94.369067pt;}
.xe_c00415{left:116.769067pt;}
.x2c_c00415{left:135.035733pt;}
.x2d_c00415{left:151.635733pt;}
.x24_c00415{left:153.567733pt;}
.x1f_c00415{left:195.169067pt;}
.x10_c00415{left:200.302400pt;}
.x16_c00415{left:204.435733pt;}
.x14_c00415{left:210.235733pt;}
.x11_c00415{left:214.035733pt;}
.x17_c00415{left:221.435733pt;}
.x15_c00415{left:223.969067pt;}
.x9_c00415{left:232.635733pt;}
.x23_c00415{left:248.969067pt;}
.x12_c00415{left:259.502400pt;}
.xb_c00415{left:311.035733pt;}
.xc_c00415{left:328.302400pt;}
.x18_c00415{left:346.569067pt;}
.x2_c00415{left:368.635733pt;}
.x19_c00415{left:370.569067pt;}
.x20_c00415{left:371.502400pt;}
.x1a_c00415{left:384.302400pt;}
.x1_c00415{left:386.235733pt;}
.x1b_c00415{left:408.969067pt;}
.x4_c00415{left:486.702400pt;}
.x1c_c00415{left:492.169067pt;}
.x1d_c00415{left:500.169067pt;}
.x3_c00415{left:506.835733pt;}
.x1e_c00415{left:525.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_313cb4151c26152287c7df48.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00416{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m0_c00416{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c00416{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00416{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00416{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md_c00416{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00416{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00416{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00416{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00416{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00416{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00416{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00416{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c00416{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00416{color:transparent;}
.fs0_c00416{font-size:60.000000px;}
.fs1_c00416{font-size:72.000000px;}
.y0_c00416{bottom:0.000000px;}
.y12_c00416{bottom:711.523500px;}
.y11_c00416{bottom:735.673500px;}
.y10_c00416{bottom:757.648500px;}
.yf_c00416{bottom:779.925000px;}
.ye_c00416{bottom:801.900000px;}
.yd_c00416{bottom:824.250000px;}
.yc_c00416{bottom:846.525000px;}
.yb_c00416{bottom:868.500000px;}
.ya_c00416{bottom:890.098500px;}
.y9_c00416{bottom:911.698500px;}
.y8_c00416{bottom:933.675000px;}
.y7_c00416{bottom:955.275000px;}
.y6_c00416{bottom:977.175000px;}
.y5_c00416{bottom:999.150000px;}
.y4_c00416{bottom:1021.500000px;}
.y3_c00416{bottom:1079.473500px;}
.y2_c00416{bottom:1081.275000px;}
.y1_c00416{bottom:1081.650000px;}
.h1_c00416{height:58.886719px;}
.h2_c00416{height:70.664062px;}
.h0_c00416{height:1174.500000px;}
.w0_c00416{width:731.977200px;}
.w1_c00416{width:732.000000px;}
.x0_c00416{left:0.000000px;}
.x4_c00416{left:67.990200px;}
.x6_c00416{left:69.490200px;}
.x7_c00416{left:70.540200px;}
.x8_c00416{left:71.590200px;}
.x5_c00416{left:87.115200px;}
.x1_c00416{left:289.765200px;}
.x2_c00416{left:488.890200px;}
.x3_c00416{left:653.365200px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls0_c00416{letter-spacing:0.000000pt;}
.ws0_c00416{word-spacing:0.000000pt;}
.fs0_c00416{font-size:53.333333pt;}
.fs1_c00416{font-size:64.000000pt;}
.y0_c00416{bottom:0.000000pt;}
.y12_c00416{bottom:632.465333pt;}
.y11_c00416{bottom:653.932000pt;}
.y10_c00416{bottom:673.465333pt;}
.yf_c00416{bottom:693.266667pt;}
.ye_c00416{bottom:712.800000pt;}
.yd_c00416{bottom:732.666667pt;}
.yc_c00416{bottom:752.466667pt;}
.yb_c00416{bottom:772.000000pt;}
.ya_c00416{bottom:791.198667pt;}
.y9_c00416{bottom:810.398667pt;}
.y8_c00416{bottom:829.933333pt;}
.y7_c00416{bottom:849.133333pt;}
.y6_c00416{bottom:868.600000pt;}
.y5_c00416{bottom:888.133333pt;}
.y4_c00416{bottom:908.000000pt;}
.y3_c00416{bottom:959.532000pt;}
.y2_c00416{bottom:961.133333pt;}
.y1_c00416{bottom:961.466667pt;}
.h1_c00416{height:52.343750pt;}
.h2_c00416{height:62.812500pt;}
.h0_c00416{height:1044.000000pt;}
.w0_c00416{width:650.646400pt;}
.w1_c00416{width:650.666667pt;}
.x0_c00416{left:0.000000pt;}
.x4_c00416{left:60.435733pt;}
.x6_c00416{left:61.769067pt;}
.x7_c00416{left:62.702400pt;}
.x8_c00416{left:63.635733pt;}
.x5_c00416{left:77.435733pt;}
.x1_c00416{left:257.569067pt;}
.x2_c00416{left:434.569067pt;}
.x3_c00416{left:580.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec8a1254b75fdf3ad6f46b68.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00417;src:url('chunks/assets/font_91d60e251f0d96fcd1526f00.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00417;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:1.575000;font-style:normal;font-weight:normal;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_a8ebf844c1ae294d85c3a496.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00417;src:url('chunks/assets/font_4f238c0d899305fba92fb4e8.woff2')format("woff");}.ff5_c00417{font-family:ff5_c00417;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m18_c00417{transform:matrix(0.022500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00417{transform:matrix(0.027500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00417{transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00417{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00417{transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);}
.m40_c00417{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00417{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00417{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00417{transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);}
.m48_c00417{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m65_c00417{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00417{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00417{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m43_c00417{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m33_c00417{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m38_c00417{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m39_c00417{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m30_c00417{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m35_c00417{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m4_c00417{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m31_c00417{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m34_c00417{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m57_c00417{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m50_c00417{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m13_c00417{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m19_c00417{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m25_c00417{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m68_c00417{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m42_c00417{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m27_c00417{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m16_c00417{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00417{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00417{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m23_c00417{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m14_c00417{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m15_c00417{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m21_c00417{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00417{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00417{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m11_c00417{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mf_c00417{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m20_c00417{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m17_c00417{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m32_c00417{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m10_c00417{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md_c00417{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m9_c00417{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m12_c00417{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8_c00417{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00417{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma_c00417{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me_c00417{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7_c00417{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00417{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m2c_c00417{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb_c00417{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c00417{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m44_c00417{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00417{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00417{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c00417{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m61_c00417{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m29_c00417{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m51_c00417{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00417{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m64_c00417{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m62_c00417{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m45_c00417{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m66_c00417{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m37_c00417{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m52_c00417{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m53_c00417{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m46_c00417{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c00417{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m47_c00417{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00417{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m63_c00417{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m58_c00417{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m54_c00417{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m55_c00417{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m24_c00417{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00417{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00417{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00417{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00417{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00417{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m6_c00417{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m28_c00417{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m69_c00417{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.m26_c00417{transform:matrix(1.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.450000,0.000000,0.000000,0.250000,0,0);}
.m41_c00417{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.m67_c00417{transform:matrix(1.862500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.862500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.862500,0.000000,0.000000,0.250000,0,0);}
.m22_c00417{transform:matrix(1.972500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.972500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.972500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00417{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.m56_c00417{transform:matrix(2.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.162500,0.000000,0.000000,0.250000,0,0);}
.m60_c00417{transform:matrix(2.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.225000,0.000000,0.000000,0.250000,0,0);}
.m59_c00417{transform:matrix(2.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.285000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00417{transform:matrix(2.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.575000,0.000000,0.000000,0.250000,0,0);}
.m5_c00417{transform:matrix(2.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.812500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00417{transform:matrix(2.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.825000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00417{transform:matrix(3.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.360000,0.000000,0.000000,0.250000,0,0);}
.m36_c00417{transform:matrix(3.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.422500,0.000000,0.000000,0.250000,0,0);}
.m49_c00417{transform:matrix(4.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.262500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00417{transform:matrix(4.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.437500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00417{transform:matrix(4.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.562500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00417{transform:matrix(4.847500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.847500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.847500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00417{transform:matrix(4.862500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.862500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.862500,0.000000,0.000000,0.250000,0,0);}
.m1_c00417{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v7_c00417{vertical-align:-2.694000px;}
.v6_c00417{vertical-align:-1.500000px;}
.v0_c00417{vertical-align:0.000000px;}
.v2_c00417{vertical-align:1.500000px;}
.v1_c00417{vertical-align:2.694000px;}
.v3_c00417{vertical-align:4.200000px;}
.v4_c00417{vertical-align:5.694000px;}
.v5_c00417{vertical-align:7.200000px;}
.ls12_c00417{letter-spacing:0.000000px;}
.ls11_c00417{letter-spacing:101.285319px;}
.lsd_c00417{letter-spacing:120.900000px;}
.ls4_c00417{letter-spacing:125.720174px;}
.ls10_c00417{letter-spacing:127.694015px;}
.lse_c00417{letter-spacing:136.188366px;}
.lsb_c00417{letter-spacing:139.512465px;}
.lsc_c00417{letter-spacing:151.145558px;}
.ls6_c00417{letter-spacing:153.469871px;}
.ls9_c00417{letter-spacing:155.281246px;}
.lsa_c00417{letter-spacing:157.092622px;}
.lsf_c00417{letter-spacing:164.671488px;}
.ls5_c00417{letter-spacing:166.608471px;}
.ls0_c00417{letter-spacing:168.545455px;}
.ls1_c00417{letter-spacing:171.292905px;}
.ls3_c00417{letter-spacing:173.266746px;}
.ls2_c00417{letter-spacing:173.274673px;}
.ls7_c00417{letter-spacing:184.238095px;}
.ls8_c00417{letter-spacing:188.489796px;}
.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;}
}
.wse_c00417{word-spacing:0.000000px;}
.ws1_c00417{word-spacing:98.630370px;}
.wsa_c00417{word-spacing:109.686088px;}
.ws8_c00417{word-spacing:113.725723px;}
.ws4_c00417{word-spacing:114.545455px;}
.wsc_c00417{word-spacing:119.309896px;}
.wsd_c00417{word-spacing:133.658495px;}
.ws2_c00417{word-spacing:136.134216px;}
.ws3_c00417{word-spacing:153.292905px;}
.wsb_c00417{word-spacing:155.274673px;}
.ws9_c00417{word-spacing:159.306381px;}
.ws0_c00417{word-spacing:161.288149px;}
.ws7_c00417{word-spacing:166.238095px;}
.ws5_c00417{word-spacing:166.663265px;}
.ws6_c00417{word-spacing:332.718750px;}
._0_c00417{width:171.292905px;}
.fc0_c00417{color:transparent;}
.fs8_c00417{font-size:36.000000px;}
.fs2_c00417{font-size:42.000000px;}
.fs6_c00417{font-size:51.000000px;}
.fs3_c00417{font-size:54.000000px;}
.fs0_c00417{font-size:60.000000px;}
.fs4_c00417{font-size:63.000000px;}
.fs1_c00417{font-size:66.000000px;}
.fs5_c00417{font-size:72.000000px;}
.fs7_c00417{font-size:144.000000px;}
.y0_c00417{bottom:0.000000px;}
.y2b6_c00417{bottom:74.698500px;}
.y2b7_c00417{bottom:75.073500px;}
.y2ae_c00417{bottom:77.548500px;}
.y2af_c00417{bottom:77.923500px;}
.y2ad_c00417{bottom:78.000000px;}
.y2ab_c00417{bottom:78.298500px;}
.y2a9_c00417{bottom:79.048500px;}
.y2b1_c00417{bottom:79.348500px;}
.y2b3_c00417{bottom:79.423500px;}
.y2a7_c00417{bottom:79.723500px;}
.y2b2_c00417{bottom:80.473500px;}
.y2b4_c00417{bottom:81.148500px;}
.y2b5_c00417{bottom:82.273500px;}
.y2a6_c00417{bottom:84.073500px;}
.y2a5_c00417{bottom:84.823500px;}
.y2a4_c00417{bottom:94.198500px;}
.y2ac_c00417{bottom:94.500000px;}
.y2aa_c00417{bottom:94.875000px;}
.y2a8_c00417{bottom:95.548500px;}
.y2b0_c00417{bottom:95.625000px;}
.y289_c00417{bottom:96.298500px;}
.y29a_c00417{bottom:96.673500px;}
.y299_c00417{bottom:97.348500px;}
.y284_c00417{bottom:101.023500px;}
.y283_c00417{bottom:101.323500px;}
.y285_c00417{bottom:110.323500px;}
.y287_c00417{bottom:110.698500px;}
.y292_c00417{bottom:111.073500px;}
.y28c_c00417{bottom:111.448500px;}
.y28d_c00417{bottom:111.750000px;}
.y290_c00417{bottom:112.125000px;}
.y288_c00417{bottom:112.875000px;}
.y298_c00417{bottom:113.625000px;}
.y29c_c00417{bottom:114.673500px;}
.y29f_c00417{bottom:115.723500px;}
.y282_c00417{bottom:117.898500px;}
.y281_c00417{bottom:118.273500px;}
.y2a3_c00417{bottom:120.750000px;}
.y28b_c00417{bottom:128.023500px;}
.y294_c00417{bottom:128.323500px;}
.y295_c00417{bottom:129.448500px;}
.y286_c00417{bottom:129.750000px;}
.y297_c00417{bottom:130.500000px;}
.y29e_c00417{bottom:132.298500px;}
.y280_c00417{bottom:134.098500px;}
.y27f_c00417{bottom:134.773500px;}
.y2a2_c00417{bottom:138.448500px;}
.y291_c00417{bottom:145.273500px;}
.y28f_c00417{bottom:145.573500px;}
.y293_c00417{bottom:145.648500px;}
.y28e_c00417{bottom:145.948500px;}
.y28a_c00417{bottom:146.323500px;}
.y296_c00417{bottom:147.073500px;}
.y29b_c00417{bottom:147.750000px;}
.y29d_c00417{bottom:150.000000px;}
.y27e_c00417{bottom:150.298500px;}
.y27d_c00417{bottom:150.973500px;}
.y2a0_c00417{bottom:151.348500px;}
.y2a1_c00417{bottom:151.723500px;}
.y27a_c00417{bottom:162.523500px;}
.y279_c00417{bottom:162.898500px;}
.y278_c00417{bottom:163.273500px;}
.y27b_c00417{bottom:164.323500px;}
.y277_c00417{bottom:166.125000px;}
.y276_c00417{bottom:166.500000px;}
.y27c_c00417{bottom:167.173500px;}
.y271_c00417{bottom:179.848500px;}
.y270_c00417{bottom:180.148500px;}
.y26e_c00417{bottom:180.223500px;}
.y26f_c00417{bottom:180.523500px;}
.y272_c00417{bottom:181.273500px;}
.y26d_c00417{bottom:183.073500px;}
.y273_c00417{bottom:183.448500px;}
.y26c_c00417{bottom:183.750000px;}
.y275_c00417{bottom:183.823500px;}
.y274_c00417{bottom:185.250000px;}
.y261_c00417{bottom:195.298500px;}
.y262_c00417{bottom:196.048500px;}
.y263_c00417{bottom:196.348500px;}
.y264_c00417{bottom:196.723500px;}
.y265_c00417{bottom:197.098500px;}
.y266_c00417{bottom:197.398500px;}
.y267_c00417{bottom:197.848500px;}
.y268_c00417{bottom:198.523500px;}
.y269_c00417{bottom:199.273500px;}
.y260_c00417{bottom:200.323500px;}
.y26a_c00417{bottom:201.448500px;}
.y26b_c00417{bottom:202.500000px;}
.y256_c00417{bottom:212.548500px;}
.y257_c00417{bottom:213.673500px;}
.y258_c00417{bottom:213.973500px;}
.y259_c00417{bottom:214.348500px;}
.y25a_c00417{bottom:214.723500px;}
.y25b_c00417{bottom:215.098500px;}
.y25c_c00417{bottom:215.848500px;}
.y25d_c00417{bottom:216.523500px;}
.y255_c00417{bottom:216.898500px;}
.y25e_c00417{bottom:218.398500px;}
.y25f_c00417{bottom:219.000000px;}
.y24b_c00417{bottom:231.673500px;}
.y24d_c00417{bottom:231.973500px;}
.y24c_c00417{bottom:232.048500px;}
.y24e_c00417{bottom:232.423500px;}
.y24f_c00417{bottom:232.723500px;}
.y250_c00417{bottom:233.098500px;}
.y251_c00417{bottom:233.473500px;}
.y252_c00417{bottom:234.148500px;}
.y24a_c00417{bottom:234.223500px;}
.y253_c00417{bottom:234.898500px;}
.y254_c00417{bottom:235.648500px;}
.y243_c00417{bottom:248.923500px;}
.y242_c00417{bottom:249.298500px;}
.y244_c00417{bottom:249.598500px;}
.y241_c00417{bottom:251.398500px;}
.y240_c00417{bottom:251.473500px;}
.y245_c00417{bottom:251.848500px;}
.y246_c00417{bottom:252.523500px;}
.y247_c00417{bottom:253.198500px;}
.y248_c00417{bottom:254.025000px;}
.y249_c00417{bottom:254.400000px;}
.y238_c00417{bottom:264.375000px;}
.y239_c00417{bottom:265.500000px;}
.y23a_c00417{bottom:265.875000px;}
.y23b_c00417{bottom:266.548500px;}
.y23c_c00417{bottom:267.298500px;}
.y237_c00417{bottom:268.423500px;}
.y23d_c00417{bottom:269.098500px;}
.y23e_c00417{bottom:270.223500px;}
.y23f_c00417{bottom:270.900000px;}
.y230_c00417{bottom:283.125000px;}
.y231_c00417{bottom:283.198500px;}
.y22f_c00417{bottom:283.500000px;}
.y22e_c00417{bottom:283.798500px;}
.y22d_c00417{bottom:284.625000px;}
.y22c_c00417{bottom:285.598500px;}
.y232_c00417{bottom:285.673500px;}
.y233_c00417{bottom:286.723500px;}
.y234_c00417{bottom:287.473500px;}
.y235_c00417{bottom:288.150000px;}
.y236_c00417{bottom:288.525000px;}
.y223_c00417{bottom:300.750000px;}
.y224_c00417{bottom:301.125000px;}
.y225_c00417{bottom:301.500000px;}
.y226_c00417{bottom:301.875000px;}
.y227_c00417{bottom:302.548500px;}
.y222_c00417{bottom:302.625000px;}
.y221_c00417{bottom:303.000000px;}
.y228_c00417{bottom:303.298500px;}
.y229_c00417{bottom:304.423500px;}
.y22a_c00417{bottom:305.098500px;}
.y22b_c00417{bottom:305.848500px;}
.y21c_c00417{bottom:317.323500px;}
.y21b_c00417{bottom:317.698500px;}
.y21a_c00417{bottom:318.000000px;}
.y219_c00417{bottom:318.073500px;}
.y21d_c00417{bottom:318.448500px;}
.y21e_c00417{bottom:319.198500px;}
.y218_c00417{bottom:319.875000px;}
.y21f_c00417{bottom:321.298500px;}
.y220_c00417{bottom:322.723500px;}
.y212_c00417{bottom:335.025000px;}
.y213_c00417{bottom:335.323500px;}
.y214_c00417{bottom:335.698500px;}
.y211_c00417{bottom:336.073500px;}
.y210_c00417{bottom:336.448500px;}
.y215_c00417{bottom:336.750000px;}
.y216_c00417{bottom:338.625000px;}
.y217_c00417{bottom:339.673500px;}
.y208_c00417{bottom:352.275000px;}
.y209_c00417{bottom:352.573500px;}
.y20a_c00417{bottom:352.650000px;}
.y20b_c00417{bottom:352.948500px;}
.y206_c00417{bottom:353.323500px;}
.y20c_c00417{bottom:353.698500px;}
.y20d_c00417{bottom:354.448500px;}
.y20e_c00417{bottom:356.923500px;}
.y20f_c00417{bottom:357.673500px;}
.y207_c00417{bottom:367.723500px;}
.y1fb_c00417{bottom:367.798500px;}
.y1fc_c00417{bottom:368.473500px;}
.y1fd_c00417{bottom:368.848500px;}
.y1ff_c00417{bottom:369.150000px;}
.y1fe_c00417{bottom:369.223500px;}
.y200_c00417{bottom:369.525000px;}
.y1f9_c00417{bottom:370.198500px;}
.y1fa_c00417{bottom:370.275000px;}
.y201_c00417{bottom:371.323500px;}
.y203_c00417{bottom:372.375000px;}
.y202_c00417{bottom:372.448500px;}
.y204_c00417{bottom:372.823500px;}
.y205_c00417{bottom:373.198500px;}
.y1ee_c00417{bottom:386.473500px;}
.y1ed_c00417{bottom:386.848500px;}
.y1ef_c00417{bottom:387.150000px;}
.y1f0_c00417{bottom:387.223500px;}
.y1f1_c00417{bottom:387.525000px;}
.y1f2_c00417{bottom:387.900000px;}
.y1f3_c00417{bottom:388.650000px;}
.y1f4_c00417{bottom:388.948500px;}
.y1f5_c00417{bottom:389.323500px;}
.y1f6_c00417{bottom:390.073500px;}
.y1f7_c00417{bottom:390.750000px;}
.y1f8_c00417{bottom:391.875000px;}
.y1e5_c00417{bottom:403.723500px;}
.y1e3_c00417{bottom:403.798500px;}
.y1e4_c00417{bottom:404.098500px;}
.y1e6_c00417{bottom:404.473500px;}
.y1e7_c00417{bottom:405.223500px;}
.y1e8_c00417{bottom:405.900000px;}
.y1e9_c00417{bottom:406.573500px;}
.y1ea_c00417{bottom:407.398500px;}
.y1eb_c00417{bottom:408.448500px;}
.y1ec_c00417{bottom:410.548500px;}
.y1dc_c00417{bottom:421.048500px;}
.y1da_c00417{bottom:421.348500px;}
.y1db_c00417{bottom:421.423500px;}
.y1dd_c00417{bottom:421.723500px;}
.y1de_c00417{bottom:422.098500px;}
.y1df_c00417{bottom:422.773500px;}
.y1e0_c00417{bottom:423.523500px;}
.y1e1_c00417{bottom:424.273500px;}
.y1e2_c00417{bottom:425.698500px;}
.y1cf_c00417{bottom:438.298500px;}
.y1d0_c00417{bottom:438.598500px;}
.y1d1_c00417{bottom:438.673500px;}
.y1d2_c00417{bottom:439.048500px;}
.y1d3_c00417{bottom:439.423500px;}
.y1d4_c00417{bottom:440.098500px;}
.y1d5_c00417{bottom:441.148500px;}
.y1d6_c00417{bottom:442.273500px;}
.y1d7_c00417{bottom:442.648500px;}
.y1d8_c00417{bottom:443.250000px;}
.y1d9_c00417{bottom:443.698500px;}
.y1c2_c00417{bottom:455.173500px;}
.y1c3_c00417{bottom:455.250000px;}
.y1c6_c00417{bottom:455.548500px;}
.y1c4_c00417{bottom:455.625000px;}
.y1c5_c00417{bottom:455.923500px;}
.y1c7_c00417{bottom:456.298500px;}
.y1c8_c00417{bottom:456.673500px;}
.y1c9_c00417{bottom:458.098500px;}
.y1ca_c00417{bottom:458.773500px;}
.y1cb_c00417{bottom:459.148500px;}
.y1cc_c00417{bottom:459.898500px;}
.y1cd_c00417{bottom:460.648500px;}
.y1ce_c00417{bottom:462.375000px;}
.y1b4_c00417{bottom:471.823500px;}
.y1b5_c00417{bottom:472.500000px;}
.y1b6_c00417{bottom:472.875000px;}
.y1b7_c00417{bottom:473.173500px;}
.y1b8_c00417{bottom:473.625000px;}
.y1b9_c00417{bottom:474.000000px;}
.y1ba_c00417{bottom:474.298500px;}
.y1bb_c00417{bottom:475.048500px;}
.y1bc_c00417{bottom:475.798500px;}
.y1bd_c00417{bottom:476.848500px;}
.y1be_c00417{bottom:477.898500px;}
.y1bf_c00417{bottom:478.948500px;}
.y1c0_c00417{bottom:479.698500px;}
.y1c1_c00417{bottom:480.448500px;}
.y1a9_c00417{bottom:489.000000px;}
.y1aa_c00417{bottom:489.448500px;}
.y1ab_c00417{bottom:489.823500px;}
.y1ac_c00417{bottom:490.125000px;}
.y1ad_c00417{bottom:490.500000px;}
.y1ae_c00417{bottom:490.875000px;}
.y1af_c00417{bottom:491.625000px;}
.y1b0_c00417{bottom:492.298500px;}
.y1b1_c00417{bottom:493.048500px;}
.y1b2_c00417{bottom:493.798500px;}
.y1b3_c00417{bottom:495.898500px;}
.y19e_c00417{bottom:506.323500px;}
.y19f_c00417{bottom:507.448500px;}
.y1a0_c00417{bottom:507.750000px;}
.y1a1_c00417{bottom:508.125000px;}
.y1a2_c00417{bottom:508.500000px;}
.y1a3_c00417{bottom:508.875000px;}
.y1a4_c00417{bottom:509.548500px;}
.y1a5_c00417{bottom:509.923500px;}
.y1a6_c00417{bottom:510.673500px;}
.y1a7_c00417{bottom:511.723500px;}
.y1a8_c00417{bottom:512.098500px;}
.y193_c00417{bottom:522.223500px;}
.y192_c00417{bottom:522.598500px;}
.y194_c00417{bottom:523.648500px;}
.y195_c00417{bottom:524.323500px;}
.y196_c00417{bottom:525.448500px;}
.y197_c00417{bottom:525.823500px;}
.y198_c00417{bottom:527.173500px;}
.y199_c00417{bottom:527.923500px;}
.y19a_c00417{bottom:528.598500px;}
.y19b_c00417{bottom:529.798500px;}
.y19c_c00417{bottom:530.098500px;}
.y19d_c00417{bottom:530.473500px;}
.y186_c00417{bottom:539.848500px;}
.y187_c00417{bottom:541.273500px;}
.y188_c00417{bottom:541.573500px;}
.y189_c00417{bottom:541.948500px;}
.y18a_c00417{bottom:542.398500px;}
.y18b_c00417{bottom:543.073500px;}
.y18c_c00417{bottom:543.750000px;}
.y18d_c00417{bottom:545.173500px;}
.y18e_c00417{bottom:545.548500px;}
.y18f_c00417{bottom:546.298500px;}
.y190_c00417{bottom:546.673500px;}
.y191_c00417{bottom:546.973500px;}
.y17a_c00417{bottom:556.723500px;}
.y17b_c00417{bottom:558.598500px;}
.y17c_c00417{bottom:558.898500px;}
.y17d_c00417{bottom:559.273500px;}
.y17e_c00417{bottom:559.648500px;}
.y17f_c00417{bottom:560.323500px;}
.y180_c00417{bottom:560.698500px;}
.y181_c00417{bottom:561.073500px;}
.y182_c00417{bottom:561.823500px;}
.y183_c00417{bottom:562.500000px;}
.y184_c00417{bottom:564.298500px;}
.y185_c00417{bottom:564.598500px;}
.y16e_c00417{bottom:573.673500px;}
.y16f_c00417{bottom:574.048500px;}
.y170_c00417{bottom:575.098500px;}
.y171_c00417{bottom:575.773500px;}
.y172_c00417{bottom:576.148500px;}
.y173_c00417{bottom:576.898500px;}
.y174_c00417{bottom:578.698500px;}
.y175_c00417{bottom:579.448500px;}
.y176_c00417{bottom:580.875000px;}
.y177_c00417{bottom:581.625000px;}
.y178_c00417{bottom:581.923500px;}
.y179_c00417{bottom:582.598500px;}
.y160_c00417{bottom:590.625000px;}
.y161_c00417{bottom:591.298500px;}
.y162_c00417{bottom:592.348500px;}
.y163_c00417{bottom:593.098500px;}
.y164_c00417{bottom:593.848500px;}
.y165_c00417{bottom:594.223500px;}
.y166_c00417{bottom:594.898500px;}
.y167_c00417{bottom:595.273500px;}
.y168_c00417{bottom:596.698500px;}
.y169_c00417{bottom:597.448500px;}
.y16a_c00417{bottom:598.125000px;}
.y16b_c00417{bottom:598.875000px;}
.y16c_c00417{bottom:599.548500px;}
.y16d_c00417{bottom:602.098500px;}
.y151_c00417{bottom:608.173500px;}
.y152_c00417{bottom:608.250000px;}
.y153_c00417{bottom:609.673500px;}
.y154_c00417{bottom:610.348500px;}
.y155_c00417{bottom:611.098500px;}
.y156_c00417{bottom:611.473500px;}
.y157_c00417{bottom:612.148500px;}
.y158_c00417{bottom:612.523500px;}
.y159_c00417{bottom:613.273500px;}
.y15a_c00417{bottom:613.948500px;}
.y15b_c00417{bottom:614.698500px;}
.y15c_c00417{bottom:615.750000px;}
.y15d_c00417{bottom:616.125000px;}
.y15e_c00417{bottom:616.500000px;}
.y15f_c00417{bottom:617.250000px;}
.y141_c00417{bottom:624.823500px;}
.y142_c00417{bottom:625.125000px;}
.y143_c00417{bottom:626.923500px;}
.y144_c00417{bottom:627.973500px;}
.y145_c00417{bottom:628.723500px;}
.y146_c00417{bottom:629.098500px;}
.y147_c00417{bottom:629.473500px;}
.y148_c00417{bottom:629.848500px;}
.y149_c00417{bottom:630.223500px;}
.y14a_c00417{bottom:631.648500px;}
.y14b_c00417{bottom:632.698500px;}
.y14c_c00417{bottom:633.375000px;}
.y14d_c00417{bottom:634.198500px;}
.y14e_c00417{bottom:634.500000px;}
.y14f_c00417{bottom:634.875000px;}
.y150_c00417{bottom:635.250000px;}
.y133_c00417{bottom:641.698500px;}
.y134_c00417{bottom:642.448500px;}
.y135_c00417{bottom:643.875000px;}
.y136_c00417{bottom:644.625000px;}
.y137_c00417{bottom:646.048500px;}
.y138_c00417{bottom:646.798500px;}
.y139_c00417{bottom:647.098500px;}
.y13a_c00417{bottom:647.848500px;}
.y13b_c00417{bottom:648.523500px;}
.y13c_c00417{bottom:649.273500px;}
.y13d_c00417{bottom:649.948500px;}
.y13e_c00417{bottom:650.698500px;}
.y13f_c00417{bottom:651.073500px;}
.y140_c00417{bottom:651.750000px;}
.yd9_c00417{bottom:658.948500px;}
.yda_c00417{bottom:659.023500px;}
.ye2_c00417{bottom:661.500000px;}
.ye9_c00417{bottom:662.548500px;}
.yf0_c00417{bottom:663.000000px;}
.yf7_c00417{bottom:663.673500px;}
.yfe_c00417{bottom:664.348500px;}
.y105_c00417{bottom:664.723500px;}
.y10c_c00417{bottom:665.473500px;}
.y112_c00417{bottom:666.148500px;}
.y118_c00417{bottom:667.273500px;}
.y11e_c00417{bottom:668.023500px;}
.y124_c00417{bottom:668.698500px;}
.y129_c00417{bottom:669.448500px;}
.y131_c00417{bottom:670.125000px;}
.y130_c00417{bottom:670.198500px;}
.y132_c00417{bottom:670.875000px;}
.yd8_c00417{bottom:675.898500px;}
.ye1_c00417{bottom:678.823500px;}
.ye8_c00417{bottom:679.500000px;}
.yef_c00417{bottom:680.173500px;}
.yf6_c00417{bottom:680.923500px;}
.yfd_c00417{bottom:681.598500px;}
.y104_c00417{bottom:682.048500px;}
.y10b_c00417{bottom:682.798500px;}
.y111_c00417{bottom:683.848500px;}
.y117_c00417{bottom:684.523500px;}
.y11d_c00417{bottom:685.273500px;}
.y123_c00417{bottom:685.573500px;}
.y12e_c00417{bottom:685.648500px;}
.y12f_c00417{bottom:685.948500px;}
.yd6_c00417{bottom:692.398500px;}
.yd7_c00417{bottom:692.848500px;}
.ye0_c00417{bottom:696.073500px;}
.ye7_c00417{bottom:696.750000px;}
.yee_c00417{bottom:697.125000px;}
.yf5_c00417{bottom:698.250000px;}
.yfc_c00417{bottom:698.923500px;}
.y103_c00417{bottom:699.298500px;}
.y10a_c00417{bottom:700.423500px;}
.y110_c00417{bottom:701.098500px;}
.y116_c00417{bottom:701.773500px;}
.y11c_c00417{bottom:702.523500px;}
.y122_c00417{bottom:703.273500px;}
.y128_c00417{bottom:703.648500px;}
.y12c_c00417{bottom:705.073500px;}
.y12d_c00417{bottom:705.823500px;}
.yd4_c00417{bottom:709.348500px;}
.yd5_c00417{bottom:709.423500px;}
.ydb_c00417{bottom:713.323500px;}
.ydc_c00417{bottom:713.398500px;}
.ye6_c00417{bottom:714.450000px;}
.yed_c00417{bottom:715.200000px;}
.yf4_c00417{bottom:715.500000px;}
.yfb_c00417{bottom:716.250000px;}
.y102_c00417{bottom:717.000000px;}
.y109_c00417{bottom:717.673500px;}
.y10f_c00417{bottom:718.723500px;}
.y115_c00417{bottom:719.848500px;}
.y11b_c00417{bottom:720.598500px;}
.y121_c00417{bottom:721.950000px;}
.y127_c00417{bottom:722.700000px;}
.y12b_c00417{bottom:723.075000px;}
.yd2_c00417{bottom:726.298500px;}
.yd3_c00417{bottom:726.673500px;}
.ydf_c00417{bottom:730.575000px;}
.ye5_c00417{bottom:731.700000px;}
.yec_c00417{bottom:732.075000px;}
.yf3_c00417{bottom:732.825000px;}
.yfa_c00417{bottom:733.500000px;}
.y101_c00417{bottom:734.250000px;}
.y108_c00417{bottom:735.298500px;}
.y10e_c00417{bottom:736.048500px;}
.y114_c00417{bottom:737.098500px;}
.y11a_c00417{bottom:737.473500px;}
.y120_c00417{bottom:737.848500px;}
.y126_c00417{bottom:738.523500px;}
.yd1_c00417{bottom:743.250000px;}
.yde_c00417{bottom:746.848500px;}
.ye4_c00417{bottom:748.273500px;}
.yeb_c00417{bottom:749.023500px;}
.yf2_c00417{bottom:749.700000px;}
.yf9_c00417{bottom:750.450000px;}
.y100_c00417{bottom:751.125000px;}
.y107_c00417{bottom:751.875000px;}
.y10d_c00417{bottom:752.923500px;}
.y113_c00417{bottom:753.598500px;}
.y119_c00417{bottom:754.423500px;}
.y11f_c00417{bottom:755.098500px;}
.y125_c00417{bottom:755.848500px;}
.ycf_c00417{bottom:760.500000px;}
.yd0_c00417{bottom:761.250000px;}
.ydd_c00417{bottom:764.848500px;}
.y12a_c00417{bottom:765.148500px;}
.ye3_c00417{bottom:765.898500px;}
.yea_c00417{bottom:766.648500px;}
.yf1_c00417{bottom:766.950000px;}
.yf8_c00417{bottom:767.700000px;}
.yff_c00417{bottom:768.448500px;}
.y106_c00417{bottom:769.198500px;}
.ybc_c00417{bottom:770.250000px;}
.yc1_c00417{bottom:771.000000px;}
.yc2_c00417{bottom:771.675000px;}
.yc5_c00417{bottom:772.723500px;}
.yc8_c00417{bottom:773.473500px;}
.yaa_c00417{bottom:777.073500px;}
.yce_c00417{bottom:777.750000px;}
.yab_c00417{bottom:777.823500px;}
.yad_c00417{bottom:781.800000px;}
.yaf_c00417{bottom:782.773500px;}
.yb1_c00417{bottom:783.523500px;}
.yb3_c00417{bottom:784.648500px;}
.yb5_c00417{bottom:785.323500px;}
.yb7_c00417{bottom:786.073500px;}
.yb9_c00417{bottom:786.823500px;}
.ybb_c00417{bottom:787.500000px;}
.ybf_c00417{bottom:788.250000px;}
.yc0_c00417{bottom:788.925000px;}
.yc4_c00417{bottom:790.050000px;}
.yc7_c00417{bottom:790.425000px;}
.ycb_c00417{bottom:791.473500px;}
.ycd_c00417{bottom:792.150000px;}
.ycc_c00417{bottom:792.223500px;}
.ya8_c00417{bottom:794.025000px;}
.ya9_c00417{bottom:794.698500px;}
.yac_c00417{bottom:799.050000px;}
.yae_c00417{bottom:800.098500px;}
.yb0_c00417{bottom:800.848500px;}
.yb2_c00417{bottom:801.900000px;}
.yb4_c00417{bottom:802.948500px;}
.yb6_c00417{bottom:803.698500px;}
.yb8_c00417{bottom:804.448500px;}
.yba_c00417{bottom:805.500000px;}
.ybd_c00417{bottom:806.250000px;}
.yc3_c00417{bottom:806.550000px;}
.ybe_c00417{bottom:806.625000px;}
.yc6_c00417{bottom:806.925000px;}
.yca_c00417{bottom:807.300000px;}
.yc9_c00417{bottom:807.675000px;}
.ya6_c00417{bottom:811.275000px;}
.ya7_c00417{bottom:811.650000px;}
.y46_c00417{bottom:816.300000px;}
.y4e_c00417{bottom:817.723500px;}
.y56_c00417{bottom:818.473500px;}
.y5e_c00417{bottom:819.525000px;}
.ya5_c00417{bottom:819.900000px;}
.y66_c00417{bottom:820.275000px;}
.y6e_c00417{bottom:820.650000px;}
.y76_c00417{bottom:821.025000px;}
.y7e_c00417{bottom:822.073500px;}
.y86_c00417{bottom:822.750000px;}
.y8e_c00417{bottom:823.500000px;}
.y95_c00417{bottom:824.250000px;}
.y98_c00417{bottom:824.925000px;}
.y9f_c00417{bottom:826.050000px;}
.ya4_c00417{bottom:826.723500px;}
.y3d_c00417{bottom:827.473500px;}
.y3e_c00417{bottom:828.223500px;}
.y45_c00417{bottom:832.875000px;}
.y4d_c00417{bottom:833.925000px;}
.y55_c00417{bottom:834.598500px;}
.y5d_c00417{bottom:836.098500px;}
.y65_c00417{bottom:837.150000px;}
.y6d_c00417{bottom:837.900000px;}
.y75_c00417{bottom:838.573500px;}
.y7d_c00417{bottom:839.400000px;}
.y85_c00417{bottom:839.698500px;}
.y8d_c00417{bottom:840.073500px;}
.y94_c00417{bottom:840.448500px;}
.y97_c00417{bottom:840.823500px;}
.y9e_c00417{bottom:841.500000px;}
.ya3_c00417{bottom:842.250000px;}
.y3c_c00417{bottom:844.348500px;}
.y44_c00417{bottom:849.750000px;}
.y4c_c00417{bottom:851.250000px;}
.y54_c00417{bottom:852.300000px;}
.y5c_c00417{bottom:853.425000px;}
.y64_c00417{bottom:854.473500px;}
.y74_c00417{bottom:854.848500px;}
.y6c_c00417{bottom:855.150000px;}
.y7c_c00417{bottom:856.948500px;}
.y84_c00417{bottom:857.698500px;}
.y8c_c00417{bottom:858.073500px;}
.y9d_c00417{bottom:858.823500px;}
.y93_c00417{bottom:859.125000px;}
.ya2_c00417{bottom:859.500000px;}
.y3a_c00417{bottom:860.550000px;}
.y3b_c00417{bottom:860.925000px;}
.y43_c00417{bottom:866.323500px;}
.y4b_c00417{bottom:867.750000px;}
.y53_c00417{bottom:868.500000px;}
.y5b_c00417{bottom:869.625000px;}
.y63_c00417{bottom:870.300000px;}
.y6b_c00417{bottom:870.598500px;}
.y73_c00417{bottom:871.425000px;}
.y7b_c00417{bottom:872.848500px;}
.y83_c00417{bottom:874.275000px;}
.y8b_c00417{bottom:875.323500px;}
.y9c_c00417{bottom:876.073500px;}
.y92_c00417{bottom:876.448500px;}
.y38_c00417{bottom:877.198500px;}
.y39_c00417{bottom:877.875000px;}
.y42_c00417{bottom:882.598500px;}
.y4a_c00417{bottom:884.323500px;}
.y52_c00417{bottom:885.448500px;}
.y5a_c00417{bottom:886.500000px;}
.y62_c00417{bottom:887.250000px;}
.y6a_c00417{bottom:887.925000px;}
.y72_c00417{bottom:889.425000px;}
.y7a_c00417{bottom:890.473500px;}
.y82_c00417{bottom:891.150000px;}
.y8a_c00417{bottom:891.525000px;}
.y36_c00417{bottom:894.073500px;}
.y37_c00417{bottom:894.823500px;}
.y41_c00417{bottom:899.473500px;}
.y49_c00417{bottom:900.900000px;}
.y51_c00417{bottom:901.650000px;}
.y59_c00417{bottom:902.323500px;}
.y61_c00417{bottom:903.823500px;}
.y69_c00417{bottom:905.250000px;}
.y71_c00417{bottom:906.300000px;}
.y79_c00417{bottom:907.723500px;}
.y81_c00417{bottom:908.400000px;}
.y89_c00417{bottom:909.525000px;}
.y91_c00417{bottom:910.275000px;}
.y35_c00417{bottom:911.025000px;}
.y34_c00417{bottom:911.323500px;}
.y9a_c00417{bottom:912.073500px;}
.y9b_c00417{bottom:912.823500px;}
.ya1_c00417{bottom:913.125000px;}
.y3f_c00417{bottom:916.425000px;}
.y48_c00417{bottom:917.848500px;}
.y50_c00417{bottom:918.900000px;}
.y58_c00417{bottom:920.323500px;}
.y60_c00417{bottom:921.448500px;}
.y68_c00417{bottom:922.500000px;}
.y70_c00417{bottom:923.925000px;}
.y78_c00417{bottom:925.050000px;}
.y80_c00417{bottom:926.098500px;}
.y88_c00417{bottom:926.848500px;}
.y90_c00417{bottom:927.150000px;}
.y96_c00417{bottom:927.525000px;}
.y32_c00417{bottom:928.275000px;}
.y33_c00417{bottom:929.025000px;}
.ya0_c00417{bottom:929.323500px;}
.y40_c00417{bottom:933.675000px;}
.y47_c00417{bottom:935.473500px;}
.y4f_c00417{bottom:936.900000px;}
.y57_c00417{bottom:937.948500px;}
.y5f_c00417{bottom:938.698500px;}
.y67_c00417{bottom:939.448500px;}
.y6f_c00417{bottom:940.500000px;}
.y77_c00417{bottom:942.300000px;}
.y7f_c00417{bottom:943.723500px;}
.y87_c00417{bottom:944.473500px;}
.y8f_c00417{bottom:944.848500px;}
.y99_c00417{bottom:945.150000px;}
.y24_c00417{bottom:963.900000px;}
.y25_c00417{bottom:964.275000px;}
.y26_c00417{bottom:965.698500px;}
.y27_c00417{bottom:966.750000px;}
.y28_c00417{bottom:967.800000px;}
.y29_c00417{bottom:967.875000px;}
.y2a_c00417{bottom:968.550000px;}
.y2b_c00417{bottom:969.598500px;}
.y2c_c00417{bottom:971.848500px;}
.y2d_c00417{bottom:972.525000px;}
.y30_c00417{bottom:972.900000px;}
.y2f_c00417{bottom:973.275000px;}
.y2e_c00417{bottom:973.650000px;}
.y31_c00417{bottom:973.948500px;}
.yc_c00417{bottom:1002.375000px;}
.yd_c00417{bottom:1003.500000px;}
.y14_c00417{bottom:1006.348500px;}
.y21_c00417{bottom:1008.900000px;}
.y1c_c00417{bottom:1010.323500px;}
.y1b_c00417{bottom:1010.698500px;}
.y7_c00417{bottom:1012.125000px;}
.y8_c00417{bottom:1017.525000px;}
.yb_c00417{bottom:1021.500000px;}
.y18_c00417{bottom:1022.925000px;}
.y1a_c00417{bottom:1023.000000px;}
.y19_c00417{bottom:1023.300000px;}
.ye_c00417{bottom:1024.425000px;}
.y13_c00417{bottom:1025.473500px;}
.y20_c00417{bottom:1034.098500px;}
.ya_c00417{bottom:1040.550000px;}
.y10_c00417{bottom:1044.525000px;}
.y11_c00417{bottom:1044.598500px;}
.y12_c00417{bottom:1046.025000px;}
.y1f_c00417{bottom:1046.400000px;}
.y1d_c00417{bottom:1047.823500px;}
.y17_c00417{bottom:1048.500000px;}
.y9_c00417{bottom:1058.175000px;}
.y23_c00417{bottom:1058.625000px;}
.y16_c00417{bottom:1060.723500px;}
.yf_c00417{bottom:1063.275000px;}
.y5_c00417{bottom:1071.150000px;}
.y1e_c00417{bottom:1071.525000px;}
.y22_c00417{bottom:1071.900000px;}
.y6_c00417{bottom:1072.650000px;}
.y15_c00417{bottom:1073.025000px;}
.y1_c00417{bottom:1096.348500px;}
.y3_c00417{bottom:1107.525000px;}
.y4_c00417{bottom:1111.125000px;}
.y2_c00417{bottom:1112.400000px;}
.h1e_c00417{height:37.546875px;}
.h5_c00417{height:41.220703px;}
.hb_c00417{height:43.804688px;}
.h4_c00417{height:44.814000px;}
.h6_c00417{height:52.998047px;}
.h9_c00417{height:53.191406px;}
.ha_c00417{height:56.320312px;}
.h1_c00417{height:58.886719px;}
.h7_c00417{height:61.831055px;}
.hc_c00417{height:62.578125px;}
.h3_c00417{height:64.743164px;}
.h2_c00417{height:64.775391px;}
.h1d_c00417{height:65.707031px;}
.h14_c00417{height:68.835938px;}
.h8_c00417{height:70.664062px;}
.h15_c00417{height:70.958063px;}
.h19_c00417{height:70.970063px;}
.h10_c00417{height:72.164062px;}
.he_c00417{height:73.358062px;}
.h16_c00417{height:73.364063px;}
.h12_c00417{height:73.370063px;}
.hf_c00417{height:73.664062px;}
.h11_c00417{height:74.864062px;}
.h1a_c00417{height:74.870063px;}
.h1c_c00417{height:75.164062px;}
.h1b_c00417{height:75.464062px;}
.h13_c00417{height:76.358062px;}
.h18_c00417{height:76.364062px;}
.h17_c00417{height:77.864063px;}
.hd_c00417{height:150.187500px;}
.h0_c00417{height:1174.500000px;}
.w0_c00417{width:723.472200px;}
.w1_c00417{width:723.750000px;}
.x0_c00417{left:0.000000px;}
.x5_c00417{left:11.140200px;}
.x6_c00417{left:12.565200px;}
.x3a_c00417{left:15.490200px;}
.x3c_c00417{left:16.540200px;}
.x81_c00417{left:17.965200px;}
.xba_c00417{left:19.390200px;}
.xc7_c00417{left:20.515200px;}
.xcf_c00417{left:22.315200px;}
.xe7_c00417{left:24.490200px;}
.x1_c00417{left:25.915200px;}
.xfe_c00417{left:27.338700px;}
.x101_c00417{left:29.140200px;}
.x102_c00417{left:30.565200px;}
.x2_c00417{left:53.590200px;}
.xa5_c00417{left:56.515200px;}
.x71_c00417{left:57.940200px;}
.x3d_c00417{left:59.365200px;}
.x82_c00417{left:61.165200px;}
.x7_c00417{left:62.590200px;}
.xd0_c00417{left:65.140200px;}
.x3e_c00417{left:67.690200px;}
.x84_c00417{left:68.740200px;}
.xbf_c00417{left:70.165200px;}
.xd9_c00417{left:72.715200px;}
.xe0_c00417{left:73.765200px;}
.x83_c00417{left:76.990200px;}
.x10a_c00417{left:80.590200px;}
.x3b_c00417{left:81.715200px;}
.x80_c00417{left:83.890200px;}
.xbb_c00417{left:85.990200px;}
.xde_c00417{left:88.915200px;}
.xd7_c00417{left:90.340200px;}
.xe8_c00417{left:91.765200px;}
.x72_c00417{left:94.315200px;}
.xca_c00417{left:100.765200px;}
.xf4_c00417{left:104.365200px;}
.x3f_c00417{left:109.090200px;}
.xcb_c00417{left:114.490200px;}
.xf5_c00417{left:117.715200px;}
.x85_c00417{left:127.390200px;}
.xef_c00417{left:129.190200px;}
.xc8_c00417{left:142.540200px;}
.xeb_c00417{left:154.390200px;}
.xc9_c00417{left:155.515200px;}
.x40_c00417{left:187.915200px;}
.x86_c00417{left:188.965200px;}
.x8_c00417{left:202.990200px;}
.xe1_c00417{left:210.190200px;}
.x41_c00417{left:214.540200px;}
.x87_c00417{left:216.340200px;}
.xae_c00417{left:218.140200px;}
.xc0_c00417{left:219.190200px;}
.x3_c00417{left:221.365200px;}
.xe2_c00417{left:223.165200px;}
.xf0_c00417{left:224.290200px;}
.xfc_c00417{left:225.340200px;}
.x103_c00417{left:226.765200px;}
.x104_c00417{left:228.190200px;}
.xb_c00417{left:253.765200px;}
.x29_c00417{left:258.490200px;}
.x9_c00417{left:269.590200px;}
.x42_c00417{left:272.140200px;}
.x43_c00417{left:273.190200px;}
.x88_c00417{left:274.315200px;}
.x89_c00417{left:275.365200px;}
.xaf_c00417{left:276.490200px;}
.xc1_c00417{left:277.540200px;}
.xcc_c00417{left:279.340200px;}
.x2a_c00417{left:280.390200px;}
.xec_c00417{left:281.890200px;}
.xf8_c00417{left:282.940200px;}
.xc_c00417{left:284.740200px;}
.x10b_c00417{left:285.790200px;}
.x2b_c00417{left:293.365200px;}
.xa_c00417{left:298.390200px;}
.x47_c00417{left:303.790200px;}
.x8b_c00417{left:305.965200px;}
.xbc_c00417{left:308.140200px;}
.x4_c00417{left:309.565200px;}
.x45_c00417{left:310.990200px;}
.x44_c00417{left:312.115200px;}
.x46_c00417{left:313.165200px;}
.x8a_c00417{left:315.340200px;}
.xa8_c00417{left:316.390200px;}
.xd1_c00417{left:318.565200px;}
.xda_c00417{left:319.690200px;}
.xd8_c00417{left:320.740200px;}
.xe9_c00417{left:322.165200px;}
.xf1_c00417{left:323.290200px;}
.x105_c00417{left:324.715200px;}
.x2c_c00417{left:335.140200px;}
.x49_c00417{left:342.715200px;}
.x8c_c00417{left:344.890200px;}
.xc5_c00417{left:348.115200px;}
.x48_c00417{left:349.540200px;}
.x4b_c00417{left:351.715200px;}
.x4a_c00417{left:352.765200px;}
.x8d_c00417{left:353.890200px;}
.xb0_c00417{left:354.940200px;}
.xa9_c00417{left:355.990200px;}
.xd2_c00417{left:357.490200px;}
.xd5_c00417{left:358.540200px;}
.xe3_c00417{left:359.590200px;}
.xf2_c00417{left:360.715200px;}
.xff_c00417{left:362.890200px;}
.x106_c00417{left:363.940200px;}
.xd_c00417{left:370.090200px;}
.x2d_c00417{left:374.740200px;}
.xe_c00417{left:383.365200px;}
.x4c_c00417{left:389.140200px;}
.x4d_c00417{left:390.190200px;}
.x4e_c00417{left:391.315200px;}
.x8e_c00417{left:392.365200px;}
.x8f_c00417{left:393.490200px;}
.xb1_c00417{left:394.538700px;}
.x13_c00417{left:395.590200px;}
.xcd_c00417{left:396.715200px;}
.x2e_c00417{left:398.140200px;}
.xe4_c00417{left:399.190200px;}
.xfa_c00417{left:400.690200px;}
.x100_c00417{left:401.740200px;}
.x10c_c00417{left:403.163700px;}
.x2f_c00417{left:409.990200px;}
.xf_c00417{left:413.288700px;}
.x12_c00417{left:415.390200px;}
.x4f_c00417{left:418.990200px;}
.x51_c00417{left:420.788700px;}
.x73_c00417{left:422.590200px;}
.x91_c00417{left:424.090200px;}
.xa6_c00417{left:425.140200px;}
.xc6_c00417{left:426.565200px;}
.xd6_c00417{left:427.990200px;}
.x50_c00417{left:429.788700px;}
.x52_c00417{left:430.913700px;}
.x90_c00417{left:431.965200px;}
.x10_c00417{left:433.090200px;}
.xb2_c00417{left:434.890200px;}
.xd4_c00417{left:435.940200px;}
.xed_c00417{left:438.490200px;}
.xea_c00417{left:439.540200px;}
.xf9_c00417{left:440.965200px;}
.x10d_c00417{left:442.090200px;}
.x30_c00417{left:452.140200px;}
.x53_c00417{left:458.290200px;}
.x56_c00417{left:460.390200px;}
.x92_c00417{left:461.890200px;}
.x95_c00417{left:463.690200px;}
.xb6_c00417{left:464.740200px;}
.x54_c00417{left:467.290200px;}
.x55_c00417{left:468.340200px;}
.x74_c00417{left:470.140200px;}
.x93_c00417{left:471.190200px;}
.x94_c00417{left:472.315200px;}
.xbd_c00417{left:474.115200px;}
.xce_c00417{left:475.540200px;}
.xdb_c00417{left:476.590200px;}
.xe5_c00417{left:477.715200px;}
.xf7_c00417{left:479.140200px;}
.x107_c00417{left:480.565200px;}
.x11_c00417{left:489.190200px;}
.x31_c00417{left:491.740200px;}
.x24_c00417{left:501.490200px;}
.x26_c00417{left:503.590200px;}
.x57_c00417{left:506.515200px;}
.x58_c00417{left:507.565200px;}
.x59_c00417{left:508.690200px;}
.x25_c00417{left:510.115200px;}
.x75_c00417{left:511.165200px;}
.x96_c00417{left:512.590200px;}
.xb3_c00417{left:514.090200px;}
.xc2_c00417{left:515.140200px;}
.xdc_c00417{left:516.190200px;}
.xe6_c00417{left:517.315200px;}
.xfb_c00417{left:518.365200px;}
.x108_c00417{left:519.790200px;}
.x32_c00417{left:527.365200px;}
.x28_c00417{left:533.140200px;}
.x5b_c00417{left:538.540200px;}
.x5a_c00417{left:546.115200px;}
.x5c_c00417{left:547.165200px;}
.x5d_c00417{left:548.290200px;}
.x76_c00417{left:550.090200px;}
.x7a_c00417{left:551.140200px;}
.x97_c00417{left:552.190200px;}
.xaa_c00417{left:553.315200px;}
.xc3_c00417{left:554.365200px;}
.xdd_c00417{left:555.490200px;}
.xf3_c00417{left:556.540200px;}
.x77_c00417{left:557.590200px;}
.x78_c00417{left:558.715200px;}
.x27_c00417{left:568.765200px;}
.x33_c00417{left:569.890200px;}
.x60_c00417{left:579.190200px;}
.x7b_c00417{left:581.740200px;}
.xa7_c00417{left:584.290200px;}
.x5e_c00417{left:585.715200px;}
.x5f_c00417{left:586.765200px;}
.x61_c00417{left:588.190200px;}
.x79_c00417{left:589.690200px;}
.x98_c00417{left:590.740200px;}
.x99_c00417{left:591.790200px;}
.xbe_c00417{left:593.290200px;}
.xb7_c00417{left:594.715200px;}
.xdf_c00417{left:596.140200px;}
.xf6_c00417{left:597.190200px;}
.x23_c00417{left:604.765200px;}
.x34_c00417{left:609.490200px;}
.x17_c00417{left:610.540200px;}
.x14_c00417{left:617.365200px;}
.x62_c00417{left:624.565200px;}
.x16_c00417{left:626.740200px;}
.x18_c00417{left:628.540200px;}
.x7c_c00417{left:629.590200px;}
.x19_c00417{left:630.715200px;}
.x9a_c00417{left:632.140200px;}
.xb8_c00417{left:633.190200px;}
.xee_c00417{left:634.690200px;}
.x1a_c00417{left:635.740200px;}
.x1b_c00417{left:638.290200px;}
.x35_c00417{left:640.090200px;}
.x1c_c00417{left:641.515200px;}
.x1d_c00417{left:646.915200px;}
.x15_c00417{left:649.765200px;}
.x109_c00417{left:650.890200px;}
.x1e_c00417{left:652.690200px;}
.x1f_c00417{left:655.540200px;}
.x64_c00417{left:657.340200px;}
.x20_c00417{left:658.765200px;}
.x7d_c00417{left:660.190200px;}
.x9d_c00417{left:661.990200px;}
.xab_c00417{left:663.115200px;}
.x63_c00417{left:664.915200px;}
.x21_c00417{left:666.715200px;}
.x7e_c00417{left:668.515200px;}
.x9b_c00417{left:669.565200px;}
.x9c_c00417{left:671.365200px;}
.xc4_c00417{left:673.915200px;}
.xfd_c00417{left:675.340200px;}
.x36_c00417{left:678.940200px;}
.x37_c00417{left:686.890200px;}
.x22_c00417{left:691.540200px;}
.x65_c00417{left:692.965200px;}
.xac_c00417{left:697.990200px;}
.xb4_c00417{left:699.790200px;}
.x66_c00417{left:701.590200px;}
.x69_c00417{left:702.715200px;}
.x6a_c00417{left:703.765200px;}
.x6b_c00417{left:705.565200px;}
.xa2_c00417{left:708.115200px;}
.x67_c00417{left:710.590200px;}
.xd3_c00417{left:712.090200px;}
.x7f_c00417{left:713.890200px;}
.xa3_c00417{left:715.315200px;}
.xad_c00417{left:716.740200px;}
.x10e_c00417{left:722.890200px;}
.x9f_c00417{left:728.290200px;}
.x68_c00417{left:731.140200px;}
.xa0_c00417{left:732.190200px;}
.x38_c00417{left:739.390200px;}
.x6f_c00417{left:741.565200px;}
.x6c_c00417{left:742.990200px;}
.x6d_c00417{left:744.115200px;}
.x6e_c00417{left:745.165200px;}
.xa4_c00417{left:746.590200px;}
.x39_c00417{left:747.713700px;}
.xb5_c00417{left:749.890200px;}
.xb9_c00417{left:750.940200px;}
.x70_c00417{left:753.490200px;}
.x9e_c00417{left:754.540200px;}
.xa1_c00417{left:757.765200px;}
@media print{
.v7_c00417{vertical-align:-2.394667pt;}
.v6_c00417{vertical-align:-1.333333pt;}
.v0_c00417{vertical-align:0.000000pt;}
.v2_c00417{vertical-align:1.333333pt;}
.v1_c00417{vertical-align:2.394667pt;}
.v3_c00417{vertical-align:3.733333pt;}
.v4_c00417{vertical-align:5.061333pt;}
.v5_c00417{vertical-align:6.400000pt;}
.ls12_c00417{letter-spacing:0.000000pt;}
.ls11_c00417{letter-spacing:90.031394pt;}
.lsd_c00417{letter-spacing:107.466667pt;}
.ls4_c00417{letter-spacing:111.751266pt;}
.ls10_c00417{letter-spacing:113.505791pt;}
.lse_c00417{letter-spacing:121.056325pt;}
.lsb_c00417{letter-spacing:124.011080pt;}
.lsc_c00417{letter-spacing:134.351607pt;}
.ls6_c00417{letter-spacing:136.417663pt;}
.ls9_c00417{letter-spacing:138.027774pt;}
.lsa_c00417{letter-spacing:139.637886pt;}
.lsf_c00417{letter-spacing:146.374656pt;}
.ls5_c00417{letter-spacing:148.096419pt;}
.ls0_c00417{letter-spacing:149.818182pt;}
.ls1_c00417{letter-spacing:152.260360pt;}
.ls3_c00417{letter-spacing:154.014885pt;}
.ls2_c00417{letter-spacing:154.021932pt;}
.ls7_c00417{letter-spacing:163.767196pt;}
.ls8_c00417{letter-spacing:167.546485pt;}
.wse_c00417{word-spacing:0.000000pt;}
.ws1_c00417{word-spacing:87.671440pt;}
.wsa_c00417{word-spacing:97.498745pt;}
.ws8_c00417{word-spacing:101.089532pt;}
.ws4_c00417{word-spacing:101.818182pt;}
.wsc_c00417{word-spacing:106.053241pt;}
.wsd_c00417{word-spacing:118.807551pt;}
.ws2_c00417{word-spacing:121.008192pt;}
.ws3_c00417{word-spacing:136.260360pt;}
.wsb_c00417{word-spacing:138.021932pt;}
.ws9_c00417{word-spacing:141.605672pt;}
.ws0_c00417{word-spacing:143.367244pt;}
.ws7_c00417{word-spacing:147.767196pt;}
.ws5_c00417{word-spacing:148.145125pt;}
.ws6_c00417{word-spacing:295.750000pt;}
._0_c00417{width:152.260360pt;}
.fs8_c00417{font-size:32.000000pt;}
.fs2_c00417{font-size:37.333333pt;}
.fs6_c00417{font-size:45.333333pt;}
.fs3_c00417{font-size:48.000000pt;}
.fs0_c00417{font-size:53.333333pt;}
.fs4_c00417{font-size:56.000000pt;}
.fs1_c00417{font-size:58.666667pt;}
.fs5_c00417{font-size:64.000000pt;}
.fs7_c00417{font-size:128.000000pt;}
.y0_c00417{bottom:0.000000pt;}
.y2b6_c00417{bottom:66.398667pt;}
.y2b7_c00417{bottom:66.732000pt;}
.y2ae_c00417{bottom:68.932000pt;}
.y2af_c00417{bottom:69.265333pt;}
.y2ad_c00417{bottom:69.333333pt;}
.y2ab_c00417{bottom:69.598667pt;}
.y2a9_c00417{bottom:70.265333pt;}
.y2b1_c00417{bottom:70.532000pt;}
.y2b3_c00417{bottom:70.598667pt;}
.y2a7_c00417{bottom:70.865333pt;}
.y2b2_c00417{bottom:71.532000pt;}
.y2b4_c00417{bottom:72.132000pt;}
.y2b5_c00417{bottom:73.132000pt;}
.y2a6_c00417{bottom:74.732000pt;}
.y2a5_c00417{bottom:75.398667pt;}
.y2a4_c00417{bottom:83.732000pt;}
.y2ac_c00417{bottom:84.000000pt;}
.y2aa_c00417{bottom:84.333333pt;}
.y2a8_c00417{bottom:84.932000pt;}
.y2b0_c00417{bottom:85.000000pt;}
.y289_c00417{bottom:85.598667pt;}
.y29a_c00417{bottom:85.932000pt;}
.y299_c00417{bottom:86.532000pt;}
.y284_c00417{bottom:89.798667pt;}
.y283_c00417{bottom:90.065333pt;}
.y285_c00417{bottom:98.065333pt;}
.y287_c00417{bottom:98.398667pt;}
.y292_c00417{bottom:98.732000pt;}
.y28c_c00417{bottom:99.065333pt;}
.y28d_c00417{bottom:99.333333pt;}
.y290_c00417{bottom:99.666667pt;}
.y288_c00417{bottom:100.333333pt;}
.y298_c00417{bottom:101.000000pt;}
.y29c_c00417{bottom:101.932000pt;}
.y29f_c00417{bottom:102.865333pt;}
.y282_c00417{bottom:104.798667pt;}
.y281_c00417{bottom:105.132000pt;}
.y2a3_c00417{bottom:107.333333pt;}
.y28b_c00417{bottom:113.798667pt;}
.y294_c00417{bottom:114.065333pt;}
.y295_c00417{bottom:115.065333pt;}
.y286_c00417{bottom:115.333333pt;}
.y297_c00417{bottom:116.000000pt;}
.y29e_c00417{bottom:117.598667pt;}
.y280_c00417{bottom:119.198667pt;}
.y27f_c00417{bottom:119.798667pt;}
.y2a2_c00417{bottom:123.065333pt;}
.y291_c00417{bottom:129.132000pt;}
.y28f_c00417{bottom:129.398667pt;}
.y293_c00417{bottom:129.465333pt;}
.y28e_c00417{bottom:129.732000pt;}
.y28a_c00417{bottom:130.065333pt;}
.y296_c00417{bottom:130.732000pt;}
.y29b_c00417{bottom:131.333333pt;}
.y29d_c00417{bottom:133.333333pt;}
.y27e_c00417{bottom:133.598667pt;}
.y27d_c00417{bottom:134.198667pt;}
.y2a0_c00417{bottom:134.532000pt;}
.y2a1_c00417{bottom:134.865333pt;}
.y27a_c00417{bottom:144.465333pt;}
.y279_c00417{bottom:144.798667pt;}
.y278_c00417{bottom:145.132000pt;}
.y27b_c00417{bottom:146.065333pt;}
.y277_c00417{bottom:147.666667pt;}
.y276_c00417{bottom:148.000000pt;}
.y27c_c00417{bottom:148.598667pt;}
.y271_c00417{bottom:159.865333pt;}
.y270_c00417{bottom:160.132000pt;}
.y26e_c00417{bottom:160.198667pt;}
.y26f_c00417{bottom:160.465333pt;}
.y272_c00417{bottom:161.132000pt;}
.y26d_c00417{bottom:162.732000pt;}
.y273_c00417{bottom:163.065333pt;}
.y26c_c00417{bottom:163.333333pt;}
.y275_c00417{bottom:163.398667pt;}
.y274_c00417{bottom:164.666667pt;}
.y261_c00417{bottom:173.598667pt;}
.y262_c00417{bottom:174.265333pt;}
.y263_c00417{bottom:174.532000pt;}
.y264_c00417{bottom:174.865333pt;}
.y265_c00417{bottom:175.198667pt;}
.y266_c00417{bottom:175.465333pt;}
.y267_c00417{bottom:175.865333pt;}
.y268_c00417{bottom:176.465333pt;}
.y269_c00417{bottom:177.132000pt;}
.y260_c00417{bottom:178.065333pt;}
.y26a_c00417{bottom:179.065333pt;}
.y26b_c00417{bottom:180.000000pt;}
.y256_c00417{bottom:188.932000pt;}
.y257_c00417{bottom:189.932000pt;}
.y258_c00417{bottom:190.198667pt;}
.y259_c00417{bottom:190.532000pt;}
.y25a_c00417{bottom:190.865333pt;}
.y25b_c00417{bottom:191.198667pt;}
.y25c_c00417{bottom:191.865333pt;}
.y25d_c00417{bottom:192.465333pt;}
.y255_c00417{bottom:192.798667pt;}
.y25e_c00417{bottom:194.132000pt;}
.y25f_c00417{bottom:194.666667pt;}
.y24b_c00417{bottom:205.932000pt;}
.y24d_c00417{bottom:206.198667pt;}
.y24c_c00417{bottom:206.265333pt;}
.y24e_c00417{bottom:206.598667pt;}
.y24f_c00417{bottom:206.865333pt;}
.y250_c00417{bottom:207.198667pt;}
.y251_c00417{bottom:207.532000pt;}
.y252_c00417{bottom:208.132000pt;}
.y24a_c00417{bottom:208.198667pt;}
.y253_c00417{bottom:208.798667pt;}
.y254_c00417{bottom:209.465333pt;}
.y243_c00417{bottom:221.265333pt;}
.y242_c00417{bottom:221.598667pt;}
.y244_c00417{bottom:221.865333pt;}
.y241_c00417{bottom:223.465333pt;}
.y240_c00417{bottom:223.532000pt;}
.y245_c00417{bottom:223.865333pt;}
.y246_c00417{bottom:224.465333pt;}
.y247_c00417{bottom:225.065333pt;}
.y248_c00417{bottom:225.800000pt;}
.y249_c00417{bottom:226.133333pt;}
.y238_c00417{bottom:235.000000pt;}
.y239_c00417{bottom:236.000000pt;}
.y23a_c00417{bottom:236.333333pt;}
.y23b_c00417{bottom:236.932000pt;}
.y23c_c00417{bottom:237.598667pt;}
.y237_c00417{bottom:238.598667pt;}
.y23d_c00417{bottom:239.198667pt;}
.y23e_c00417{bottom:240.198667pt;}
.y23f_c00417{bottom:240.800000pt;}
.y230_c00417{bottom:251.666667pt;}
.y231_c00417{bottom:251.732000pt;}
.y22f_c00417{bottom:252.000000pt;}
.y22e_c00417{bottom:252.265333pt;}
.y22d_c00417{bottom:253.000000pt;}
.y22c_c00417{bottom:253.865333pt;}
.y232_c00417{bottom:253.932000pt;}
.y233_c00417{bottom:254.865333pt;}
.y234_c00417{bottom:255.532000pt;}
.y235_c00417{bottom:256.133333pt;}
.y236_c00417{bottom:256.466667pt;}
.y223_c00417{bottom:267.333333pt;}
.y224_c00417{bottom:267.666667pt;}
.y225_c00417{bottom:268.000000pt;}
.y226_c00417{bottom:268.333333pt;}
.y227_c00417{bottom:268.932000pt;}
.y222_c00417{bottom:269.000000pt;}
.y221_c00417{bottom:269.333333pt;}
.y228_c00417{bottom:269.598667pt;}
.y229_c00417{bottom:270.598667pt;}
.y22a_c00417{bottom:271.198667pt;}
.y22b_c00417{bottom:271.865333pt;}
.y21c_c00417{bottom:282.065333pt;}
.y21b_c00417{bottom:282.398667pt;}
.y21a_c00417{bottom:282.666667pt;}
.y219_c00417{bottom:282.732000pt;}
.y21d_c00417{bottom:283.065333pt;}
.y21e_c00417{bottom:283.732000pt;}
.y218_c00417{bottom:284.333333pt;}
.y21f_c00417{bottom:285.598667pt;}
.y220_c00417{bottom:286.865333pt;}
.y212_c00417{bottom:297.800000pt;}
.y213_c00417{bottom:298.065333pt;}
.y214_c00417{bottom:298.398667pt;}
.y211_c00417{bottom:298.732000pt;}
.y210_c00417{bottom:299.065333pt;}
.y215_c00417{bottom:299.333333pt;}
.y216_c00417{bottom:301.000000pt;}
.y217_c00417{bottom:301.932000pt;}
.y208_c00417{bottom:313.133333pt;}
.y209_c00417{bottom:313.398667pt;}
.y20a_c00417{bottom:313.466667pt;}
.y20b_c00417{bottom:313.732000pt;}
.y206_c00417{bottom:314.065333pt;}
.y20c_c00417{bottom:314.398667pt;}
.y20d_c00417{bottom:315.065333pt;}
.y20e_c00417{bottom:317.265333pt;}
.y20f_c00417{bottom:317.932000pt;}
.y207_c00417{bottom:326.865333pt;}
.y1fb_c00417{bottom:326.932000pt;}
.y1fc_c00417{bottom:327.532000pt;}
.y1fd_c00417{bottom:327.865333pt;}
.y1ff_c00417{bottom:328.133333pt;}
.y1fe_c00417{bottom:328.198667pt;}
.y200_c00417{bottom:328.466667pt;}
.y1f9_c00417{bottom:329.065333pt;}
.y1fa_c00417{bottom:329.133333pt;}
.y201_c00417{bottom:330.065333pt;}
.y203_c00417{bottom:331.000000pt;}
.y202_c00417{bottom:331.065333pt;}
.y204_c00417{bottom:331.398667pt;}
.y205_c00417{bottom:331.732000pt;}
.y1ee_c00417{bottom:343.532000pt;}
.y1ed_c00417{bottom:343.865333pt;}
.y1ef_c00417{bottom:344.133333pt;}
.y1f0_c00417{bottom:344.198667pt;}
.y1f1_c00417{bottom:344.466667pt;}
.y1f2_c00417{bottom:344.800000pt;}
.y1f3_c00417{bottom:345.466667pt;}
.y1f4_c00417{bottom:345.732000pt;}
.y1f5_c00417{bottom:346.065333pt;}
.y1f6_c00417{bottom:346.732000pt;}
.y1f7_c00417{bottom:347.333333pt;}
.y1f8_c00417{bottom:348.333333pt;}
.y1e5_c00417{bottom:358.865333pt;}
.y1e3_c00417{bottom:358.932000pt;}
.y1e4_c00417{bottom:359.198667pt;}
.y1e6_c00417{bottom:359.532000pt;}
.y1e7_c00417{bottom:360.198667pt;}
.y1e8_c00417{bottom:360.800000pt;}
.y1e9_c00417{bottom:361.398667pt;}
.y1ea_c00417{bottom:362.132000pt;}
.y1eb_c00417{bottom:363.065333pt;}
.y1ec_c00417{bottom:364.932000pt;}
.y1dc_c00417{bottom:374.265333pt;}
.y1da_c00417{bottom:374.532000pt;}
.y1db_c00417{bottom:374.598667pt;}
.y1dd_c00417{bottom:374.865333pt;}
.y1de_c00417{bottom:375.198667pt;}
.y1df_c00417{bottom:375.798667pt;}
.y1e0_c00417{bottom:376.465333pt;}
.y1e1_c00417{bottom:377.132000pt;}
.y1e2_c00417{bottom:378.398667pt;}
.y1cf_c00417{bottom:389.598667pt;}
.y1d0_c00417{bottom:389.865333pt;}
.y1d1_c00417{bottom:389.932000pt;}
.y1d2_c00417{bottom:390.265333pt;}
.y1d3_c00417{bottom:390.598667pt;}
.y1d4_c00417{bottom:391.198667pt;}
.y1d5_c00417{bottom:392.132000pt;}
.y1d6_c00417{bottom:393.132000pt;}
.y1d7_c00417{bottom:393.465333pt;}
.y1d8_c00417{bottom:394.000000pt;}
.y1d9_c00417{bottom:394.398667pt;}
.y1c2_c00417{bottom:404.598667pt;}
.y1c3_c00417{bottom:404.666667pt;}
.y1c6_c00417{bottom:404.932000pt;}
.y1c4_c00417{bottom:405.000000pt;}
.y1c5_c00417{bottom:405.265333pt;}
.y1c7_c00417{bottom:405.598667pt;}
.y1c8_c00417{bottom:405.932000pt;}
.y1c9_c00417{bottom:407.198667pt;}
.y1ca_c00417{bottom:407.798667pt;}
.y1cb_c00417{bottom:408.132000pt;}
.y1cc_c00417{bottom:408.798667pt;}
.y1cd_c00417{bottom:409.465333pt;}
.y1ce_c00417{bottom:411.000000pt;}
.y1b4_c00417{bottom:419.398667pt;}
.y1b5_c00417{bottom:420.000000pt;}
.y1b6_c00417{bottom:420.333333pt;}
.y1b7_c00417{bottom:420.598667pt;}
.y1b8_c00417{bottom:421.000000pt;}
.y1b9_c00417{bottom:421.333333pt;}
.y1ba_c00417{bottom:421.598667pt;}
.y1bb_c00417{bottom:422.265333pt;}
.y1bc_c00417{bottom:422.932000pt;}
.y1bd_c00417{bottom:423.865333pt;}
.y1be_c00417{bottom:424.798667pt;}
.y1bf_c00417{bottom:425.732000pt;}
.y1c0_c00417{bottom:426.398667pt;}
.y1c1_c00417{bottom:427.065333pt;}
.y1a9_c00417{bottom:434.666667pt;}
.y1aa_c00417{bottom:435.065333pt;}
.y1ab_c00417{bottom:435.398667pt;}
.y1ac_c00417{bottom:435.666667pt;}
.y1ad_c00417{bottom:436.000000pt;}
.y1ae_c00417{bottom:436.333333pt;}
.y1af_c00417{bottom:437.000000pt;}
.y1b0_c00417{bottom:437.598667pt;}
.y1b1_c00417{bottom:438.265333pt;}
.y1b2_c00417{bottom:438.932000pt;}
.y1b3_c00417{bottom:440.798667pt;}
.y19e_c00417{bottom:450.065333pt;}
.y19f_c00417{bottom:451.065333pt;}
.y1a0_c00417{bottom:451.333333pt;}
.y1a1_c00417{bottom:451.666667pt;}
.y1a2_c00417{bottom:452.000000pt;}
.y1a3_c00417{bottom:452.333333pt;}
.y1a4_c00417{bottom:452.932000pt;}
.y1a5_c00417{bottom:453.265333pt;}
.y1a6_c00417{bottom:453.932000pt;}
.y1a7_c00417{bottom:454.865333pt;}
.y1a8_c00417{bottom:455.198667pt;}
.y193_c00417{bottom:464.198667pt;}
.y192_c00417{bottom:464.532000pt;}
.y194_c00417{bottom:465.465333pt;}
.y195_c00417{bottom:466.065333pt;}
.y196_c00417{bottom:467.065333pt;}
.y197_c00417{bottom:467.398667pt;}
.y198_c00417{bottom:468.598667pt;}
.y199_c00417{bottom:469.265333pt;}
.y19a_c00417{bottom:469.865333pt;}
.y19b_c00417{bottom:470.932000pt;}
.y19c_c00417{bottom:471.198667pt;}
.y19d_c00417{bottom:471.532000pt;}
.y186_c00417{bottom:479.865333pt;}
.y187_c00417{bottom:481.132000pt;}
.y188_c00417{bottom:481.398667pt;}
.y189_c00417{bottom:481.732000pt;}
.y18a_c00417{bottom:482.132000pt;}
.y18b_c00417{bottom:482.732000pt;}
.y18c_c00417{bottom:483.333333pt;}
.y18d_c00417{bottom:484.598667pt;}
.y18e_c00417{bottom:484.932000pt;}
.y18f_c00417{bottom:485.598667pt;}
.y190_c00417{bottom:485.932000pt;}
.y191_c00417{bottom:486.198667pt;}
.y17a_c00417{bottom:494.865333pt;}
.y17b_c00417{bottom:496.532000pt;}
.y17c_c00417{bottom:496.798667pt;}
.y17d_c00417{bottom:497.132000pt;}
.y17e_c00417{bottom:497.465333pt;}
.y17f_c00417{bottom:498.065333pt;}
.y180_c00417{bottom:498.398667pt;}
.y181_c00417{bottom:498.732000pt;}
.y182_c00417{bottom:499.398667pt;}
.y183_c00417{bottom:500.000000pt;}
.y184_c00417{bottom:501.598667pt;}
.y185_c00417{bottom:501.865333pt;}
.y16e_c00417{bottom:509.932000pt;}
.y16f_c00417{bottom:510.265333pt;}
.y170_c00417{bottom:511.198667pt;}
.y171_c00417{bottom:511.798667pt;}
.y172_c00417{bottom:512.132000pt;}
.y173_c00417{bottom:512.798667pt;}
.y174_c00417{bottom:514.398667pt;}
.y175_c00417{bottom:515.065333pt;}
.y176_c00417{bottom:516.333333pt;}
.y177_c00417{bottom:517.000000pt;}
.y178_c00417{bottom:517.265333pt;}
.y179_c00417{bottom:517.865333pt;}
.y160_c00417{bottom:525.000000pt;}
.y161_c00417{bottom:525.598667pt;}
.y162_c00417{bottom:526.532000pt;}
.y163_c00417{bottom:527.198667pt;}
.y164_c00417{bottom:527.865333pt;}
.y165_c00417{bottom:528.198667pt;}
.y166_c00417{bottom:528.798667pt;}
.y167_c00417{bottom:529.132000pt;}
.y168_c00417{bottom:530.398667pt;}
.y169_c00417{bottom:531.065333pt;}
.y16a_c00417{bottom:531.666667pt;}
.y16b_c00417{bottom:532.333333pt;}
.y16c_c00417{bottom:532.932000pt;}
.y16d_c00417{bottom:535.198667pt;}
.y151_c00417{bottom:540.598667pt;}
.y152_c00417{bottom:540.666667pt;}
.y153_c00417{bottom:541.932000pt;}
.y154_c00417{bottom:542.532000pt;}
.y155_c00417{bottom:543.198667pt;}
.y156_c00417{bottom:543.532000pt;}
.y157_c00417{bottom:544.132000pt;}
.y158_c00417{bottom:544.465333pt;}
.y159_c00417{bottom:545.132000pt;}
.y15a_c00417{bottom:545.732000pt;}
.y15b_c00417{bottom:546.398667pt;}
.y15c_c00417{bottom:547.333333pt;}
.y15d_c00417{bottom:547.666667pt;}
.y15e_c00417{bottom:548.000000pt;}
.y15f_c00417{bottom:548.666667pt;}
.y141_c00417{bottom:555.398667pt;}
.y142_c00417{bottom:555.666667pt;}
.y143_c00417{bottom:557.265333pt;}
.y144_c00417{bottom:558.198667pt;}
.y145_c00417{bottom:558.865333pt;}
.y146_c00417{bottom:559.198667pt;}
.y147_c00417{bottom:559.532000pt;}
.y148_c00417{bottom:559.865333pt;}
.y149_c00417{bottom:560.198667pt;}
.y14a_c00417{bottom:561.465333pt;}
.y14b_c00417{bottom:562.398667pt;}
.y14c_c00417{bottom:563.000000pt;}
.y14d_c00417{bottom:563.732000pt;}
.y14e_c00417{bottom:564.000000pt;}
.y14f_c00417{bottom:564.333333pt;}
.y150_c00417{bottom:564.666667pt;}
.y133_c00417{bottom:570.398667pt;}
.y134_c00417{bottom:571.065333pt;}
.y135_c00417{bottom:572.333333pt;}
.y136_c00417{bottom:573.000000pt;}
.y137_c00417{bottom:574.265333pt;}
.y138_c00417{bottom:574.932000pt;}
.y139_c00417{bottom:575.198667pt;}
.y13a_c00417{bottom:575.865333pt;}
.y13b_c00417{bottom:576.465333pt;}
.y13c_c00417{bottom:577.132000pt;}
.y13d_c00417{bottom:577.732000pt;}
.y13e_c00417{bottom:578.398667pt;}
.y13f_c00417{bottom:578.732000pt;}
.y140_c00417{bottom:579.333333pt;}
.yd9_c00417{bottom:585.732000pt;}
.yda_c00417{bottom:585.798667pt;}
.ye2_c00417{bottom:588.000000pt;}
.ye9_c00417{bottom:588.932000pt;}
.yf0_c00417{bottom:589.333333pt;}
.yf7_c00417{bottom:589.932000pt;}
.yfe_c00417{bottom:590.532000pt;}
.y105_c00417{bottom:590.865333pt;}
.y10c_c00417{bottom:591.532000pt;}
.y112_c00417{bottom:592.132000pt;}
.y118_c00417{bottom:593.132000pt;}
.y11e_c00417{bottom:593.798667pt;}
.y124_c00417{bottom:594.398667pt;}
.y129_c00417{bottom:595.065333pt;}
.y131_c00417{bottom:595.666667pt;}
.y130_c00417{bottom:595.732000pt;}
.y132_c00417{bottom:596.333333pt;}
.yd8_c00417{bottom:600.798667pt;}
.ye1_c00417{bottom:603.398667pt;}
.ye8_c00417{bottom:604.000000pt;}
.yef_c00417{bottom:604.598667pt;}
.yf6_c00417{bottom:605.265333pt;}
.yfd_c00417{bottom:605.865333pt;}
.y104_c00417{bottom:606.265333pt;}
.y10b_c00417{bottom:606.932000pt;}
.y111_c00417{bottom:607.865333pt;}
.y117_c00417{bottom:608.465333pt;}
.y11d_c00417{bottom:609.132000pt;}
.y123_c00417{bottom:609.398667pt;}
.y12e_c00417{bottom:609.465333pt;}
.y12f_c00417{bottom:609.732000pt;}
.yd6_c00417{bottom:615.465333pt;}
.yd7_c00417{bottom:615.865333pt;}
.ye0_c00417{bottom:618.732000pt;}
.ye7_c00417{bottom:619.333333pt;}
.yee_c00417{bottom:619.666667pt;}
.yf5_c00417{bottom:620.666667pt;}
.yfc_c00417{bottom:621.265333pt;}
.y103_c00417{bottom:621.598667pt;}
.y10a_c00417{bottom:622.598667pt;}
.y110_c00417{bottom:623.198667pt;}
.y116_c00417{bottom:623.798667pt;}
.y11c_c00417{bottom:624.465333pt;}
.y122_c00417{bottom:625.132000pt;}
.y128_c00417{bottom:625.465333pt;}
.y12c_c00417{bottom:626.732000pt;}
.y12d_c00417{bottom:627.398667pt;}
.yd4_c00417{bottom:630.532000pt;}
.yd5_c00417{bottom:630.598667pt;}
.ydb_c00417{bottom:634.065333pt;}
.ydc_c00417{bottom:634.132000pt;}
.ye6_c00417{bottom:635.066667pt;}
.yed_c00417{bottom:635.733333pt;}
.yf4_c00417{bottom:636.000000pt;}
.yfb_c00417{bottom:636.666667pt;}
.y102_c00417{bottom:637.333333pt;}
.y109_c00417{bottom:637.932000pt;}
.y10f_c00417{bottom:638.865333pt;}
.y115_c00417{bottom:639.865333pt;}
.y11b_c00417{bottom:640.532000pt;}
.y121_c00417{bottom:641.733333pt;}
.y127_c00417{bottom:642.400000pt;}
.y12b_c00417{bottom:642.733333pt;}
.yd2_c00417{bottom:645.598667pt;}
.yd3_c00417{bottom:645.932000pt;}
.ydf_c00417{bottom:649.400000pt;}
.ye5_c00417{bottom:650.400000pt;}
.yec_c00417{bottom:650.733333pt;}
.yf3_c00417{bottom:651.400000pt;}
.yfa_c00417{bottom:652.000000pt;}
.y101_c00417{bottom:652.666667pt;}
.y108_c00417{bottom:653.598667pt;}
.y10e_c00417{bottom:654.265333pt;}
.y114_c00417{bottom:655.198667pt;}
.y11a_c00417{bottom:655.532000pt;}
.y120_c00417{bottom:655.865333pt;}
.y126_c00417{bottom:656.465333pt;}
.yd1_c00417{bottom:660.666667pt;}
.yde_c00417{bottom:663.865333pt;}
.ye4_c00417{bottom:665.132000pt;}
.yeb_c00417{bottom:665.798667pt;}
.yf2_c00417{bottom:666.400000pt;}
.yf9_c00417{bottom:667.066667pt;}
.y100_c00417{bottom:667.666667pt;}
.y107_c00417{bottom:668.333333pt;}
.y10d_c00417{bottom:669.265333pt;}
.y113_c00417{bottom:669.865333pt;}
.y119_c00417{bottom:670.598667pt;}
.y11f_c00417{bottom:671.198667pt;}
.y125_c00417{bottom:671.865333pt;}
.ycf_c00417{bottom:676.000000pt;}
.yd0_c00417{bottom:676.666667pt;}
.ydd_c00417{bottom:679.865333pt;}
.y12a_c00417{bottom:680.132000pt;}
.ye3_c00417{bottom:680.798667pt;}
.yea_c00417{bottom:681.465333pt;}
.yf1_c00417{bottom:681.733333pt;}
.yf8_c00417{bottom:682.400000pt;}
.yff_c00417{bottom:683.065333pt;}
.y106_c00417{bottom:683.732000pt;}
.ybc_c00417{bottom:684.666667pt;}
.yc1_c00417{bottom:685.333333pt;}
.yc2_c00417{bottom:685.933333pt;}
.yc5_c00417{bottom:686.865333pt;}
.yc8_c00417{bottom:687.532000pt;}
.yaa_c00417{bottom:690.732000pt;}
.yce_c00417{bottom:691.333333pt;}
.yab_c00417{bottom:691.398667pt;}
.yad_c00417{bottom:694.933333pt;}
.yaf_c00417{bottom:695.798667pt;}
.yb1_c00417{bottom:696.465333pt;}
.yb3_c00417{bottom:697.465333pt;}
.yb5_c00417{bottom:698.065333pt;}
.yb7_c00417{bottom:698.732000pt;}
.yb9_c00417{bottom:699.398667pt;}
.ybb_c00417{bottom:700.000000pt;}
.ybf_c00417{bottom:700.666667pt;}
.yc0_c00417{bottom:701.266667pt;}
.yc4_c00417{bottom:702.266667pt;}
.yc7_c00417{bottom:702.600000pt;}
.ycb_c00417{bottom:703.532000pt;}
.ycd_c00417{bottom:704.133333pt;}
.ycc_c00417{bottom:704.198667pt;}
.ya8_c00417{bottom:705.800000pt;}
.ya9_c00417{bottom:706.398667pt;}
.yac_c00417{bottom:710.266667pt;}
.yae_c00417{bottom:711.198667pt;}
.yb0_c00417{bottom:711.865333pt;}
.yb2_c00417{bottom:712.800000pt;}
.yb4_c00417{bottom:713.732000pt;}
.yb6_c00417{bottom:714.398667pt;}
.yb8_c00417{bottom:715.065333pt;}
.yba_c00417{bottom:716.000000pt;}
.ybd_c00417{bottom:716.666667pt;}
.yc3_c00417{bottom:716.933333pt;}
.ybe_c00417{bottom:717.000000pt;}
.yc6_c00417{bottom:717.266667pt;}
.yca_c00417{bottom:717.600000pt;}
.yc9_c00417{bottom:717.933333pt;}
.ya6_c00417{bottom:721.133333pt;}
.ya7_c00417{bottom:721.466667pt;}
.y46_c00417{bottom:725.600000pt;}
.y4e_c00417{bottom:726.865333pt;}
.y56_c00417{bottom:727.532000pt;}
.y5e_c00417{bottom:728.466667pt;}
.ya5_c00417{bottom:728.800000pt;}
.y66_c00417{bottom:729.133333pt;}
.y6e_c00417{bottom:729.466667pt;}
.y76_c00417{bottom:729.800000pt;}
.y7e_c00417{bottom:730.732000pt;}
.y86_c00417{bottom:731.333333pt;}
.y8e_c00417{bottom:732.000000pt;}
.y95_c00417{bottom:732.666667pt;}
.y98_c00417{bottom:733.266667pt;}
.y9f_c00417{bottom:734.266667pt;}
.ya4_c00417{bottom:734.865333pt;}
.y3d_c00417{bottom:735.532000pt;}
.y3e_c00417{bottom:736.198667pt;}
.y45_c00417{bottom:740.333333pt;}
.y4d_c00417{bottom:741.266667pt;}
.y55_c00417{bottom:741.865333pt;}
.y5d_c00417{bottom:743.198667pt;}
.y65_c00417{bottom:744.133333pt;}
.y6d_c00417{bottom:744.800000pt;}
.y75_c00417{bottom:745.398667pt;}
.y7d_c00417{bottom:746.133333pt;}
.y85_c00417{bottom:746.398667pt;}
.y8d_c00417{bottom:746.732000pt;}
.y94_c00417{bottom:747.065333pt;}
.y97_c00417{bottom:747.398667pt;}
.y9e_c00417{bottom:748.000000pt;}
.ya3_c00417{bottom:748.666667pt;}
.y3c_c00417{bottom:750.532000pt;}
.y44_c00417{bottom:755.333333pt;}
.y4c_c00417{bottom:756.666667pt;}
.y54_c00417{bottom:757.600000pt;}
.y5c_c00417{bottom:758.600000pt;}
.y64_c00417{bottom:759.532000pt;}
.y74_c00417{bottom:759.865333pt;}
.y6c_c00417{bottom:760.133333pt;}
.y7c_c00417{bottom:761.732000pt;}
.y84_c00417{bottom:762.398667pt;}
.y8c_c00417{bottom:762.732000pt;}
.y9d_c00417{bottom:763.398667pt;}
.y93_c00417{bottom:763.666667pt;}
.ya2_c00417{bottom:764.000000pt;}
.y3a_c00417{bottom:764.933333pt;}
.y3b_c00417{bottom:765.266667pt;}
.y43_c00417{bottom:770.065333pt;}
.y4b_c00417{bottom:771.333333pt;}
.y53_c00417{bottom:772.000000pt;}
.y5b_c00417{bottom:773.000000pt;}
.y63_c00417{bottom:773.600000pt;}
.y6b_c00417{bottom:773.865333pt;}
.y73_c00417{bottom:774.600000pt;}
.y7b_c00417{bottom:775.865333pt;}
.y83_c00417{bottom:777.133333pt;}
.y8b_c00417{bottom:778.065333pt;}
.y9c_c00417{bottom:778.732000pt;}
.y92_c00417{bottom:779.065333pt;}
.y38_c00417{bottom:779.732000pt;}
.y39_c00417{bottom:780.333333pt;}
.y42_c00417{bottom:784.532000pt;}
.y4a_c00417{bottom:786.065333pt;}
.y52_c00417{bottom:787.065333pt;}
.y5a_c00417{bottom:788.000000pt;}
.y62_c00417{bottom:788.666667pt;}
.y6a_c00417{bottom:789.266667pt;}
.y72_c00417{bottom:790.600000pt;}
.y7a_c00417{bottom:791.532000pt;}
.y82_c00417{bottom:792.133333pt;}
.y8a_c00417{bottom:792.466667pt;}
.y36_c00417{bottom:794.732000pt;}
.y37_c00417{bottom:795.398667pt;}
.y41_c00417{bottom:799.532000pt;}
.y49_c00417{bottom:800.800000pt;}
.y51_c00417{bottom:801.466667pt;}
.y59_c00417{bottom:802.065333pt;}
.y61_c00417{bottom:803.398667pt;}
.y69_c00417{bottom:804.666667pt;}
.y71_c00417{bottom:805.600000pt;}
.y79_c00417{bottom:806.865333pt;}
.y81_c00417{bottom:807.466667pt;}
.y89_c00417{bottom:808.466667pt;}
.y91_c00417{bottom:809.133333pt;}
.y35_c00417{bottom:809.800000pt;}
.y34_c00417{bottom:810.065333pt;}
.y9a_c00417{bottom:810.732000pt;}
.y9b_c00417{bottom:811.398667pt;}
.ya1_c00417{bottom:811.666667pt;}
.y3f_c00417{bottom:814.600000pt;}
.y48_c00417{bottom:815.865333pt;}
.y50_c00417{bottom:816.800000pt;}
.y58_c00417{bottom:818.065333pt;}
.y60_c00417{bottom:819.065333pt;}
.y68_c00417{bottom:820.000000pt;}
.y70_c00417{bottom:821.266667pt;}
.y78_c00417{bottom:822.266667pt;}
.y80_c00417{bottom:823.198667pt;}
.y88_c00417{bottom:823.865333pt;}
.y90_c00417{bottom:824.133333pt;}
.y96_c00417{bottom:824.466667pt;}
.y32_c00417{bottom:825.133333pt;}
.y33_c00417{bottom:825.800000pt;}
.ya0_c00417{bottom:826.065333pt;}
.y40_c00417{bottom:829.933333pt;}
.y47_c00417{bottom:831.532000pt;}
.y4f_c00417{bottom:832.800000pt;}
.y57_c00417{bottom:833.732000pt;}
.y5f_c00417{bottom:834.398667pt;}
.y67_c00417{bottom:835.065333pt;}
.y6f_c00417{bottom:836.000000pt;}
.y77_c00417{bottom:837.600000pt;}
.y7f_c00417{bottom:838.865333pt;}
.y87_c00417{bottom:839.532000pt;}
.y8f_c00417{bottom:839.865333pt;}
.y99_c00417{bottom:840.133333pt;}
.y24_c00417{bottom:856.800000pt;}
.y25_c00417{bottom:857.133333pt;}
.y26_c00417{bottom:858.398667pt;}
.y27_c00417{bottom:859.333333pt;}
.y28_c00417{bottom:860.266667pt;}
.y29_c00417{bottom:860.333333pt;}
.y2a_c00417{bottom:860.933333pt;}
.y2b_c00417{bottom:861.865333pt;}
.y2c_c00417{bottom:863.865333pt;}
.y2d_c00417{bottom:864.466667pt;}
.y30_c00417{bottom:864.800000pt;}
.y2f_c00417{bottom:865.133333pt;}
.y2e_c00417{bottom:865.466667pt;}
.y31_c00417{bottom:865.732000pt;}
.yc_c00417{bottom:891.000000pt;}
.yd_c00417{bottom:892.000000pt;}
.y14_c00417{bottom:894.532000pt;}
.y21_c00417{bottom:896.800000pt;}
.y1c_c00417{bottom:898.065333pt;}
.y1b_c00417{bottom:898.398667pt;}
.y7_c00417{bottom:899.666667pt;}
.y8_c00417{bottom:904.466667pt;}
.yb_c00417{bottom:908.000000pt;}
.y18_c00417{bottom:909.266667pt;}
.y1a_c00417{bottom:909.333333pt;}
.y19_c00417{bottom:909.600000pt;}
.ye_c00417{bottom:910.600000pt;}
.y13_c00417{bottom:911.532000pt;}
.y20_c00417{bottom:919.198667pt;}
.ya_c00417{bottom:924.933333pt;}
.y10_c00417{bottom:928.466667pt;}
.y11_c00417{bottom:928.532000pt;}
.y12_c00417{bottom:929.800000pt;}
.y1f_c00417{bottom:930.133333pt;}
.y1d_c00417{bottom:931.398667pt;}
.y17_c00417{bottom:932.000000pt;}
.y9_c00417{bottom:940.600000pt;}
.y23_c00417{bottom:941.000000pt;}
.y16_c00417{bottom:942.865333pt;}
.yf_c00417{bottom:945.133333pt;}
.y5_c00417{bottom:952.133333pt;}
.y1e_c00417{bottom:952.466667pt;}
.y22_c00417{bottom:952.800000pt;}
.y6_c00417{bottom:953.466667pt;}
.y15_c00417{bottom:953.800000pt;}
.y1_c00417{bottom:974.532000pt;}
.y3_c00417{bottom:984.466667pt;}
.y4_c00417{bottom:987.666667pt;}
.y2_c00417{bottom:988.800000pt;}
.h1e_c00417{height:33.375000pt;}
.h5_c00417{height:36.640625pt;}
.hb_c00417{height:38.937500pt;}
.h4_c00417{height:39.834667pt;}
.h6_c00417{height:47.109375pt;}
.h9_c00417{height:47.281250pt;}
.ha_c00417{height:50.062500pt;}
.h1_c00417{height:52.343750pt;}
.h7_c00417{height:54.960938pt;}
.hc_c00417{height:55.625000pt;}
.h3_c00417{height:57.549479pt;}
.h2_c00417{height:57.578125pt;}
.h1d_c00417{height:58.406250pt;}
.h14_c00417{height:61.187500pt;}
.h8_c00417{height:62.812500pt;}
.h15_c00417{height:63.073833pt;}
.h19_c00417{height:63.084500pt;}
.h10_c00417{height:64.145833pt;}
.he_c00417{height:65.207167pt;}
.h16_c00417{height:65.212500pt;}
.h12_c00417{height:65.217833pt;}
.hf_c00417{height:65.479167pt;}
.h11_c00417{height:66.545833pt;}
.h1a_c00417{height:66.551167pt;}
.h1c_c00417{height:66.812500pt;}
.h1b_c00417{height:67.079167pt;}
.h13_c00417{height:67.873833pt;}
.h18_c00417{height:67.879167pt;}
.h17_c00417{height:69.212500pt;}
.hd_c00417{height:133.500000pt;}
.h0_c00417{height:1044.000000pt;}
.w0_c00417{width:643.086400pt;}
.w1_c00417{width:643.333333pt;}
.x0_c00417{left:0.000000pt;}
.x5_c00417{left:9.902400pt;}
.x6_c00417{left:11.169067pt;}
.x3a_c00417{left:13.769067pt;}
.x3c_c00417{left:14.702400pt;}
.x81_c00417{left:15.969067pt;}
.xba_c00417{left:17.235733pt;}
.xc7_c00417{left:18.235733pt;}
.xcf_c00417{left:19.835733pt;}
.xe7_c00417{left:21.769067pt;}
.x1_c00417{left:23.035733pt;}
.xfe_c00417{left:24.301067pt;}
.x101_c00417{left:25.902400pt;}
.x102_c00417{left:27.169067pt;}
.x2_c00417{left:47.635733pt;}
.xa5_c00417{left:50.235733pt;}
.x71_c00417{left:51.502400pt;}
.x3d_c00417{left:52.769067pt;}
.x82_c00417{left:54.369067pt;}
.x7_c00417{left:55.635733pt;}
.xd0_c00417{left:57.902400pt;}
.x3e_c00417{left:60.169067pt;}
.x84_c00417{left:61.102400pt;}
.xbf_c00417{left:62.369067pt;}
.xd9_c00417{left:64.635733pt;}
.xe0_c00417{left:65.569067pt;}
.x83_c00417{left:68.435733pt;}
.x10a_c00417{left:71.635733pt;}
.x3b_c00417{left:72.635733pt;}
.x80_c00417{left:74.569067pt;}
.xbb_c00417{left:76.435733pt;}
.xde_c00417{left:79.035733pt;}
.xd7_c00417{left:80.302400pt;}
.xe8_c00417{left:81.569067pt;}
.x72_c00417{left:83.835733pt;}
.xca_c00417{left:89.569067pt;}
.xf4_c00417{left:92.769067pt;}
.x3f_c00417{left:96.969067pt;}
.xcb_c00417{left:101.769067pt;}
.xf5_c00417{left:104.635733pt;}
.x85_c00417{left:113.235733pt;}
.xef_c00417{left:114.835733pt;}
.xc8_c00417{left:126.702400pt;}
.xeb_c00417{left:137.235733pt;}
.xc9_c00417{left:138.235733pt;}
.x40_c00417{left:167.035733pt;}
.x86_c00417{left:167.969067pt;}
.x8_c00417{left:180.435733pt;}
.xe1_c00417{left:186.835733pt;}
.x41_c00417{left:190.702400pt;}
.x87_c00417{left:192.302400pt;}
.xae_c00417{left:193.902400pt;}
.xc0_c00417{left:194.835733pt;}
.x3_c00417{left:196.769067pt;}
.xe2_c00417{left:198.369067pt;}
.xf0_c00417{left:199.369067pt;}
.xfc_c00417{left:200.302400pt;}
.x103_c00417{left:201.569067pt;}
.x104_c00417{left:202.835733pt;}
.xb_c00417{left:225.569067pt;}
.x29_c00417{left:229.769067pt;}
.x9_c00417{left:239.635733pt;}
.x42_c00417{left:241.902400pt;}
.x43_c00417{left:242.835733pt;}
.x88_c00417{left:243.835733pt;}
.x89_c00417{left:244.769067pt;}
.xaf_c00417{left:245.769067pt;}
.xc1_c00417{left:246.702400pt;}
.xcc_c00417{left:248.302400pt;}
.x2a_c00417{left:249.235733pt;}
.xec_c00417{left:250.569067pt;}
.xf8_c00417{left:251.502400pt;}
.xc_c00417{left:253.102400pt;}
.x10b_c00417{left:254.035733pt;}
.x2b_c00417{left:260.769067pt;}
.xa_c00417{left:265.235733pt;}
.x47_c00417{left:270.035733pt;}
.x8b_c00417{left:271.969067pt;}
.xbc_c00417{left:273.902400pt;}
.x4_c00417{left:275.169067pt;}
.x45_c00417{left:276.435733pt;}
.x44_c00417{left:277.435733pt;}
.x46_c00417{left:278.369067pt;}
.x8a_c00417{left:280.302400pt;}
.xa8_c00417{left:281.235733pt;}
.xd1_c00417{left:283.169067pt;}
.xda_c00417{left:284.169067pt;}
.xd8_c00417{left:285.102400pt;}
.xe9_c00417{left:286.369067pt;}
.xf1_c00417{left:287.369067pt;}
.x105_c00417{left:288.635733pt;}
.x2c_c00417{left:297.902400pt;}
.x49_c00417{left:304.635733pt;}
.x8c_c00417{left:306.569067pt;}
.xc5_c00417{left:309.435733pt;}
.x48_c00417{left:310.702400pt;}
.x4b_c00417{left:312.635733pt;}
.x4a_c00417{left:313.569067pt;}
.x8d_c00417{left:314.569067pt;}
.xb0_c00417{left:315.502400pt;}
.xa9_c00417{left:316.435733pt;}
.xd2_c00417{left:317.769067pt;}
.xd5_c00417{left:318.702400pt;}
.xe3_c00417{left:319.635733pt;}
.xf2_c00417{left:320.635733pt;}
.xff_c00417{left:322.569067pt;}
.x106_c00417{left:323.502400pt;}
.xd_c00417{left:328.969067pt;}
.x2d_c00417{left:333.102400pt;}
.xe_c00417{left:340.769067pt;}
.x4c_c00417{left:345.902400pt;}
.x4d_c00417{left:346.835733pt;}
.x4e_c00417{left:347.835733pt;}
.x8e_c00417{left:348.769067pt;}
.x8f_c00417{left:349.769067pt;}
.xb1_c00417{left:350.701067pt;}
.x13_c00417{left:351.635733pt;}
.xcd_c00417{left:352.635733pt;}
.x2e_c00417{left:353.902400pt;}
.xe4_c00417{left:354.835733pt;}
.xfa_c00417{left:356.169067pt;}
.x100_c00417{left:357.102400pt;}
.x10c_c00417{left:358.367733pt;}
.x2f_c00417{left:364.435733pt;}
.xf_c00417{left:367.367733pt;}
.x12_c00417{left:369.235733pt;}
.x4f_c00417{left:372.435733pt;}
.x51_c00417{left:374.034400pt;}
.x73_c00417{left:375.635733pt;}
.x91_c00417{left:376.969067pt;}
.xa6_c00417{left:377.902400pt;}
.xc6_c00417{left:379.169067pt;}
.xd6_c00417{left:380.435733pt;}
.x50_c00417{left:382.034400pt;}
.x52_c00417{left:383.034400pt;}
.x90_c00417{left:383.969067pt;}
.x10_c00417{left:384.969067pt;}
.xb2_c00417{left:386.569067pt;}
.xd4_c00417{left:387.502400pt;}
.xed_c00417{left:389.769067pt;}
.xea_c00417{left:390.702400pt;}
.xf9_c00417{left:391.969067pt;}
.x10d_c00417{left:392.969067pt;}
.x30_c00417{left:401.902400pt;}
.x53_c00417{left:407.369067pt;}
.x56_c00417{left:409.235733pt;}
.x92_c00417{left:410.569067pt;}
.x95_c00417{left:412.169067pt;}
.xb6_c00417{left:413.102400pt;}
.x54_c00417{left:415.369067pt;}
.x55_c00417{left:416.302400pt;}
.x74_c00417{left:417.902400pt;}
.x93_c00417{left:418.835733pt;}
.x94_c00417{left:419.835733pt;}
.xbd_c00417{left:421.435733pt;}
.xce_c00417{left:422.702400pt;}
.xdb_c00417{left:423.635733pt;}
.xe5_c00417{left:424.635733pt;}
.xf7_c00417{left:425.902400pt;}
.x107_c00417{left:427.169067pt;}
.x11_c00417{left:434.835733pt;}
.x31_c00417{left:437.102400pt;}
.x24_c00417{left:445.769067pt;}
.x26_c00417{left:447.635733pt;}
.x57_c00417{left:450.235733pt;}
.x58_c00417{left:451.169067pt;}
.x59_c00417{left:452.169067pt;}
.x25_c00417{left:453.435733pt;}
.x75_c00417{left:454.369067pt;}
.x96_c00417{left:455.635733pt;}
.xb3_c00417{left:456.969067pt;}
.xc2_c00417{left:457.902400pt;}
.xdc_c00417{left:458.835733pt;}
.xe6_c00417{left:459.835733pt;}
.xfb_c00417{left:460.769067pt;}
.x108_c00417{left:462.035733pt;}
.x32_c00417{left:468.769067pt;}
.x28_c00417{left:473.902400pt;}
.x5b_c00417{left:478.702400pt;}
.x5a_c00417{left:485.435733pt;}
.x5c_c00417{left:486.369067pt;}
.x5d_c00417{left:487.369067pt;}
.x76_c00417{left:488.969067pt;}
.x7a_c00417{left:489.902400pt;}
.x97_c00417{left:490.835733pt;}
.xaa_c00417{left:491.835733pt;}
.xc3_c00417{left:492.769067pt;}
.xdd_c00417{left:493.769067pt;}
.xf3_c00417{left:494.702400pt;}
.x77_c00417{left:495.635733pt;}
.x78_c00417{left:496.635733pt;}
.x27_c00417{left:505.569067pt;}
.x33_c00417{left:506.569067pt;}
.x60_c00417{left:514.835733pt;}
.x7b_c00417{left:517.102400pt;}
.xa7_c00417{left:519.369067pt;}
.x5e_c00417{left:520.635733pt;}
.x5f_c00417{left:521.569067pt;}
.x61_c00417{left:522.835733pt;}
.x79_c00417{left:524.169067pt;}
.x98_c00417{left:525.102400pt;}
.x99_c00417{left:526.035733pt;}
.xbe_c00417{left:527.369067pt;}
.xb7_c00417{left:528.635733pt;}
.xdf_c00417{left:529.902400pt;}
.xf6_c00417{left:530.835733pt;}
.x23_c00417{left:537.569067pt;}
.x34_c00417{left:541.769067pt;}
.x17_c00417{left:542.702400pt;}
.x14_c00417{left:548.769067pt;}
.x62_c00417{left:555.169067pt;}
.x16_c00417{left:557.102400pt;}
.x18_c00417{left:558.702400pt;}
.x7c_c00417{left:559.635733pt;}
.x19_c00417{left:560.635733pt;}
.x9a_c00417{left:561.902400pt;}
.xb8_c00417{left:562.835733pt;}
.xee_c00417{left:564.169067pt;}
.x1a_c00417{left:565.102400pt;}
.x1b_c00417{left:567.369067pt;}
.x35_c00417{left:568.969067pt;}
.x1c_c00417{left:570.235733pt;}
.x1d_c00417{left:575.035733pt;}
.x15_c00417{left:577.569067pt;}
.x109_c00417{left:578.569067pt;}
.x1e_c00417{left:580.169067pt;}
.x1f_c00417{left:582.702400pt;}
.x64_c00417{left:584.302400pt;}
.x20_c00417{left:585.569067pt;}
.x7d_c00417{left:586.835733pt;}
.x9d_c00417{left:588.435733pt;}
.xab_c00417{left:589.435733pt;}
.x63_c00417{left:591.035733pt;}
.x21_c00417{left:592.635733pt;}
.x7e_c00417{left:594.235733pt;}
.x9b_c00417{left:595.169067pt;}
.x9c_c00417{left:596.769067pt;}
.xc4_c00417{left:599.035733pt;}
.xfd_c00417{left:600.302400pt;}
.x36_c00417{left:603.502400pt;}
.x37_c00417{left:610.569067pt;}
.x22_c00417{left:614.702400pt;}
.x65_c00417{left:615.969067pt;}
.xac_c00417{left:620.435733pt;}
.xb4_c00417{left:622.035733pt;}
.x66_c00417{left:623.635733pt;}
.x69_c00417{left:624.635733pt;}
.x6a_c00417{left:625.569067pt;}
.x6b_c00417{left:627.169067pt;}
.xa2_c00417{left:629.435733pt;}
.x67_c00417{left:631.635733pt;}
.xd3_c00417{left:632.969067pt;}
.x7f_c00417{left:634.569067pt;}
.xa3_c00417{left:635.835733pt;}
.xad_c00417{left:637.102400pt;}
.x10e_c00417{left:642.569067pt;}
.x9f_c00417{left:647.369067pt;}
.x68_c00417{left:649.902400pt;}
.xa0_c00417{left:650.835733pt;}
.x38_c00417{left:657.235733pt;}
.x6f_c00417{left:659.169067pt;}
.x6c_c00417{left:660.435733pt;}
.x6d_c00417{left:661.435733pt;}
.x6e_c00417{left:662.369067pt;}
.xa4_c00417{left:663.635733pt;}
.x39_c00417{left:664.634400pt;}
.xb5_c00417{left:666.569067pt;}
.xb9_c00417{left:667.502400pt;}
.x70_c00417{left:669.769067pt;}
.x9e_c00417{left:670.702400pt;}
.xa1_c00417{left:673.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7dbc1bc0513740ccf1393e9d.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00418;src:url('chunks/assets/font_0fbfb6a95686bb3400a9470c.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00418;src:url('chunks/assets/font_4ddc1992f1c97d91da2cbe27.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00418;src:url('chunks/assets/font_f7a321061fd2a162605e25ca.woff2')format("woff");}.ff4_c00418{font-family:ff4_c00418;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00418;src:url('chunks/assets/font_ec9f7349f8430e9ea9245184.woff2')format("woff");}.ff5_c00418{font-family:ff5_c00418;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m82_c00418{transform:matrix(0.012500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00418{transform:matrix(0.027500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00418{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m48_c00418{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m54_c00418{transform:matrix(0.052500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052500,0.000000,0.000000,0.250000,0,0);}
.m87_c00418{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m52_c00418{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00418{transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);}
.m65_c00418{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00418{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00418{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m57_c00418{transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);}
.m19_c00418{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00418{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m68_c00418{transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00418{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m43_c00418{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00418{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00418{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00418{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00418{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00418{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m45_c00418{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00418{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m24_c00418{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00418{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m85_c00418{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m28_c00418{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m63_c00418{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00418{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m40_c00418{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00418{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00418{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00418{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m18_c00418{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00418{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m12_c00418{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m11_c00418{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00418{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m75_c00418{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me_c00418{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m86_c00418{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m14_c00418{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m10_c00418{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m78_c00418{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m53_c00418{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m17_c00418{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m15_c00418{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00418{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00418{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m13_c00418{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5_c00418{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00418{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m72_c00418{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.md_c00418{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00418{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m79_c00418{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m76_c00418{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m0_c00418{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m77_c00418{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m74_c00418{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mb_c00418{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m31_c00418{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1_c00418{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m73_c00418{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6_c00418{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1f_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);}
.m59_c00418{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma_c00418{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00418{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m49_c00418{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c00418{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m55_c00418{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m80_c00418{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00418{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00418{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m70_c00418{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00418{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00418{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7_c00418{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m71_c00418{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m34_c00418{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m16_c00418{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m47_c00418{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m42_c00418{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m20_c00418{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m38_c00418{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m32_c00418{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m37_c00418{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00418{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00418{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m83_c00418{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00418{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00418{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m81_c00418{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00418{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00418{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m50_c00418{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00418{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m46_c00418{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m26_c00418{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m22_c00418{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m23_c00418{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m60_c00418{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00418{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m84_c00418{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4_c00418{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m61_c00418{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m69_c00418{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m41_c00418{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00418{transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);}
.m67_c00418{transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);}
.m66_c00418{transform:matrix(1.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.400000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00418{transform:matrix(1.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.412500,0.000000,0.000000,0.250000,0,0);}
.m51_c00418{transform:matrix(2.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.362500,0.000000,0.000000,0.250000,0,0);}
.m56_c00418{transform:matrix(3.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.425000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00418{transform:matrix(3.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.712500,0.000000,0.000000,0.250000,0,0);}
.m64_c00418{transform:matrix(3.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.722500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00418{transform:matrix(4.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.250000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00418{transform:matrix(4.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.322500,0.000000,0.000000,0.250000,0,0);}
.m62_c00418{transform:matrix(4.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.625000,0.000000,0.000000,0.250000,0,0);}
.m33_c00418{transform:matrix(4.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.735000,0.000000,0.000000,0.250000,0,0);}
.m25_c00418{transform:matrix(4.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.737500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00418{transform:matrix(4.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.800000,0.000000,0.000000,0.250000,0,0);}
.m58_c00418{transform:matrix(4.850000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850000,0.000000,0.000000,0.250000,0,0);}
.m29_c00418{transform:matrix(4.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.860000,0.000000,0.000000,0.250000,0,0);}
.m35_c00418{transform:matrix(4.862500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.862500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.862500,0.000000,0.000000,0.250000,0,0);}
.mf_c00418{transform:matrix(4.910000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.910000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.910000,0.000000,0.000000,0.250000,0,0);}
.m39_c00418{transform:matrix(4.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.912500,0.000000,0.000000,0.250000,0,0);}
.m36_c00418{transform:matrix(4.922500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.922500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.922500,0.000000,0.000000,0.250000,0,0);}
.m30_c00418{transform:matrix(4.925000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.925000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.925000,0.000000,0.000000,0.250000,0,0);}
.m44_c00418{transform:matrix(4.972500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.972500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.972500,0.000000,0.000000,0.250000,0,0);}
.m21_c00418{transform:matrix(4.975000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.975000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.975000,0.000000,0.000000,0.250000,0,0);}
.m27_c00418{transform:matrix(4.985000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.985000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.985000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00418{transform:matrix(4.987500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.987500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.987500,0.000000,0.000000,0.250000,0,0);}
.m3_c00418{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v1_c00418{vertical-align:-66.300000px;}
.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:-35.280000px;}
.ws1_c00418{word-spacing:-19.500000px;}
.ws2_c00418{word-spacing:0.000000px;}
._0_c00418{margin-left:-69.930000px;}
._1_c00418{margin-left:-60.068067px;}
._2_c00418{margin-left:-33.924000px;}
.fc0_c00418{color:transparent;}
.fs2_c00418{font-size:36.000000px;}
.fs4_c00418{font-size:42.000000px;}
.fs0_c00418{font-size:48.000000px;}
.fs1_c00418{font-size:54.000000px;}
.fs3_c00418{font-size:60.000000px;}
.fsb_c00418{font-size:66.000000px;}
.fs6_c00418{font-size:72.000000px;}
.fs5_c00418{font-size:78.000000px;}
.fs7_c00418{font-size:84.000000px;}
.fs8_c00418{font-size:90.000000px;}
.fsa_c00418{font-size:96.000000px;}
.fs9_c00418{font-size:126.000000px;}
.y0_c00418{bottom:0.000000px;}
.y1c7_c00418{bottom:87.598500px;}
.y1c6_c00418{bottom:87.673500px;}
.y1c5_c00418{bottom:90.223500px;}
.y131_c00418{bottom:91.273500px;}
.y132_c00418{bottom:93.823500px;}
.y134_c00418{bottom:97.348500px;}
.y133_c00418{bottom:97.423500px;}
.y135_c00418{bottom:100.273500px;}
.y1e7_c00418{bottom:102.750000px;}
.y1c4_c00418{bottom:104.250000px;}
.y218_c00418{bottom:106.723500px;}
.y12d_c00418{bottom:107.848500px;}
.y2ca_c00418{bottom:109.948500px;}
.y297_c00418{bottom:111.750000px;}
.y12e_c00418{bottom:113.173500px;}
.y12f_c00418{bottom:113.250000px;}
.y249_c00418{bottom:115.348500px;}
.y26b_c00418{bottom:118.273500px;}
.y1c3_c00418{bottom:118.573500px;}
.y130_c00418{bottom:118.648500px;}
.y2f3_c00418{bottom:121.125000px;}
.y127_c00418{bottom:123.973500px;}
.y128_c00418{bottom:124.048500px;}
.y129_c00418{bottom:126.148500px;}
.y12a_c00418{bottom:126.223500px;}
.y1c2_c00418{bottom:128.398500px;}
.y12c_c00418{bottom:130.500000px;}
.y12b_c00418{bottom:130.875000px;}
.y1c1_c00418{bottom:131.173500px;}
.y248_c00418{bottom:131.548500px;}
.y26a_c00418{bottom:133.348500px;}
.y1c0_c00418{bottom:134.473500px;}
.y1be_c00418{bottom:134.773500px;}
.y1bf_c00418{bottom:134.848500px;}
.y2f2_c00418{bottom:136.948500px;}
.y217_c00418{bottom:139.125000px;}
.y1bc_c00418{bottom:140.173500px;}
.y1bd_c00418{bottom:140.250000px;}
.y121_c00418{bottom:140.548500px;}
.y122_c00418{bottom:140.625000px;}
.y2c9_c00418{bottom:142.348500px;}
.y299_c00418{bottom:143.848500px;}
.y126_c00418{bottom:145.273500px;}
.y124_c00418{bottom:145.573500px;}
.y125_c00418{bottom:145.648500px;}
.y123_c00418{bottom:146.023500px;}
.y247_c00418{bottom:147.750000px;}
.y269_c00418{bottom:149.548500px;}
.y1e6_c00418{bottom:151.723500px;}
.y1ba_c00418{bottom:152.773500px;}
.y1bb_c00418{bottom:152.848500px;}
.y2f1_c00418{bottom:153.523500px;}
.y216_c00418{bottom:154.948500px;}
.y11d_c00418{bottom:157.125000px;}
.y11e_c00418{bottom:157.198500px;}
.y2c8_c00418{bottom:158.548500px;}
.y298_c00418{bottom:160.348500px;}
.y120_c00418{bottom:161.398500px;}
.y11f_c00418{bottom:161.848500px;}
.y246_c00418{bottom:163.948500px;}
.y1b9_c00418{bottom:167.173500px;}
.y1b7_c00418{bottom:167.548500px;}
.y1b8_c00418{bottom:167.625000px;}
.y2f0_c00418{bottom:169.348500px;}
.y215_c00418{bottom:171.148500px;}
.y119_c00418{bottom:173.698500px;}
.y2c7_c00418{bottom:174.750000px;}
.y29e_c00418{bottom:176.548500px;}
.y11c_c00418{bottom:178.723500px;}
.y11b_c00418{bottom:178.798500px;}
.y11a_c00418{bottom:179.098500px;}
.y245_c00418{bottom:179.848500px;}
.y268_c00418{bottom:181.648500px;}
.y1e5_c00418{bottom:183.375000px;}
.y1b5_c00418{bottom:184.125000px;}
.y1b6_c00418{bottom:184.198500px;}
.y2ef_c00418{bottom:185.548500px;}
.y2c6_c00418{bottom:190.573500px;}
.y115_c00418{bottom:191.323500px;}
.y116_c00418{bottom:191.398500px;}
.y29d_c00418{bottom:192.750000px;}
.y117_c00418{bottom:193.875000px;}
.y244_c00418{bottom:196.348500px;}
.y118_c00418{bottom:197.098500px;}
.y267_c00418{bottom:197.773500px;}
.y1e4_c00418{bottom:198.898500px;}
.y1b4_c00418{bottom:199.648500px;}
.y1b2_c00418{bottom:199.948500px;}
.y1b3_c00418{bottom:200.023500px;}
.y2ee_c00418{bottom:201.375000px;}
.y214_c00418{bottom:203.173500px;}
.y10f_c00418{bottom:205.723500px;}
.y114_c00418{bottom:206.848500px;}
.y113_c00418{bottom:207.523500px;}
.y29c_c00418{bottom:208.573500px;}
.y112_c00418{bottom:210.448500px;}
.y110_c00418{bottom:210.750000px;}
.y111_c00418{bottom:210.823500px;}
.y243_c00418{bottom:211.500000px;}
.y266_c00418{bottom:213.973500px;}
.y1e3_c00418{bottom:215.473500px;}
.y1b0_c00418{bottom:216.223500px;}
.y2ed_c00418{bottom:217.573500px;}
.y1b1_c00418{bottom:218.398500px;}
.y109_c00418{bottom:222.298500px;}
.y2c5_c00418{bottom:222.673500px;}
.y10a_c00418{bottom:223.423500px;}
.y10b_c00418{bottom:224.473500px;}
.y10e_c00418{bottom:225.223500px;}
.y10c_c00418{bottom:225.523500px;}
.y10d_c00418{bottom:225.598500px;}
.y242_c00418{bottom:228.073500px;}
.y1e2_c00418{bottom:231.673500px;}
.y2ec_c00418{bottom:233.473500px;}
.y1ae_c00418{bottom:234.523500px;}
.y1af_c00418{bottom:234.598500px;}
.y212_c00418{bottom:235.648500px;}
.y213_c00418{bottom:236.698500px;}
.y103_c00418{bottom:237.448500px;}
.y104_c00418{bottom:239.548500px;}
.y105_c00418{bottom:239.625000px;}
.y2a7_c00418{bottom:240.298500px;}
.y106_c00418{bottom:241.048500px;}
.y108_c00418{bottom:241.723500px;}
.y107_c00418{bottom:242.098500px;}
.y241_c00418{bottom:243.898500px;}
.y265_c00418{bottom:246.073500px;}
.y1e1_c00418{bottom:247.500000px;}
.y1ad_c00418{bottom:248.923500px;}
.y1ac_c00418{bottom:249.298500px;}
.y2eb_c00418{bottom:249.673500px;}
.y211_c00418{bottom:251.473500px;}
.y2c4_c00418{bottom:253.573500px;}
.yfe_c00418{bottom:253.948500px;}
.yfd_c00418{bottom:254.025000px;}
.yff_c00418{bottom:255.375000px;}
.y2a6_c00418{bottom:255.750000px;}
.y100_c00418{bottom:256.798500px;}
.y102_c00418{bottom:258.298500px;}
.y101_c00418{bottom:258.673500px;}
.y240_c00418{bottom:259.723500px;}
.y264_c00418{bottom:261.900000px;}
.y1e0_c00418{bottom:264.073500px;}
.y2ea_c00418{bottom:265.500000px;}
.y210_c00418{bottom:266.173500px;}
.y1ab_c00418{bottom:266.923500px;}
.y1aa_c00418{bottom:267.298500px;}
.y2c3_c00418{bottom:269.098500px;}
.yf8_c00418{bottom:270.150000px;}
.yf9_c00418{bottom:270.223500px;}
.y2a5_c00418{bottom:271.275000px;}
.yfc_c00418{bottom:274.875000px;}
.yfb_c00418{bottom:275.173500px;}
.yfa_c00418{bottom:275.250000px;}
.y23f_c00418{bottom:275.625000px;}
.y1df_c00418{bottom:279.525000px;}
.y2e9_c00418{bottom:280.948500px;}
.y1a6_c00418{bottom:282.375000px;}
.y1a7_c00418{bottom:282.448500px;}
.y1a8_c00418{bottom:283.500000px;}
.y1a9_c00418{bottom:284.548500px;}
.y2c2_c00418{bottom:285.298500px;}
.yf4_c00418{bottom:286.723500px;}
.yf5_c00418{bottom:286.798500px;}
.y2a4_c00418{bottom:287.098500px;}
.y23e_c00418{bottom:290.698500px;}
.yf7_c00418{bottom:292.875000px;}
.yf6_c00418{bottom:293.173500px;}
.y1de_c00418{bottom:294.973500px;}
.y20f_c00418{bottom:297.900000px;}
.y1a5_c00418{bottom:298.275000px;}
.y1a4_c00418{bottom:298.573500px;}
.y1a3_c00418{bottom:298.650000px;}
.y2c1_c00418{bottom:301.500000px;}
.y2a3_c00418{bottom:302.923500px;}
.yf0_c00418{bottom:303.298500px;}
.y23d_c00418{bottom:306.900000px;}
.yf3_c00418{bottom:307.275000px;}
.yf2_c00418{bottom:307.650000px;}
.yf1_c00418{bottom:308.025000px;}
.yef_c00418{bottom:308.698500px;}
.y1dd_c00418{bottom:310.798500px;}
.y2e8_c00418{bottom:312.598500px;}
.y20e_c00418{bottom:314.473500px;}
.y1a2_c00418{bottom:315.223500px;}
.y2c0_c00418{bottom:317.698500px;}
.y2a2_c00418{bottom:318.750000px;}
.ye8_c00418{bottom:319.875000px;}
.ye9_c00418{bottom:321.673500px;}
.y23c_c00418{bottom:322.348500px;}
.yea_c00418{bottom:322.798500px;}
.yeb_c00418{bottom:323.473500px;}
.y263_c00418{bottom:324.150000px;}
.yec_c00418{bottom:324.525000px;}
.yed_c00418{bottom:324.598500px;}
.yee_c00418{bottom:325.573500px;}
.y1dc_c00418{bottom:327.073500px;}
.y2e7_c00418{bottom:329.173500px;}
.y20c_c00418{bottom:330.598500px;}
.y20b_c00418{bottom:330.673500px;}
.y1a1_c00418{bottom:331.348500px;}
.y1a0_c00418{bottom:331.723500px;}
.y19f_c00418{bottom:331.798500px;}
.y20d_c00418{bottom:332.473500px;}
.y2a1_c00418{bottom:335.698500px;}
.ye3_c00418{bottom:336.375000px;}
.ye4_c00418{bottom:336.448500px;}
.y23b_c00418{bottom:338.548500px;}
.y262_c00418{bottom:340.348500px;}
.ye6_c00418{bottom:340.723500px;}
.ye7_c00418{bottom:340.798500px;}
.ye5_c00418{bottom:341.098500px;}
.y1db_c00418{bottom:343.573500px;}
.y2e6_c00418{bottom:345.375000px;}
.y20a_c00418{bottom:347.173500px;}
.y19d_c00418{bottom:349.723500px;}
.y19e_c00418{bottom:349.798500px;}
.y19c_c00418{bottom:350.098500px;}
.y2a0_c00418{bottom:351.900000px;}
.ydb_c00418{bottom:353.323500px;}
.ydc_c00418{bottom:353.400000px;}
.ydd_c00418{bottom:354.375000px;}
.y23a_c00418{bottom:354.750000px;}
.yde_c00418{bottom:355.125000px;}
.y260_c00418{bottom:355.875000px;}
.y261_c00418{bottom:356.173500px;}
.ydf_c00418{bottom:356.250000px;}
.ye0_c00418{bottom:356.923500px;}
.ye1_c00418{bottom:357.000000px;}
.ye2_c00418{bottom:357.598500px;}
.y1da_c00418{bottom:359.098500px;}
.y19b_c00418{bottom:365.923500px;}
.y19a_c00418{bottom:366.298500px;}
.y29f_c00418{bottom:368.473500px;}
.yd4_c00418{bottom:369.525000px;}
.yd5_c00418{bottom:369.598500px;}
.yd6_c00418{bottom:370.198500px;}
.yd7_c00418{bottom:371.323500px;}
.y239_c00418{bottom:371.698500px;}
.yd8_c00418{bottom:372.073500px;}
.y25f_c00418{bottom:372.750000px;}
.yd9_c00418{bottom:372.823500px;}
.yda_c00418{bottom:373.875000px;}
.y1d9_c00418{bottom:376.048500px;}
.y2e5_c00418{bottom:378.150000px;}
.y2bf_c00418{bottom:382.500000px;}
.y198_c00418{bottom:382.798500px;}
.y199_c00418{bottom:382.875000px;}
.y197_c00418{bottom:383.250000px;}
.y29b_c00418{bottom:384.298500px;}
.ycf_c00418{bottom:386.098500px;}
.y238_c00418{bottom:387.525000px;}
.yd3_c00418{bottom:387.900000px;}
.yd2_c00418{bottom:388.275000px;}
.yd1_c00418{bottom:388.948500px;}
.yd0_c00418{bottom:389.025000px;}
.y1d8_c00418{bottom:392.173500px;}
.y2e4_c00418{bottom:394.348500px;}
.y209_c00418{bottom:395.775000px;}
.y2be_c00418{bottom:399.073500px;}
.y195_c00418{bottom:399.375000px;}
.y196_c00418{bottom:399.448500px;}
.y29a_c00418{bottom:400.500000px;}
.yce_c00418{bottom:403.723500px;}
.ycd_c00418{bottom:404.098500px;}
.ycc_c00418{bottom:404.400000px;}
.ycb_c00418{bottom:404.473500px;}
.y25e_c00418{bottom:405.150000px;}
.y1d7_c00418{bottom:408.750000px;}
.y2e3_c00418{bottom:411.298500px;}
.y2bd_c00418{bottom:414.898500px;}
.y193_c00418{bottom:415.948500px;}
.y194_c00418{bottom:416.023500px;}
.y296_c00418{bottom:416.698500px;}
.yc3_c00418{bottom:418.125000px;}
.yc4_c00418{bottom:418.198500px;}
.yc5_c00418{bottom:419.250000px;}
.y237_c00418{bottom:419.923500px;}
.yc6_c00418{bottom:420.298500px;}
.yc7_c00418{bottom:420.973500px;}
.yc8_c00418{bottom:421.048500px;}
.yc9_c00418{bottom:422.098500px;}
.yca_c00418{bottom:423.223500px;}
.y2e2_c00418{bottom:427.500000px;}
.y206_c00418{bottom:428.548500px;}
.y207_c00418{bottom:428.625000px;}
.y208_c00418{bottom:430.048500px;}
.y191_c00418{bottom:431.848500px;}
.y295_c00418{bottom:432.523500px;}
.y192_c00418{bottom:432.598500px;}
.ybc_c00418{bottom:434.323500px;}
.ybd_c00418{bottom:434.398500px;}
.y236_c00418{bottom:436.125000px;}
.ybf_c00418{bottom:436.798500px;}
.ybe_c00418{bottom:436.875000px;}
.y25d_c00418{bottom:437.548500px;}
.yc0_c00418{bottom:437.923500px;}
.yc1_c00418{bottom:438.000000px;}
.yc2_c00418{bottom:439.048500px;}
.y1d6_c00418{bottom:441.898500px;}
.y2e1_c00418{bottom:443.698500px;}
.y203_c00418{bottom:444.375000px;}
.y204_c00418{bottom:444.448500px;}
.y205_c00418{bottom:446.173500px;}
.y294_c00418{bottom:448.348500px;}
.y18e_c00418{bottom:448.423500px;}
.y18f_c00418{bottom:449.098500px;}
.y190_c00418{bottom:449.848500px;}
.yb5_c00418{bottom:451.273500px;}
.y235_c00418{bottom:451.948500px;}
.yb6_c00418{bottom:452.698500px;}
.y25c_c00418{bottom:453.375000px;}
.ybb_c00418{bottom:456.673500px;}
.yba_c00418{bottom:456.973500px;}
.yb9_c00418{bottom:457.048500px;}
.yb7_c00418{bottom:457.723500px;}
.yb8_c00418{bottom:457.798500px;}
.y1d5_c00418{bottom:458.098500px;}
.y202_c00418{bottom:460.948500px;}
.y2bc_c00418{bottom:463.125000px;}
.y293_c00418{bottom:464.548500px;}
.y18c_c00418{bottom:465.973500px;}
.y18d_c00418{bottom:466.048500px;}
.y234_c00418{bottom:467.398500px;}
.yb0_c00418{bottom:467.773500px;}
.yb1_c00418{bottom:467.848500px;}
.y25b_c00418{bottom:468.598500px;}
.yb4_c00418{bottom:470.698500px;}
.yb3_c00418{bottom:471.073500px;}
.yb2_c00418{bottom:471.448500px;}
.y1d4_c00418{bottom:474.298500px;}
.y2e0_c00418{bottom:476.473500px;}
.y201_c00418{bottom:477.523500px;}
.y2bb_c00418{bottom:479.323500px;}
.y291_c00418{bottom:480.750000px;}
.y292_c00418{bottom:480.823500px;}
.y18b_c00418{bottom:482.625000px;}
.y233_c00418{bottom:483.673500px;}
.ya7_c00418{bottom:484.723500px;}
.ya8_c00418{bottom:484.798500px;}
.y25a_c00418{bottom:485.098500px;}
.ya9_c00418{bottom:485.473500px;}
.yaa_c00418{bottom:486.598500px;}
.yab_c00418{bottom:487.198500px;}
.yac_c00418{bottom:487.273500px;}
.yad_c00418{bottom:488.323500px;}
.yae_c00418{bottom:488.398500px;}
.yaf_c00418{bottom:489.073500px;}
.y1d3_c00418{bottom:490.875000px;}
.y2df_c00418{bottom:492.673500px;}
.y200_c00418{bottom:493.723500px;}
.y2ba_c00418{bottom:495.898500px;}
.y290_c00418{bottom:497.023500px;}
.y189_c00418{bottom:498.823500px;}
.y18a_c00418{bottom:499.500000px;}
.y232_c00418{bottom:499.798500px;}
.y259_c00418{bottom:500.548500px;}
.ya1_c00418{bottom:501.598500px;}
.ya2_c00418{bottom:501.673500px;}
.ya3_c00418{bottom:502.723500px;}
.ya6_c00418{bottom:505.948500px;}
.ya4_c00418{bottom:506.323500px;}
.ya5_c00418{bottom:506.398500px;}
.y1d2_c00418{bottom:507.375000px;}
.y186_c00418{bottom:507.750000px;}
.y185_c00418{bottom:507.823500px;}
.y2de_c00418{bottom:509.173500px;}
.y1ff_c00418{bottom:510.298500px;}
.y2b9_c00418{bottom:512.098500px;}
.y28f_c00418{bottom:513.523500px;}
.y188_c00418{bottom:515.323500px;}
.y187_c00418{bottom:515.698500px;}
.y231_c00418{bottom:516.073500px;}
.y258_c00418{bottom:516.750000px;}
.y99_c00418{bottom:518.548500px;}
.y9a_c00418{bottom:518.625000px;}
.y9b_c00418{bottom:519.298500px;}
.y9c_c00418{bottom:520.048500px;}
.y9d_c00418{bottom:521.098500px;}
.y9f_c00418{bottom:521.773500px;}
.y9e_c00418{bottom:521.848500px;}
.ya0_c00418{bottom:522.523500px;}
.y1d1_c00418{bottom:523.948500px;}
.y2dd_c00418{bottom:525.750000px;}
.y1fe_c00418{bottom:526.500000px;}
.y180_c00418{bottom:527.250000px;}
.y2b8_c00418{bottom:528.298500px;}
.y28e_c00418{bottom:530.098500px;}
.y181_c00418{bottom:532.273500px;}
.y230_c00418{bottom:532.573500px;}
.y257_c00418{bottom:532.948500px;}
.y182_c00418{bottom:533.323500px;}
.y183_c00418{bottom:533.398500px;}
.y184_c00418{bottom:534.073500px;}
.y96_c00418{bottom:535.500000px;}
.y98_c00418{bottom:537.000000px;}
.y97_c00418{bottom:537.298500px;}
.y1d0_c00418{bottom:540.598500px;}
.y2dc_c00418{bottom:542.698500px;}
.y1fd_c00418{bottom:543.375000px;}
.y2b7_c00418{bottom:545.173500px;}
.y28d_c00418{bottom:546.298500px;}
.y22f_c00418{bottom:548.773500px;}
.y17e_c00418{bottom:548.848500px;}
.y256_c00418{bottom:549.148500px;}
.y17f_c00418{bottom:550.273500px;}
.y90_c00418{bottom:552.375000px;}
.y91_c00418{bottom:552.448500px;}
.y92_c00418{bottom:553.125000px;}
.y94_c00418{bottom:553.798500px;}
.y93_c00418{bottom:553.875000px;}
.y1cf_c00418{bottom:557.098500px;}
.y95_c00418{bottom:557.848500px;}
.y2db_c00418{bottom:559.273500px;}
.y1fc_c00418{bottom:559.948500px;}
.y2b6_c00418{bottom:561.375000px;}
.y28c_c00418{bottom:562.798500px;}
.y22e_c00418{bottom:564.598500px;}
.y17c_c00418{bottom:566.098500px;}
.y17d_c00418{bottom:567.223500px;}
.y8c_c00418{bottom:569.323500px;}
.y8e_c00418{bottom:570.000000px;}
.y8d_c00418{bottom:570.073500px;}
.y8a_c00418{bottom:570.375000px;}
.y8b_c00418{bottom:570.448500px;}
.y8f_c00418{bottom:571.875000px;}
.y1ce_c00418{bottom:573.598500px;}
.y2da_c00418{bottom:575.473500px;}
.y1f9_c00418{bottom:576.523500px;}
.y1fa_c00418{bottom:576.598500px;}
.y2b5_c00418{bottom:577.648500px;}
.y2b4_c00418{bottom:578.023500px;}
.y28b_c00418{bottom:579.000000px;}
.y1fb_c00418{bottom:579.073500px;}
.y22d_c00418{bottom:581.173500px;}
.y255_c00418{bottom:582.298500px;}
.y17b_c00418{bottom:583.048500px;}
.y83_c00418{bottom:585.898500px;}
.y84_c00418{bottom:586.573500px;}
.y85_c00418{bottom:587.323500px;}
.y86_c00418{bottom:587.398500px;}
.y87_c00418{bottom:587.698500px;}
.y88_c00418{bottom:588.448500px;}
.y89_c00418{bottom:589.198500px;}
.y1cd_c00418{bottom:590.923500px;}
.y2d9_c00418{bottom:591.973500px;}
.y2b3_c00418{bottom:594.148500px;}
.y28a_c00418{bottom:595.198500px;}
.y22c_c00418{bottom:597.073500px;}
.y254_c00418{bottom:598.125000px;}
.y253_c00418{bottom:598.500000px;}
.y17a_c00418{bottom:600.298500px;}
.y7c_c00418{bottom:602.773500px;}
.y7d_c00418{bottom:602.848500px;}
.y7f_c00418{bottom:603.148500px;}
.y7e_c00418{bottom:603.223500px;}
.y80_c00418{bottom:603.898500px;}
.y81_c00418{bottom:604.648500px;}
.y82_c00418{bottom:605.023500px;}
.y1cc_c00418{bottom:606.750000px;}
.y2d8_c00418{bottom:608.923500px;}
.y1f8_c00418{bottom:609.298500px;}
.y2b2_c00418{bottom:610.723500px;}
.y289_c00418{bottom:611.773500px;}
.y22b_c00418{bottom:613.948500px;}
.y179_c00418{bottom:617.173500px;}
.y178_c00418{bottom:617.250000px;}
.y77_c00418{bottom:619.723500px;}
.y76_c00418{bottom:620.098500px;}
.y78_c00418{bottom:620.398500px;}
.y79_c00418{bottom:621.523500px;}
.y7a_c00418{bottom:621.598500px;}
.y7b_c00418{bottom:621.898500px;}
.y1cb_c00418{bottom:623.323500px;}
.y2d7_c00418{bottom:625.500000px;}
.y1f7_c00418{bottom:625.875000px;}
.y2b1_c00418{bottom:627.298500px;}
.y287_c00418{bottom:628.348500px;}
.y288_c00418{bottom:628.423500px;}
.y22a_c00418{bottom:630.148500px;}
.y177_c00418{bottom:633.750000px;}
.y176_c00418{bottom:633.823500px;}
.y6e_c00418{bottom:636.298500px;}
.y6f_c00418{bottom:636.973500px;}
.y70_c00418{bottom:637.348500px;}
.y71_c00418{bottom:637.723500px;}
.y72_c00418{bottom:637.798500px;}
.y73_c00418{bottom:638.473500px;}
.y74_c00418{bottom:638.773500px;}
.y75_c00418{bottom:639.148500px;}
.y1ca_c00418{bottom:640.198500px;}
.y2d6_c00418{bottom:641.698500px;}
.y1f6_c00418{bottom:642.073500px;}
.y2b0_c00418{bottom:643.500000px;}
.y286_c00418{bottom:644.250000px;}
.y229_c00418{bottom:646.348500px;}
.y252_c00418{bottom:647.098500px;}
.y175_c00418{bottom:651.073500px;}
.y174_c00418{bottom:651.448500px;}
.y68_c00418{bottom:653.173500px;}
.y69_c00418{bottom:653.250000px;}
.y6a_c00418{bottom:653.625000px;}
.y6b_c00418{bottom:654.298500px;}
.y6c_c00418{bottom:655.048500px;}
.y6d_c00418{bottom:655.348500px;}
.y1c9_c00418{bottom:656.398500px;}
.y2d5_c00418{bottom:658.273500px;}
.y1f5_c00418{bottom:658.573500px;}
.y2af_c00418{bottom:659.698500px;}
.y285_c00418{bottom:660.448500px;}
.y228_c00418{bottom:662.173500px;}
.y251_c00418{bottom:662.923500px;}
.y173_c00418{bottom:668.323500px;}
.y172_c00418{bottom:668.698500px;}
.y60_c00418{bottom:670.500000px;}
.y63_c00418{bottom:670.798500px;}
.y64_c00418{bottom:670.875000px;}
.y65_c00418{bottom:671.173500px;}
.y61_c00418{bottom:671.250000px;}
.y66_c00418{bottom:672.298500px;}
.y67_c00418{bottom:672.673500px;}
.y1c8_c00418{bottom:672.973500px;}
.y2ae_c00418{bottom:676.198500px;}
.y171_c00418{bottom:676.273500px;}
.y283_c00418{bottom:676.948500px;}
.y62_c00418{bottom:678.073500px;}
.y227_c00418{bottom:678.750000px;}
.y250_c00418{bottom:678.823500px;}
.y284_c00418{bottom:679.500000px;}
.y170_c00418{bottom:684.898500px;}
.y16f_c00418{bottom:685.273500px;}
.y59_c00418{bottom:687.073500px;}
.y5a_c00418{bottom:687.448500px;}
.y5b_c00418{bottom:687.750000px;}
.y5c_c00418{bottom:687.823500px;}
.y5d_c00418{bottom:688.500000px;}
.y5e_c00418{bottom:688.875000px;}
.y5f_c00418{bottom:689.250000px;}
.y273_c00418{bottom:689.548500px;}
.y2d4_c00418{bottom:691.348500px;}
.y1f4_c00418{bottom:691.723500px;}
.y2ad_c00418{bottom:692.773500px;}
.y282_c00418{bottom:693.523500px;}
.y226_c00418{bottom:694.948500px;}
.y16e_c00418{bottom:701.098500px;}
.y54_c00418{bottom:703.948500px;}
.y55_c00418{bottom:704.023500px;}
.y56_c00418{bottom:704.323500px;}
.y57_c00418{bottom:704.398500px;}
.y58_c00418{bottom:704.698500px;}
.y272_c00418{bottom:706.198500px;}
.y2d3_c00418{bottom:707.923500px;}
.y1f2_c00418{bottom:708.298500px;}
.y1f3_c00418{bottom:708.973500px;}
.y281_c00418{bottom:710.473500px;}
.y225_c00418{bottom:711.148500px;}
.y24f_c00418{bottom:711.523500px;}
.y16a_c00418{bottom:713.323500px;}
.y16b_c00418{bottom:713.398500px;}
.y16d_c00418{bottom:718.348500px;}
.y16c_c00418{bottom:718.723500px;}
.y4c_c00418{bottom:720.898500px;}
.y4d_c00418{bottom:721.200000px;}
.y4e_c00418{bottom:721.273500px;}
.y4f_c00418{bottom:721.575000px;}
.y50_c00418{bottom:721.648500px;}
.y51_c00418{bottom:721.950000px;}
.y52_c00418{bottom:722.023500px;}
.y53_c00418{bottom:722.398500px;}
.y271_c00418{bottom:723.000000px;}
.y2d2_c00418{bottom:724.875000px;}
.y2ac_c00418{bottom:725.548500px;}
.y280_c00418{bottom:726.298500px;}
.y224_c00418{bottom:727.348500px;}
.y24e_c00418{bottom:727.723500px;}
.y168_c00418{bottom:732.375000px;}
.y167_c00418{bottom:732.450000px;}
.y169_c00418{bottom:735.673500px;}
.y45_c00418{bottom:737.473500px;}
.y46_c00418{bottom:737.848500px;}
.y47_c00418{bottom:738.148500px;}
.y48_c00418{bottom:738.223500px;}
.y49_c00418{bottom:738.898500px;}
.y4a_c00418{bottom:739.273500px;}
.y4b_c00418{bottom:739.575000px;}
.y2d1_c00418{bottom:741.075000px;}
.y2ab_c00418{bottom:742.125000px;}
.y27f_c00418{bottom:742.500000px;}
.y223_c00418{bottom:743.173500px;}
.y24d_c00418{bottom:743.548500px;}
.y164_c00418{bottom:750.750000px;}
.y163_c00418{bottom:750.825000px;}
.y166_c00418{bottom:752.625000px;}
.y165_c00418{bottom:753.000000px;}
.y43_c00418{bottom:754.423500px;}
.y41_c00418{bottom:754.723500px;}
.y42_c00418{bottom:754.798500px;}
.y44_c00418{bottom:755.473500px;}
.y270_c00418{bottom:756.148500px;}
.y2d0_c00418{bottom:757.648500px;}
.y222_c00418{bottom:759.750000px;}
.y24c_c00418{bottom:760.125000px;}
.y2aa_c00418{bottom:763.348500px;}
.y15e_c00418{bottom:765.898500px;}
.y15c_c00418{bottom:769.800000px;}
.y15d_c00418{bottom:769.875000px;}
.y161_c00418{bottom:770.175000px;}
.y162_c00418{bottom:770.250000px;}
.y15f_c00418{bottom:770.550000px;}
.y160_c00418{bottom:770.625000px;}
.y27d_c00418{bottom:771.973500px;}
.y3f_c00418{bottom:772.050000px;}
.y40_c00418{bottom:772.425000px;}
.y26f_c00418{bottom:773.098500px;}
.y1f1_c00418{bottom:774.148500px;}
.y2cf_c00418{bottom:774.523500px;}
.y27c_c00418{bottom:774.898500px;}
.y27e_c00418{bottom:775.273500px;}
.y221_c00418{bottom:775.948500px;}
.y15b_c00418{bottom:786.448500px;}
.y15a_c00418{bottom:786.823500px;}
.y3c_c00418{bottom:788.175000px;}
.y3d_c00418{bottom:788.250000px;}
.y3a_c00418{bottom:788.550000px;}
.y3b_c00418{bottom:788.625000px;}
.y38_c00418{bottom:788.925000px;}
.y39_c00418{bottom:789.000000px;}
.y3e_c00418{bottom:789.300000px;}
.y155_c00418{bottom:790.050000px;}
.y1f0_c00418{bottom:790.723500px;}
.y27b_c00418{bottom:791.400000px;}
.y154_c00418{bottom:791.473500px;}
.y24b_c00418{bottom:791.775000px;}
.y220_c00418{bottom:792.150000px;}
.y159_c00418{bottom:795.375000px;}
.y158_c00418{bottom:801.900000px;}
.y157_c00418{bottom:802.198500px;}
.y156_c00418{bottom:802.275000px;}
.y33_c00418{bottom:804.750000px;}
.y35_c00418{bottom:805.125000px;}
.y34_c00418{bottom:805.198500px;}
.y36_c00418{bottom:805.500000px;}
.y37_c00418{bottom:805.875000px;}
.y26e_c00418{bottom:806.175000px;}
.y2ce_c00418{bottom:806.925000px;}
.y27a_c00418{bottom:807.598500px;}
.y153_c00418{bottom:807.675000px;}
.y21f_c00418{bottom:808.723500px;}
.y24a_c00418{bottom:809.848500px;}
.y151_c00418{bottom:820.198500px;}
.y152_c00418{bottom:820.275000px;}
.y2c_c00418{bottom:822.000000px;}
.y2d_c00418{bottom:822.073500px;}
.y2e_c00418{bottom:822.375000px;}
.y31_c00418{bottom:822.448500px;}
.y32_c00418{bottom:822.750000px;}
.y1ef_c00418{bottom:823.875000px;}
.y279_c00418{bottom:824.550000px;}
.y21e_c00418{bottom:824.925000px;}
.y14f_c00418{bottom:826.050000px;}
.y2f_c00418{bottom:829.573500px;}
.y30_c00418{bottom:829.650000px;}
.y150_c00418{bottom:837.525000px;}
.y14e_c00418{bottom:837.900000px;}
.y2a_c00418{bottom:838.948500px;}
.y2b_c00418{bottom:839.025000px;}
.y28_c00418{bottom:839.323500px;}
.y29_c00418{bottom:839.400000px;}
.y27_c00418{bottom:839.698500px;}
.y1ee_c00418{bottom:840.000000px;}
.y2cd_c00418{bottom:840.375000px;}
.y278_c00418{bottom:840.750000px;}
.y21d_c00418{bottom:841.125000px;}
.y149_c00418{bottom:844.723500px;}
.y14a_c00418{bottom:844.800000px;}
.y14d_c00418{bottom:852.675000px;}
.y14c_c00418{bottom:852.973500px;}
.y14b_c00418{bottom:853.050000px;}
.y22_c00418{bottom:855.900000px;}
.y23_c00418{bottom:856.198500px;}
.y24_c00418{bottom:856.275000px;}
.y26d_c00418{bottom:856.573500px;}
.y25_c00418{bottom:856.650000px;}
.y26_c00418{bottom:856.948500px;}
.y277_c00418{bottom:857.323500px;}
.y21c_c00418{bottom:857.698500px;}
.y148_c00418{bottom:870.675000px;}
.y146_c00418{bottom:870.973500px;}
.y147_c00418{bottom:871.050000px;}
.y1c_c00418{bottom:872.400000px;}
.y1d_c00418{bottom:872.473500px;}
.y1e_c00418{bottom:872.775000px;}
.y1f_c00418{bottom:872.848500px;}
.y21_c00418{bottom:873.150000px;}
.y20_c00418{bottom:873.223500px;}
.y276_c00418{bottom:873.900000px;}
.y21b_c00418{bottom:874.198500px;}
.y143_c00418{bottom:882.598500px;}
.y145_c00418{bottom:886.125000px;}
.y144_c00418{bottom:886.500000px;}
.y19_c00418{bottom:888.973500px;}
.y18_c00418{bottom:889.050000px;}
.y1a_c00418{bottom:889.348500px;}
.y1b_c00418{bottom:889.425000px;}
.y26c_c00418{bottom:889.723500px;}
.y21a_c00418{bottom:890.098500px;}
.y2cc_c00418{bottom:890.400000px;}
.y275_c00418{bottom:890.473500px;}
.y1ed_c00418{bottom:890.775000px;}
.y1ec_c00418{bottom:890.848500px;}
.y13f_c00418{bottom:901.573500px;}
.y140_c00418{bottom:901.650000px;}
.y141_c00418{bottom:903.448500px;}
.y142_c00418{bottom:904.198500px;}
.y16_c00418{bottom:905.550000px;}
.y17_c00418{bottom:905.625000px;}
.y14_c00418{bottom:905.925000px;}
.y15_c00418{bottom:906.000000px;}
.y219_c00418{bottom:906.300000px;}
.y274_c00418{bottom:906.598500px;}
.y2a9_c00418{bottom:906.675000px;}
.y2cb_c00418{bottom:907.050000px;}
.y13c_c00418{bottom:920.025000px;}
.y13a_c00418{bottom:920.323500px;}
.y13b_c00418{bottom:920.400000px;}
.y13e_c00418{bottom:920.698500px;}
.y13d_c00418{bottom:921.073500px;}
.y12_c00418{bottom:921.448500px;}
.y10_c00418{bottom:921.750000px;}
.y11_c00418{bottom:921.823500px;}
.ye_c00418{bottom:922.125000px;}
.yf_c00418{bottom:922.198500px;}
.y1eb_c00418{bottom:922.500000px;}
.y2a8_c00418{bottom:922.875000px;}
.y1e8_c00418{bottom:947.698500px;}
.y136_c00418{bottom:948.448500px;}
.y2_c00418{bottom:949.125000px;}
.y1_c00418{bottom:949.500000px;}
.y1ea_c00418{bottom:949.800000px;}
.yd_c00418{bottom:949.875000px;}
.y1e9_c00418{bottom:950.250000px;}
.y137_c00418{bottom:957.448500px;}
.y138_c00418{bottom:959.175000px;}
.y139_c00418{bottom:959.250000px;}
.yc_c00418{bottom:1009.948500px;}
.yb_c00418{bottom:1010.025000px;}
.ya_c00418{bottom:1010.323500px;}
.y9_c00418{bottom:1010.698500px;}
.y7_c00418{bottom:1011.448500px;}
.y8_c00418{bottom:1012.800000px;}
.y6_c00418{bottom:1061.098500px;}
.y5_c00418{bottom:1092.073500px;}
.y4_c00418{bottom:1093.500000px;}
.y3_c00418{bottom:1093.800000px;}
.y13_c00418{bottom:1174.500000px;}
.h3_c00418{height:36.281250px;}
.h6_c00418{height:41.200195px;}
.ha_c00418{height:41.220703px;}
.h1_c00418{height:50.062500px;}
.h4_c00418{height:52.998047px;}
.h2_c00418{height:54.421875px;}
.h12_c00418{height:56.320312px;}
.h8_c00418{height:58.886719px;}
.hb_c00418{height:60.468750px;}
.h5_c00418{height:62.578125px;}
.h11_c00418{height:64.775391px;}
.h13_c00418{height:68.835938px;}
.h9_c00418{height:70.664062px;}
.h7_c00418{height:76.552734px;}
.he_c00418{height:81.351562px;}
.hc_c00418{height:82.441406px;}
.h14_c00418{height:87.609375px;}
.hd_c00418{height:88.330078px;}
.h10_c00418{height:100.125000px;}
.hf_c00418{height:131.414062px;}
.h0_c00418{height:1174.500000px;}
.w1_c00418{width:689.250000px;}
.w0_c00418{width:689.457450px;}
.x6_c00418{left:-63.779550px;}
.x5e_c00418{left:-62.729550px;}
.x65_c00418{left:-60.929550px;}
.x67_c00418{left:-58.754550px;}
.x5b_c00418{left:-56.956050px;}
.x68_c00418{left:-55.154550px;}
.x5c_c00418{left:-54.029550px;}
.x5f_c00418{left:-51.929550px;}
.x7c_c00418{left:-50.131050px;}
.x83_c00418{left:-47.579550px;}
.x66_c00418{left:-45.404550px;}
.x6d_c00418{left:-44.354550px;}
.x71_c00418{left:-42.554550px;}
.xa2_c00418{left:-41.429550px;}
.x72_c00418{left:-39.629550px;}
.x6e_c00418{left:-38.579550px;}
.x7d_c00418{left:-36.404550px;}
.x5d_c00418{left:-31.754550px;}
.x6a_c00418{left:-29.579550px;}
.x75_c00418{left:-27.779550px;}
.x9f_c00418{left:-20.954550px;}
.x0_c00418{left:0.000000px;}
.x77_c00418{left:4.995450px;}
.xa9_c00418{left:7.470450px;}
.x6c_c00418{left:8.970450px;}
.x6f_c00418{left:12.570450px;}
.x6b_c00418{left:15.045450px;}
.x60_c00418{left:20.070450px;}
.x76_c00418{left:21.195450px;}
.x7a_c00418{left:22.245450px;}
.x81_c00418{left:23.670450px;}
.x87_c00418{left:24.795450px;}
.x90_c00418{left:26.220450px;}
.x61_c00418{left:28.020450px;}
.x7b_c00418{left:29.820450px;}
.x82_c00418{left:30.870450px;}
.x7_c00418{left:31.995450px;}
.x8c_c00418{left:33.043950px;}
.x91_c00418{left:34.168950px;}
.x94_c00418{left:35.220450px;}
.x96_c00418{left:36.270450px;}
.x98_c00418{left:37.395450px;}
.x9b_c00418{left:38.445450px;}
.x9e_c00418{left:39.570450px;}
.xa3_c00418{left:41.370450px;}
.x62_c00418{left:57.570450px;}
.x73_c00418{left:58.620450px;}
.x79_c00418{left:59.670450px;}
.x7e_c00418{left:60.795450px;}
.x84_c00418{left:61.845450px;}
.x89_c00418{left:62.970450px;}
.x8d_c00418{left:64.020450px;}
.x63_c00418{left:65.070450px;}
.x70_c00418{left:66.195450px;}
.x74_c00418{left:67.245450px;}
.x7f_c00418{left:68.370450px;}
.x85_c00418{left:69.420450px;}
.x8a_c00418{left:70.470450px;}
.x8e_c00418{left:71.595450px;}
.x93_c00418{left:73.020450px;}
.x95_c00418{left:74.070450px;}
.x99_c00418{left:75.570450px;}
.x9c_c00418{left:77.370450px;}
.xa0_c00418{left:78.420450px;}
.xa4_c00418{left:79.470450px;}
.xaa_c00418{left:83.820450px;}
.x69_c00418{left:88.170450px;}
.x86_c00418{left:91.770450px;}
.x64_c00418{left:96.795450px;}
.x78_c00418{left:98.220450px;}
.x80_c00418{left:99.270450px;}
.x88_c00418{left:100.395450px;}
.x8b_c00418{left:101.445450px;}
.x8f_c00418{left:102.570450px;}
.x92_c00418{left:103.995450px;}
.x97_c00418{left:105.420450px;}
.x9a_c00418{left:106.470450px;}
.x9d_c00418{left:107.595450px;}
.xa1_c00418{left:109.020450px;}
.xe_c00418{left:123.795450px;}
.x16_c00418{left:135.645450px;}
.x22_c00418{left:136.770450px;}
.x2c_c00418{left:138.195450px;}
.x3d_c00418{left:139.618950px;}
.x43_c00418{left:140.670450px;}
.xf_c00418{left:142.470450px;}
.x26_c00418{left:143.970450px;}
.x30_c00418{left:145.020450px;}
.x3f_c00418{left:146.445450px;}
.x44_c00418{left:147.570450px;}
.x1d_c00418{left:149.368950px;}
.x50_c00418{left:150.795450px;}
.x8_c00418{left:152.220450px;}
.x1e_c00418{left:154.020450px;}
.x10_c00418{left:174.195450px;}
.x1c_c00418{left:175.245450px;}
.x27_c00418{left:176.370450px;}
.x2d_c00418{left:177.420450px;}
.x42_c00418{left:178.470450px;}
.x46_c00418{left:179.595450px;}
.x4e_c00418{left:181.020450px;}
.x11_c00418{left:182.820450px;}
.x28_c00418{left:183.870450px;}
.x2e_c00418{left:184.995450px;}
.x40_c00418{left:186.420450px;}
.x47_c00418{left:187.470450px;}
.x4b_c00418{left:188.970450px;}
.x54_c00418{left:190.395450px;}
.x56_c00418{left:191.820450px;}
.x17_c00418{left:212.670450px;}
.x23_c00418{left:213.795450px;}
.x32_c00418{left:215.220450px;}
.x41_c00418{left:216.645450px;}
.x45_c00418{left:217.770450px;}
.x4c_c00418{left:218.820450px;}
.x18_c00418{left:220.620450px;}
.x24_c00418{left:221.670450px;}
.x3b_c00418{left:223.170450px;}
.x39_c00418{left:224.220450px;}
.x49_c00418{left:225.270450px;}
.x52_c00418{left:227.070450px;}
.x58_c00418{left:228.195450px;}
.x12_c00418{left:249.795450px;}
.x19_c00418{left:250.845450px;}
.x25_c00418{left:251.970450px;}
.x36_c00418{left:253.395450px;}
.x3c_c00418{left:254.445450px;}
.x4d_c00418{left:255.570450px;}
.x9_c00418{left:256.620450px;}
.x1f_c00418{left:257.670450px;}
.x2a_c00418{left:258.795450px;}
.x33_c00418{left:259.845450px;}
.x3e_c00418{left:260.970450px;}
.x4f_c00418{left:262.395450px;}
.x51_c00418{left:263.445450px;}
.x57_c00418{left:264.570450px;}
.x13_c00418{left:286.470450px;}
.x1a_c00418{left:287.595450px;}
.x20_c00418{left:289.020450px;}
.x34_c00418{left:290.070450px;}
.x38_c00418{left:291.195450px;}
.x48_c00418{left:292.245450px;}
.x14_c00418{left:294.045450px;}
.x1b_c00418{left:295.170450px;}
.x21_c00418{left:296.220450px;}
.x2b_c00418{left:298.020450px;}
.x3a_c00418{left:299.445450px;}
.x4a_c00418{left:300.570450px;}
.x3_c00418{left:302.370450px;}
.x5a_c00418{left:303.795450px;}
.x2f_c00418{left:323.595450px;}
.x15_c00418{left:325.393950px;}
.x29_c00418{left:326.445450px;}
.x35_c00418{left:327.570450px;}
.x31_c00418{left:328.620450px;}
.x37_c00418{left:329.670450px;}
.x53_c00418{left:330.795450px;}
.x55_c00418{left:331.845450px;}
.x59_c00418{left:333.643950px;}
.xd3_c00418{left:347.370450px;}
.xd4_c00418{left:362.445450px;}
.xa5_c00418{left:363.870450px;}
.xa6_c00418{left:364.995450px;}
.xa7_c00418{left:366.420450px;}
.xa8_c00418{left:367.470450px;}
.xa_c00418{left:368.970450px;}
.xed_c00418{left:381.570450px;}
.xf3_c00418{left:396.643950px;}
.xee_c00418{left:399.570450px;}
.xef_c00418{left:400.620450px;}
.xf0_c00418{left:401.670450px;}
.xf1_c00418{left:402.795450px;}
.xf2_c00418{left:403.845450px;}
.xf4_c00418{left:404.970450px;}
.xab_c00418{left:422.970450px;}
.xb0_c00418{left:428.370450px;}
.xb3_c00418{left:429.420450px;}
.xb_c00418{left:430.845450px;}
.xbb_c00418{left:433.020450px;}
.xae_c00418{left:435.570450px;}
.xb2_c00418{left:436.620450px;}
.xb8_c00418{left:440.220450px;}
.xbc_c00418{left:441.270450px;}
.xb1_c00418{left:443.445450px;}
.xb4_c00418{left:444.870450px;}
.xb6_c00418{left:446.370450px;}
.xb9_c00418{left:447.795450px;}
.xac_c00418{left:449.595450px;}
.xad_c00418{left:451.020450px;}
.xaf_c00418{left:480.570450px;}
.xb5_c00418{left:481.620450px;}
.xb7_c00418{left:483.420450px;}
.xba_c00418{left:484.845450px;}
.x4_c00418{left:489.570450px;}
.xc_c00418{left:490.620450px;}
.xe5_c00418{left:499.245450px;}
.xe6_c00418{left:508.245450px;}
.xe7_c00418{left:509.670450px;}
.xe9_c00418{left:510.795450px;}
.xeb_c00418{left:511.845450px;}
.xec_c00418{left:512.970450px;}
.xe8_c00418{left:516.870450px;}
.xea_c00418{left:520.470450px;}
.x1_c00418{left:541.395450px;}
.xd8_c00418{left:545.370450px;}
.xe4_c00418{left:549.645450px;}
.xd5_c00418{left:552.570450px;}
.xd7_c00418{left:553.995450px;}
.xdb_c00418{left:555.045450px;}
.xde_c00418{left:556.470450px;}
.xdf_c00418{left:557.595450px;}
.xdc_c00418{left:561.870450px;}
.xe2_c00418{left:563.670450px;}
.xe0_c00418{left:565.170450px;}
.xd6_c00418{left:570.570450px;}
.xd9_c00418{left:574.470450px;}
.x2_c00418{left:578.445450px;}
.xda_c00418{left:596.820450px;}
.xdd_c00418{left:597.870450px;}
.xe3_c00418{left:600.420450px;}
.xe1_c00418{left:601.470450px;}
.xd_c00418{left:613.020450px;}
.xbd_c00418{left:622.770450px;}
.xbe_c00418{left:624.195450px;}
.xc2_c00418{left:625.245450px;}
.xbf_c00418{left:626.370450px;}
.xc3_c00418{left:627.795450px;}
.xc4_c00418{left:629.220450px;}
.xc0_c00418{left:631.770450px;}
.xc1_c00418{left:632.820450px;}
.xc7_c00418{left:634.620450px;}
.xc5_c00418{left:635.670450px;}
.xc6_c00418{left:637.170450px;}
.x5_c00418{left:648.270450px;}
.xc8_c00418{left:656.220450px;}
.xcb_c00418{left:661.620450px;}
.xcc_c00418{left:662.670450px;}
.xce_c00418{left:663.795450px;}
.xcf_c00418{left:664.845450px;}
.xd0_c00418{left:665.970450px;}
.xc9_c00418{left:668.070450px;}
.xca_c00418{left:669.195450px;}
.xcd_c00418{left:670.245450px;}
.xd2_c00418{left:672.045450px;}
.xd1_c00418{left:673.170450px;}
@media print{
.v1_c00418{vertical-align:-58.933333pt;}
.v0_c00418{vertical-align:0.000000pt;}
.ls0_c00418{letter-spacing:0.000000pt;}
.ws0_c00418{word-spacing:-31.360000pt;}
.ws1_c00418{word-spacing:-17.333333pt;}
.ws2_c00418{word-spacing:0.000000pt;}
._0_c00418{margin-left:-62.160000pt;}
._1_c00418{margin-left:-53.393837pt;}
._2_c00418{margin-left:-30.154667pt;}
.fs2_c00418{font-size:32.000000pt;}
.fs4_c00418{font-size:37.333333pt;}
.fs0_c00418{font-size:42.666667pt;}
.fs1_c00418{font-size:48.000000pt;}
.fs3_c00418{font-size:53.333333pt;}
.fsb_c00418{font-size:58.666667pt;}
.fs6_c00418{font-size:64.000000pt;}
.fs5_c00418{font-size:69.333333pt;}
.fs7_c00418{font-size:74.666667pt;}
.fs8_c00418{font-size:80.000000pt;}
.fsa_c00418{font-size:85.333333pt;}
.fs9_c00418{font-size:112.000000pt;}
.y0_c00418{bottom:0.000000pt;}
.y1c7_c00418{bottom:77.865333pt;}
.y1c6_c00418{bottom:77.932000pt;}
.y1c5_c00418{bottom:80.198667pt;}
.y131_c00418{bottom:81.132000pt;}
.y132_c00418{bottom:83.398667pt;}
.y134_c00418{bottom:86.532000pt;}
.y133_c00418{bottom:86.598667pt;}
.y135_c00418{bottom:89.132000pt;}
.y1e7_c00418{bottom:91.333333pt;}
.y1c4_c00418{bottom:92.666667pt;}
.y218_c00418{bottom:94.865333pt;}
.y12d_c00418{bottom:95.865333pt;}
.y2ca_c00418{bottom:97.732000pt;}
.y297_c00418{bottom:99.333333pt;}
.y12e_c00418{bottom:100.598667pt;}
.y12f_c00418{bottom:100.666667pt;}
.y249_c00418{bottom:102.532000pt;}
.y26b_c00418{bottom:105.132000pt;}
.y1c3_c00418{bottom:105.398667pt;}
.y130_c00418{bottom:105.465333pt;}
.y2f3_c00418{bottom:107.666667pt;}
.y127_c00418{bottom:110.198667pt;}
.y128_c00418{bottom:110.265333pt;}
.y129_c00418{bottom:112.132000pt;}
.y12a_c00418{bottom:112.198667pt;}
.y1c2_c00418{bottom:114.132000pt;}
.y12c_c00418{bottom:116.000000pt;}
.y12b_c00418{bottom:116.333333pt;}
.y1c1_c00418{bottom:116.598667pt;}
.y248_c00418{bottom:116.932000pt;}
.y26a_c00418{bottom:118.532000pt;}
.y1c0_c00418{bottom:119.532000pt;}
.y1be_c00418{bottom:119.798667pt;}
.y1bf_c00418{bottom:119.865333pt;}
.y2f2_c00418{bottom:121.732000pt;}
.y217_c00418{bottom:123.666667pt;}
.y1bc_c00418{bottom:124.598667pt;}
.y1bd_c00418{bottom:124.666667pt;}
.y121_c00418{bottom:124.932000pt;}
.y122_c00418{bottom:125.000000pt;}
.y2c9_c00418{bottom:126.532000pt;}
.y299_c00418{bottom:127.865333pt;}
.y126_c00418{bottom:129.132000pt;}
.y124_c00418{bottom:129.398667pt;}
.y125_c00418{bottom:129.465333pt;}
.y123_c00418{bottom:129.798667pt;}
.y247_c00418{bottom:131.333333pt;}
.y269_c00418{bottom:132.932000pt;}
.y1e6_c00418{bottom:134.865333pt;}
.y1ba_c00418{bottom:135.798667pt;}
.y1bb_c00418{bottom:135.865333pt;}
.y2f1_c00418{bottom:136.465333pt;}
.y216_c00418{bottom:137.732000pt;}
.y11d_c00418{bottom:139.666667pt;}
.y11e_c00418{bottom:139.732000pt;}
.y2c8_c00418{bottom:140.932000pt;}
.y298_c00418{bottom:142.532000pt;}
.y120_c00418{bottom:143.465333pt;}
.y11f_c00418{bottom:143.865333pt;}
.y246_c00418{bottom:145.732000pt;}
.y1b9_c00418{bottom:148.598667pt;}
.y1b7_c00418{bottom:148.932000pt;}
.y1b8_c00418{bottom:149.000000pt;}
.y2f0_c00418{bottom:150.532000pt;}
.y215_c00418{bottom:152.132000pt;}
.y119_c00418{bottom:154.398667pt;}
.y2c7_c00418{bottom:155.333333pt;}
.y29e_c00418{bottom:156.932000pt;}
.y11c_c00418{bottom:158.865333pt;}
.y11b_c00418{bottom:158.932000pt;}
.y11a_c00418{bottom:159.198667pt;}
.y245_c00418{bottom:159.865333pt;}
.y268_c00418{bottom:161.465333pt;}
.y1e5_c00418{bottom:163.000000pt;}
.y1b5_c00418{bottom:163.666667pt;}
.y1b6_c00418{bottom:163.732000pt;}
.y2ef_c00418{bottom:164.932000pt;}
.y2c6_c00418{bottom:169.398667pt;}
.y115_c00418{bottom:170.065333pt;}
.y116_c00418{bottom:170.132000pt;}
.y29d_c00418{bottom:171.333333pt;}
.y117_c00418{bottom:172.333333pt;}
.y244_c00418{bottom:174.532000pt;}
.y118_c00418{bottom:175.198667pt;}
.y267_c00418{bottom:175.798667pt;}
.y1e4_c00418{bottom:176.798667pt;}
.y1b4_c00418{bottom:177.465333pt;}
.y1b2_c00418{bottom:177.732000pt;}
.y1b3_c00418{bottom:177.798667pt;}
.y2ee_c00418{bottom:179.000000pt;}
.y214_c00418{bottom:180.598667pt;}
.y10f_c00418{bottom:182.865333pt;}
.y114_c00418{bottom:183.865333pt;}
.y113_c00418{bottom:184.465333pt;}
.y29c_c00418{bottom:185.398667pt;}
.y112_c00418{bottom:187.065333pt;}
.y110_c00418{bottom:187.333333pt;}
.y111_c00418{bottom:187.398667pt;}
.y243_c00418{bottom:188.000000pt;}
.y266_c00418{bottom:190.198667pt;}
.y1e3_c00418{bottom:191.532000pt;}
.y1b0_c00418{bottom:192.198667pt;}
.y2ed_c00418{bottom:193.398667pt;}
.y1b1_c00418{bottom:194.132000pt;}
.y109_c00418{bottom:197.598667pt;}
.y2c5_c00418{bottom:197.932000pt;}
.y10a_c00418{bottom:198.598667pt;}
.y10b_c00418{bottom:199.532000pt;}
.y10e_c00418{bottom:200.198667pt;}
.y10c_c00418{bottom:200.465333pt;}
.y10d_c00418{bottom:200.532000pt;}
.y242_c00418{bottom:202.732000pt;}
.y1e2_c00418{bottom:205.932000pt;}
.y2ec_c00418{bottom:207.532000pt;}
.y1ae_c00418{bottom:208.465333pt;}
.y1af_c00418{bottom:208.532000pt;}
.y212_c00418{bottom:209.465333pt;}
.y213_c00418{bottom:210.398667pt;}
.y103_c00418{bottom:211.065333pt;}
.y104_c00418{bottom:212.932000pt;}
.y105_c00418{bottom:213.000000pt;}
.y2a7_c00418{bottom:213.598667pt;}
.y106_c00418{bottom:214.265333pt;}
.y108_c00418{bottom:214.865333pt;}
.y107_c00418{bottom:215.198667pt;}
.y241_c00418{bottom:216.798667pt;}
.y265_c00418{bottom:218.732000pt;}
.y1e1_c00418{bottom:220.000000pt;}
.y1ad_c00418{bottom:221.265333pt;}
.y1ac_c00418{bottom:221.598667pt;}
.y2eb_c00418{bottom:221.932000pt;}
.y211_c00418{bottom:223.532000pt;}
.y2c4_c00418{bottom:225.398667pt;}
.yfe_c00418{bottom:225.732000pt;}
.yfd_c00418{bottom:225.800000pt;}
.yff_c00418{bottom:227.000000pt;}
.y2a6_c00418{bottom:227.333333pt;}
.y100_c00418{bottom:228.265333pt;}
.y102_c00418{bottom:229.598667pt;}
.y101_c00418{bottom:229.932000pt;}
.y240_c00418{bottom:230.865333pt;}
.y264_c00418{bottom:232.800000pt;}
.y1e0_c00418{bottom:234.732000pt;}
.y2ea_c00418{bottom:236.000000pt;}
.y210_c00418{bottom:236.598667pt;}
.y1ab_c00418{bottom:237.265333pt;}
.y1aa_c00418{bottom:237.598667pt;}
.y2c3_c00418{bottom:239.198667pt;}
.yf8_c00418{bottom:240.133333pt;}
.yf9_c00418{bottom:240.198667pt;}
.y2a5_c00418{bottom:241.133333pt;}
.yfc_c00418{bottom:244.333333pt;}
.yfb_c00418{bottom:244.598667pt;}
.yfa_c00418{bottom:244.666667pt;}
.y23f_c00418{bottom:245.000000pt;}
.y1df_c00418{bottom:248.466667pt;}
.y2e9_c00418{bottom:249.732000pt;}
.y1a6_c00418{bottom:251.000000pt;}
.y1a7_c00418{bottom:251.065333pt;}
.y1a8_c00418{bottom:252.000000pt;}
.y1a9_c00418{bottom:252.932000pt;}
.y2c2_c00418{bottom:253.598667pt;}
.yf4_c00418{bottom:254.865333pt;}
.yf5_c00418{bottom:254.932000pt;}
.y2a4_c00418{bottom:255.198667pt;}
.y23e_c00418{bottom:258.398667pt;}
.yf7_c00418{bottom:260.333333pt;}
.yf6_c00418{bottom:260.598667pt;}
.y1de_c00418{bottom:262.198667pt;}
.y20f_c00418{bottom:264.800000pt;}
.y1a5_c00418{bottom:265.133333pt;}
.y1a4_c00418{bottom:265.398667pt;}
.y1a3_c00418{bottom:265.466667pt;}
.y2c1_c00418{bottom:268.000000pt;}
.y2a3_c00418{bottom:269.265333pt;}
.yf0_c00418{bottom:269.598667pt;}
.y23d_c00418{bottom:272.800000pt;}
.yf3_c00418{bottom:273.133333pt;}
.yf2_c00418{bottom:273.466667pt;}
.yf1_c00418{bottom:273.800000pt;}
.yef_c00418{bottom:274.398667pt;}
.y1dd_c00418{bottom:276.265333pt;}
.y2e8_c00418{bottom:277.865333pt;}
.y20e_c00418{bottom:279.532000pt;}
.y1a2_c00418{bottom:280.198667pt;}
.y2c0_c00418{bottom:282.398667pt;}
.y2a2_c00418{bottom:283.333333pt;}
.ye8_c00418{bottom:284.333333pt;}
.ye9_c00418{bottom:285.932000pt;}
.y23c_c00418{bottom:286.532000pt;}
.yea_c00418{bottom:286.932000pt;}
.yeb_c00418{bottom:287.532000pt;}
.y263_c00418{bottom:288.133333pt;}
.yec_c00418{bottom:288.466667pt;}
.yed_c00418{bottom:288.532000pt;}
.yee_c00418{bottom:289.398667pt;}
.y1dc_c00418{bottom:290.732000pt;}
.y2e7_c00418{bottom:292.598667pt;}
.y20c_c00418{bottom:293.865333pt;}
.y20b_c00418{bottom:293.932000pt;}
.y1a1_c00418{bottom:294.532000pt;}
.y1a0_c00418{bottom:294.865333pt;}
.y19f_c00418{bottom:294.932000pt;}
.y20d_c00418{bottom:295.532000pt;}
.y2a1_c00418{bottom:298.398667pt;}
.ye3_c00418{bottom:299.000000pt;}
.ye4_c00418{bottom:299.065333pt;}
.y23b_c00418{bottom:300.932000pt;}
.y262_c00418{bottom:302.532000pt;}
.ye6_c00418{bottom:302.865333pt;}
.ye7_c00418{bottom:302.932000pt;}
.ye5_c00418{bottom:303.198667pt;}
.y1db_c00418{bottom:305.398667pt;}
.y2e6_c00418{bottom:307.000000pt;}
.y20a_c00418{bottom:308.598667pt;}
.y19d_c00418{bottom:310.865333pt;}
.y19e_c00418{bottom:310.932000pt;}
.y19c_c00418{bottom:311.198667pt;}
.y2a0_c00418{bottom:312.800000pt;}
.ydb_c00418{bottom:314.065333pt;}
.ydc_c00418{bottom:314.133333pt;}
.ydd_c00418{bottom:315.000000pt;}
.y23a_c00418{bottom:315.333333pt;}
.yde_c00418{bottom:315.666667pt;}
.y260_c00418{bottom:316.333333pt;}
.y261_c00418{bottom:316.598667pt;}
.ydf_c00418{bottom:316.666667pt;}
.ye0_c00418{bottom:317.265333pt;}
.ye1_c00418{bottom:317.333333pt;}
.ye2_c00418{bottom:317.865333pt;}
.y1da_c00418{bottom:319.198667pt;}
.y19b_c00418{bottom:325.265333pt;}
.y19a_c00418{bottom:325.598667pt;}
.y29f_c00418{bottom:327.532000pt;}
.yd4_c00418{bottom:328.466667pt;}
.yd5_c00418{bottom:328.532000pt;}
.yd6_c00418{bottom:329.065333pt;}
.yd7_c00418{bottom:330.065333pt;}
.y239_c00418{bottom:330.398667pt;}
.yd8_c00418{bottom:330.732000pt;}
.y25f_c00418{bottom:331.333333pt;}
.yd9_c00418{bottom:331.398667pt;}
.yda_c00418{bottom:332.333333pt;}
.y1d9_c00418{bottom:334.265333pt;}
.y2e5_c00418{bottom:336.133333pt;}
.y2bf_c00418{bottom:340.000000pt;}
.y198_c00418{bottom:340.265333pt;}
.y199_c00418{bottom:340.333333pt;}
.y197_c00418{bottom:340.666667pt;}
.y29b_c00418{bottom:341.598667pt;}
.ycf_c00418{bottom:343.198667pt;}
.y238_c00418{bottom:344.466667pt;}
.yd3_c00418{bottom:344.800000pt;}
.yd2_c00418{bottom:345.133333pt;}
.yd1_c00418{bottom:345.732000pt;}
.yd0_c00418{bottom:345.800000pt;}
.y1d8_c00418{bottom:348.598667pt;}
.y2e4_c00418{bottom:350.532000pt;}
.y209_c00418{bottom:351.800000pt;}
.y2be_c00418{bottom:354.732000pt;}
.y195_c00418{bottom:355.000000pt;}
.y196_c00418{bottom:355.065333pt;}
.y29a_c00418{bottom:356.000000pt;}
.yce_c00418{bottom:358.865333pt;}
.ycd_c00418{bottom:359.198667pt;}
.ycc_c00418{bottom:359.466667pt;}
.ycb_c00418{bottom:359.532000pt;}
.y25e_c00418{bottom:360.133333pt;}
.y1d7_c00418{bottom:363.333333pt;}
.y2e3_c00418{bottom:365.598667pt;}
.y2bd_c00418{bottom:368.798667pt;}
.y193_c00418{bottom:369.732000pt;}
.y194_c00418{bottom:369.798667pt;}
.y296_c00418{bottom:370.398667pt;}
.yc3_c00418{bottom:371.666667pt;}
.yc4_c00418{bottom:371.732000pt;}
.yc5_c00418{bottom:372.666667pt;}
.y237_c00418{bottom:373.265333pt;}
.yc6_c00418{bottom:373.598667pt;}
.yc7_c00418{bottom:374.198667pt;}
.yc8_c00418{bottom:374.265333pt;}
.yc9_c00418{bottom:375.198667pt;}
.yca_c00418{bottom:376.198667pt;}
.y2e2_c00418{bottom:380.000000pt;}
.y206_c00418{bottom:380.932000pt;}
.y207_c00418{bottom:381.000000pt;}
.y208_c00418{bottom:382.265333pt;}
.y191_c00418{bottom:383.865333pt;}
.y295_c00418{bottom:384.465333pt;}
.y192_c00418{bottom:384.532000pt;}
.ybc_c00418{bottom:386.065333pt;}
.ybd_c00418{bottom:386.132000pt;}
.y236_c00418{bottom:387.666667pt;}
.ybf_c00418{bottom:388.265333pt;}
.ybe_c00418{bottom:388.333333pt;}
.y25d_c00418{bottom:388.932000pt;}
.yc0_c00418{bottom:389.265333pt;}
.yc1_c00418{bottom:389.333333pt;}
.yc2_c00418{bottom:390.265333pt;}
.y1d6_c00418{bottom:392.798667pt;}
.y2e1_c00418{bottom:394.398667pt;}
.y203_c00418{bottom:395.000000pt;}
.y204_c00418{bottom:395.065333pt;}
.y205_c00418{bottom:396.598667pt;}
.y294_c00418{bottom:398.532000pt;}
.y18e_c00418{bottom:398.598667pt;}
.y18f_c00418{bottom:399.198667pt;}
.y190_c00418{bottom:399.865333pt;}
.yb5_c00418{bottom:401.132000pt;}
.y235_c00418{bottom:401.732000pt;}
.yb6_c00418{bottom:402.398667pt;}
.y25c_c00418{bottom:403.000000pt;}
.ybb_c00418{bottom:405.932000pt;}
.yba_c00418{bottom:406.198667pt;}
.yb9_c00418{bottom:406.265333pt;}
.yb7_c00418{bottom:406.865333pt;}
.yb8_c00418{bottom:406.932000pt;}
.y1d5_c00418{bottom:407.198667pt;}
.y202_c00418{bottom:409.732000pt;}
.y2bc_c00418{bottom:411.666667pt;}
.y293_c00418{bottom:412.932000pt;}
.y18c_c00418{bottom:414.198667pt;}
.y18d_c00418{bottom:414.265333pt;}
.y234_c00418{bottom:415.465333pt;}
.yb0_c00418{bottom:415.798667pt;}
.yb1_c00418{bottom:415.865333pt;}
.y25b_c00418{bottom:416.532000pt;}
.yb4_c00418{bottom:418.398667pt;}
.yb3_c00418{bottom:418.732000pt;}
.yb2_c00418{bottom:419.065333pt;}
.y1d4_c00418{bottom:421.598667pt;}
.y2e0_c00418{bottom:423.532000pt;}
.y201_c00418{bottom:424.465333pt;}
.y2bb_c00418{bottom:426.065333pt;}
.y291_c00418{bottom:427.333333pt;}
.y292_c00418{bottom:427.398667pt;}
.y18b_c00418{bottom:429.000000pt;}
.y233_c00418{bottom:429.932000pt;}
.ya7_c00418{bottom:430.865333pt;}
.ya8_c00418{bottom:430.932000pt;}
.y25a_c00418{bottom:431.198667pt;}
.ya9_c00418{bottom:431.532000pt;}
.yaa_c00418{bottom:432.532000pt;}
.yab_c00418{bottom:433.065333pt;}
.yac_c00418{bottom:433.132000pt;}
.yad_c00418{bottom:434.065333pt;}
.yae_c00418{bottom:434.132000pt;}
.yaf_c00418{bottom:434.732000pt;}
.y1d3_c00418{bottom:436.333333pt;}
.y2df_c00418{bottom:437.932000pt;}
.y200_c00418{bottom:438.865333pt;}
.y2ba_c00418{bottom:440.798667pt;}
.y290_c00418{bottom:441.798667pt;}
.y189_c00418{bottom:443.398667pt;}
.y18a_c00418{bottom:444.000000pt;}
.y232_c00418{bottom:444.265333pt;}
.y259_c00418{bottom:444.932000pt;}
.ya1_c00418{bottom:445.865333pt;}
.ya2_c00418{bottom:445.932000pt;}
.ya3_c00418{bottom:446.865333pt;}
.ya6_c00418{bottom:449.732000pt;}
.ya4_c00418{bottom:450.065333pt;}
.ya5_c00418{bottom:450.132000pt;}
.y1d2_c00418{bottom:451.000000pt;}
.y186_c00418{bottom:451.333333pt;}
.y185_c00418{bottom:451.398667pt;}
.y2de_c00418{bottom:452.598667pt;}
.y1ff_c00418{bottom:453.598667pt;}
.y2b9_c00418{bottom:455.198667pt;}
.y28f_c00418{bottom:456.465333pt;}
.y188_c00418{bottom:458.065333pt;}
.y187_c00418{bottom:458.398667pt;}
.y231_c00418{bottom:458.732000pt;}
.y258_c00418{bottom:459.333333pt;}
.y99_c00418{bottom:460.932000pt;}
.y9a_c00418{bottom:461.000000pt;}
.y9b_c00418{bottom:461.598667pt;}
.y9c_c00418{bottom:462.265333pt;}
.y9d_c00418{bottom:463.198667pt;}
.y9f_c00418{bottom:463.798667pt;}
.y9e_c00418{bottom:463.865333pt;}
.ya0_c00418{bottom:464.465333pt;}
.y1d1_c00418{bottom:465.732000pt;}
.y2dd_c00418{bottom:467.333333pt;}
.y1fe_c00418{bottom:468.000000pt;}
.y180_c00418{bottom:468.666667pt;}
.y2b8_c00418{bottom:469.598667pt;}
.y28e_c00418{bottom:471.198667pt;}
.y181_c00418{bottom:473.132000pt;}
.y230_c00418{bottom:473.398667pt;}
.y257_c00418{bottom:473.732000pt;}
.y182_c00418{bottom:474.065333pt;}
.y183_c00418{bottom:474.132000pt;}
.y184_c00418{bottom:474.732000pt;}
.y96_c00418{bottom:476.000000pt;}
.y98_c00418{bottom:477.333333pt;}
.y97_c00418{bottom:477.598667pt;}
.y1d0_c00418{bottom:480.532000pt;}
.y2dc_c00418{bottom:482.398667pt;}
.y1fd_c00418{bottom:483.000000pt;}
.y2b7_c00418{bottom:484.598667pt;}
.y28d_c00418{bottom:485.598667pt;}
.y22f_c00418{bottom:487.798667pt;}
.y17e_c00418{bottom:487.865333pt;}
.y256_c00418{bottom:488.132000pt;}
.y17f_c00418{bottom:489.132000pt;}
.y90_c00418{bottom:491.000000pt;}
.y91_c00418{bottom:491.065333pt;}
.y92_c00418{bottom:491.666667pt;}
.y94_c00418{bottom:492.265333pt;}
.y93_c00418{bottom:492.333333pt;}
.y1cf_c00418{bottom:495.198667pt;}
.y95_c00418{bottom:495.865333pt;}
.y2db_c00418{bottom:497.132000pt;}
.y1fc_c00418{bottom:497.732000pt;}
.y2b6_c00418{bottom:499.000000pt;}
.y28c_c00418{bottom:500.265333pt;}
.y22e_c00418{bottom:501.865333pt;}
.y17c_c00418{bottom:503.198667pt;}
.y17d_c00418{bottom:504.198667pt;}
.y8c_c00418{bottom:506.065333pt;}
.y8e_c00418{bottom:506.666667pt;}
.y8d_c00418{bottom:506.732000pt;}
.y8a_c00418{bottom:507.000000pt;}
.y8b_c00418{bottom:507.065333pt;}
.y8f_c00418{bottom:508.333333pt;}
.y1ce_c00418{bottom:509.865333pt;}
.y2da_c00418{bottom:511.532000pt;}
.y1f9_c00418{bottom:512.465333pt;}
.y1fa_c00418{bottom:512.532000pt;}
.y2b5_c00418{bottom:513.465333pt;}
.y2b4_c00418{bottom:513.798667pt;}
.y28b_c00418{bottom:514.666667pt;}
.y1fb_c00418{bottom:514.732000pt;}
.y22d_c00418{bottom:516.598667pt;}
.y255_c00418{bottom:517.598667pt;}
.y17b_c00418{bottom:518.265333pt;}
.y83_c00418{bottom:520.798667pt;}
.y84_c00418{bottom:521.398667pt;}
.y85_c00418{bottom:522.065333pt;}
.y86_c00418{bottom:522.132000pt;}
.y87_c00418{bottom:522.398667pt;}
.y88_c00418{bottom:523.065333pt;}
.y89_c00418{bottom:523.732000pt;}
.y1cd_c00418{bottom:525.265333pt;}
.y2d9_c00418{bottom:526.198667pt;}
.y2b3_c00418{bottom:528.132000pt;}
.y28a_c00418{bottom:529.065333pt;}
.y22c_c00418{bottom:530.732000pt;}
.y254_c00418{bottom:531.666667pt;}
.y253_c00418{bottom:532.000000pt;}
.y17a_c00418{bottom:533.598667pt;}
.y7c_c00418{bottom:535.798667pt;}
.y7d_c00418{bottom:535.865333pt;}
.y7f_c00418{bottom:536.132000pt;}
.y7e_c00418{bottom:536.198667pt;}
.y80_c00418{bottom:536.798667pt;}
.y81_c00418{bottom:537.465333pt;}
.y82_c00418{bottom:537.798667pt;}
.y1cc_c00418{bottom:539.333333pt;}
.y2d8_c00418{bottom:541.265333pt;}
.y1f8_c00418{bottom:541.598667pt;}
.y2b2_c00418{bottom:542.865333pt;}
.y289_c00418{bottom:543.798667pt;}
.y22b_c00418{bottom:545.732000pt;}
.y179_c00418{bottom:548.598667pt;}
.y178_c00418{bottom:548.666667pt;}
.y77_c00418{bottom:550.865333pt;}
.y76_c00418{bottom:551.198667pt;}
.y78_c00418{bottom:551.465333pt;}
.y79_c00418{bottom:552.465333pt;}
.y7a_c00418{bottom:552.532000pt;}
.y7b_c00418{bottom:552.798667pt;}
.y1cb_c00418{bottom:554.065333pt;}
.y2d7_c00418{bottom:556.000000pt;}
.y1f7_c00418{bottom:556.333333pt;}
.y2b1_c00418{bottom:557.598667pt;}
.y287_c00418{bottom:558.532000pt;}
.y288_c00418{bottom:558.598667pt;}
.y22a_c00418{bottom:560.132000pt;}
.y177_c00418{bottom:563.333333pt;}
.y176_c00418{bottom:563.398667pt;}
.y6e_c00418{bottom:565.598667pt;}
.y6f_c00418{bottom:566.198667pt;}
.y70_c00418{bottom:566.532000pt;}
.y71_c00418{bottom:566.865333pt;}
.y72_c00418{bottom:566.932000pt;}
.y73_c00418{bottom:567.532000pt;}
.y74_c00418{bottom:567.798667pt;}
.y75_c00418{bottom:568.132000pt;}
.y1ca_c00418{bottom:569.065333pt;}
.y2d6_c00418{bottom:570.398667pt;}
.y1f6_c00418{bottom:570.732000pt;}
.y2b0_c00418{bottom:572.000000pt;}
.y286_c00418{bottom:572.666667pt;}
.y229_c00418{bottom:574.532000pt;}
.y252_c00418{bottom:575.198667pt;}
.y175_c00418{bottom:578.732000pt;}
.y174_c00418{bottom:579.065333pt;}
.y68_c00418{bottom:580.598667pt;}
.y69_c00418{bottom:580.666667pt;}
.y6a_c00418{bottom:581.000000pt;}
.y6b_c00418{bottom:581.598667pt;}
.y6c_c00418{bottom:582.265333pt;}
.y6d_c00418{bottom:582.532000pt;}
.y1c9_c00418{bottom:583.465333pt;}
.y2d5_c00418{bottom:585.132000pt;}
.y1f5_c00418{bottom:585.398667pt;}
.y2af_c00418{bottom:586.398667pt;}
.y285_c00418{bottom:587.065333pt;}
.y228_c00418{bottom:588.598667pt;}
.y251_c00418{bottom:589.265333pt;}
.y173_c00418{bottom:594.065333pt;}
.y172_c00418{bottom:594.398667pt;}
.y60_c00418{bottom:596.000000pt;}
.y63_c00418{bottom:596.265333pt;}
.y64_c00418{bottom:596.333333pt;}
.y65_c00418{bottom:596.598667pt;}
.y61_c00418{bottom:596.666667pt;}
.y66_c00418{bottom:597.598667pt;}
.y67_c00418{bottom:597.932000pt;}
.y1c8_c00418{bottom:598.198667pt;}
.y2ae_c00418{bottom:601.065333pt;}
.y171_c00418{bottom:601.132000pt;}
.y283_c00418{bottom:601.732000pt;}
.y62_c00418{bottom:602.732000pt;}
.y227_c00418{bottom:603.333333pt;}
.y250_c00418{bottom:603.398667pt;}
.y284_c00418{bottom:604.000000pt;}
.y170_c00418{bottom:608.798667pt;}
.y16f_c00418{bottom:609.132000pt;}
.y59_c00418{bottom:610.732000pt;}
.y5a_c00418{bottom:611.065333pt;}
.y5b_c00418{bottom:611.333333pt;}
.y5c_c00418{bottom:611.398667pt;}
.y5d_c00418{bottom:612.000000pt;}
.y5e_c00418{bottom:612.333333pt;}
.y5f_c00418{bottom:612.666667pt;}
.y273_c00418{bottom:612.932000pt;}
.y2d4_c00418{bottom:614.532000pt;}
.y1f4_c00418{bottom:614.865333pt;}
.y2ad_c00418{bottom:615.798667pt;}
.y282_c00418{bottom:616.465333pt;}
.y226_c00418{bottom:617.732000pt;}
.y16e_c00418{bottom:623.198667pt;}
.y54_c00418{bottom:625.732000pt;}
.y55_c00418{bottom:625.798667pt;}
.y56_c00418{bottom:626.065333pt;}
.y57_c00418{bottom:626.132000pt;}
.y58_c00418{bottom:626.398667pt;}
.y272_c00418{bottom:627.732000pt;}
.y2d3_c00418{bottom:629.265333pt;}
.y1f2_c00418{bottom:629.598667pt;}
.y1f3_c00418{bottom:630.198667pt;}
.y281_c00418{bottom:631.532000pt;}
.y225_c00418{bottom:632.132000pt;}
.y24f_c00418{bottom:632.465333pt;}
.y16a_c00418{bottom:634.065333pt;}
.y16b_c00418{bottom:634.132000pt;}
.y16d_c00418{bottom:638.532000pt;}
.y16c_c00418{bottom:638.865333pt;}
.y4c_c00418{bottom:640.798667pt;}
.y4d_c00418{bottom:641.066667pt;}
.y4e_c00418{bottom:641.132000pt;}
.y4f_c00418{bottom:641.400000pt;}
.y50_c00418{bottom:641.465333pt;}
.y51_c00418{bottom:641.733333pt;}
.y52_c00418{bottom:641.798667pt;}
.y53_c00418{bottom:642.132000pt;}
.y271_c00418{bottom:642.666667pt;}
.y2d2_c00418{bottom:644.333333pt;}
.y2ac_c00418{bottom:644.932000pt;}
.y280_c00418{bottom:645.598667pt;}
.y224_c00418{bottom:646.532000pt;}
.y24e_c00418{bottom:646.865333pt;}
.y168_c00418{bottom:651.000000pt;}
.y167_c00418{bottom:651.066667pt;}
.y169_c00418{bottom:653.932000pt;}
.y45_c00418{bottom:655.532000pt;}
.y46_c00418{bottom:655.865333pt;}
.y47_c00418{bottom:656.132000pt;}
.y48_c00418{bottom:656.198667pt;}
.y49_c00418{bottom:656.798667pt;}
.y4a_c00418{bottom:657.132000pt;}
.y4b_c00418{bottom:657.400000pt;}
.y2d1_c00418{bottom:658.733333pt;}
.y2ab_c00418{bottom:659.666667pt;}
.y27f_c00418{bottom:660.000000pt;}
.y223_c00418{bottom:660.598667pt;}
.y24d_c00418{bottom:660.932000pt;}
.y164_c00418{bottom:667.333333pt;}
.y163_c00418{bottom:667.400000pt;}
.y166_c00418{bottom:669.000000pt;}
.y165_c00418{bottom:669.333333pt;}
.y43_c00418{bottom:670.598667pt;}
.y41_c00418{bottom:670.865333pt;}
.y42_c00418{bottom:670.932000pt;}
.y44_c00418{bottom:671.532000pt;}
.y270_c00418{bottom:672.132000pt;}
.y2d0_c00418{bottom:673.465333pt;}
.y222_c00418{bottom:675.333333pt;}
.y24c_c00418{bottom:675.666667pt;}
.y2aa_c00418{bottom:678.532000pt;}
.y15e_c00418{bottom:680.798667pt;}
.y15c_c00418{bottom:684.266667pt;}
.y15d_c00418{bottom:684.333333pt;}
.y161_c00418{bottom:684.600000pt;}
.y162_c00418{bottom:684.666667pt;}
.y15f_c00418{bottom:684.933333pt;}
.y160_c00418{bottom:685.000000pt;}
.y27d_c00418{bottom:686.198667pt;}
.y3f_c00418{bottom:686.266667pt;}
.y40_c00418{bottom:686.600000pt;}
.y26f_c00418{bottom:687.198667pt;}
.y1f1_c00418{bottom:688.132000pt;}
.y2cf_c00418{bottom:688.465333pt;}
.y27c_c00418{bottom:688.798667pt;}
.y27e_c00418{bottom:689.132000pt;}
.y221_c00418{bottom:689.732000pt;}
.y15b_c00418{bottom:699.065333pt;}
.y15a_c00418{bottom:699.398667pt;}
.y3c_c00418{bottom:700.600000pt;}
.y3d_c00418{bottom:700.666667pt;}
.y3a_c00418{bottom:700.933333pt;}
.y3b_c00418{bottom:701.000000pt;}
.y38_c00418{bottom:701.266667pt;}
.y39_c00418{bottom:701.333333pt;}
.y3e_c00418{bottom:701.600000pt;}
.y155_c00418{bottom:702.266667pt;}
.y1f0_c00418{bottom:702.865333pt;}
.y27b_c00418{bottom:703.466667pt;}
.y154_c00418{bottom:703.532000pt;}
.y24b_c00418{bottom:703.800000pt;}
.y220_c00418{bottom:704.133333pt;}
.y159_c00418{bottom:707.000000pt;}
.y158_c00418{bottom:712.800000pt;}
.y157_c00418{bottom:713.065333pt;}
.y156_c00418{bottom:713.133333pt;}
.y33_c00418{bottom:715.333333pt;}
.y35_c00418{bottom:715.666667pt;}
.y34_c00418{bottom:715.732000pt;}
.y36_c00418{bottom:716.000000pt;}
.y37_c00418{bottom:716.333333pt;}
.y26e_c00418{bottom:716.600000pt;}
.y2ce_c00418{bottom:717.266667pt;}
.y27a_c00418{bottom:717.865333pt;}
.y153_c00418{bottom:717.933333pt;}
.y21f_c00418{bottom:718.865333pt;}
.y24a_c00418{bottom:719.865333pt;}
.y151_c00418{bottom:729.065333pt;}
.y152_c00418{bottom:729.133333pt;}
.y2c_c00418{bottom:730.666667pt;}
.y2d_c00418{bottom:730.732000pt;}
.y2e_c00418{bottom:731.000000pt;}
.y31_c00418{bottom:731.065333pt;}
.y32_c00418{bottom:731.333333pt;}
.y1ef_c00418{bottom:732.333333pt;}
.y279_c00418{bottom:732.933333pt;}
.y21e_c00418{bottom:733.266667pt;}
.y14f_c00418{bottom:734.266667pt;}
.y2f_c00418{bottom:737.398667pt;}
.y30_c00418{bottom:737.466667pt;}
.y150_c00418{bottom:744.466667pt;}
.y14e_c00418{bottom:744.800000pt;}
.y2a_c00418{bottom:745.732000pt;}
.y2b_c00418{bottom:745.800000pt;}
.y28_c00418{bottom:746.065333pt;}
.y29_c00418{bottom:746.133333pt;}
.y27_c00418{bottom:746.398667pt;}
.y1ee_c00418{bottom:746.666667pt;}
.y2cd_c00418{bottom:747.000000pt;}
.y278_c00418{bottom:747.333333pt;}
.y21d_c00418{bottom:747.666667pt;}
.y149_c00418{bottom:750.865333pt;}
.y14a_c00418{bottom:750.933333pt;}
.y14d_c00418{bottom:757.933333pt;}
.y14c_c00418{bottom:758.198667pt;}
.y14b_c00418{bottom:758.266667pt;}
.y22_c00418{bottom:760.800000pt;}
.y23_c00418{bottom:761.065333pt;}
.y24_c00418{bottom:761.133333pt;}
.y26d_c00418{bottom:761.398667pt;}
.y25_c00418{bottom:761.466667pt;}
.y26_c00418{bottom:761.732000pt;}
.y277_c00418{bottom:762.065333pt;}
.y21c_c00418{bottom:762.398667pt;}
.y148_c00418{bottom:773.933333pt;}
.y146_c00418{bottom:774.198667pt;}
.y147_c00418{bottom:774.266667pt;}
.y1c_c00418{bottom:775.466667pt;}
.y1d_c00418{bottom:775.532000pt;}
.y1e_c00418{bottom:775.800000pt;}
.y1f_c00418{bottom:775.865333pt;}
.y21_c00418{bottom:776.133333pt;}
.y20_c00418{bottom:776.198667pt;}
.y276_c00418{bottom:776.800000pt;}
.y21b_c00418{bottom:777.065333pt;}
.y143_c00418{bottom:784.532000pt;}
.y145_c00418{bottom:787.666667pt;}
.y144_c00418{bottom:788.000000pt;}
.y19_c00418{bottom:790.198667pt;}
.y18_c00418{bottom:790.266667pt;}
.y1a_c00418{bottom:790.532000pt;}
.y1b_c00418{bottom:790.600000pt;}
.y26c_c00418{bottom:790.865333pt;}
.y21a_c00418{bottom:791.198667pt;}
.y2cc_c00418{bottom:791.466667pt;}
.y275_c00418{bottom:791.532000pt;}
.y1ed_c00418{bottom:791.800000pt;}
.y1ec_c00418{bottom:791.865333pt;}
.y13f_c00418{bottom:801.398667pt;}
.y140_c00418{bottom:801.466667pt;}
.y141_c00418{bottom:803.065333pt;}
.y142_c00418{bottom:803.732000pt;}
.y16_c00418{bottom:804.933333pt;}
.y17_c00418{bottom:805.000000pt;}
.y14_c00418{bottom:805.266667pt;}
.y15_c00418{bottom:805.333333pt;}
.y219_c00418{bottom:805.600000pt;}
.y274_c00418{bottom:805.865333pt;}
.y2a9_c00418{bottom:805.933333pt;}
.y2cb_c00418{bottom:806.266667pt;}
.y13c_c00418{bottom:817.800000pt;}
.y13a_c00418{bottom:818.065333pt;}
.y13b_c00418{bottom:818.133333pt;}
.y13e_c00418{bottom:818.398667pt;}
.y13d_c00418{bottom:818.732000pt;}
.y12_c00418{bottom:819.065333pt;}
.y10_c00418{bottom:819.333333pt;}
.y11_c00418{bottom:819.398667pt;}
.ye_c00418{bottom:819.666667pt;}
.yf_c00418{bottom:819.732000pt;}
.y1eb_c00418{bottom:820.000000pt;}
.y2a8_c00418{bottom:820.333333pt;}
.y1e8_c00418{bottom:842.398667pt;}
.y136_c00418{bottom:843.065333pt;}
.y2_c00418{bottom:843.666667pt;}
.y1_c00418{bottom:844.000000pt;}
.y1ea_c00418{bottom:844.266667pt;}
.yd_c00418{bottom:844.333333pt;}
.y1e9_c00418{bottom:844.666667pt;}
.y137_c00418{bottom:851.065333pt;}
.y138_c00418{bottom:852.600000pt;}
.y139_c00418{bottom:852.666667pt;}
.yc_c00418{bottom:897.732000pt;}
.yb_c00418{bottom:897.800000pt;}
.ya_c00418{bottom:898.065333pt;}
.y9_c00418{bottom:898.398667pt;}
.y7_c00418{bottom:899.065333pt;}
.y8_c00418{bottom:900.266667pt;}
.y6_c00418{bottom:943.198667pt;}
.y5_c00418{bottom:970.732000pt;}
.y4_c00418{bottom:972.000000pt;}
.y3_c00418{bottom:972.266667pt;}
.y13_c00418{bottom:1044.000000pt;}
.h3_c00418{height:32.250000pt;}
.h6_c00418{height:36.622396pt;}
.ha_c00418{height:36.640625pt;}
.h1_c00418{height:44.500000pt;}
.h4_c00418{height:47.109375pt;}
.h2_c00418{height:48.375000pt;}
.h12_c00418{height:50.062500pt;}
.h8_c00418{height:52.343750pt;}
.hb_c00418{height:53.750000pt;}
.h5_c00418{height:55.625000pt;}
.h11_c00418{height:57.578125pt;}
.h13_c00418{height:61.187500pt;}
.h9_c00418{height:62.812500pt;}
.h7_c00418{height:68.046875pt;}
.he_c00418{height:72.312500pt;}
.hc_c00418{height:73.281250pt;}
.h14_c00418{height:77.875000pt;}
.hd_c00418{height:78.515625pt;}
.h10_c00418{height:89.000000pt;}
.hf_c00418{height:116.812500pt;}
.h0_c00418{height:1044.000000pt;}
.w1_c00418{width:612.666667pt;}
.w0_c00418{width:612.851067pt;}
.x6_c00418{left:-56.692933pt;}
.x5e_c00418{left:-55.759600pt;}
.x65_c00418{left:-54.159600pt;}
.x67_c00418{left:-52.226267pt;}
.x5b_c00418{left:-50.627600pt;}
.x68_c00418{left:-49.026267pt;}
.x5c_c00418{left:-48.026267pt;}
.x5f_c00418{left:-46.159600pt;}
.x7c_c00418{left:-44.560933pt;}
.x83_c00418{left:-42.292933pt;}
.x66_c00418{left:-40.359600pt;}
.x6d_c00418{left:-39.426267pt;}
.x71_c00418{left:-37.826267pt;}
.xa2_c00418{left:-36.826267pt;}
.x72_c00418{left:-35.226267pt;}
.x6e_c00418{left:-34.292933pt;}
.x7d_c00418{left:-32.359600pt;}
.x5d_c00418{left:-28.226267pt;}
.x6a_c00418{left:-26.292933pt;}
.x75_c00418{left:-24.692933pt;}
.x9f_c00418{left:-18.626267pt;}
.x0_c00418{left:0.000000pt;}
.x77_c00418{left:4.440400pt;}
.xa9_c00418{left:6.640400pt;}
.x6c_c00418{left:7.973733pt;}
.x6f_c00418{left:11.173733pt;}
.x6b_c00418{left:13.373733pt;}
.x60_c00418{left:17.840400pt;}
.x76_c00418{left:18.840400pt;}
.x7a_c00418{left:19.773733pt;}
.x81_c00418{left:21.040400pt;}
.x87_c00418{left:22.040400pt;}
.x90_c00418{left:23.307067pt;}
.x61_c00418{left:24.907067pt;}
.x7b_c00418{left:26.507067pt;}
.x82_c00418{left:27.440400pt;}
.x7_c00418{left:28.440400pt;}
.x8c_c00418{left:29.372400pt;}
.x91_c00418{left:30.372400pt;}
.x94_c00418{left:31.307067pt;}
.x96_c00418{left:32.240400pt;}
.x98_c00418{left:33.240400pt;}
.x9b_c00418{left:34.173733pt;}
.x9e_c00418{left:35.173733pt;}
.xa3_c00418{left:36.773733pt;}
.x62_c00418{left:51.173733pt;}
.x73_c00418{left:52.107067pt;}
.x79_c00418{left:53.040400pt;}
.x7e_c00418{left:54.040400pt;}
.x84_c00418{left:54.973733pt;}
.x89_c00418{left:55.973733pt;}
.x8d_c00418{left:56.907067pt;}
.x63_c00418{left:57.840400pt;}
.x70_c00418{left:58.840400pt;}
.x74_c00418{left:59.773733pt;}
.x7f_c00418{left:60.773733pt;}
.x85_c00418{left:61.707067pt;}
.x8a_c00418{left:62.640400pt;}
.x8e_c00418{left:63.640400pt;}
.x93_c00418{left:64.907067pt;}
.x95_c00418{left:65.840400pt;}
.x99_c00418{left:67.173733pt;}
.x9c_c00418{left:68.773733pt;}
.xa0_c00418{left:69.707067pt;}
.xa4_c00418{left:70.640400pt;}
.xaa_c00418{left:74.507067pt;}
.x69_c00418{left:78.373733pt;}
.x86_c00418{left:81.573733pt;}
.x64_c00418{left:86.040400pt;}
.x78_c00418{left:87.307067pt;}
.x80_c00418{left:88.240400pt;}
.x88_c00418{left:89.240400pt;}
.x8b_c00418{left:90.173733pt;}
.x8f_c00418{left:91.173733pt;}
.x92_c00418{left:92.440400pt;}
.x97_c00418{left:93.707067pt;}
.x9a_c00418{left:94.640400pt;}
.x9d_c00418{left:95.640400pt;}
.xa1_c00418{left:96.907067pt;}
.xe_c00418{left:110.040400pt;}
.x16_c00418{left:120.573733pt;}
.x22_c00418{left:121.573733pt;}
.x2c_c00418{left:122.840400pt;}
.x3d_c00418{left:124.105733pt;}
.x43_c00418{left:125.040400pt;}
.xf_c00418{left:126.640400pt;}
.x26_c00418{left:127.973733pt;}
.x30_c00418{left:128.907067pt;}
.x3f_c00418{left:130.173733pt;}
.x44_c00418{left:131.173733pt;}
.x1d_c00418{left:132.772400pt;}
.x50_c00418{left:134.040400pt;}
.x8_c00418{left:135.307067pt;}
.x1e_c00418{left:136.907067pt;}
.x10_c00418{left:154.840400pt;}
.x1c_c00418{left:155.773733pt;}
.x27_c00418{left:156.773733pt;}
.x2d_c00418{left:157.707067pt;}
.x42_c00418{left:158.640400pt;}
.x46_c00418{left:159.640400pt;}
.x4e_c00418{left:160.907067pt;}
.x11_c00418{left:162.507067pt;}
.x28_c00418{left:163.440400pt;}
.x2e_c00418{left:164.440400pt;}
.x40_c00418{left:165.707067pt;}
.x47_c00418{left:166.640400pt;}
.x4b_c00418{left:167.973733pt;}
.x54_c00418{left:169.240400pt;}
.x56_c00418{left:170.507067pt;}
.x17_c00418{left:189.040400pt;}
.x23_c00418{left:190.040400pt;}
.x32_c00418{left:191.307067pt;}
.x41_c00418{left:192.573733pt;}
.x45_c00418{left:193.573733pt;}
.x4c_c00418{left:194.507067pt;}
.x18_c00418{left:196.107067pt;}
.x24_c00418{left:197.040400pt;}
.x3b_c00418{left:198.373733pt;}
.x39_c00418{left:199.307067pt;}
.x49_c00418{left:200.240400pt;}
.x52_c00418{left:201.840400pt;}
.x58_c00418{left:202.840400pt;}
.x12_c00418{left:222.040400pt;}
.x19_c00418{left:222.973733pt;}
.x25_c00418{left:223.973733pt;}
.x36_c00418{left:225.240400pt;}
.x3c_c00418{left:226.173733pt;}
.x4d_c00418{left:227.173733pt;}
.x9_c00418{left:228.107067pt;}
.x1f_c00418{left:229.040400pt;}
.x2a_c00418{left:230.040400pt;}
.x33_c00418{left:230.973733pt;}
.x3e_c00418{left:231.973733pt;}
.x4f_c00418{left:233.240400pt;}
.x51_c00418{left:234.173733pt;}
.x57_c00418{left:235.173733pt;}
.x13_c00418{left:254.640400pt;}
.x1a_c00418{left:255.640400pt;}
.x20_c00418{left:256.907067pt;}
.x34_c00418{left:257.840400pt;}
.x38_c00418{left:258.840400pt;}
.x48_c00418{left:259.773733pt;}
.x14_c00418{left:261.373733pt;}
.x1b_c00418{left:262.373733pt;}
.x21_c00418{left:263.307067pt;}
.x2b_c00418{left:264.907067pt;}
.x3a_c00418{left:266.173733pt;}
.x4a_c00418{left:267.173733pt;}
.x3_c00418{left:268.773733pt;}
.x5a_c00418{left:270.040400pt;}
.x2f_c00418{left:287.640400pt;}
.x15_c00418{left:289.239067pt;}
.x29_c00418{left:290.173733pt;}
.x35_c00418{left:291.173733pt;}
.x31_c00418{left:292.107067pt;}
.x37_c00418{left:293.040400pt;}
.x53_c00418{left:294.040400pt;}
.x55_c00418{left:294.973733pt;}
.x59_c00418{left:296.572400pt;}
.xd3_c00418{left:308.773733pt;}
.xd4_c00418{left:322.173733pt;}
.xa5_c00418{left:323.440400pt;}
.xa6_c00418{left:324.440400pt;}
.xa7_c00418{left:325.707067pt;}
.xa8_c00418{left:326.640400pt;}
.xa_c00418{left:327.973733pt;}
.xed_c00418{left:339.173733pt;}
.xf3_c00418{left:352.572400pt;}
.xee_c00418{left:355.173733pt;}
.xef_c00418{left:356.107067pt;}
.xf0_c00418{left:357.040400pt;}
.xf1_c00418{left:358.040400pt;}
.xf2_c00418{left:358.973733pt;}
.xf4_c00418{left:359.973733pt;}
.xab_c00418{left:375.973733pt;}
.xb0_c00418{left:380.773733pt;}
.xb3_c00418{left:381.707067pt;}
.xb_c00418{left:382.973733pt;}
.xbb_c00418{left:384.907067pt;}
.xae_c00418{left:387.173733pt;}
.xb2_c00418{left:388.107067pt;}
.xb8_c00418{left:391.307067pt;}
.xbc_c00418{left:392.240400pt;}
.xb1_c00418{left:394.173733pt;}
.xb4_c00418{left:395.440400pt;}
.xb6_c00418{left:396.773733pt;}
.xb9_c00418{left:398.040400pt;}
.xac_c00418{left:399.640400pt;}
.xad_c00418{left:400.907067pt;}
.xaf_c00418{left:427.173733pt;}
.xb5_c00418{left:428.107067pt;}
.xb7_c00418{left:429.707067pt;}
.xba_c00418{left:430.973733pt;}
.x4_c00418{left:435.173733pt;}
.xc_c00418{left:436.107067pt;}
.xe5_c00418{left:443.773733pt;}
.xe6_c00418{left:451.773733pt;}
.xe7_c00418{left:453.040400pt;}
.xe9_c00418{left:454.040400pt;}
.xeb_c00418{left:454.973733pt;}
.xec_c00418{left:455.973733pt;}
.xe8_c00418{left:459.440400pt;}
.xea_c00418{left:462.640400pt;}
.x1_c00418{left:481.240400pt;}
.xd8_c00418{left:484.773733pt;}
.xe4_c00418{left:488.573733pt;}
.xd5_c00418{left:491.173733pt;}
.xd7_c00418{left:492.440400pt;}
.xdb_c00418{left:493.373733pt;}
.xde_c00418{left:494.640400pt;}
.xdf_c00418{left:495.640400pt;}
.xdc_c00418{left:499.440400pt;}
.xe2_c00418{left:501.040400pt;}
.xe0_c00418{left:502.373733pt;}
.xd6_c00418{left:507.173733pt;}
.xd9_c00418{left:510.640400pt;}
.x2_c00418{left:514.173733pt;}
.xda_c00418{left:530.507067pt;}
.xdd_c00418{left:531.440400pt;}
.xe3_c00418{left:533.707067pt;}
.xe1_c00418{left:534.640400pt;}
.xd_c00418{left:544.907067pt;}
.xbd_c00418{left:553.573733pt;}
.xbe_c00418{left:554.840400pt;}
.xc2_c00418{left:555.773733pt;}
.xbf_c00418{left:556.773733pt;}
.xc3_c00418{left:558.040400pt;}
.xc4_c00418{left:559.307067pt;}
.xc0_c00418{left:561.573733pt;}
.xc1_c00418{left:562.507067pt;}
.xc7_c00418{left:564.107067pt;}
.xc5_c00418{left:565.040400pt;}
.xc6_c00418{left:566.373733pt;}
.x5_c00418{left:576.240400pt;}
.xc8_c00418{left:583.307067pt;}
.xcb_c00418{left:588.107067pt;}
.xcc_c00418{left:589.040400pt;}
.xce_c00418{left:590.040400pt;}
.xcf_c00418{left:590.973733pt;}
.xd0_c00418{left:591.973733pt;}
.xc9_c00418{left:593.840400pt;}
.xca_c00418{left:594.840400pt;}
.xcd_c00418{left:595.773733pt;}
.xd2_c00418{left:597.373733pt;}
.xd1_c00418{left:598.373733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00419 {
    display:none;
  }
  .loading-indicator_c00419.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00419 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00419 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00419" -> "#page-container .classname_c00419")
 */
.pf_c00419 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00419 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00419 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00419 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00419 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00419 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00419 {overflow:visible;}
  }
}
.c_c00419 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00419 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00419:after { /* webkit #35443 */
  content: '';
}
.t_c00419:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00419 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00419 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00419 { /* info for Javascript */
  display:none;
}
.l_c00419 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00419 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00419 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00419:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00419 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00419.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00419 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00419{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00419;src:url('chunks/assets/font_5adaf2278b84fd06851c5b95.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00419;src:url('chunks/assets/font_9e449575c459587ba1ddf2eb.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00419;src:url('chunks/assets/font_1040c1f6c6b45324eaa2dbe9.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00419;src:url('chunks/assets/font_aa6909f1a4d77c3cc04e99a9.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00419;src:url('chunks/assets/font_c75af887902f72cd73f1329d.woff2')format("woff");}.ff5_c00419{font-family:ff5_c00419;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00419;src:url('chunks/assets/font_4b92f8fe180337c7a43f4a26.woff2')format("woff");}.ff6_c00419{font-family:ff6_c00419;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00419;src:url('chunks/assets/font_2cf861c79a81164a8acae8b9.woff2')format("woff");}.ff7_c00419{font-family:ff7_c00419;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00419;src:url('chunks/assets/font_f9731c54fcc15de9d0d6e588.woff2')format("woff");}.ff8_c00419{font-family:ff8_c00419;line-height:1.435059;font-style:normal;font-weight: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_c00419;src:url('chunks/assets/font_23ece6ba764393953536b9fb.woff2')format("woff");}.ff9_c00419{font-family:ff9_c00419;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00419;src:url('chunks/assets/font_fd2a4323fd23b9b29b8a0e0e.woff2')format("woff");}.ffa_c00419{font-family:ffa_c00419;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00419{transform:matrix(0.000000,5.000000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,5.000000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,5.000000,-0.250000,0.000000,0,0);}
.mbd_c00419{transform:matrix(0.000000,4.737500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,4.737500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,4.737500,-0.250000,0.000000,0,0);}
.mc8_c00419{transform:matrix(0.000000,4.735000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,4.735000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,4.735000,-0.250000,0.000000,0,0);}
.md6_c00419{transform:matrix(0.000000,4.675000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,4.675000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,4.675000,-0.250000,0.000000,0,0);}
.mc2_c00419{transform:matrix(0.000000,4.625000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,4.625000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,4.625000,-0.250000,0.000000,0,0);}
.m82_c00419{transform:matrix(0.000000,4.325000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,4.325000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,4.325000,-0.250000,0.000000,0,0);}
.mb3_c00419{transform:matrix(0.000000,4.262500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,4.262500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,4.262500,-0.250000,0.000000,0,0);}
.m62_c00419{transform:matrix(0.000000,3.835000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.835000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.835000,-0.250000,0.000000,0,0);}
.m8e_c00419{transform:matrix(0.000000,3.785000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.785000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.785000,-0.250000,0.000000,0,0);}
.mb9_c00419{transform:matrix(0.000000,3.775000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.775000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.775000,-0.250000,0.000000,0,0);}
.m5f_c00419{transform:matrix(0.000000,3.772500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.772500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.772500,-0.250000,0.000000,0,0);}
.m8d_c00419{transform:matrix(0.000000,3.710000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.710000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.710000,-0.250000,0.000000,0,0);}
.m15_c00419{transform:matrix(0.000000,3.660000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.660000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.660000,-0.250000,0.000000,0,0);}
.m9a_c00419{transform:matrix(0.000000,3.600000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.600000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.600000,-0.250000,0.000000,0,0);}
.m1d_c00419{transform:matrix(0.000000,3.597500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.597500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.597500,-0.250000,0.000000,0,0);}
.maa_c00419{transform:matrix(0.000000,3.547500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.547500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.547500,-0.250000,0.000000,0,0);}
.m89_c00419{transform:matrix(0.000000,3.537500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.537500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.537500,-0.250000,0.000000,0,0);}
.m8_c00419{transform:matrix(0.000000,3.535000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.535000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.535000,-0.250000,0.000000,0,0);}
.mce_c00419{transform:matrix(0.000000,3.487500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.487500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.487500,-0.250000,0.000000,0,0);}
.m6c_c00419{transform:matrix(0.000000,3.485000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.485000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.485000,-0.250000,0.000000,0,0);}
.mb7_c00419{transform:matrix(0.000000,3.475000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.475000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.475000,-0.250000,0.000000,0,0);}
.mbb_c00419{transform:matrix(0.000000,3.412500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.412500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.412500,-0.250000,0.000000,0,0);}
.mde_c00419{transform:matrix(0.000000,3.350000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.350000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.350000,-0.250000,0.000000,0,0);}
.mea_c00419{transform:matrix(0.000000,3.297500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.297500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.297500,-0.250000,0.000000,0,0);}
.m57_c00419{transform:matrix(0.000000,3.125000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.125000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.125000,-0.250000,0.000000,0,0);}
.m70_c00419{transform:matrix(0.000000,3.062500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.062500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.062500,-0.250000,0.000000,0,0);}
.mdb_c00419{transform:matrix(0.000000,3.047500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.047500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.047500,-0.250000,0.000000,0,0);}
.ma3_c00419{transform:matrix(0.000000,3.000000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,3.000000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,3.000000,-0.250000,0.000000,0,0);}
.mcc_c00419{transform:matrix(0.000000,2.937500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,2.937500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,2.937500,-0.250000,0.000000,0,0);}
.mae_c00419{transform:matrix(0.000000,2.635000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,2.635000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,2.635000,-0.250000,0.000000,0,0);}
.maf_c00419{transform:matrix(0.000000,2.585000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,2.585000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,2.585000,-0.250000,0.000000,0,0);}
.mb6_c00419{transform:matrix(0.000000,2.510000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,2.510000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,2.510000,-0.250000,0.000000,0,0);}
.m8f_c00419{transform:matrix(0.000000,2.335000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,2.335000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,2.335000,-0.250000,0.000000,0,0);}
.m90_c00419{transform:matrix(0.000000,2.162500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,2.162500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,2.162500,-0.250000,0.000000,0,0);}
.mbc_c00419{transform:matrix(0.000000,2.100000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,2.100000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,2.100000,-0.250000,0.000000,0,0);}
.md1_c00419{transform:matrix(0.000000,2.097500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,2.097500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,2.097500,-0.250000,0.000000,0,0);}
.mc9_c00419{transform:matrix(0.000000,2.050000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,2.050000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,2.050000,-0.250000,0.000000,0,0);}
.mbe_c00419{transform:matrix(0.000000,2.037500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,2.037500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,2.037500,-0.250000,0.000000,0,0);}
.m3c_c00419{transform:matrix(0.000000,2.035000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,2.035000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,2.035000,-0.250000,0.000000,0,0);}
.m41_c00419{transform:matrix(0.000000,1.987500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.987500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.987500,-0.250000,0.000000,0,0);}
.m3d_c00419{transform:matrix(0.000000,1.985000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.985000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.985000,-0.250000,0.000000,0,0);}
.m40_c00419{transform:matrix(0.000000,1.975000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.975000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.975000,-0.250000,0.000000,0,0);}
.m3f_c00419{transform:matrix(0.000000,1.972500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.972500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.972500,-0.250000,0.000000,0,0);}
.m36_c00419{transform:matrix(0.000000,1.925000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.925000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.925000,-0.250000,0.000000,0,0);}
.m38_c00419{transform:matrix(0.000000,1.922500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.922500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.922500,-0.250000,0.000000,0,0);}
.m42_c00419{transform:matrix(0.000000,1.912500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.912500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.912500,-0.250000,0.000000,0,0);}
.m3b_c00419{transform:matrix(0.000000,1.910000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.910000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.910000,-0.250000,0.000000,0,0);}
.m3a_c00419{transform:matrix(0.000000,1.860000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.860000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.860000,-0.250000,0.000000,0,0);}
.m7e_c00419{transform:matrix(0.000000,1.850000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.850000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.850000,-0.250000,0.000000,0,0);}
.m67_c00419{transform:matrix(0.000000,1.847500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.847500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.847500,-0.250000,0.000000,0,0);}
.m85_c00419{transform:matrix(0.000000,1.737500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.737500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.737500,-0.250000,0.000000,0,0);}
.m5e_c00419{transform:matrix(0.000000,1.687500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.687500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.687500,-0.250000,0.000000,0,0);}
.md0_c00419{transform:matrix(0.000000,1.675000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.675000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.675000,-0.250000,0.000000,0,0);}
.m5c_c00419{transform:matrix(0.000000,1.672500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.672500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.672500,-0.250000,0.000000,0,0);}
.m7f_c00419{transform:matrix(0.000000,1.625000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.625000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.625000,-0.250000,0.000000,0,0);}
.m7d_c00419{transform:matrix(0.000000,1.612500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.612500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.612500,-0.250000,0.000000,0,0);}
.me4_c00419{transform:matrix(0.000000,1.602500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.602500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.602500,-0.250000,0.000000,0,0);}
.m2d_c00419{transform:matrix(0.000000,1.562500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.562500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.562500,-0.250000,0.000000,0,0);}
.m9e_c00419{transform:matrix(0.000000,1.500000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.500000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.500000,-0.250000,0.000000,0,0);}
.md4_c00419{transform:matrix(0.000000,1.387500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.387500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.387500,-0.250000,0.000000,0,0);}
.mc3_c00419{transform:matrix(0.000000,1.375000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.375000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.375000,-0.250000,0.000000,0,0);}
.mca_c00419{transform:matrix(0.000000,0.887500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.887500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.887500,-0.250000,0.000000,0,0);}
.mcb_c00419{transform:matrix(0.000000,0.842500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.842500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.842500,-0.250000,0.000000,0,0);}
.m9b_c00419{transform:matrix(0.000000,0.835000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.835000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.835000,-0.250000,0.000000,0,0);}
.md3_c00419{transform:matrix(0.000000,0.832500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.832500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.832500,-0.250000,0.000000,0,0);}
.mc4_c00419{transform:matrix(0.000000,0.825000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.825000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.825000,-0.250000,0.000000,0,0);}
.m46_c00419{transform:matrix(0.000000,0.780000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.780000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.780000,-0.250000,0.000000,0,0);}
.ma7_c00419{transform:matrix(0.000000,0.775000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.775000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.775000,-0.250000,0.000000,0,0);}
.ma6_c00419{transform:matrix(0.000000,0.772500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.772500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.772500,-0.250000,0.000000,0,0);}
.m35_c00419{transform:matrix(0.000000,0.762500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.762500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.762500,-0.250000,0.000000,0,0);}
.md2_c00419{transform:matrix(0.000000,0.675000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.675000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.675000,-0.250000,0.000000,0,0);}
.mc1_c00419{transform:matrix(0.000000,0.650000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.650000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.650000,-0.250000,0.000000,0,0);}
.mc6_c00419{transform:matrix(0.000000,0.645000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.645000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.645000,-0.250000,0.000000,0,0);}
.me1_c00419{transform:matrix(0.000000,0.642500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.642500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.642500,-0.250000,0.000000,0,0);}
.mc0_c00419{transform:matrix(0.000000,0.620000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.620000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.620000,-0.250000,0.000000,0,0);}
.me9_c00419{transform:matrix(0.000000,0.575000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.575000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.575000,-0.250000,0.000000,0,0);}
.m73_c00419{transform:matrix(0.000000,0.535000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.535000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.535000,-0.250000,0.000000,0,0);}
.mba_c00419{transform:matrix(0.000000,0.530000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.530000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.530000,-0.250000,0.000000,0,0);}
.me6_c00419{transform:matrix(0.000000,0.527500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.527500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.527500,-0.250000,0.000000,0,0);}
.me2_c00419{transform:matrix(0.000000,0.525000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.525000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.525000,-0.250000,0.000000,0,0);}
.m69_c00419{transform:matrix(0.000000,0.510000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.510000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.510000,-0.250000,0.000000,0,0);}
.mf_c00419{transform:matrix(0.000000,0.500000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.500000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.500000,-0.250000,0.000000,0,0);}
.m4e_c00419{transform:matrix(0.000000,0.495000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.495000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.495000,-0.250000,0.000000,0,0);}
.m18_c00419{transform:matrix(0.000000,0.487500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.487500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.487500,-0.250000,0.000000,0,0);}
.me0_c00419{transform:matrix(0.000000,0.485000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.485000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.485000,-0.250000,0.000000,0,0);}
.m75_c00419{transform:matrix(0.000000,0.482500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.482500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.482500,-0.250000,0.000000,0,0);}
.m6a_c00419{transform:matrix(0.000000,0.472500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.472500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.472500,-0.250000,0.000000,0,0);}
.md9_c00419{transform:matrix(0.000000,0.467500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.467500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.467500,-0.250000,0.000000,0,0);}
.m97_c00419{transform:matrix(0.000000,0.447500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.447500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.447500,-0.250000,0.000000,0,0);}
.me3_c00419{transform:matrix(0.000000,0.442500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.442500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.442500,-0.250000,0.000000,0,0);}
.me7_c00419{transform:matrix(0.000000,0.440000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.440000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.440000,-0.250000,0.000000,0,0);}
.m98_c00419{transform:matrix(0.000000,0.437500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.437500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.437500,-0.250000,0.000000,0,0);}
.ma9_c00419{transform:matrix(0.000000,0.432500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.432500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.432500,-0.250000,0.000000,0,0);}
.m47_c00419{transform:matrix(0.000000,0.430000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.430000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.430000,-0.250000,0.000000,0,0);}
.m19_c00419{transform:matrix(0.000000,0.427500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.427500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.427500,-0.250000,0.000000,0,0);}
.ma8_c00419{transform:matrix(0.000000,0.420000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.420000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.420000,-0.250000,0.000000,0,0);}
.m96_c00419{transform:matrix(0.000000,0.417500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.417500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.417500,-0.250000,0.000000,0,0);}
.m66_c00419{transform:matrix(0.000000,0.410000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.410000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.410000,-0.250000,0.000000,0,0);}
.mb1_c00419{transform:matrix(0.000000,0.402500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.402500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.402500,-0.250000,0.000000,0,0);}
.m5a_c00419{transform:matrix(0.000000,0.397500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.397500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.397500,-0.250000,0.000000,0,0);}
.m76_c00419{transform:matrix(0.000000,0.395000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.395000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.395000,-0.250000,0.000000,0,0);}
.m9f_c00419{transform:matrix(0.000000,0.392500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.392500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.392500,-0.250000,0.000000,0,0);}
.ma2_c00419{transform:matrix(0.000000,0.390000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.390000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.390000,-0.250000,0.000000,0,0);}
.m95_c00419{transform:matrix(0.000000,0.387500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.387500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.387500,-0.250000,0.000000,0,0);}
.m63_c00419{transform:matrix(0.000000,0.382500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.382500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.382500,-0.250000,0.000000,0,0);}
.mdc_c00419{transform:matrix(0.000000,0.377500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.377500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.377500,-0.250000,0.000000,0,0);}
.md_c00419{transform:matrix(0.000000,0.375000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.375000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.375000,-0.250000,0.000000,0,0);}
.mb2_c00419{transform:matrix(0.000000,0.372500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.372500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.372500,-0.250000,0.000000,0,0);}
.m48_c00419{transform:matrix(0.000000,0.370000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.370000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.370000,-0.250000,0.000000,0,0);}
.m9d_c00419{transform:matrix(0.000000,0.367500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.367500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.367500,-0.250000,0.000000,0,0);}
.mc7_c00419{transform:matrix(0.000000,0.365000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.365000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.365000,-0.250000,0.000000,0,0);}
.mbf_c00419{transform:matrix(0.000000,0.362500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.362500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.362500,-0.250000,0.000000,0,0);}
.mb0_c00419{transform:matrix(0.000000,0.360000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.360000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.360000,-0.250000,0.000000,0,0);}
.m31_c00419{transform:matrix(0.000000,0.355000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.355000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.355000,-0.250000,0.000000,0,0);}
.ma4_c00419{transform:matrix(0.000000,0.352500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.352500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.352500,-0.250000,0.000000,0,0);}
.m44_c00419{transform:matrix(0.000000,0.350000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.350000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.350000,-0.250000,0.000000,0,0);}
.m4a_c00419{transform:matrix(0.000000,0.347500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.347500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.347500,-0.250000,0.000000,0,0);}
.mad_c00419{transform:matrix(0.000000,0.345000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.345000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.345000,-0.250000,0.000000,0,0);}
.mda_c00419{transform:matrix(0.000000,0.342500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.342500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.342500,-0.250000,0.000000,0,0);}
.m45_c00419{transform:matrix(0.000000,0.340000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.340000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.340000,-0.250000,0.000000,0,0);}
.mc5_c00419{transform:matrix(0.000000,0.337500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.337500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.337500,-0.250000,0.000000,0,0);}
.m99_c00419{transform:matrix(0.000000,0.332500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.332500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.332500,-0.250000,0.000000,0,0);}
.m4c_c00419{transform:matrix(0.000000,0.330000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.330000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.330000,-0.250000,0.000000,0,0);}
.m7c_c00419{transform:matrix(0.000000,0.327500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.327500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.327500,-0.250000,0.000000,0,0);}
.m3_c00419{transform:matrix(0.000000,0.325000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.325000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.325000,-0.250000,0.000000,0,0);}
.mab_c00419{transform:matrix(0.000000,0.322500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.322500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.322500,-0.250000,0.000000,0,0);}
.m8a_c00419{transform:matrix(0.000000,0.320000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.320000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.320000,-0.250000,0.000000,0,0);}
.m58_c00419{transform:matrix(0.000000,0.317500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.317500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.317500,-0.250000,0.000000,0,0);}
.me5_c00419{transform:matrix(0.000000,0.315000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.315000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.315000,-0.250000,0.000000,0,0);}
.ma1_c00419{transform:matrix(0.000000,0.312500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.312500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.312500,-0.250000,0.000000,0,0);}
.m24_c00419{transform:matrix(0.000000,0.310000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.310000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.310000,-0.250000,0.000000,0,0);}
.m7_c00419{transform:matrix(0.000000,0.307500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.307500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.307500,-0.250000,0.000000,0,0);}
.m6b_c00419{transform:matrix(0.000000,0.305000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.305000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.305000,-0.250000,0.000000,0,0);}
.m93_c00419{transform:matrix(0.000000,0.302500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.302500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.302500,-0.250000,0.000000,0,0);}
.m10_c00419{transform:matrix(0.000000,0.300000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.300000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.300000,-0.250000,0.000000,0,0);}
.m14_c00419{transform:matrix(0.000000,0.295000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.295000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.295000,-0.250000,0.000000,0,0);}
.m0_c00419{transform:matrix(0.000000,0.292500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.292500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.292500,-0.250000,0.000000,0,0);}
.m9c_c00419{transform:matrix(0.000000,0.290000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.290000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.290000,-0.250000,0.000000,0,0);}
.mdd_c00419{transform:matrix(0.000000,0.287500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.287500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.287500,-0.250000,0.000000,0,0);}
.m8b_c00419{transform:matrix(0.000000,0.285000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.285000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.285000,-0.250000,0.000000,0,0);}
.mb_c00419{transform:matrix(0.000000,0.282500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.282500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.282500,-0.250000,0.000000,0,0);}
.m2_c00419{transform:matrix(0.000000,0.280000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.280000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.280000,-0.250000,0.000000,0,0);}
.m5d_c00419{transform:matrix(0.000000,0.277500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.277500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.277500,-0.250000,0.000000,0,0);}
.m88_c00419{transform:matrix(0.000000,0.275000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.275000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.275000,-0.250000,0.000000,0,0);}
.ma5_c00419{transform:matrix(0.000000,0.272500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.272500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.272500,-0.250000,0.000000,0,0);}
.m94_c00419{transform:matrix(0.000000,0.270000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.270000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.270000,-0.250000,0.000000,0,0);}
.m7b_c00419{transform:matrix(0.000000,0.267500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.267500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.267500,-0.250000,0.000000,0,0);}
.m49_c00419{transform:matrix(0.000000,0.265000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.265000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.265000,-0.250000,0.000000,0,0);}
.m91_c00419{transform:matrix(0.000000,0.262500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.262500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.262500,-0.250000,0.000000,0,0);}
.me8_c00419{transform:matrix(0.000000,0.260000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.260000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.260000,-0.250000,0.000000,0,0);}
.m77_c00419{transform:matrix(0.000000,0.257500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.257500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.257500,-0.250000,0.000000,0,0);}
.m32_c00419{transform:matrix(0.000000,0.255000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.255000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.255000,-0.250000,0.000000,0,0);}
.m87_c00419{transform:matrix(0.000000,0.252500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.252500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.252500,-0.250000,0.000000,0,0);}
.m20_c00419{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4d_c00419{transform:matrix(0.000000,0.247500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.247500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.247500,-0.250000,0.000000,0,0);}
.m5b_c00419{transform:matrix(0.000000,0.245000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.245000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.245000,-0.250000,0.000000,0,0);}
.m84_c00419{transform:matrix(0.000000,0.242500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.242500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.242500,-0.250000,0.000000,0,0);}
.m4_c00419{transform:matrix(0.000000,0.240000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.240000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.240000,-0.250000,0.000000,0,0);}
.m7a_c00419{transform:matrix(0.000000,0.237500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.237500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.237500,-0.250000,0.000000,0,0);}
.m79_c00419{transform:matrix(0.000000,0.235000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.235000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.235000,-0.250000,0.000000,0,0);}
.m78_c00419{transform:matrix(0.000000,0.232500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.232500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.232500,-0.250000,0.000000,0,0);}
.m6d_c00419{transform:matrix(0.000000,0.230000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.230000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.230000,-0.250000,0.000000,0,0);}
.m33_c00419{transform:matrix(0.000000,0.227500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.227500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.227500,-0.250000,0.000000,0,0);}
.m80_c00419{transform:matrix(0.000000,0.225000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.225000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.225000,-0.250000,0.000000,0,0);}
.m61_c00419{transform:matrix(0.000000,0.222500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.222500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.222500,-0.250000,0.000000,0,0);}
.m13_c00419{transform:matrix(0.000000,0.220000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.220000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.220000,-0.250000,0.000000,0,0);}
.m22_c00419{transform:matrix(0.000000,0.217500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.217500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.217500,-0.250000,0.000000,0,0);}
.md8_c00419{transform:matrix(0.000000,0.215000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.215000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.215000,-0.250000,0.000000,0,0);}
.m74_c00419{transform:matrix(0.000000,0.212500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.212500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.212500,-0.250000,0.000000,0,0);}
.m9_c00419{transform:matrix(0.000000,0.210000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.210000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.210000,-0.250000,0.000000,0,0);}
.m1e_c00419{transform:matrix(0.000000,0.207500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.207500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.207500,-0.250000,0.000000,0,0);}
.me_c00419{transform:matrix(0.000000,0.205000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.205000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.205000,-0.250000,0.000000,0,0);}
.m1f_c00419{transform:matrix(0.000000,0.202500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.202500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.202500,-0.250000,0.000000,0,0);}
.m39_c00419{transform:matrix(0.000000,0.200000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.200000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.200000,-0.250000,0.000000,0,0);}
.mc_c00419{transform:matrix(0.000000,0.197500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.197500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.197500,-0.250000,0.000000,0,0);}
.m6_c00419{transform:matrix(0.000000,0.195000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.195000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.195000,-0.250000,0.000000,0,0);}
.m11_c00419{transform:matrix(0.000000,0.192500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.192500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.192500,-0.250000,0.000000,0,0);}
.m60_c00419{transform:matrix(0.000000,0.190000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.190000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.190000,-0.250000,0.000000,0,0);}
.m81_c00419{transform:matrix(0.000000,0.187500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.187500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.187500,-0.250000,0.000000,0,0);}
.m6f_c00419{transform:matrix(0.000000,0.185000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.185000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.185000,-0.250000,0.000000,0,0);}
.m6e_c00419{transform:matrix(0.000000,0.182500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.182500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.182500,-0.250000,0.000000,0,0);}
.m2c_c00419{transform:matrix(0.000000,0.180000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.180000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.180000,-0.250000,0.000000,0,0);}
.m17_c00419{transform:matrix(0.000000,0.177500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.177500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.177500,-0.250000,0.000000,0,0);}
.m23_c00419{transform:matrix(0.000000,0.175000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.175000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.175000,-0.250000,0.000000,0,0);}
.mb4_c00419{transform:matrix(0.000000,0.172500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.172500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.172500,-0.250000,0.000000,0,0);}
.m2a_c00419{transform:matrix(0.000000,0.170000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.170000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.170000,-0.250000,0.000000,0,0);}
.m30_c00419{transform:matrix(0.000000,0.167500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.167500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.167500,-0.250000,0.000000,0,0);}
.m25_c00419{transform:matrix(0.000000,0.165000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.165000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.165000,-0.250000,0.000000,0,0);}
.m21_c00419{transform:matrix(0.000000,0.162500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.162500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.162500,-0.250000,0.000000,0,0);}
.m83_c00419{transform:matrix(0.000000,0.160000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.160000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.160000,-0.250000,0.000000,0,0);}
.m59_c00419{transform:matrix(0.000000,0.157500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.157500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.157500,-0.250000,0.000000,0,0);}
.m37_c00419{transform:matrix(0.000000,0.155000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.155000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.155000,-0.250000,0.000000,0,0);}
.m34_c00419{transform:matrix(0.000000,0.152500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.152500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.152500,-0.250000,0.000000,0,0);}
.m5_c00419{transform:matrix(0.000000,0.150000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.150000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.150000,-0.250000,0.000000,0,0);}
.m27_c00419{transform:matrix(0.000000,0.147500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.147500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.147500,-0.250000,0.000000,0,0);}
.m71_c00419{transform:matrix(0.000000,0.145000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.145000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.145000,-0.250000,0.000000,0,0);}
.m1b_c00419{transform:matrix(0.000000,0.142500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.142500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.142500,-0.250000,0.000000,0,0);}
.m4f_c00419{transform:matrix(0.000000,0.140000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.140000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.140000,-0.250000,0.000000,0,0);}
.m28_c00419{transform:matrix(0.000000,0.137500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.137500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.137500,-0.250000,0.000000,0,0);}
.mac_c00419{transform:matrix(0.000000,0.135000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.135000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.135000,-0.250000,0.000000,0,0);}
.m43_c00419{transform:matrix(0.000000,0.132500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.132500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.132500,-0.250000,0.000000,0,0);}
.m72_c00419{transform:matrix(0.000000,0.130000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.130000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.130000,-0.250000,0.000000,0,0);}
.m50_c00419{transform:matrix(0.000000,0.127500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.127500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.127500,-0.250000,0.000000,0,0);}
.m3e_c00419{transform:matrix(0.000000,0.125000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.125000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.125000,-0.250000,0.000000,0,0);}
.m65_c00419{transform:matrix(0.000000,0.122500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.122500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.122500,-0.250000,0.000000,0,0);}
.m12_c00419{transform:matrix(0.000000,0.120000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.120000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.120000,-0.250000,0.000000,0,0);}
.m2e_c00419{transform:matrix(0.000000,0.117500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.117500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.117500,-0.250000,0.000000,0,0);}
.mb5_c00419{transform:matrix(0.000000,0.115000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.115000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.115000,-0.250000,0.000000,0,0);}
.m1a_c00419{transform:matrix(0.000000,0.112500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.112500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.112500,-0.250000,0.000000,0,0);}
.m2f_c00419{transform:matrix(0.000000,0.110000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.110000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.110000,-0.250000,0.000000,0,0);}
.m26_c00419{transform:matrix(0.000000,0.107500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.107500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.107500,-0.250000,0.000000,0,0);}
.mdf_c00419{transform:matrix(0.000000,0.105000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.105000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.105000,-0.250000,0.000000,0,0);}
.m16_c00419{transform:matrix(0.000000,0.102500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.102500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.102500,-0.250000,0.000000,0,0);}
.mcf_c00419{transform:matrix(0.000000,0.100000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.100000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.100000,-0.250000,0.000000,0,0);}
.m8c_c00419{transform:matrix(0.000000,0.097500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.097500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.097500,-0.250000,0.000000,0,0);}
.m68_c00419{transform:matrix(0.000000,0.095000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.095000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.095000,-0.250000,0.000000,0,0);}
.m4b_c00419{transform:matrix(0.000000,0.092500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.092500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.092500,-0.250000,0.000000,0,0);}
.mcd_c00419{transform:matrix(0.000000,0.087500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.087500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.087500,-0.250000,0.000000,0,0);}
.m1c_c00419{transform:matrix(0.000000,0.085000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.085000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.085000,-0.250000,0.000000,0,0);}
.m92_c00419{transform:matrix(0.000000,0.082500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.082500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.082500,-0.250000,0.000000,0,0);}
.m64_c00419{transform:matrix(0.000000,0.077500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.077500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.077500,-0.250000,0.000000,0,0);}
.m2b_c00419{transform:matrix(0.000000,0.075000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.075000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.075000,-0.250000,0.000000,0,0);}
.m29_c00419{transform:matrix(0.000000,0.072500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.072500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.072500,-0.250000,0.000000,0,0);}
.ma_c00419{transform:matrix(0.000000,0.070000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.070000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.070000,-0.250000,0.000000,0,0);}
.m55_c00419{transform:matrix(0.000000,0.067500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.067500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.067500,-0.250000,0.000000,0,0);}
.m86_c00419{transform:matrix(0.000000,0.065000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.065000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.065000,-0.250000,0.000000,0,0);}
.m51_c00419{transform:matrix(0.000000,0.060000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.060000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.060000,-0.250000,0.000000,0,0);}
.md5_c00419{transform:matrix(0.000000,0.055000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.055000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.055000,-0.250000,0.000000,0,0);}
.ma0_c00419{transform:matrix(0.000000,0.052500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.052500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.052500,-0.250000,0.000000,0,0);}
.m54_c00419{transform:matrix(0.000000,0.047500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.047500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.047500,-0.250000,0.000000,0,0);}
.m52_c00419{transform:matrix(0.000000,0.045000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.045000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.045000,-0.250000,0.000000,0,0);}
.m56_c00419{transform:matrix(0.000000,0.042500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.042500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.042500,-0.250000,0.000000,0,0);}
.md7_c00419{transform:matrix(0.000000,0.037500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.037500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.037500,-0.250000,0.000000,0,0);}
.m53_c00419{transform:matrix(0.000000,0.025000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.025000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.025000,-0.250000,0.000000,0,0);}
.mb8_c00419{transform:matrix(0.000000,0.017500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.017500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.017500,-0.250000,0.000000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.v1_c00419{vertical-align:1.206000px;}
.ls1_c00419{letter-spacing:0.000000px;}
.ls0_c00419{letter-spacing:0.030000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00419{word-spacing:-15.120000px;}
.ws1_c00419{word-spacing:0.000000px;}
._0_c00419{width:9.344606px;}
._1_c00419{width:17.200692px;}
.fc0_c00419{color:transparent;}
.fs6_c00419{font-size:30.000000px;}
.fs5_c00419{font-size:36.000000px;}
.fs3_c00419{font-size:42.000000px;}
.fs4_c00419{font-size:48.000000px;}
.fs2_c00419{font-size:54.000000px;}
.fs1_c00419{font-size:60.000000px;}
.fs0_c00419{font-size:66.000000px;}
.fs7_c00419{font-size:96.000000px;}
.fs8_c00419{font-size:102.000000px;}
.y0_c00419{bottom:0.000000px;}
.y74_c00419{bottom:72.462000px;}
.y73_c00419{bottom:72.837000px;}
.y72_c00419{bottom:74.637000px;}
.y71_c00419{bottom:75.387000px;}
.y16d_c00419{bottom:92.637000px;}
.y6f_c00419{bottom:98.787000px;}
.y248_c00419{bottom:100.212000px;}
.y1cf_c00419{bottom:100.887000px;}
.y20e_c00419{bottom:101.262000px;}
.y6e_c00419{bottom:102.012000px;}
.y13b_c00419{bottom:102.387000px;}
.y80_c00419{bottom:102.687000px;}
.y167_c00419{bottom:106.662000px;}
.y155_c00419{bottom:107.412000px;}
.y133_c00419{bottom:107.787000px;}
.y6d_c00419{bottom:108.087000px;}
.yf8_c00419{bottom:109.887000px;}
.y132_c00419{bottom:110.262000px;}
.y1c8_c00419{bottom:112.062000px;}
.y1f8_c00419{bottom:112.437000px;}
.y7f_c00419{bottom:112.812000px;}
.y1c7_c00419{bottom:113.487000px;}
.y166_c00419{bottom:114.612000px;}
.y18d_c00419{bottom:116.787000px;}
.y215_c00419{bottom:117.837000px;}
.y210_c00419{bottom:118.587000px;}
.y107_c00419{bottom:118.887000px;}
.y154_c00419{bottom:119.262000px;}
.ya9_c00419{bottom:119.637000px;}
.y18c_c00419{bottom:120.012000px;}
.ycb_c00419{bottom:120.387000px;}
.y106_c00419{bottom:121.062000px;}
.yca_c00419{bottom:121.812000px;}
.y5e_c00419{bottom:122.187000px;}
.yc9_c00419{bottom:123.987000px;}
.y238_c00419{bottom:124.662000px;}
.y131_c00419{bottom:125.787000px;}
.y1f7_c00419{bottom:126.462000px;}
.y3e_c00419{bottom:126.837000px;}
.y130_c00419{bottom:127.887000px;}
.y1a0_c00419{bottom:128.637000px;}
.y1c6_c00419{bottom:129.687000px;}
.ya8_c00419{bottom:131.487000px;}
.y237_c00419{bottom:131.862000px;}
.y19f_c00419{bottom:132.237000px;}
.y5d_c00419{bottom:133.662000px;}
.y236_c00419{bottom:134.037000px;}
.y235_c00419{bottom:134.787000px;}
.y3d_c00419{bottom:135.462000px;}
.y1c5_c00419{bottom:135.837000px;}
.yf7_c00419{bottom:136.212000px;}
.y19e_c00419{bottom:136.887000px;}
.ya7_c00419{bottom:137.262000px;}
.y3c_c00419{bottom:138.387000px;}
.y5c_c00419{bottom:139.062000px;}
.y247_c00419{bottom:139.812000px;}
.y1f6_c00419{bottom:140.487000px;}
.y1ce_c00419{bottom:141.237000px;}
.yc8_c00419{bottom:141.612000px;}
.yb6_c00419{bottom:141.987000px;}
.y153_c00419{bottom:142.287000px;}
.y3a_c00419{bottom:144.087000px;}
.y3b_c00419{bottom:144.462000px;}
.y1a_c00419{bottom:144.837000px;}
.ye2_c00419{bottom:146.262000px;}
.y19d_c00419{bottom:147.387000px;}
.ye1_c00419{bottom:148.437000px;}
.ya6_c00419{bottom:149.187000px;}
.y39_c00419{bottom:149.487000px;}
.y5b_c00419{bottom:150.987000px;}
.y38_c00419{bottom:151.287000px;}
.y246_c00419{bottom:152.412000px;}
.y19_c00419{bottom:153.462000px;}
.y186_c00419{bottom:154.587000px;}
.ya5_c00419{bottom:154.887000px;}
.y12f_c00419{bottom:155.262000px;}
.y113_c00419{bottom:156.012000px;}
.y5a_c00419{bottom:156.387000px;}
.y37_c00419{bottom:158.487000px;}
.y234_c00419{bottom:159.237000px;}
.y18_c00419{bottom:159.612000px;}
.y245_c00419{bottom:160.662000px;}
.y36_c00419{bottom:161.037000px;}
.y17_c00419{bottom:161.412000px;}
.y16_c00419{bottom:162.087000px;}
.yf6_c00419{bottom:162.837000px;}
.y165_c00419{bottom:163.887000px;}
.ya4_c00419{bottom:165.012000px;}
.y244_c00419{bottom:165.387000px;}
.yf5_c00419{bottom:165.687000px;}
.y20d_c00419{bottom:166.812000px;}
.y233_c00419{bottom:167.862000px;}
.y59_c00419{bottom:168.237000px;}
.y112_c00419{bottom:169.287000px;}
.y243_c00419{bottom:170.037000px;}
.y20c_c00419{bottom:170.412000px;}
.y111_c00419{bottom:170.787000px;}
.y1cd_c00419{bottom:171.462000px;}
.y19c_c00419{bottom:171.837000px;}
.y164_c00419{bottom:172.212000px;}
.y7e_c00419{bottom:172.587000px;}
.y11c_c00419{bottom:172.887000px;}
.y58_c00419{bottom:173.637000px;}
.y12e_c00419{bottom:177.987000px;}
.y7d_c00419{bottom:182.637000px;}
.y15_c00419{bottom:184.062000px;}
.y163_c00419{bottom:184.812000px;}
.y34_c00419{bottom:185.487000px;}
.yc7_c00419{bottom:185.862000px;}
.y35_c00419{bottom:186.237000px;}
.yf4_c00419{bottom:186.987000px;}
.yf3_c00419{bottom:187.662000px;}
.y1c4_c00419{bottom:188.412000px;}
.y19b_c00419{bottom:189.087000px;}
.yc6_c00419{bottom:189.462000px;}
.ya3_c00419{bottom:189.837000px;}
.y162_c00419{bottom:190.212000px;}
.y57_c00419{bottom:190.887000px;}
.ye0_c00419{bottom:192.687000px;}
.y232_c00419{bottom:193.437000px;}
.y33_c00419{bottom:193.812000px;}
.y231_c00419{bottom:194.487000px;}
.y161_c00419{bottom:194.862000px;}
.y32_c00419{bottom:195.612000px;}
.y31_c00419{bottom:195.987000px;}
.ya2_c00419{bottom:201.387000px;}
.y242_c00419{bottom:201.687000px;}
.y56_c00419{bottom:202.812000px;}
.y16c_c00419{bottom:203.187000px;}
.yb1_c00419{bottom:203.862000px;}
.y241_c00419{bottom:204.612000px;}
.yb0_c00419{bottom:205.662000px;}
.y152_c00419{bottom:207.087000px;}
.ya1_c00419{bottom:207.462000px;}
.y55_c00419{bottom:208.212000px;}
.y110_c00419{bottom:208.887000px;}
.y20b_c00419{bottom:210.012000px;}
.ydf_c00419{bottom:210.387000px;}
.y1cc_c00419{bottom:211.812000px;}
.y20a_c00419{bottom:212.187000px;}
.y30_c00419{bottom:212.862000px;}
.y14_c00419{bottom:213.237000px;}
.y209_c00419{bottom:213.612000px;}
.y11b_c00419{bottom:213.987000px;}
.y151_c00419{bottom:214.662000px;}
.y19a_c00419{bottom:215.787000px;}
.y12d_c00419{bottom:216.087000px;}
.y199_c00419{bottom:217.887000px;}
.ya0_c00419{bottom:219.012000px;}
.y54_c00419{bottom:220.062000px;}
.y230_c00419{bottom:220.812000px;}
.y24f_c00419{bottom:221.487000px;}
.y22f_c00419{bottom:222.237000px;}
.y2f_c00419{bottom:222.612000px;}
.y208_c00419{bottom:222.987000px;}
.y1f5_c00419{bottom:223.287000px;}
.y1cb_c00419{bottom:223.662000px;}
.y190_c00419{bottom:224.412000px;}
.y9f_c00419{bottom:224.787000px;}
.y53_c00419{bottom:225.462000px;}
.y7c_c00419{bottom:225.837000px;}
.y11a_c00419{bottom:226.212000px;}
.y7b_c00419{bottom:227.262000px;}
.y2e_c00419{bottom:228.012000px;}
.yc5_c00419{bottom:229.062000px;}
.y7a_c00419{bottom:229.437000px;}
.y2d_c00419{bottom:230.187000px;}
.y13_c00419{bottom:230.862000px;}
.y12_c00419{bottom:231.237000px;}
.y12c_c00419{bottom:232.287000px;}
.yf2_c00419{bottom:232.662000px;}
.yf1_c00419{bottom:234.087000px;}
.yb5_c00419{bottom:234.462000px;}
.y207_c00419{bottom:235.212000px;}
.y9e_c00419{bottom:236.262000px;}
.y2b_c00419{bottom:237.687000px;}
.y2c_c00419{bottom:238.437000px;}
.y214_c00419{bottom:240.237000px;}
.y198_c00419{bottom:241.662000px;}
.y9d_c00419{bottom:242.037000px;}
.y160_c00419{bottom:242.412000px;}
.yd4_c00419{bottom:243.087000px;}
.y52_c00419{bottom:243.462000px;}
.y10f_c00419{bottom:243.837000px;}
.y23a_c00419{bottom:244.887000px;}
.y2a_c00419{bottom:246.012000px;}
.yb4_c00419{bottom:246.387000px;}
.y18f_c00419{bottom:246.687000px;}
.y29_c00419{bottom:247.812000px;}
.y9c_c00419{bottom:253.887000px;}
.y51_c00419{bottom:255.012000px;}
.y24e_c00419{bottom:256.437000px;}
.y1fd_c00419{bottom:257.187000px;}
.y239_c00419{bottom:257.487000px;}
.y1f4_c00419{bottom:257.862000px;}
.y197_c00419{bottom:258.987000px;}
.y9b_c00419{bottom:259.287000px;}
.y150_c00419{bottom:259.662000px;}
.y15f_c00419{bottom:260.037000px;}
.y50_c00419{bottom:260.787000px;}
.y213_c00419{bottom:261.837000px;}
.y22e_c00419{bottom:264.687000px;}
.y12b_c00419{bottom:265.812000px;}
.yf0_c00419{bottom:267.612000px;}
.y22d_c00419{bottom:268.662000px;}
.y9a_c00419{bottom:270.837000px;}
.y12a_c00419{bottom:271.212000px;}
.y27_c00419{bottom:271.887000px;}
.y4f_c00419{bottom:272.262000px;}
.y28_c00419{bottom:272.637000px;}
.y22c_c00419{bottom:274.437000px;}
.y1fc_c00419{bottom:275.187000px;}
.y206_c00419{bottom:275.487000px;}
.y196_c00419{bottom:276.237000px;}
.y99_c00419{bottom:276.987000px;}
.y16b_c00419{bottom:277.287000px;}
.y4e_c00419{bottom:278.037000px;}
.y26_c00419{bottom:280.887000px;}
.y18b_c00419{bottom:281.637000px;}
.y86_c00419{bottom:282.012000px;}
.y25_c00419{bottom:282.387000px;}
.y1c3_c00419{bottom:282.687000px;}
.y129_c00419{bottom:283.437000px;}
.y14f_c00419{bottom:284.187000px;}
.y14e_c00419{bottom:287.037000px;}
.y14d_c00419{bottom:287.412000px;}
.y205_c00419{bottom:287.787000px;}
.y98_c00419{bottom:288.087000px;}
.yc4_c00419{bottom:288.462000px;}
.y204_c00419{bottom:289.212000px;}
.y4d_c00419{bottom:289.587000px;}
.y1d3_c00419{bottom:290.262000px;}
.y14c_c00419{bottom:291.012000px;}
.y185_c00419{bottom:291.687000px;}
.y203_c00419{bottom:292.813500px;}
.y85_c00419{bottom:293.487000px;}
.y195_c00419{bottom:293.862000px;}
.y184_c00419{bottom:294.237000px;}
.y97_c00419{bottom:294.612000px;}
.y14b_c00419{bottom:294.987000px;}
.y4c_c00419{bottom:295.287000px;}
.y128_c00419{bottom:295.662000px;}
.y105_c00419{bottom:296.037000px;}
.y10e_c00419{bottom:296.412000px;}
.y104_c00419{bottom:296.787000px;}
.ye3_c00419{bottom:297.837000px;}
.yc3_c00419{bottom:298.887000px;}
.y15e_c00419{bottom:299.637000px;}
.y11_c00419{bottom:300.387000px;}
.y127_c00419{bottom:300.688500px;}
.y119_c00419{bottom:301.063500px;}
.y103_c00419{bottom:301.813500px;}
.yb3_c00419{bottom:303.237000px;}
.y102_c00419{bottom:303.987000px;}
.y13a_c00419{bottom:304.287000px;}
.y139_c00419{bottom:305.037000px;}
.y202_c00419{bottom:305.787000px;}
.y96_c00419{bottom:306.087000px;}
.y4b_c00419{bottom:307.212000px;}
.y126_c00419{bottom:307.887000px;}
.y22b_c00419{bottom:309.688500px;}
.y1f3_c00419{bottom:310.438500px;}
.y24_c00419{bottom:311.188500px;}
.y125_c00419{bottom:311.487000px;}
.y95_c00419{bottom:311.862000px;}
.y14a_c00419{bottom:312.237000px;}
.y4a_c00419{bottom:312.612000px;}
.y10_c00419{bottom:312.987000px;}
.y10d_c00419{bottom:313.662000px;}
.y23_c00419{bottom:314.412000px;}
.y22_c00419{bottom:314.787000px;}
.yde_c00419{bottom:315.087000px;}
.yb2_c00419{bottom:316.212000px;}
.y79_c00419{bottom:316.587000px;}
.y21_c00419{bottom:316.887000px;}
.y10c_c00419{bottom:319.063500px;}
.y22a_c00419{bottom:322.287000px;}
.y94_c00419{bottom:323.412000px;}
.y10b_c00419{bottom:323.787000px;}
.y49_c00419{bottom:324.837000px;}
.yef_c00419{bottom:325.587000px;}
.yee_c00419{bottom:326.262000px;}
.y1fb_c00419{bottom:327.012000px;}
.y10a_c00419{bottom:327.387000px;}
.y138_c00419{bottom:327.688500px;}
.y194_c00419{bottom:328.813500px;}
.y93_c00419{bottom:329.188500px;}
.y15d_c00419{bottom:329.487000px;}
.y149_c00419{bottom:329.862000px;}
.yd3_c00419{bottom:330.237000px;}
.y48_c00419{bottom:330.612000px;}
.y229_c00419{bottom:332.037000px;}
.yd2_c00419{bottom:332.787000px;}
.y70_c00419{bottom:333.462000px;}
.y84_c00419{bottom:334.212000px;}
.yf_c00419{bottom:334.887000px;}
.y118_c00419{bottom:336.387000px;}
.y1d2_c00419{bottom:337.813500px;}
.y201_c00419{bottom:338.487000px;}
.y6c_c00419{bottom:339.612000px;}
.y1d1_c00419{bottom:339.987000px;}
.y92_c00419{bottom:340.662000px;}
.yed_c00419{bottom:341.787000px;}
.y47_c00419{bottom:342.087000px;}
.y24d_c00419{bottom:343.587000px;}
.yec_c00419{bottom:344.637000px;}
.y1f2_c00419{bottom:345.012000px;}
.y1d7_c00419{bottom:345.387000px;}
.y6b_c00419{bottom:345.688500px;}
.y15c_c00419{bottom:346.813500px;}
.y46_c00419{bottom:347.862000px;}
.y24c_c00419{bottom:348.237000px;}
.y117_c00419{bottom:348.612000px;}
.y1f1_c00419{bottom:350.037000px;}
.y1ca_c00419{bottom:350.412000px;}
.yc2_c00419{bottom:350.787000px;}
.y18a_c00419{bottom:351.087000px;}
.y6a_c00419{bottom:351.837000px;}
.ye_c00419{bottom:352.212000px;}
.y189_c00419{bottom:353.262000px;}
.y1d6_c00419{bottom:353.637000px;}
.yfc_c00419{bottom:354.688500px;}
.yeb_c00419{bottom:355.063500px;}
.y193_c00419{bottom:355.438500px;}
.yc1_c00419{bottom:355.813500px;}
.y16a_c00419{bottom:356.188500px;}
.yc0_c00419{bottom:357.237000px;}
.y91_c00419{bottom:357.987000px;}
.y45_c00419{bottom:359.037000px;}
.y90_c00419{bottom:360.462000px;}
.y137_c00419{bottom:360.837000px;}
.y24b_c00419{bottom:361.212000px;}
.y101_c00419{bottom:362.262000px;}
.y1c9_c00419{bottom:362.637000px;}
.y69_c00419{bottom:363.387000px;}
.y8f_c00419{bottom:363.688500px;}
.y68_c00419{bottom:364.063500px;}
.y15b_c00419{bottom:364.438500px;}
.y148_c00419{bottom:364.813500px;}
.y124_c00419{bottom:365.188500px;}
.y44_c00419{bottom:365.487000px;}
.ybf_c00419{bottom:365.862000px;}
.yfb_c00419{bottom:366.612000px;}
.ybe_c00419{bottom:367.287000px;}
.ybd_c00419{bottom:368.037000px;}
.y147_c00419{bottom:369.837000px;}
.y136_c00419{bottom:370.587000px;}
.y116_c00419{bottom:370.887000px;}
.y100_c00419{bottom:372.012000px;}
.y192_c00419{bottom:372.687000px;}
.ybc_c00419{bottom:373.437000px;}
.y20_c00419{bottom:373.812000px;}
.y83_c00419{bottom:374.487000px;}
.y8e_c00419{bottom:375.237000px;}
.y191_c00419{bottom:375.612000px;}
.y1f_c00419{bottom:376.287000px;}
.yd_c00419{bottom:376.662000px;}
.y43_c00419{bottom:377.037000px;}
.yaf_c00419{bottom:379.212000px;}
.yea_c00419{bottom:379.587000px;}
.y1c2_c00419{bottom:380.262000px;}
.yd1_c00419{bottom:380.637000px;}
.y8d_c00419{bottom:381.012000px;}
.ybb_c00419{bottom:381.387000px;}
.y67_c00419{bottom:381.687000px;}
.y42_c00419{bottom:382.062000px;}
.y135_c00419{bottom:382.812000px;}
.y240_c00419{bottom:383.187000px;}
.ydd_c00419{bottom:384.987000px;}
.yba_c00419{bottom:385.287000px;}
.yae_c00419{bottom:386.037000px;}
.y23f_c00419{bottom:386.787000px;}
.y200_c00419{bottom:388.587000px;}
.ye9_c00419{bottom:391.062000px;}
.yd0_c00419{bottom:392.187000px;}
.y8c_c00419{bottom:392.487000px;}
.y41_c00419{bottom:393.612000px;}
.ydc_c00419{bottom:395.037000px;}
.y23e_c00419{bottom:396.837000px;}
.ydb_c00419{bottom:397.212000px;}
.ycf_c00419{bottom:397.887000px;}
.y8b_c00419{bottom:398.262000px;}
.yb9_c00419{bottom:398.637000px;}
.y169_c00419{bottom:399.012000px;}
.y40_c00419{bottom:399.387000px;}
.yda_c00419{bottom:399.687000px;}
.y1fa_c00419{bottom:400.812000px;}
.y115_c00419{bottom:401.187000px;}
.yb8_c00419{bottom:402.612000px;}
.y82_c00419{bottom:402.987000px;}
.y23d_c00419{bottom:405.087000px;}
.ye8_c00419{bottom:406.887000px;}
.y15a_c00419{bottom:407.262000px;}
.y8a_c00419{bottom:409.437000px;}
.yce_c00419{bottom:409.812000px;}
.y228_c00419{bottom:410.487000px;}
.y78_c00419{bottom:411.612000px;}
.y77_c00419{bottom:413.787000px;}
.y1ff_c00419{bottom:414.462000px;}
.yd9_c00419{bottom:415.212000px;}
.ycd_c00419{bottom:415.587000px;}
.y188_c00419{bottom:415.887000px;}
.y159_c00419{bottom:416.637000px;}
.y123_c00419{bottom:418.062000px;}
.yc_c00419{bottom:420.612000px;}
.y158_c00419{bottom:421.287000px;}
.yfa_c00419{bottom:424.212000px;}
.yb_c00419{bottom:424.887000px;}
.ycc_c00419{bottom:425.262000px;}
.y81_c00419{bottom:425.637000px;}
.y157_c00419{bottom:426.012000px;}
.yd8_c00419{bottom:426.687000px;}
.ya_c00419{bottom:427.062000px;}
.y1f9_c00419{bottom:430.662000px;}
.y23c_c00419{bottom:431.412000px;}
.y1f0_c00419{bottom:431.787000px;}
.y122_c00419{bottom:432.087000px;}
.y89_c00419{bottom:432.462000px;}
.y1c1_c00419{bottom:432.837000px;}
.y121_c00419{bottom:433.212000px;}
.y183_c00419{bottom:433.587000px;}
.y168_c00419{bottom:433.887000px;}
.y146_c00419{bottom:434.262000px;}
.y134_c00419{bottom:435.387000px;}
.y120_c00419{bottom:435.687000px;}
.yf9_c00419{bottom:436.437000px;}
.ye7_c00419{bottom:436.812000px;}
.yad_c00419{bottom:437.487000px;}
.y9_c00419{bottom:437.862000px;}
.y66_c00419{bottom:438.237000px;}
.y1e_c00419{bottom:438.612000px;}
.y3_c00419{bottom:442.587000px;}
.y23b_c00419{bottom:449.037000px;}
.y1fe_c00419{bottom:450.087000px;}
.y24a_c00419{bottom:450.462000px;}
.y1d0_c00419{bottom:451.212000px;}
.y187_c00419{bottom:451.587000px;}
.y212_c00419{bottom:451.887000px;}
.y156_c00419{bottom:452.262000px;}
.y20f_c00419{bottom:452.637000px;}
.y1d5_c00419{bottom:453.012000px;}
.y18e_c00419{bottom:453.687000px;}
.y11f_c00419{bottom:454.437000px;}
.ye6_c00419{bottom:455.187000px;}
.yb7_c00419{bottom:455.862000px;}
.y145_c00419{bottom:456.237000px;}
.y76_c00419{bottom:456.987000px;}
.y249_c00419{bottom:457.287000px;}
.y109_c00419{bottom:457.662000px;}
.yff_c00419{bottom:458.037000px;}
.yac_c00419{bottom:458.412000px;}
.y1d4_c00419{bottom:458.787000px;}
.y8_c00419{bottom:459.087000px;}
.y65_c00419{bottom:459.462000px;}
.y1c0_c00419{bottom:459.837000px;}
.y1d_c00419{bottom:460.212000px;}
.yfe_c00419{bottom:460.587000px;}
.yd7_c00419{bottom:460.887000px;}
.y211_c00419{bottom:461.262000px;}
.y144_c00419{bottom:462.012000px;}
.y1a1_c00419{bottom:462.687000px;}
.y11e_c00419{bottom:463.062000px;}
.y11d_c00419{bottom:463.437000px;}
.y114_c00419{bottom:463.812000px;}
.ye5_c00419{bottom:464.187000px;}
.y88_c00419{bottom:464.487000px;}
.y75_c00419{bottom:464.862000px;}
.y7_c00419{bottom:465.237000px;}
.y1c_c00419{bottom:465.612000px;}
.yfd_c00419{bottom:466.287000px;}
.ye4_c00419{bottom:466.662000px;}
.yaa_c00419{bottom:467.412000px;}
.y87_c00419{bottom:467.787000px;}
.y5f_c00419{bottom:468.087000px;}
.y1b_c00419{bottom:468.462000px;}
.y3f_c00419{bottom:468.837000px;}
.y1e8_c00419{bottom:506.262000px;}
.y1e3_c00419{bottom:507.687000px;}
.y225_c00419{bottom:509.862000px;}
.y222_c00419{bottom:510.612000px;}
.y21c_c00419{bottom:510.987000px;}
.y1eb_c00419{bottom:511.662000px;}
.y17e_c00419{bottom:512.412000px;}
.y226_c00419{bottom:512.787000px;}
.y21e_c00419{bottom:514.212000px;}
.y1e2_c00419{bottom:514.887000px;}
.y1b5_c00419{bottom:515.637000px;}
.y60_c00419{bottom:520.287000px;}
.y221_c00419{bottom:522.087000px;}
.y1ea_c00419{bottom:522.837000px;}
.y1e7_c00419{bottom:523.213500px;}
.y179_c00419{bottom:525.012000px;}
.y180_c00419{bottom:525.387000px;}
.y16e_c00419{bottom:525.687000px;}
.y170_c00419{bottom:528.612000px;}
.y182_c00419{bottom:528.987000px;}
.y21d_c00419{bottom:530.037000px;}
.y1e6_c00419{bottom:530.412000px;}
.y17a_c00419{bottom:531.088500px;}
.y177_c00419{bottom:531.463500px;}
.y1a4_c00419{bottom:533.262000px;}
.y176_c00419{bottom:534.012000px;}
.y1bd_c00419{bottom:535.062000px;}
.y175_c00419{bottom:535.437000px;}
.y1b4_c00419{bottom:535.812000px;}
.y178_c00419{bottom:537.987000px;}
.y17c_c00419{bottom:538.287000px;}
.y224_c00419{bottom:541.213500px;}
.y62_c00419{bottom:541.887000px;}
.y21b_c00419{bottom:542.262000px;}
.y1e1_c00419{bottom:542.637000px;}
.y1ee_c00419{bottom:543.012000px;}
.y143_c00419{bottom:543.687000px;}
.y142_c00419{bottom:544.062000px;}
.y4_c00419{bottom:544.437000px;}
.y5_c00419{bottom:545.187000px;}
.yd6_c00419{bottom:545.487000px;}
.y6_c00419{bottom:545.862000px;}
.y64_c00419{bottom:546.237000px;}
.y63_c00419{bottom:546.612000px;}
.y61_c00419{bottom:546.987000px;}
.y1e5_c00419{bottom:547.287000px;}
.yd5_c00419{bottom:549.088500px;}
.y1d8_c00419{bottom:549.463500px;}
.y1ab_c00419{bottom:549.838500px;}
.y21a_c00419{bottom:550.213500px;}
.y174_c00419{bottom:550.887000px;}
.y181_c00419{bottom:551.262000px;}
.y16f_c00419{bottom:551.637000px;}
.y1a6_c00419{bottom:552.012000px;}
.y1ae_c00419{bottom:552.387000px;}
.y218_c00419{bottom:552.687000px;}
.y1dd_c00419{bottom:553.062000px;}
.y17f_c00419{bottom:553.812000px;}
.y173_c00419{bottom:554.487000px;}
.y1b3_c00419{bottom:555.237000px;}
.y220_c00419{bottom:561.012000px;}
.y219_c00419{bottom:561.687000px;}
.y1e0_c00419{bottom:562.062000px;}
.y1e4_c00419{bottom:562.437000px;}
.yab_c00419{bottom:562.812000px;}
.y1bc_c00419{bottom:563.187000px;}
.y1b2_c00419{bottom:563.487000px;}
.y1aa_c00419{bottom:564.237000px;}
.y1a3_c00419{bottom:564.612000px;}
.y1bb_c00419{bottom:565.287000px;}
.y1ba_c00419{bottom:566.787000px;}
.y17d_c00419{bottom:567.087000px;}
.y1dc_c00419{bottom:568.887000px;}
.y1e9_c00419{bottom:569.262000px;}
.y172_c00419{bottom:570.012000px;}
.y1ad_c00419{bottom:571.062000px;}
.y1a5_c00419{bottom:571.437000px;}
.y1a2_c00419{bottom:571.812000px;}
.y1ef_c00419{bottom:572.862000px;}
.y1bf_c00419{bottom:573.237000px;}
.y1b1_c00419{bottom:574.662000px;}
.y1a9_c00419{bottom:575.037000px;}
.y227_c00419{bottom:580.062000px;}
.y171_c00419{bottom:580.437000px;}
.y17b_c00419{bottom:580.812000px;}
.y1db_c00419{bottom:581.487000px;}
.y1df_c00419{bottom:581.862000px;}
.y217_c00419{bottom:582.237000px;}
.y1b9_c00419{bottom:582.612000px;}
.y1da_c00419{bottom:583.662000px;}
.y1b6_c00419{bottom:589.812000px;}
.y223_c00419{bottom:590.487000px;}
.y1ac_c00419{bottom:591.237000px;}
.y21f_c00419{bottom:591.612000px;}
.y1d9_c00419{bottom:591.987000px;}
.y1de_c00419{bottom:592.287000px;}
.y216_c00419{bottom:592.662000px;}
.y1b8_c00419{bottom:593.412000px;}
.y1be_c00419{bottom:601.662000px;}
.y1b0_c00419{bottom:602.412000px;}
.y1a8_c00419{bottom:603.462000px;}
.y1b7_c00419{bottom:612.837000px;}
.y1af_c00419{bottom:613.587000px;}
.y1a7_c00419{bottom:614.262000px;}
.y2_c00419{bottom:617.187000px;}
.y140_c00419{bottom:618.987000px;}
.y13e_c00419{bottom:619.662000px;}
.y13f_c00419{bottom:620.037000px;}
.y13d_c00419{bottom:621.462000px;}
.y13c_c00419{bottom:621.837000px;}
.y1ed_c00419{bottom:632.637000px;}
.y108_c00419{bottom:634.437000px;}
.y1ec_c00419{bottom:638.788500px;}
.y141_c00419{bottom:640.887000px;}
.y1_c00419{bottom:646.288500px;}
.hb_c00419{height:29.443359px;}
.hd_c00419{height:31.289062px;}
.hc_c00419{height:32.010000px;}
.ha_c00419{height:35.332031px;}
.he_c00419{height:36.281250px;}
.h7_c00419{height:37.546875px;}
.h5_c00419{height:42.328125px;}
.h11_c00419{height:43.722656px;}
.hf_c00419{height:43.804688px;}
.h9_c00419{height:47.109375px;}
.h10_c00419{height:50.018555px;}
.h6_c00419{height:50.062500px;}
.h14_c00419{height:55.503491px;}
.h4_c00419{height:56.320312px;}
.h13_c00419{height:57.618000px;}
.h3_c00419{height:58.886719px;}
.h8_c00419{height:60.468750px;}
.h2_c00419{height:64.775391px;}
.h12_c00419{height:100.125000px;}
.h15_c00419{height:106.382812px;}
.h0_c00419{height:731.977200px;}
.h1_c00419{height:732.000000px;}
.w0_c00419{width:1174.500000px;}
.x0_c00419{left:0.000000px;}
.xa5_c00419{left:95.250000px;}
.xb0_c00419{left:96.673500px;}
.xaf_c00419{left:103.500000px;}
.xa4_c00419{left:104.625000px;}
.xae_c00419{left:105.673500px;}
.xa3_c00419{left:108.523500px;}
.xa1_c00419{left:112.125000px;}
.xa2_c00419{left:113.923500px;}
.xa0_c00419{left:120.073500px;}
.xad_c00419{left:121.875000px;}
.x9f_c00419{left:128.023500px;}
.xa9_c00419{left:134.773500px;}
.xaa_c00419{left:135.898500px;}
.xac_c00419{left:136.948500px;}
.xab_c00419{left:138.448500px;}
.x9e_c00419{left:139.500000px;}
.x9c_c00419{left:147.000000px;}
.x9d_c00419{left:149.923500px;}
.x9b_c00419{left:154.648500px;}
.xa8_c00419{left:160.048500px;}
.xa7_c00419{left:168.298500px;}
.xa6_c00419{left:169.348500px;}
.x8b_c00419{left:180.523500px;}
.x8e_c00419{left:193.125000px;}
.x90_c00419{left:199.948500px;}
.x99_c00419{left:202.198500px;}
.x9a_c00419{left:203.250000px;}
.x8d_c00419{left:211.125000px;}
.x8f_c00419{left:214.423500px;}
.x98_c00419{left:217.648500px;}
.x8a_c00419{left:222.973500px;}
.x97_c00419{left:225.898500px;}
.x89_c00419{left:229.125000px;}
.x96_c00419{left:233.098500px;}
.x95_c00419{left:234.148500px;}
.x94_c00419{left:235.198500px;}
.x88_c00419{left:242.098500px;}
.x8c_c00419{left:248.548500px;}
.x93_c00419{left:257.923500px;}
.x87_c00419{left:259.048500px;}
.x86_c00419{left:264.375000px;}
.x91_c00419{left:265.500000px;}
.x92_c00419{left:266.625000px;}
.x85_c00419{left:292.875000px;}
.x7d_c00419{left:293.923500px;}
.x84_c00419{left:298.650000px;}
.x83_c00419{left:299.698500px;}
.x82_c00419{left:300.750000px;}
.x7c_c00419{left:308.698500px;}
.x81_c00419{left:314.473500px;}
.x7b_c00419{left:317.698500px;}
.x7a_c00419{left:319.500000px;}
.x80_c00419{left:331.348500px;}
.x7f_c00419{left:332.400000px;}
.x79_c00419{left:336.448500px;}
.x78_c00419{left:349.723500px;}
.x77_c00419{left:352.650000px;}
.x76_c00419{left:356.250000px;}
.x75_c00419{left:362.698500px;}
.x74_c00419{left:364.875000px;}
.x7e_c00419{left:365.923500px;}
.x6e_c00419{left:381.073500px;}
.x73_c00419{left:382.125000px;}
.x6d_c00419{left:390.448500px;}
.x72_c00419{left:396.900000px;}
.x56_c00419{left:398.025000px;}
.x70_c00419{left:412.723500px;}
.x6c_c00419{left:413.848500px;}
.x71_c00419{left:421.348500px;}
.x6b_c00419{left:429.598500px;}
.x6a_c00419{left:440.398500px;}
.x6f_c00419{left:445.500000px;}
.x55_c00419{left:448.348500px;}
.x69_c00419{left:456.298500px;}
.x68_c00419{left:462.000000px;}
.x54_c00419{left:464.548500px;}
.x67_c00419{left:466.348500px;}
.x66_c00419{left:480.073500px;}
.x53_c00419{left:481.500000px;}
.x65_c00419{left:491.250000px;}
.x64_c00419{left:494.848500px;}
.x63_c00419{left:495.898500px;}
.x52_c00419{left:496.948500px;}
.x5b_c00419{left:502.798500px;}
.x5a_c00419{left:510.598500px;}
.x51_c00419{left:514.948500px;}
.x59_c00419{left:518.625000px;}
.x60_c00419{left:524.323500px;}
.x61_c00419{left:525.448500px;}
.x62_c00419{left:526.500000px;}
.x50_c00419{left:528.298500px;}
.x58_c00419{left:529.423500px;}
.x57_c00419{left:538.048500px;}
.x5f_c00419{left:551.698500px;}
.x5c_c00419{left:559.273500px;}
.x5d_c00419{left:560.323500px;}
.x5e_c00419{left:561.448500px;}
.x4e_c00419{left:592.723500px;}
.x4f_c00419{left:593.773500px;}
.x4d_c00419{left:608.923500px;}
.x44_c00419{left:610.048500px;}
.x4c_c00419{left:615.823500px;}
.x43_c00419{left:620.473500px;}
.x4b_c00419{left:625.500000px;}
.x42_c00419{left:632.023500px;}
.x4a_c00419{left:640.273500px;}
.x47_c00419{left:642.750000px;}
.x49_c00419{left:649.948500px;}
.x48_c00419{left:652.125000px;}
.x45_c00419{left:658.273500px;}
.x46_c00419{left:659.323500px;}
.x41_c00419{left:665.473500px;}
.x40_c00419{left:691.423500px;}
.x37_c00419{left:693.223500px;}
.x36_c00419{left:701.473500px;}
.x3f_c00419{left:707.173500px;}
.x35_c00419{left:709.798500px;}
.x3e_c00419{left:714.825000px;}
.x3d_c00419{left:723.450000px;}
.x34_c00419{left:726.298500px;}
.x33_c00419{left:734.923500px;}
.x3c_c00419{left:738.523500px;}
.x3b_c00419{left:748.950000px;}
.x39_c00419{left:750.375000px;}
.x3a_c00419{left:757.273500px;}
.x38_c00419{left:760.875000px;}
.x2b_c00419{left:788.625000px;}
.x32_c00419{left:789.973500px;}
.x2a_c00419{left:797.175000px;}
.x29_c00419{left:805.875000px;}
.x21_c00419{left:806.925000px;}
.x30_c00419{left:820.573500px;}
.x31_c00419{left:821.698500px;}
.x28_c00419{left:823.800000px;}
.x20_c00419{left:832.125000px;}
.x2f_c00419{left:833.250000px;}
.x1f_c00419{left:838.650000px;}
.x2e_c00419{left:842.925000px;}
.x2c_c00419{left:845.098500px;}
.x1e_c00419{left:846.525000px;}
.x2d_c00419{left:850.198500px;}
.x1d_c00419{left:851.925000px;}
.x27_c00419{left:867.073500px;}
.x25_c00419{left:883.573500px;}
.x26_c00419{left:884.698500px;}
.x17_c00419{left:888.000000px;}
.x16_c00419{left:904.125000px;}
.x23_c00419{left:906.973500px;}
.x24_c00419{left:908.098500px;}
.x22_c00419{left:914.925000px;}
.x15_c00419{left:916.723500px;}
.x14_c00419{left:923.550000px;}
.x1c_c00419{left:926.473500px;}
.x1b_c00419{left:929.323500px;}
.x1a_c00419{left:939.750000px;}
.x18_c00419{left:944.473500px;}
.x19_c00419{left:947.698500px;}
.x13_c00419{left:953.848500px;}
.x12_c00419{left:964.275000px;}
.x11_c00419{left:971.775000px;}
.xf_c00419{left:980.473500px;}
.x10_c00419{left:981.525000px;}
.x7_c00419{left:987.300000px;}
.x6_c00419{left:994.875000px;}
.xe_c00419{left:1001.698500px;}
.x5_c00419{left:1002.750000px;}
.xd_c00419{left:1004.550000px;}
.xc_c00419{left:1005.675000px;}
.x4_c00419{left:1013.925000px;}
.xb_c00419{left:1026.223500px;}
.x8_c00419{left:1041.300000px;}
.x9_c00419{left:1042.348500px;}
.xa_c00419{left:1043.473500px;}
.x1_c00419{left:1078.425000px;}
.x3_c00419{left:1085.925000px;}
.x2_c00419{left:1092.300000px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.v1_c00419{vertical-align:1.072000pt;}
.ls1_c00419{letter-spacing:0.000000pt;}
.ls0_c00419{letter-spacing:0.026667pt;}
.ws0_c00419{word-spacing:-13.440000pt;}
.ws1_c00419{word-spacing:0.000000pt;}
._0_c00419{width:8.306316pt;}
._1_c00419{width:15.289504pt;}
.fs6_c00419{font-size:26.666667pt;}
.fs5_c00419{font-size:32.000000pt;}
.fs3_c00419{font-size:37.333333pt;}
.fs4_c00419{font-size:42.666667pt;}
.fs2_c00419{font-size:48.000000pt;}
.fs1_c00419{font-size:53.333333pt;}
.fs0_c00419{font-size:58.666667pt;}
.fs7_c00419{font-size:85.333333pt;}
.fs8_c00419{font-size:90.666667pt;}
.y0_c00419{bottom:0.000000pt;}
.y74_c00419{bottom:64.410667pt;}
.y73_c00419{bottom:64.744000pt;}
.y72_c00419{bottom:66.344000pt;}
.y71_c00419{bottom:67.010667pt;}
.y16d_c00419{bottom:82.344000pt;}
.y6f_c00419{bottom:87.810667pt;}
.y248_c00419{bottom:89.077333pt;}
.y1cf_c00419{bottom:89.677333pt;}
.y20e_c00419{bottom:90.010667pt;}
.y6e_c00419{bottom:90.677333pt;}
.y13b_c00419{bottom:91.010667pt;}
.y80_c00419{bottom:91.277333pt;}
.y167_c00419{bottom:94.810667pt;}
.y155_c00419{bottom:95.477333pt;}
.y133_c00419{bottom:95.810667pt;}
.y6d_c00419{bottom:96.077333pt;}
.yf8_c00419{bottom:97.677333pt;}
.y132_c00419{bottom:98.010667pt;}
.y1c8_c00419{bottom:99.610667pt;}
.y1f8_c00419{bottom:99.944000pt;}
.y7f_c00419{bottom:100.277333pt;}
.y1c7_c00419{bottom:100.877333pt;}
.y166_c00419{bottom:101.877333pt;}
.y18d_c00419{bottom:103.810667pt;}
.y215_c00419{bottom:104.744000pt;}
.y210_c00419{bottom:105.410667pt;}
.y107_c00419{bottom:105.677333pt;}
.y154_c00419{bottom:106.010667pt;}
.ya9_c00419{bottom:106.344000pt;}
.y18c_c00419{bottom:106.677333pt;}
.ycb_c00419{bottom:107.010667pt;}
.y106_c00419{bottom:107.610667pt;}
.yca_c00419{bottom:108.277333pt;}
.y5e_c00419{bottom:108.610667pt;}
.yc9_c00419{bottom:110.210667pt;}
.y238_c00419{bottom:110.810667pt;}
.y131_c00419{bottom:111.810667pt;}
.y1f7_c00419{bottom:112.410667pt;}
.y3e_c00419{bottom:112.744000pt;}
.y130_c00419{bottom:113.677333pt;}
.y1a0_c00419{bottom:114.344000pt;}
.y1c6_c00419{bottom:115.277333pt;}
.ya8_c00419{bottom:116.877333pt;}
.y237_c00419{bottom:117.210667pt;}
.y19f_c00419{bottom:117.544000pt;}
.y5d_c00419{bottom:118.810667pt;}
.y236_c00419{bottom:119.144000pt;}
.y235_c00419{bottom:119.810667pt;}
.y3d_c00419{bottom:120.410667pt;}
.y1c5_c00419{bottom:120.744000pt;}
.yf7_c00419{bottom:121.077333pt;}
.y19e_c00419{bottom:121.677333pt;}
.ya7_c00419{bottom:122.010667pt;}
.y3c_c00419{bottom:123.010667pt;}
.y5c_c00419{bottom:123.610667pt;}
.y247_c00419{bottom:124.277333pt;}
.y1f6_c00419{bottom:124.877333pt;}
.y1ce_c00419{bottom:125.544000pt;}
.yc8_c00419{bottom:125.877333pt;}
.yb6_c00419{bottom:126.210667pt;}
.y153_c00419{bottom:126.477333pt;}
.y3a_c00419{bottom:128.077333pt;}
.y3b_c00419{bottom:128.410667pt;}
.y1a_c00419{bottom:128.744000pt;}
.ye2_c00419{bottom:130.010667pt;}
.y19d_c00419{bottom:131.010667pt;}
.ye1_c00419{bottom:131.944000pt;}
.ya6_c00419{bottom:132.610667pt;}
.y39_c00419{bottom:132.877333pt;}
.y5b_c00419{bottom:134.210667pt;}
.y38_c00419{bottom:134.477333pt;}
.y246_c00419{bottom:135.477333pt;}
.y19_c00419{bottom:136.410667pt;}
.y186_c00419{bottom:137.410667pt;}
.ya5_c00419{bottom:137.677333pt;}
.y12f_c00419{bottom:138.010667pt;}
.y113_c00419{bottom:138.677333pt;}
.y5a_c00419{bottom:139.010667pt;}
.y37_c00419{bottom:140.877333pt;}
.y234_c00419{bottom:141.544000pt;}
.y18_c00419{bottom:141.877333pt;}
.y245_c00419{bottom:142.810667pt;}
.y36_c00419{bottom:143.144000pt;}
.y17_c00419{bottom:143.477333pt;}
.y16_c00419{bottom:144.077333pt;}
.yf6_c00419{bottom:144.744000pt;}
.y165_c00419{bottom:145.677333pt;}
.ya4_c00419{bottom:146.677333pt;}
.y244_c00419{bottom:147.010667pt;}
.yf5_c00419{bottom:147.277333pt;}
.y20d_c00419{bottom:148.277333pt;}
.y233_c00419{bottom:149.210667pt;}
.y59_c00419{bottom:149.544000pt;}
.y112_c00419{bottom:150.477333pt;}
.y243_c00419{bottom:151.144000pt;}
.y20c_c00419{bottom:151.477333pt;}
.y111_c00419{bottom:151.810667pt;}
.y1cd_c00419{bottom:152.410667pt;}
.y19c_c00419{bottom:152.744000pt;}
.y164_c00419{bottom:153.077333pt;}
.y7e_c00419{bottom:153.410667pt;}
.y11c_c00419{bottom:153.677333pt;}
.y58_c00419{bottom:154.344000pt;}
.y12e_c00419{bottom:158.210667pt;}
.y7d_c00419{bottom:162.344000pt;}
.y15_c00419{bottom:163.610667pt;}
.y163_c00419{bottom:164.277333pt;}
.y34_c00419{bottom:164.877333pt;}
.yc7_c00419{bottom:165.210667pt;}
.y35_c00419{bottom:165.544000pt;}
.yf4_c00419{bottom:166.210667pt;}
.yf3_c00419{bottom:166.810667pt;}
.y1c4_c00419{bottom:167.477333pt;}
.y19b_c00419{bottom:168.077333pt;}
.yc6_c00419{bottom:168.410667pt;}
.ya3_c00419{bottom:168.744000pt;}
.y162_c00419{bottom:169.077333pt;}
.y57_c00419{bottom:169.677333pt;}
.ye0_c00419{bottom:171.277333pt;}
.y232_c00419{bottom:171.944000pt;}
.y33_c00419{bottom:172.277333pt;}
.y231_c00419{bottom:172.877333pt;}
.y161_c00419{bottom:173.210667pt;}
.y32_c00419{bottom:173.877333pt;}
.y31_c00419{bottom:174.210667pt;}
.ya2_c00419{bottom:179.010667pt;}
.y242_c00419{bottom:179.277333pt;}
.y56_c00419{bottom:180.277333pt;}
.y16c_c00419{bottom:180.610667pt;}
.yb1_c00419{bottom:181.210667pt;}
.y241_c00419{bottom:181.877333pt;}
.yb0_c00419{bottom:182.810667pt;}
.y152_c00419{bottom:184.077333pt;}
.ya1_c00419{bottom:184.410667pt;}
.y55_c00419{bottom:185.077333pt;}
.y110_c00419{bottom:185.677333pt;}
.y20b_c00419{bottom:186.677333pt;}
.ydf_c00419{bottom:187.010667pt;}
.y1cc_c00419{bottom:188.277333pt;}
.y20a_c00419{bottom:188.610667pt;}
.y30_c00419{bottom:189.210667pt;}
.y14_c00419{bottom:189.544000pt;}
.y209_c00419{bottom:189.877333pt;}
.y11b_c00419{bottom:190.210667pt;}
.y151_c00419{bottom:190.810667pt;}
.y19a_c00419{bottom:191.810667pt;}
.y12d_c00419{bottom:192.077333pt;}
.y199_c00419{bottom:193.677333pt;}
.ya0_c00419{bottom:194.677333pt;}
.y54_c00419{bottom:195.610667pt;}
.y230_c00419{bottom:196.277333pt;}
.y24f_c00419{bottom:196.877333pt;}
.y22f_c00419{bottom:197.544000pt;}
.y2f_c00419{bottom:197.877333pt;}
.y208_c00419{bottom:198.210667pt;}
.y1f5_c00419{bottom:198.477333pt;}
.y1cb_c00419{bottom:198.810667pt;}
.y190_c00419{bottom:199.477333pt;}
.y9f_c00419{bottom:199.810667pt;}
.y53_c00419{bottom:200.410667pt;}
.y7c_c00419{bottom:200.744000pt;}
.y11a_c00419{bottom:201.077333pt;}
.y7b_c00419{bottom:202.010667pt;}
.y2e_c00419{bottom:202.677333pt;}
.yc5_c00419{bottom:203.610667pt;}
.y7a_c00419{bottom:203.944000pt;}
.y2d_c00419{bottom:204.610667pt;}
.y13_c00419{bottom:205.210667pt;}
.y12_c00419{bottom:205.544000pt;}
.y12c_c00419{bottom:206.477333pt;}
.yf2_c00419{bottom:206.810667pt;}
.yf1_c00419{bottom:208.077333pt;}
.yb5_c00419{bottom:208.410667pt;}
.y207_c00419{bottom:209.077333pt;}
.y9e_c00419{bottom:210.010667pt;}
.y2b_c00419{bottom:211.277333pt;}
.y2c_c00419{bottom:211.944000pt;}
.y214_c00419{bottom:213.544000pt;}
.y198_c00419{bottom:214.810667pt;}
.y9d_c00419{bottom:215.144000pt;}
.y160_c00419{bottom:215.477333pt;}
.yd4_c00419{bottom:216.077333pt;}
.y52_c00419{bottom:216.410667pt;}
.y10f_c00419{bottom:216.744000pt;}
.y23a_c00419{bottom:217.677333pt;}
.y2a_c00419{bottom:218.677333pt;}
.yb4_c00419{bottom:219.010667pt;}
.y18f_c00419{bottom:219.277333pt;}
.y29_c00419{bottom:220.277333pt;}
.y9c_c00419{bottom:225.677333pt;}
.y51_c00419{bottom:226.677333pt;}
.y24e_c00419{bottom:227.944000pt;}
.y1fd_c00419{bottom:228.610667pt;}
.y239_c00419{bottom:228.877333pt;}
.y1f4_c00419{bottom:229.210667pt;}
.y197_c00419{bottom:230.210667pt;}
.y9b_c00419{bottom:230.477333pt;}
.y150_c00419{bottom:230.810667pt;}
.y15f_c00419{bottom:231.144000pt;}
.y50_c00419{bottom:231.810667pt;}
.y213_c00419{bottom:232.744000pt;}
.y22e_c00419{bottom:235.277333pt;}
.y12b_c00419{bottom:236.277333pt;}
.yf0_c00419{bottom:237.877333pt;}
.y22d_c00419{bottom:238.810667pt;}
.y9a_c00419{bottom:240.744000pt;}
.y12a_c00419{bottom:241.077333pt;}
.y27_c00419{bottom:241.677333pt;}
.y4f_c00419{bottom:242.010667pt;}
.y28_c00419{bottom:242.344000pt;}
.y22c_c00419{bottom:243.944000pt;}
.y1fc_c00419{bottom:244.610667pt;}
.y206_c00419{bottom:244.877333pt;}
.y196_c00419{bottom:245.544000pt;}
.y99_c00419{bottom:246.210667pt;}
.y16b_c00419{bottom:246.477333pt;}
.y4e_c00419{bottom:247.144000pt;}
.y26_c00419{bottom:249.677333pt;}
.y18b_c00419{bottom:250.344000pt;}
.y86_c00419{bottom:250.677333pt;}
.y25_c00419{bottom:251.010667pt;}
.y1c3_c00419{bottom:251.277333pt;}
.y129_c00419{bottom:251.944000pt;}
.y14f_c00419{bottom:252.610667pt;}
.y14e_c00419{bottom:255.144000pt;}
.y14d_c00419{bottom:255.477333pt;}
.y205_c00419{bottom:255.810667pt;}
.y98_c00419{bottom:256.077333pt;}
.yc4_c00419{bottom:256.410667pt;}
.y204_c00419{bottom:257.077333pt;}
.y4d_c00419{bottom:257.410667pt;}
.y1d3_c00419{bottom:258.010667pt;}
.y14c_c00419{bottom:258.677333pt;}
.y185_c00419{bottom:259.277333pt;}
.y203_c00419{bottom:260.278667pt;}
.y85_c00419{bottom:260.877333pt;}
.y195_c00419{bottom:261.210667pt;}
.y184_c00419{bottom:261.544000pt;}
.y97_c00419{bottom:261.877333pt;}
.y14b_c00419{bottom:262.210667pt;}
.y4c_c00419{bottom:262.477333pt;}
.y128_c00419{bottom:262.810667pt;}
.y105_c00419{bottom:263.144000pt;}
.y10e_c00419{bottom:263.477333pt;}
.y104_c00419{bottom:263.810667pt;}
.ye3_c00419{bottom:264.744000pt;}
.yc3_c00419{bottom:265.677333pt;}
.y15e_c00419{bottom:266.344000pt;}
.y11_c00419{bottom:267.010667pt;}
.y127_c00419{bottom:267.278667pt;}
.y119_c00419{bottom:267.612000pt;}
.y103_c00419{bottom:268.278667pt;}
.yb3_c00419{bottom:269.544000pt;}
.y102_c00419{bottom:270.210667pt;}
.y13a_c00419{bottom:270.477333pt;}
.y139_c00419{bottom:271.144000pt;}
.y202_c00419{bottom:271.810667pt;}
.y96_c00419{bottom:272.077333pt;}
.y4b_c00419{bottom:273.077333pt;}
.y126_c00419{bottom:273.677333pt;}
.y22b_c00419{bottom:275.278667pt;}
.y1f3_c00419{bottom:275.945333pt;}
.y24_c00419{bottom:276.612000pt;}
.y125_c00419{bottom:276.877333pt;}
.y95_c00419{bottom:277.210667pt;}
.y14a_c00419{bottom:277.544000pt;}
.y4a_c00419{bottom:277.877333pt;}
.y10_c00419{bottom:278.210667pt;}
.y10d_c00419{bottom:278.810667pt;}
.y23_c00419{bottom:279.477333pt;}
.y22_c00419{bottom:279.810667pt;}
.yde_c00419{bottom:280.077333pt;}
.yb2_c00419{bottom:281.077333pt;}
.y79_c00419{bottom:281.410667pt;}
.y21_c00419{bottom:281.677333pt;}
.y10c_c00419{bottom:283.612000pt;}
.y22a_c00419{bottom:286.477333pt;}
.y94_c00419{bottom:287.477333pt;}
.y10b_c00419{bottom:287.810667pt;}
.y49_c00419{bottom:288.744000pt;}
.yef_c00419{bottom:289.410667pt;}
.yee_c00419{bottom:290.010667pt;}
.y1fb_c00419{bottom:290.677333pt;}
.y10a_c00419{bottom:291.010667pt;}
.y138_c00419{bottom:291.278667pt;}
.y194_c00419{bottom:292.278667pt;}
.y93_c00419{bottom:292.612000pt;}
.y15d_c00419{bottom:292.877333pt;}
.y149_c00419{bottom:293.210667pt;}
.yd3_c00419{bottom:293.544000pt;}
.y48_c00419{bottom:293.877333pt;}
.y229_c00419{bottom:295.144000pt;}
.yd2_c00419{bottom:295.810667pt;}
.y70_c00419{bottom:296.410667pt;}
.y84_c00419{bottom:297.077333pt;}
.yf_c00419{bottom:297.677333pt;}
.y118_c00419{bottom:299.010667pt;}
.y1d2_c00419{bottom:300.278667pt;}
.y201_c00419{bottom:300.877333pt;}
.y6c_c00419{bottom:301.877333pt;}
.y1d1_c00419{bottom:302.210667pt;}
.y92_c00419{bottom:302.810667pt;}
.yed_c00419{bottom:303.810667pt;}
.y47_c00419{bottom:304.077333pt;}
.y24d_c00419{bottom:305.410667pt;}
.yec_c00419{bottom:306.344000pt;}
.y1f2_c00419{bottom:306.677333pt;}
.y1d7_c00419{bottom:307.010667pt;}
.y6b_c00419{bottom:307.278667pt;}
.y15c_c00419{bottom:308.278667pt;}
.y46_c00419{bottom:309.210667pt;}
.y24c_c00419{bottom:309.544000pt;}
.y117_c00419{bottom:309.877333pt;}
.y1f1_c00419{bottom:311.144000pt;}
.y1ca_c00419{bottom:311.477333pt;}
.yc2_c00419{bottom:311.810667pt;}
.y18a_c00419{bottom:312.077333pt;}
.y6a_c00419{bottom:312.744000pt;}
.ye_c00419{bottom:313.077333pt;}
.y189_c00419{bottom:314.010667pt;}
.y1d6_c00419{bottom:314.344000pt;}
.yfc_c00419{bottom:315.278667pt;}
.yeb_c00419{bottom:315.612000pt;}
.y193_c00419{bottom:315.945333pt;}
.yc1_c00419{bottom:316.278667pt;}
.y16a_c00419{bottom:316.612000pt;}
.yc0_c00419{bottom:317.544000pt;}
.y91_c00419{bottom:318.210667pt;}
.y45_c00419{bottom:319.144000pt;}
.y90_c00419{bottom:320.410667pt;}
.y137_c00419{bottom:320.744000pt;}
.y24b_c00419{bottom:321.077333pt;}
.y101_c00419{bottom:322.010667pt;}
.y1c9_c00419{bottom:322.344000pt;}
.y69_c00419{bottom:323.010667pt;}
.y8f_c00419{bottom:323.278667pt;}
.y68_c00419{bottom:323.612000pt;}
.y15b_c00419{bottom:323.945333pt;}
.y148_c00419{bottom:324.278667pt;}
.y124_c00419{bottom:324.612000pt;}
.y44_c00419{bottom:324.877333pt;}
.ybf_c00419{bottom:325.210667pt;}
.yfb_c00419{bottom:325.877333pt;}
.ybe_c00419{bottom:326.477333pt;}
.ybd_c00419{bottom:327.144000pt;}
.y147_c00419{bottom:328.744000pt;}
.y136_c00419{bottom:329.410667pt;}
.y116_c00419{bottom:329.677333pt;}
.y100_c00419{bottom:330.677333pt;}
.y192_c00419{bottom:331.277333pt;}
.ybc_c00419{bottom:331.944000pt;}
.y20_c00419{bottom:332.277333pt;}
.y83_c00419{bottom:332.877333pt;}
.y8e_c00419{bottom:333.544000pt;}
.y191_c00419{bottom:333.877333pt;}
.y1f_c00419{bottom:334.477333pt;}
.yd_c00419{bottom:334.810667pt;}
.y43_c00419{bottom:335.144000pt;}
.yaf_c00419{bottom:337.077333pt;}
.yea_c00419{bottom:337.410667pt;}
.y1c2_c00419{bottom:338.010667pt;}
.yd1_c00419{bottom:338.344000pt;}
.y8d_c00419{bottom:338.677333pt;}
.ybb_c00419{bottom:339.010667pt;}
.y67_c00419{bottom:339.277333pt;}
.y42_c00419{bottom:339.610667pt;}
.y135_c00419{bottom:340.277333pt;}
.y240_c00419{bottom:340.610667pt;}
.ydd_c00419{bottom:342.210667pt;}
.yba_c00419{bottom:342.477333pt;}
.yae_c00419{bottom:343.144000pt;}
.y23f_c00419{bottom:343.810667pt;}
.y200_c00419{bottom:345.410667pt;}
.ye9_c00419{bottom:347.610667pt;}
.yd0_c00419{bottom:348.610667pt;}
.y8c_c00419{bottom:348.877333pt;}
.y41_c00419{bottom:349.877333pt;}
.ydc_c00419{bottom:351.144000pt;}
.y23e_c00419{bottom:352.744000pt;}
.ydb_c00419{bottom:353.077333pt;}
.ycf_c00419{bottom:353.677333pt;}
.y8b_c00419{bottom:354.010667pt;}
.yb9_c00419{bottom:354.344000pt;}
.y169_c00419{bottom:354.677333pt;}
.y40_c00419{bottom:355.010667pt;}
.yda_c00419{bottom:355.277333pt;}
.y1fa_c00419{bottom:356.277333pt;}
.y115_c00419{bottom:356.610667pt;}
.yb8_c00419{bottom:357.877333pt;}
.y82_c00419{bottom:358.210667pt;}
.y23d_c00419{bottom:360.077333pt;}
.ye8_c00419{bottom:361.677333pt;}
.y15a_c00419{bottom:362.010667pt;}
.y8a_c00419{bottom:363.944000pt;}
.yce_c00419{bottom:364.277333pt;}
.y228_c00419{bottom:364.877333pt;}
.y78_c00419{bottom:365.877333pt;}
.y77_c00419{bottom:367.810667pt;}
.y1ff_c00419{bottom:368.410667pt;}
.yd9_c00419{bottom:369.077333pt;}
.ycd_c00419{bottom:369.410667pt;}
.y188_c00419{bottom:369.677333pt;}
.y159_c00419{bottom:370.344000pt;}
.y123_c00419{bottom:371.610667pt;}
.yc_c00419{bottom:373.877333pt;}
.y158_c00419{bottom:374.477333pt;}
.yfa_c00419{bottom:377.077333pt;}
.yb_c00419{bottom:377.677333pt;}
.ycc_c00419{bottom:378.010667pt;}
.y81_c00419{bottom:378.344000pt;}
.y157_c00419{bottom:378.677333pt;}
.yd8_c00419{bottom:379.277333pt;}
.ya_c00419{bottom:379.610667pt;}
.y1f9_c00419{bottom:382.810667pt;}
.y23c_c00419{bottom:383.477333pt;}
.y1f0_c00419{bottom:383.810667pt;}
.y122_c00419{bottom:384.077333pt;}
.y89_c00419{bottom:384.410667pt;}
.y1c1_c00419{bottom:384.744000pt;}
.y121_c00419{bottom:385.077333pt;}
.y183_c00419{bottom:385.410667pt;}
.y168_c00419{bottom:385.677333pt;}
.y146_c00419{bottom:386.010667pt;}
.y134_c00419{bottom:387.010667pt;}
.y120_c00419{bottom:387.277333pt;}
.yf9_c00419{bottom:387.944000pt;}
.ye7_c00419{bottom:388.277333pt;}
.yad_c00419{bottom:388.877333pt;}
.y9_c00419{bottom:389.210667pt;}
.y66_c00419{bottom:389.544000pt;}
.y1e_c00419{bottom:389.877333pt;}
.y3_c00419{bottom:393.410667pt;}
.y23b_c00419{bottom:399.144000pt;}
.y1fe_c00419{bottom:400.077333pt;}
.y24a_c00419{bottom:400.410667pt;}
.y1d0_c00419{bottom:401.077333pt;}
.y187_c00419{bottom:401.410667pt;}
.y212_c00419{bottom:401.677333pt;}
.y156_c00419{bottom:402.010667pt;}
.y20f_c00419{bottom:402.344000pt;}
.y1d5_c00419{bottom:402.677333pt;}
.y18e_c00419{bottom:403.277333pt;}
.y11f_c00419{bottom:403.944000pt;}
.ye6_c00419{bottom:404.610667pt;}
.yb7_c00419{bottom:405.210667pt;}
.y145_c00419{bottom:405.544000pt;}
.y76_c00419{bottom:406.210667pt;}
.y249_c00419{bottom:406.477333pt;}
.y109_c00419{bottom:406.810667pt;}
.yff_c00419{bottom:407.144000pt;}
.yac_c00419{bottom:407.477333pt;}
.y1d4_c00419{bottom:407.810667pt;}
.y8_c00419{bottom:408.077333pt;}
.y65_c00419{bottom:408.410667pt;}
.y1c0_c00419{bottom:408.744000pt;}
.y1d_c00419{bottom:409.077333pt;}
.yfe_c00419{bottom:409.410667pt;}
.yd7_c00419{bottom:409.677333pt;}
.y211_c00419{bottom:410.010667pt;}
.y144_c00419{bottom:410.677333pt;}
.y1a1_c00419{bottom:411.277333pt;}
.y11e_c00419{bottom:411.610667pt;}
.y11d_c00419{bottom:411.944000pt;}
.y114_c00419{bottom:412.277333pt;}
.ye5_c00419{bottom:412.610667pt;}
.y88_c00419{bottom:412.877333pt;}
.y75_c00419{bottom:413.210667pt;}
.y7_c00419{bottom:413.544000pt;}
.y1c_c00419{bottom:413.877333pt;}
.yfd_c00419{bottom:414.477333pt;}
.ye4_c00419{bottom:414.810667pt;}
.yaa_c00419{bottom:415.477333pt;}
.y87_c00419{bottom:415.810667pt;}
.y5f_c00419{bottom:416.077333pt;}
.y1b_c00419{bottom:416.410667pt;}
.y3f_c00419{bottom:416.744000pt;}
.y1e8_c00419{bottom:450.010667pt;}
.y1e3_c00419{bottom:451.277333pt;}
.y225_c00419{bottom:453.210667pt;}
.y222_c00419{bottom:453.877333pt;}
.y21c_c00419{bottom:454.210667pt;}
.y1eb_c00419{bottom:454.810667pt;}
.y17e_c00419{bottom:455.477333pt;}
.y226_c00419{bottom:455.810667pt;}
.y21e_c00419{bottom:457.077333pt;}
.y1e2_c00419{bottom:457.677333pt;}
.y1b5_c00419{bottom:458.344000pt;}
.y60_c00419{bottom:462.477333pt;}
.y221_c00419{bottom:464.077333pt;}
.y1ea_c00419{bottom:464.744000pt;}
.y1e7_c00419{bottom:465.078667pt;}
.y179_c00419{bottom:466.677333pt;}
.y180_c00419{bottom:467.010667pt;}
.y16e_c00419{bottom:467.277333pt;}
.y170_c00419{bottom:469.877333pt;}
.y182_c00419{bottom:470.210667pt;}
.y21d_c00419{bottom:471.144000pt;}
.y1e6_c00419{bottom:471.477333pt;}
.y17a_c00419{bottom:472.078667pt;}
.y177_c00419{bottom:472.412000pt;}
.y1a4_c00419{bottom:474.010667pt;}
.y176_c00419{bottom:474.677333pt;}
.y1bd_c00419{bottom:475.610667pt;}
.y175_c00419{bottom:475.944000pt;}
.y1b4_c00419{bottom:476.277333pt;}
.y178_c00419{bottom:478.210667pt;}
.y17c_c00419{bottom:478.477333pt;}
.y224_c00419{bottom:481.078667pt;}
.y62_c00419{bottom:481.677333pt;}
.y21b_c00419{bottom:482.010667pt;}
.y1e1_c00419{bottom:482.344000pt;}
.y1ee_c00419{bottom:482.677333pt;}
.y143_c00419{bottom:483.277333pt;}
.y142_c00419{bottom:483.610667pt;}
.y4_c00419{bottom:483.944000pt;}
.y5_c00419{bottom:484.610667pt;}
.yd6_c00419{bottom:484.877333pt;}
.y6_c00419{bottom:485.210667pt;}
.y64_c00419{bottom:485.544000pt;}
.y63_c00419{bottom:485.877333pt;}
.y61_c00419{bottom:486.210667pt;}
.y1e5_c00419{bottom:486.477333pt;}
.yd5_c00419{bottom:488.078667pt;}
.y1d8_c00419{bottom:488.412000pt;}
.y1ab_c00419{bottom:488.745333pt;}
.y21a_c00419{bottom:489.078667pt;}
.y174_c00419{bottom:489.677333pt;}
.y181_c00419{bottom:490.010667pt;}
.y16f_c00419{bottom:490.344000pt;}
.y1a6_c00419{bottom:490.677333pt;}
.y1ae_c00419{bottom:491.010667pt;}
.y218_c00419{bottom:491.277333pt;}
.y1dd_c00419{bottom:491.610667pt;}
.y17f_c00419{bottom:492.277333pt;}
.y173_c00419{bottom:492.877333pt;}
.y1b3_c00419{bottom:493.544000pt;}
.y220_c00419{bottom:498.677333pt;}
.y219_c00419{bottom:499.277333pt;}
.y1e0_c00419{bottom:499.610667pt;}
.y1e4_c00419{bottom:499.944000pt;}
.yab_c00419{bottom:500.277333pt;}
.y1bc_c00419{bottom:500.610667pt;}
.y1b2_c00419{bottom:500.877333pt;}
.y1aa_c00419{bottom:501.544000pt;}
.y1a3_c00419{bottom:501.877333pt;}
.y1bb_c00419{bottom:502.477333pt;}
.y1ba_c00419{bottom:503.810667pt;}
.y17d_c00419{bottom:504.077333pt;}
.y1dc_c00419{bottom:505.677333pt;}
.y1e9_c00419{bottom:506.010667pt;}
.y172_c00419{bottom:506.677333pt;}
.y1ad_c00419{bottom:507.610667pt;}
.y1a5_c00419{bottom:507.944000pt;}
.y1a2_c00419{bottom:508.277333pt;}
.y1ef_c00419{bottom:509.210667pt;}
.y1bf_c00419{bottom:509.544000pt;}
.y1b1_c00419{bottom:510.810667pt;}
.y1a9_c00419{bottom:511.144000pt;}
.y227_c00419{bottom:515.610667pt;}
.y171_c00419{bottom:515.944000pt;}
.y17b_c00419{bottom:516.277333pt;}
.y1db_c00419{bottom:516.877333pt;}
.y1df_c00419{bottom:517.210667pt;}
.y217_c00419{bottom:517.544000pt;}
.y1b9_c00419{bottom:517.877333pt;}
.y1da_c00419{bottom:518.810667pt;}
.y1b6_c00419{bottom:524.277333pt;}
.y223_c00419{bottom:524.877333pt;}
.y1ac_c00419{bottom:525.544000pt;}
.y21f_c00419{bottom:525.877333pt;}
.y1d9_c00419{bottom:526.210667pt;}
.y1de_c00419{bottom:526.477333pt;}
.y216_c00419{bottom:526.810667pt;}
.y1b8_c00419{bottom:527.477333pt;}
.y1be_c00419{bottom:534.810667pt;}
.y1b0_c00419{bottom:535.477333pt;}
.y1a8_c00419{bottom:536.410667pt;}
.y1b7_c00419{bottom:544.744000pt;}
.y1af_c00419{bottom:545.410667pt;}
.y1a7_c00419{bottom:546.010667pt;}
.y2_c00419{bottom:548.610667pt;}
.y140_c00419{bottom:550.210667pt;}
.y13e_c00419{bottom:550.810667pt;}
.y13f_c00419{bottom:551.144000pt;}
.y13d_c00419{bottom:552.410667pt;}
.y13c_c00419{bottom:552.744000pt;}
.y1ed_c00419{bottom:562.344000pt;}
.y108_c00419{bottom:563.944000pt;}
.y1ec_c00419{bottom:567.812000pt;}
.y141_c00419{bottom:569.677333pt;}
.y1_c00419{bottom:574.478667pt;}
.hb_c00419{height:26.171875pt;}
.hd_c00419{height:27.812500pt;}
.hc_c00419{height:28.453333pt;}
.ha_c00419{height:31.406250pt;}
.he_c00419{height:32.250000pt;}
.h7_c00419{height:33.375000pt;}
.h5_c00419{height:37.625000pt;}
.h11_c00419{height:38.864583pt;}
.hf_c00419{height:38.937500pt;}
.h9_c00419{height:41.875000pt;}
.h10_c00419{height:44.460938pt;}
.h6_c00419{height:44.500000pt;}
.h14_c00419{height:49.336436pt;}
.h4_c00419{height:50.062500pt;}
.h13_c00419{height:51.216000pt;}
.h3_c00419{height:52.343750pt;}
.h8_c00419{height:53.750000pt;}
.h2_c00419{height:57.578125pt;}
.h12_c00419{height:89.000000pt;}
.h15_c00419{height:94.562500pt;}
.h0_c00419{height:650.646400pt;}
.h1_c00419{height:650.666667pt;}
.w0_c00419{width:1044.000000pt;}
.x0_c00419{left:0.000000pt;}
.xa5_c00419{left:84.666667pt;}
.xb0_c00419{left:85.932000pt;}
.xaf_c00419{left:92.000000pt;}
.xa4_c00419{left:93.000000pt;}
.xae_c00419{left:93.932000pt;}
.xa3_c00419{left:96.465333pt;}
.xa1_c00419{left:99.666667pt;}
.xa2_c00419{left:101.265333pt;}
.xa0_c00419{left:106.732000pt;}
.xad_c00419{left:108.333333pt;}
.x9f_c00419{left:113.798667pt;}
.xa9_c00419{left:119.798667pt;}
.xaa_c00419{left:120.798667pt;}
.xac_c00419{left:121.732000pt;}
.xab_c00419{left:123.065333pt;}
.x9e_c00419{left:124.000000pt;}
.x9c_c00419{left:130.666667pt;}
.x9d_c00419{left:133.265333pt;}
.x9b_c00419{left:137.465333pt;}
.xa8_c00419{left:142.265333pt;}
.xa7_c00419{left:149.598667pt;}
.xa6_c00419{left:150.532000pt;}
.x8b_c00419{left:160.465333pt;}
.x8e_c00419{left:171.666667pt;}
.x90_c00419{left:177.732000pt;}
.x99_c00419{left:179.732000pt;}
.x9a_c00419{left:180.666667pt;}
.x8d_c00419{left:187.666667pt;}
.x8f_c00419{left:190.598667pt;}
.x98_c00419{left:193.465333pt;}
.x8a_c00419{left:198.198667pt;}
.x97_c00419{left:200.798667pt;}
.x89_c00419{left:203.666667pt;}
.x96_c00419{left:207.198667pt;}
.x95_c00419{left:208.132000pt;}
.x94_c00419{left:209.065333pt;}
.x88_c00419{left:215.198667pt;}
.x8c_c00419{left:220.932000pt;}
.x93_c00419{left:229.265333pt;}
.x87_c00419{left:230.265333pt;}
.x86_c00419{left:235.000000pt;}
.x91_c00419{left:236.000000pt;}
.x92_c00419{left:237.000000pt;}
.x85_c00419{left:260.333333pt;}
.x7d_c00419{left:261.265333pt;}
.x84_c00419{left:265.466667pt;}
.x83_c00419{left:266.398667pt;}
.x82_c00419{left:267.333333pt;}
.x7c_c00419{left:274.398667pt;}
.x81_c00419{left:279.532000pt;}
.x7b_c00419{left:282.398667pt;}
.x7a_c00419{left:284.000000pt;}
.x80_c00419{left:294.532000pt;}
.x7f_c00419{left:295.466667pt;}
.x79_c00419{left:299.065333pt;}
.x78_c00419{left:310.865333pt;}
.x77_c00419{left:313.466667pt;}
.x76_c00419{left:316.666667pt;}
.x75_c00419{left:322.398667pt;}
.x74_c00419{left:324.333333pt;}
.x7e_c00419{left:325.265333pt;}
.x6e_c00419{left:338.732000pt;}
.x73_c00419{left:339.666667pt;}
.x6d_c00419{left:347.065333pt;}
.x72_c00419{left:352.800000pt;}
.x56_c00419{left:353.800000pt;}
.x70_c00419{left:366.865333pt;}
.x6c_c00419{left:367.865333pt;}
.x71_c00419{left:374.532000pt;}
.x6b_c00419{left:381.865333pt;}
.x6a_c00419{left:391.465333pt;}
.x6f_c00419{left:396.000000pt;}
.x55_c00419{left:398.532000pt;}
.x69_c00419{left:405.598667pt;}
.x68_c00419{left:410.666667pt;}
.x54_c00419{left:412.932000pt;}
.x67_c00419{left:414.532000pt;}
.x66_c00419{left:426.732000pt;}
.x53_c00419{left:428.000000pt;}
.x65_c00419{left:436.666667pt;}
.x64_c00419{left:439.865333pt;}
.x63_c00419{left:440.798667pt;}
.x52_c00419{left:441.732000pt;}
.x5b_c00419{left:446.932000pt;}
.x5a_c00419{left:453.865333pt;}
.x51_c00419{left:457.732000pt;}
.x59_c00419{left:461.000000pt;}
.x60_c00419{left:466.065333pt;}
.x61_c00419{left:467.065333pt;}
.x62_c00419{left:468.000000pt;}
.x50_c00419{left:469.598667pt;}
.x58_c00419{left:470.598667pt;}
.x57_c00419{left:478.265333pt;}
.x5f_c00419{left:490.398667pt;}
.x5c_c00419{left:497.132000pt;}
.x5d_c00419{left:498.065333pt;}
.x5e_c00419{left:499.065333pt;}
.x4e_c00419{left:526.865333pt;}
.x4f_c00419{left:527.798667pt;}
.x4d_c00419{left:541.265333pt;}
.x44_c00419{left:542.265333pt;}
.x4c_c00419{left:547.398667pt;}
.x43_c00419{left:551.532000pt;}
.x4b_c00419{left:556.000000pt;}
.x42_c00419{left:561.798667pt;}
.x4a_c00419{left:569.132000pt;}
.x47_c00419{left:571.333333pt;}
.x49_c00419{left:577.732000pt;}
.x48_c00419{left:579.666667pt;}
.x45_c00419{left:585.132000pt;}
.x46_c00419{left:586.065333pt;}
.x41_c00419{left:591.532000pt;}
.x40_c00419{left:614.598667pt;}
.x37_c00419{left:616.198667pt;}
.x36_c00419{left:623.532000pt;}
.x3f_c00419{left:628.598667pt;}
.x35_c00419{left:630.932000pt;}
.x3e_c00419{left:635.400000pt;}
.x3d_c00419{left:643.066667pt;}
.x34_c00419{left:645.598667pt;}
.x33_c00419{left:653.265333pt;}
.x3c_c00419{left:656.465333pt;}
.x3b_c00419{left:665.733333pt;}
.x39_c00419{left:667.000000pt;}
.x3a_c00419{left:673.132000pt;}
.x38_c00419{left:676.333333pt;}
.x2b_c00419{left:701.000000pt;}
.x32_c00419{left:702.198667pt;}
.x2a_c00419{left:708.600000pt;}
.x29_c00419{left:716.333333pt;}
.x21_c00419{left:717.266667pt;}
.x30_c00419{left:729.398667pt;}
.x31_c00419{left:730.398667pt;}
.x28_c00419{left:732.266667pt;}
.x20_c00419{left:739.666667pt;}
.x2f_c00419{left:740.666667pt;}
.x1f_c00419{left:745.466667pt;}
.x2e_c00419{left:749.266667pt;}
.x2c_c00419{left:751.198667pt;}
.x1e_c00419{left:752.466667pt;}
.x2d_c00419{left:755.732000pt;}
.x1d_c00419{left:757.266667pt;}
.x27_c00419{left:770.732000pt;}
.x25_c00419{left:785.398667pt;}
.x26_c00419{left:786.398667pt;}
.x17_c00419{left:789.333333pt;}
.x16_c00419{left:803.666667pt;}
.x23_c00419{left:806.198667pt;}
.x24_c00419{left:807.198667pt;}
.x22_c00419{left:813.266667pt;}
.x15_c00419{left:814.865333pt;}
.x14_c00419{left:820.933333pt;}
.x1c_c00419{left:823.532000pt;}
.x1b_c00419{left:826.065333pt;}
.x1a_c00419{left:835.333333pt;}
.x18_c00419{left:839.532000pt;}
.x19_c00419{left:842.398667pt;}
.x13_c00419{left:847.865333pt;}
.x12_c00419{left:857.133333pt;}
.x11_c00419{left:863.800000pt;}
.xf_c00419{left:871.532000pt;}
.x10_c00419{left:872.466667pt;}
.x7_c00419{left:877.600000pt;}
.x6_c00419{left:884.333333pt;}
.xe_c00419{left:890.398667pt;}
.x5_c00419{left:891.333333pt;}
.xd_c00419{left:892.933333pt;}
.xc_c00419{left:893.933333pt;}
.x4_c00419{left:901.266667pt;}
.xb_c00419{left:912.198667pt;}
.x8_c00419{left:925.600000pt;}
.x9_c00419{left:926.532000pt;}
.xa_c00419{left:927.532000pt;}
.x1_c00419{left:958.600000pt;}
.x3_c00419{left:965.266667pt;}
.x2_c00419{left:970.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d4edf3ce265e3e9fbd4859d4.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00420;src:url('chunks/assets/font_dc29502761fed6fbc611b254.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00420;src:url('chunks/assets/font_6d887037eaeb364fdcce0e57.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00420{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c00420{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4_c00420{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c00420{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c00420{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00420{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m11_c00420{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00420{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00420{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00420{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00420{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00420{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00420{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00420{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00420{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00420{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00420{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00420{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00420{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00420{color:transparent;}
.fs0_c00420{font-size:60.000000px;}
.fs3_c00420{font-size:66.000000px;}
.fs1_c00420{font-size:72.000000px;}
.fs2_c00420{font-size:78.000000px;}
.y0_c00420{bottom:0.000000px;}
.y2c_c00420{bottom:66.750000px;}
.y29_c00420{bottom:85.500000px;}
.y2a_c00420{bottom:87.973500px;}
.y2b_c00420{bottom:90.523500px;}
.y24_c00420{bottom:104.625000px;}
.y25_c00420{bottom:108.523500px;}
.y26_c00420{bottom:108.898500px;}
.y27_c00420{bottom:109.273500px;}
.y28_c00420{bottom:109.948500px;}
.y23_c00420{bottom:180.148500px;}
.y22_c00420{bottom:201.448500px;}
.y21_c00420{bottom:222.673500px;}
.y1f_c00420{bottom:244.198500px;}
.y20_c00420{bottom:247.500000px;}
.y1e_c00420{bottom:266.250000px;}
.y1d_c00420{bottom:288.150000px;}
.y1c_c00420{bottom:309.448500px;}
.y1b_c00420{bottom:331.348500px;}
.y1a_c00420{bottom:353.698500px;}
.y19_c00420{bottom:375.673500px;}
.y18_c00420{bottom:397.948500px;}
.y17_c00420{bottom:419.923500px;}
.y16_c00420{bottom:441.898500px;}
.y15_c00420{bottom:464.173500px;}
.y14_c00420{bottom:486.523500px;}
.y13_c00420{bottom:508.875000px;}
.y12_c00420{bottom:530.848500px;}
.y11_c00420{bottom:553.125000px;}
.y10_c00420{bottom:575.473500px;}
.yf_c00420{bottom:597.750000px;}
.ye_c00420{bottom:620.473500px;}
.yd_c00420{bottom:642.750000px;}
.yc_c00420{bottom:666.898500px;}
.yb_c00420{bottom:687.375000px;}
.ya_c00420{bottom:706.198500px;}
.y9_c00420{bottom:710.098500px;}
.y8_c00420{bottom:732.075000px;}
.y7_c00420{bottom:754.348500px;}
.y6_c00420{bottom:776.398500px;}
.y5_c00420{bottom:829.948500px;}
.y4_c00420{bottom:908.473500px;}
.y3_c00420{bottom:1093.500000px;}
.y1_c00420{bottom:1101.073500px;}
.y2_c00420{bottom:1108.275000px;}
.h1_c00420{height:58.886719px;}
.h5_c00420{height:64.775391px;}
.h3_c00420{height:70.628906px;}
.h2_c00420{height:70.664062px;}
.h4_c00420{height:78.609375px;}
.h0_c00420{height:1174.500000px;}
.w0_c00420{width:731.977200px;}
.w1_c00420{width:732.000000px;}
.x0_c00420{left:0.000000px;}
.x7_c00420{left:65.140200px;}
.xa_c00420{left:66.190200px;}
.xb_c00420{left:67.315200px;}
.x9_c00420{left:68.740200px;}
.x14_c00420{left:70.915200px;}
.xd_c00420{left:87.790200px;}
.x6_c00420{left:100.090200px;}
.x5_c00420{left:219.565200px;}
.x1_c00420{left:293.740200px;}
.x4_c00420{left:380.515200px;}
.x12_c00420{left:396.715200px;}
.x13_c00420{left:411.788700px;}
.x2_c00420{left:494.290200px;}
.xe_c00420{left:532.390200px;}
.xc_c00420{left:574.165200px;}
.xf_c00420{left:598.315200px;}
.x10_c00420{left:614.515200px;}
.x11_c00420{left:652.315200px;}
.x3_c00420{left:661.690200px;}
.x8_c00420{left:700.540200px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls0_c00420{letter-spacing:0.000000pt;}
.ws0_c00420{word-spacing:0.000000pt;}
.fs0_c00420{font-size:53.333333pt;}
.fs3_c00420{font-size:58.666667pt;}
.fs1_c00420{font-size:64.000000pt;}
.fs2_c00420{font-size:69.333333pt;}
.y0_c00420{bottom:0.000000pt;}
.y2c_c00420{bottom:59.333333pt;}
.y29_c00420{bottom:76.000000pt;}
.y2a_c00420{bottom:78.198667pt;}
.y2b_c00420{bottom:80.465333pt;}
.y24_c00420{bottom:93.000000pt;}
.y25_c00420{bottom:96.465333pt;}
.y26_c00420{bottom:96.798667pt;}
.y27_c00420{bottom:97.132000pt;}
.y28_c00420{bottom:97.732000pt;}
.y23_c00420{bottom:160.132000pt;}
.y22_c00420{bottom:179.065333pt;}
.y21_c00420{bottom:197.932000pt;}
.y1f_c00420{bottom:217.065333pt;}
.y20_c00420{bottom:220.000000pt;}
.y1e_c00420{bottom:236.666667pt;}
.y1d_c00420{bottom:256.133333pt;}
.y1c_c00420{bottom:275.065333pt;}
.y1b_c00420{bottom:294.532000pt;}
.y1a_c00420{bottom:314.398667pt;}
.y19_c00420{bottom:333.932000pt;}
.y18_c00420{bottom:353.732000pt;}
.y17_c00420{bottom:373.265333pt;}
.y16_c00420{bottom:392.798667pt;}
.y15_c00420{bottom:412.598667pt;}
.y14_c00420{bottom:432.465333pt;}
.y13_c00420{bottom:452.333333pt;}
.y12_c00420{bottom:471.865333pt;}
.y11_c00420{bottom:491.666667pt;}
.y10_c00420{bottom:511.532000pt;}
.yf_c00420{bottom:531.333333pt;}
.ye_c00420{bottom:551.532000pt;}
.yd_c00420{bottom:571.333333pt;}
.yc_c00420{bottom:592.798667pt;}
.yb_c00420{bottom:611.000000pt;}
.ya_c00420{bottom:627.732000pt;}
.y9_c00420{bottom:631.198667pt;}
.y8_c00420{bottom:650.733333pt;}
.y7_c00420{bottom:670.532000pt;}
.y6_c00420{bottom:690.132000pt;}
.y5_c00420{bottom:737.732000pt;}
.y4_c00420{bottom:807.532000pt;}
.y3_c00420{bottom:972.000000pt;}
.y1_c00420{bottom:978.732000pt;}
.y2_c00420{bottom:985.133333pt;}
.h1_c00420{height:52.343750pt;}
.h5_c00420{height:57.578125pt;}
.h3_c00420{height:62.781250pt;}
.h2_c00420{height:62.812500pt;}
.h4_c00420{height:69.875000pt;}
.h0_c00420{height:1044.000000pt;}
.w0_c00420{width:650.646400pt;}
.w1_c00420{width:650.666667pt;}
.x0_c00420{left:0.000000pt;}
.x7_c00420{left:57.902400pt;}
.xa_c00420{left:58.835733pt;}
.xb_c00420{left:59.835733pt;}
.x9_c00420{left:61.102400pt;}
.x14_c00420{left:63.035733pt;}
.xd_c00420{left:78.035733pt;}
.x6_c00420{left:88.969067pt;}
.x5_c00420{left:195.169067pt;}
.x1_c00420{left:261.102400pt;}
.x4_c00420{left:338.235733pt;}
.x12_c00420{left:352.635733pt;}
.x13_c00420{left:366.034400pt;}
.x2_c00420{left:439.369067pt;}
.xe_c00420{left:473.235733pt;}
.xc_c00420{left:510.369067pt;}
.xf_c00420{left:531.835733pt;}
.x10_c00420{left:546.235733pt;}
.x11_c00420{left:579.835733pt;}
.x3_c00420{left:588.169067pt;}
.x8_c00420{left:622.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2925605dfc9fbf0a8d7ab5ba.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00421;src:url('chunks/assets/font_295a228a4395fd793b64837e.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00421;src:url('chunks/assets/font_92cbe99483ae5a12ad08e12d.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00421{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m2_c00421{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c00421{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c00421{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf_c00421{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c00421{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00421{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m0_c00421{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00421{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00421{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00421{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c00421{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00421{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00421{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00421{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00421{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00421{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00421{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c00421{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c00421{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00421{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00421{color:transparent;}
.fs0_c00421{font-size:60.000000px;}
.fs3_c00421{font-size:66.000000px;}
.fs1_c00421{font-size:72.000000px;}
.fs2_c00421{font-size:78.000000px;}
.y0_c00421{bottom:0.000000px;}
.y3c_c00421{bottom:76.798500px;}
.y3b_c00421{bottom:97.423500px;}
.y3a_c00421{bottom:119.023500px;}
.y39_c00421{bottom:140.173500px;}
.y38_c00421{bottom:161.848500px;}
.y37_c00421{bottom:183.448500px;}
.y36_c00421{bottom:205.348500px;}
.y35_c00421{bottom:227.323500px;}
.y34_c00421{bottom:248.625000px;}
.y33_c00421{bottom:270.525000px;}
.y32_c00421{bottom:291.750000px;}
.y31_c00421{bottom:317.698500px;}
.y30_c00421{bottom:334.573500px;}
.y2f_c00421{bottom:335.323500px;}
.y2e_c00421{bottom:356.923500px;}
.y2d_c00421{bottom:378.900000px;}
.y2c_c00421{bottom:400.500000px;}
.y2b_c00421{bottom:422.098500px;}
.y2a_c00421{bottom:422.473500px;}
.y29_c00421{bottom:444.448500px;}
.y28_c00421{bottom:465.673500px;}
.y27_c00421{bottom:487.273500px;}
.y26_c00421{bottom:508.875000px;}
.y25_c00421{bottom:530.473500px;}
.y24_c00421{bottom:552.073500px;}
.y22_c00421{bottom:572.923500px;}
.y21_c00421{bottom:573.673500px;}
.y23_c00421{bottom:574.048500px;}
.y20_c00421{bottom:595.273500px;}
.y1f_c00421{bottom:617.250000px;}
.y1e_c00421{bottom:639.223500px;}
.y1d_c00421{bottom:661.125000px;}
.y18_c00421{bottom:680.923500px;}
.y19_c00421{bottom:682.048500px;}
.y1a_c00421{bottom:682.798500px;}
.y1b_c00421{bottom:683.098500px;}
.y1c_c00421{bottom:683.473500px;}
.y17_c00421{bottom:704.323500px;}
.y16_c00421{bottom:726.298500px;}
.y15_c00421{bottom:747.598500px;}
.y12_c00421{bottom:768.448500px;}
.y13_c00421{bottom:770.175000px;}
.y14_c00421{bottom:770.250000px;}
.y11_c00421{bottom:789.675000px;}
.y10_c00421{bottom:812.323500px;}
.yf_c00421{bottom:833.925000px;}
.ye_c00421{bottom:854.775000px;}
.yd_c00421{bottom:875.698500px;}
.yc_c00421{bottom:897.300000px;}
.yb_c00421{bottom:917.848500px;}
.ya_c00421{bottom:940.125000px;}
.y9_c00421{bottom:962.400000px;}
.y8_c00421{bottom:983.323500px;}
.y5_c00421{bottom:994.875000px;}
.y6_c00421{bottom:997.425000px;}
.y7_c00421{bottom:1004.550000px;}
.y4_c00421{bottom:1024.800000px;}
.y1_c00421{bottom:1071.150000px;}
.y3_c00421{bottom:1081.275000px;}
.y2_c00421{bottom:1086.448500px;}
.h1_c00421{height:58.886719px;}
.h5_c00421{height:66.515625px;}
.h3_c00421{height:70.628906px;}
.h2_c00421{height:70.664062px;}
.h4_c00421{height:76.514648px;}
.h0_c00421{height:1174.500000px;}
.w0_c00421{width:731.977200px;}
.w1_c00421{width:732.000000px;}
.x0_c00421{left:0.000000px;}
.xd_c00421{left:50.365200px;}
.x9_c00421{left:51.490200px;}
.x8_c00421{left:52.540200px;}
.x7_c00421{left:53.965200px;}
.x4_c00421{left:55.390200px;}
.x1_c00421{left:75.563700px;}
.xa_c00421{left:81.340200px;}
.x16_c00421{left:83.890200px;}
.x2_c00421{left:102.940200px;}
.x5_c00421{left:156.190200px;}
.x6_c00421{left:164.140200px;}
.x12_c00421{left:179.965200px;}
.xe_c00421{left:227.515200px;}
.x13_c00421{left:267.790200px;}
.x3_c00421{left:278.965200px;}
.xf_c00421{left:300.940200px;}
.xb_c00421{left:410.365200px;}
.x10_c00421{left:429.115200px;}
.xc_c00421{left:463.990200px;}
.x11_c00421{left:517.315200px;}
.x14_c00421{left:645.790200px;}
.x15_c00421{left:651.565200px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls0_c00421{letter-spacing:0.000000pt;}
.ws0_c00421{word-spacing:0.000000pt;}
.fs0_c00421{font-size:53.333333pt;}
.fs3_c00421{font-size:58.666667pt;}
.fs1_c00421{font-size:64.000000pt;}
.fs2_c00421{font-size:69.333333pt;}
.y0_c00421{bottom:0.000000pt;}
.y3c_c00421{bottom:68.265333pt;}
.y3b_c00421{bottom:86.598667pt;}
.y3a_c00421{bottom:105.798667pt;}
.y39_c00421{bottom:124.598667pt;}
.y38_c00421{bottom:143.865333pt;}
.y37_c00421{bottom:163.065333pt;}
.y36_c00421{bottom:182.532000pt;}
.y35_c00421{bottom:202.065333pt;}
.y34_c00421{bottom:221.000000pt;}
.y33_c00421{bottom:240.466667pt;}
.y32_c00421{bottom:259.333333pt;}
.y31_c00421{bottom:282.398667pt;}
.y30_c00421{bottom:297.398667pt;}
.y2f_c00421{bottom:298.065333pt;}
.y2e_c00421{bottom:317.265333pt;}
.y2d_c00421{bottom:336.800000pt;}
.y2c_c00421{bottom:356.000000pt;}
.y2b_c00421{bottom:375.198667pt;}
.y2a_c00421{bottom:375.532000pt;}
.y29_c00421{bottom:395.065333pt;}
.y28_c00421{bottom:413.932000pt;}
.y27_c00421{bottom:433.132000pt;}
.y26_c00421{bottom:452.333333pt;}
.y25_c00421{bottom:471.532000pt;}
.y24_c00421{bottom:490.732000pt;}
.y22_c00421{bottom:509.265333pt;}
.y21_c00421{bottom:509.932000pt;}
.y23_c00421{bottom:510.265333pt;}
.y20_c00421{bottom:529.132000pt;}
.y1f_c00421{bottom:548.666667pt;}
.y1e_c00421{bottom:568.198667pt;}
.y1d_c00421{bottom:587.666667pt;}
.y18_c00421{bottom:605.265333pt;}
.y19_c00421{bottom:606.265333pt;}
.y1a_c00421{bottom:606.932000pt;}
.y1b_c00421{bottom:607.198667pt;}
.y1c_c00421{bottom:607.532000pt;}
.y17_c00421{bottom:626.065333pt;}
.y16_c00421{bottom:645.598667pt;}
.y15_c00421{bottom:664.532000pt;}
.y12_c00421{bottom:683.065333pt;}
.y13_c00421{bottom:684.600000pt;}
.y14_c00421{bottom:684.666667pt;}
.y11_c00421{bottom:701.933333pt;}
.y10_c00421{bottom:722.065333pt;}
.yf_c00421{bottom:741.266667pt;}
.ye_c00421{bottom:759.800000pt;}
.yd_c00421{bottom:778.398667pt;}
.yc_c00421{bottom:797.600000pt;}
.yb_c00421{bottom:815.865333pt;}
.ya_c00421{bottom:835.666667pt;}
.y9_c00421{bottom:855.466667pt;}
.y8_c00421{bottom:874.065333pt;}
.y5_c00421{bottom:884.333333pt;}
.y6_c00421{bottom:886.600000pt;}
.y7_c00421{bottom:892.933333pt;}
.y4_c00421{bottom:910.933333pt;}
.y1_c00421{bottom:952.133333pt;}
.y3_c00421{bottom:961.133333pt;}
.y2_c00421{bottom:965.732000pt;}
.h1_c00421{height:52.343750pt;}
.h5_c00421{height:59.125000pt;}
.h3_c00421{height:62.781250pt;}
.h2_c00421{height:62.812500pt;}
.h4_c00421{height:68.013021pt;}
.h0_c00421{height:1044.000000pt;}
.w0_c00421{width:650.646400pt;}
.w1_c00421{width:650.666667pt;}
.x0_c00421{left:0.000000pt;}
.xd_c00421{left:44.769067pt;}
.x9_c00421{left:45.769067pt;}
.x8_c00421{left:46.702400pt;}
.x7_c00421{left:47.969067pt;}
.x4_c00421{left:49.235733pt;}
.x1_c00421{left:67.167733pt;}
.xa_c00421{left:72.302400pt;}
.x16_c00421{left:74.569067pt;}
.x2_c00421{left:91.502400pt;}
.x5_c00421{left:138.835733pt;}
.x6_c00421{left:145.902400pt;}
.x12_c00421{left:159.969067pt;}
.xe_c00421{left:202.235733pt;}
.x13_c00421{left:238.035733pt;}
.x3_c00421{left:247.969067pt;}
.xf_c00421{left:267.502400pt;}
.xb_c00421{left:364.769067pt;}
.x10_c00421{left:381.435733pt;}
.xc_c00421{left:412.435733pt;}
.x11_c00421{left:459.835733pt;}
.x14_c00421{left:574.035733pt;}
.x15_c00421{left:579.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3241524935b451a537382db2.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00422;src:url('chunks/assets/font_58fed32bbc721fe683cc6469.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00422;src:url('chunks/assets/font_86bce3aedd8c5eceac365279.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.284180;font-style:normal;font-weight:normal;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_474f7f9f0f310b43569b547b.woff2')format("woff");}.ff4_c00422{font-family:ff4_c00422;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00422{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2_c00422{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6_c00422{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8_c00422{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00422{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c00422{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m17_c00422{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c00422{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00422{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c00422{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c00422{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c00422{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c00422{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13_c00422{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00422{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m0_c00422{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00422{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00422{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00422{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16_c00422{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m18_c00422{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00422{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00422{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00422{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00422{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00422{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m19_c00422{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00422{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m15_c00422{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m11_c00422{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c00422{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.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;}
}
.ws0_c00422{word-spacing:0.000000px;}
.fc0_c00422{color:transparent;}
.fs0_c00422{font-size:60.000000px;}
.fs2_c00422{font-size:72.000000px;}
.fs1_c00422{font-size:84.000000px;}
.y0_c00422{bottom:0.000000px;}
.y44_c00422{bottom:60.298500px;}
.y45_c00422{bottom:63.148500px;}
.y40_c00422{bottom:81.523500px;}
.y41_c00422{bottom:82.573500px;}
.y42_c00422{bottom:87.298500px;}
.y43_c00422{bottom:92.698500px;}
.y3e_c00422{bottom:108.523500px;}
.y3f_c00422{bottom:114.973500px;}
.y3d_c00422{bottom:130.125000px;}
.y3c_c00422{bottom:151.723500px;}
.y38_c00422{bottom:170.848500px;}
.y39_c00422{bottom:174.073500px;}
.y3a_c00422{bottom:176.548500px;}
.y3b_c00422{bottom:178.423500px;}
.y36_c00422{bottom:193.500000px;}
.y37_c00422{bottom:198.898500px;}
.y35_c00422{bottom:216.898500px;}
.y32_c00422{bottom:237.375000px;}
.y33_c00422{bottom:238.500000px;}
.y34_c00422{bottom:240.673500px;}
.y2f_c00422{bottom:258.673500px;}
.y30_c00422{bottom:259.423500px;}
.y31_c00422{bottom:261.525000px;}
.y2e_c00422{bottom:281.323500px;}
.y2d_c00422{bottom:303.298500px;}
.y2c_c00422{bottom:325.275000px;}
.y2b_c00422{bottom:347.548500px;}
.y2a_c00422{bottom:369.525000px;}
.y29_c00422{bottom:391.500000px;}
.y28_c00422{bottom:412.423500px;}
.y27_c00422{bottom:435.750000px;}
.y26_c00422{bottom:457.423500px;}
.y25_c00422{bottom:480.375000px;}
.y24_c00422{bottom:502.723500px;}
.y23_c00422{bottom:524.698500px;}
.y22_c00422{bottom:547.423500px;}
.y21_c00422{bottom:569.698500px;}
.y20_c00422{bottom:591.973500px;}
.y1f_c00422{bottom:614.323500px;}
.y1e_c00422{bottom:614.698500px;}
.y1d_c00422{bottom:615.073500px;}
.y1c_c00422{bottom:636.673500px;}
.y1b_c00422{bottom:658.948500px;}
.y1a_c00422{bottom:681.298500px;}
.y19_c00422{bottom:705.448500px;}
.y18_c00422{bottom:725.923500px;}
.y17_c00422{bottom:747.898500px;}
.y16_c00422{bottom:750.075000px;}
.y15_c00422{bottom:750.750000px;}
.y14_c00422{bottom:771.675000px;}
.y13_c00422{bottom:794.323500px;}
.y12_c00422{bottom:811.573500px;}
.y11_c00422{bottom:812.323500px;}
.y10_c00422{bottom:817.723500px;}
.yf_c00422{bottom:839.323500px;}
.ye_c00422{bottom:861.973500px;}
.yd_c00422{bottom:885.073500px;}
.yc_c00422{bottom:907.050000px;}
.yb_c00422{bottom:929.323500px;}
.ya_c00422{bottom:950.925000px;}
.y9_c00422{bottom:978.675000px;}
.y8_c00422{bottom:988.425000px;}
.y7_c00422{bottom:989.848500px;}
.y6_c00422{bottom:997.050000px;}
.y5_c00422{bottom:1017.223500px;}
.y4_c00422{bottom:1039.800000px;}
.y3_c00422{bottom:1091.698500px;}
.y1_c00422{bottom:1098.900000px;}
.y2_c00422{bottom:1107.223500px;}
.h1_c00422{height:60.468750px;}
.h5_c00422{height:70.664062px;}
.h4_c00422{height:82.400391px;}
.h2_c00422{height:82.441406px;}
.h3_c00422{height:84.656250px;}
.h0_c00422{height:1174.500000px;}
.w0_c00422{width:731.977200px;}
.w1_c00422{width:732.000000px;}
.x0_c00422{left:0.000000px;}
.x11_c00422{left:58.990200px;}
.xd_c00422{left:60.490200px;}
.x8_c00422{left:61.540200px;}
.x4_c00422{left:62.590200px;}
.x1c_c00422{left:85.990200px;}
.x12_c00422{left:92.890200px;}
.xe_c00422{left:93.940200px;}
.x7_c00422{left:96.490200px;}
.x1f_c00422{left:104.740200px;}
.x1d_c00422{left:152.965200px;}
.xb_c00422{left:170.590200px;}
.xf_c00422{left:197.965200px;}
.xc_c00422{left:203.365200px;}
.x10_c00422{left:218.515200px;}
.x1_c00422{left:287.290200px;}
.x18_c00422{left:321.790200px;}
.x13_c00422{left:323.290200px;}
.x14_c00422{left:379.765200px;}
.x15_c00422{left:432.715200px;}
.x17_c00422{left:462.940200px;}
.x16_c00422{left:472.990200px;}
.x19_c00422{left:483.115200px;}
.x2_c00422{left:491.740200px;}
.x1a_c00422{left:524.890200px;}
.x9_c00422{left:579.940200px;}
.x5_c00422{left:581.740200px;}
.x6_c00422{left:603.340200px;}
.x1b_c00422{left:624.190200px;}
.x1e_c00422{left:627.490200px;}
.x3_c00422{left:658.390200px;}
.xa_c00422{left:688.990200px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls0_c00422{letter-spacing:0.000000pt;}
.ws0_c00422{word-spacing:0.000000pt;}
.fs0_c00422{font-size:53.333333pt;}
.fs2_c00422{font-size:64.000000pt;}
.fs1_c00422{font-size:74.666667pt;}
.y0_c00422{bottom:0.000000pt;}
.y44_c00422{bottom:53.598667pt;}
.y45_c00422{bottom:56.132000pt;}
.y40_c00422{bottom:72.465333pt;}
.y41_c00422{bottom:73.398667pt;}
.y42_c00422{bottom:77.598667pt;}
.y43_c00422{bottom:82.398667pt;}
.y3e_c00422{bottom:96.465333pt;}
.y3f_c00422{bottom:102.198667pt;}
.y3d_c00422{bottom:115.666667pt;}
.y3c_c00422{bottom:134.865333pt;}
.y38_c00422{bottom:151.865333pt;}
.y39_c00422{bottom:154.732000pt;}
.y3a_c00422{bottom:156.932000pt;}
.y3b_c00422{bottom:158.598667pt;}
.y36_c00422{bottom:172.000000pt;}
.y37_c00422{bottom:176.798667pt;}
.y35_c00422{bottom:192.798667pt;}
.y32_c00422{bottom:211.000000pt;}
.y33_c00422{bottom:212.000000pt;}
.y34_c00422{bottom:213.932000pt;}
.y2f_c00422{bottom:229.932000pt;}
.y30_c00422{bottom:230.598667pt;}
.y31_c00422{bottom:232.466667pt;}
.y2e_c00422{bottom:250.065333pt;}
.y2d_c00422{bottom:269.598667pt;}
.y2c_c00422{bottom:289.133333pt;}
.y2b_c00422{bottom:308.932000pt;}
.y2a_c00422{bottom:328.466667pt;}
.y29_c00422{bottom:348.000000pt;}
.y28_c00422{bottom:366.598667pt;}
.y27_c00422{bottom:387.333333pt;}
.y26_c00422{bottom:406.598667pt;}
.y25_c00422{bottom:427.000000pt;}
.y24_c00422{bottom:446.865333pt;}
.y23_c00422{bottom:466.398667pt;}
.y22_c00422{bottom:486.598667pt;}
.y21_c00422{bottom:506.398667pt;}
.y20_c00422{bottom:526.198667pt;}
.y1f_c00422{bottom:546.065333pt;}
.y1e_c00422{bottom:546.398667pt;}
.y1d_c00422{bottom:546.732000pt;}
.y1c_c00422{bottom:565.932000pt;}
.y1b_c00422{bottom:585.732000pt;}
.y1a_c00422{bottom:605.598667pt;}
.y19_c00422{bottom:627.065333pt;}
.y18_c00422{bottom:645.265333pt;}
.y17_c00422{bottom:664.798667pt;}
.y16_c00422{bottom:666.733333pt;}
.y15_c00422{bottom:667.333333pt;}
.y14_c00422{bottom:685.933333pt;}
.y13_c00422{bottom:706.065333pt;}
.y12_c00422{bottom:721.398667pt;}
.y11_c00422{bottom:722.065333pt;}
.y10_c00422{bottom:726.865333pt;}
.yf_c00422{bottom:746.065333pt;}
.ye_c00422{bottom:766.198667pt;}
.yd_c00422{bottom:786.732000pt;}
.yc_c00422{bottom:806.266667pt;}
.yb_c00422{bottom:826.065333pt;}
.ya_c00422{bottom:845.266667pt;}
.y9_c00422{bottom:869.933333pt;}
.y8_c00422{bottom:878.600000pt;}
.y7_c00422{bottom:879.865333pt;}
.y6_c00422{bottom:886.266667pt;}
.y5_c00422{bottom:904.198667pt;}
.y4_c00422{bottom:924.266667pt;}
.y3_c00422{bottom:970.398667pt;}
.y1_c00422{bottom:976.800000pt;}
.y2_c00422{bottom:984.198667pt;}
.h1_c00422{height:53.750000pt;}
.h5_c00422{height:62.812500pt;}
.h4_c00422{height:73.244792pt;}
.h2_c00422{height:73.281250pt;}
.h3_c00422{height:75.250000pt;}
.h0_c00422{height:1044.000000pt;}
.w0_c00422{width:650.646400pt;}
.w1_c00422{width:650.666667pt;}
.x0_c00422{left:0.000000pt;}
.x11_c00422{left:52.435733pt;}
.xd_c00422{left:53.769067pt;}
.x8_c00422{left:54.702400pt;}
.x4_c00422{left:55.635733pt;}
.x1c_c00422{left:76.435733pt;}
.x12_c00422{left:82.569067pt;}
.xe_c00422{left:83.502400pt;}
.x7_c00422{left:85.769067pt;}
.x1f_c00422{left:93.102400pt;}
.x1d_c00422{left:135.969067pt;}
.xb_c00422{left:151.635733pt;}
.xf_c00422{left:175.969067pt;}
.xc_c00422{left:180.769067pt;}
.x10_c00422{left:194.235733pt;}
.x1_c00422{left:255.369067pt;}
.x18_c00422{left:286.035733pt;}
.x13_c00422{left:287.369067pt;}
.x14_c00422{left:337.569067pt;}
.x15_c00422{left:384.635733pt;}
.x17_c00422{left:411.502400pt;}
.x16_c00422{left:420.435733pt;}
.x19_c00422{left:429.435733pt;}
.x2_c00422{left:437.102400pt;}
.x1a_c00422{left:466.569067pt;}
.x9_c00422{left:515.502400pt;}
.x5_c00422{left:517.102400pt;}
.x6_c00422{left:536.302400pt;}
.x1b_c00422{left:554.835733pt;}
.x1e_c00422{left:557.769067pt;}
.x3_c00422{left:585.235733pt;}
.xa_c00422{left:612.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b71187f9e33d7ef8a04eb653.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00423;src:url('chunks/assets/font_07f6a7044ceab21e16677ddb.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00423;src:url('chunks/assets/font_aa4b3519b408f5054a4fc90d.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00423;src:url('chunks/assets/font_857fd4742affce704c46ff52.woff2')format("woff");}.ff4_c00423{font-family:ff4_c00423;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00423{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6_c00423{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c00423{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m19_c00423{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00423{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00423{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00423{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c00423{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c00423{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c00423{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c00423{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00423{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00423{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c00423{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma_c00423{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00423{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00423{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00423{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m17_c00423{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00423{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00423{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00423{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c00423{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00423{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m10_c00423{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c00423{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1_c00423{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00423{color:transparent;}
.fs1_c00423{font-size:60.000000px;}
.fs0_c00423{font-size:66.000000px;}
.fs2_c00423{font-size:72.000000px;}
.y0_c00423{bottom:0.000000px;}
.y43_c00423{bottom:84.073500px;}
.y42_c00423{bottom:105.298500px;}
.y40_c00423{bottom:125.473500px;}
.y41_c00423{bottom:126.523500px;}
.y3f_c00423{bottom:130.875000px;}
.y3e_c00423{bottom:154.948500px;}
.y3d_c00423{bottom:168.973500px;}
.y3c_c00423{bottom:190.948500px;}
.y3b_c00423{bottom:212.250000px;}
.y3a_c00423{bottom:213.298500px;}
.y39_c00423{bottom:218.323500px;}
.y38_c00423{bottom:233.473500px;}
.y37_c00423{bottom:234.523500px;}
.y36_c00423{bottom:239.548500px;}
.y35_c00423{bottom:254.323500px;}
.y34_c00423{bottom:257.548500px;}
.y33_c00423{bottom:277.423500px;}
.y32_c00423{bottom:298.650000px;}
.y31_c00423{bottom:320.548500px;}
.y30_c00423{bottom:341.848500px;}
.y2f_c00423{bottom:363.375000px;}
.y2e_c00423{bottom:363.448500px;}
.y2d_c00423{bottom:385.423500px;}
.y2c_c00423{bottom:388.573500px;}
.y2b_c00423{bottom:407.323500px;}
.y2a_c00423{bottom:428.923500px;}
.y29_c00423{bottom:450.223500px;}
.y28_c00423{bottom:452.698500px;}
.y27_c00423{bottom:471.448500px;}
.y26_c00423{bottom:472.500000px;}
.y25_c00423{bottom:493.423500px;}
.y24_c00423{bottom:515.323500px;}
.y23_c00423{bottom:536.625000px;}
.y22_c00423{bottom:558.148500px;}
.y21_c00423{bottom:579.823500px;}
.y20_c00423{bottom:601.723500px;}
.y1e_c00423{bottom:623.023500px;}
.y1f_c00423{bottom:623.698500px;}
.y1d_c00423{bottom:644.923500px;}
.y1c_c00423{bottom:665.473500px;}
.y1b_c00423{bottom:688.125000px;}
.y1a_c00423{bottom:709.723500px;}
.y17_c00423{bottom:731.023500px;}
.y18_c00423{bottom:731.325000px;}
.y19_c00423{bottom:731.700000px;}
.y16_c00423{bottom:753.298500px;}
.y15_c00423{bottom:774.898500px;}
.y12_c00423{bottom:793.275000px;}
.y13_c00423{bottom:794.323500px;}
.y14_c00423{bottom:796.500000px;}
.y11_c00423{bottom:815.625000px;}
.y10_c00423{bottom:837.900000px;}
.yf_c00423{bottom:859.125000px;}
.ye_c00423{bottom:880.723500px;}
.yd_c00423{bottom:901.948500px;}
.yc_c00423{bottom:923.925000px;}
.yb_c00423{bottom:945.525000px;}
.ya_c00423{bottom:966.750000px;}
.y9_c00423{bottom:987.675000px;}
.y8_c00423{bottom:1008.525000px;}
.y4_c00423{bottom:1022.925000px;}
.y5_c00423{bottom:1027.650000px;}
.y7_c00423{bottom:1029.375000px;}
.y6_c00423{bottom:1030.125000px;}
.y1_c00423{bottom:1076.925000px;}
.y3_c00423{bottom:1086.300000px;}
.y2_c00423{bottom:1091.323500px;}
.h2_c00423{height:58.886719px;}
.h1_c00423{height:68.835938px;}
.h5_c00423{height:70.628906px;}
.h3_c00423{height:70.664062px;}
.h4_c00423{height:72.562500px;}
.h0_c00423{height:1174.500000px;}
.w0_c00423{width:731.977200px;}
.w1_c00423{width:732.000000px;}
.x0_c00423{left:0.000000px;}
.x14_c00423{left:47.140200px;}
.x10_c00423{left:48.190200px;}
.xb_c00423{left:49.315200px;}
.xa_c00423{left:50.365200px;}
.x9_c00423{left:52.540200px;}
.x8_c00423{left:53.590200px;}
.x16_c00423{left:70.165200px;}
.x1_c00423{left:73.765200px;}
.x13_c00423{left:78.790200px;}
.xc_c00423{left:79.915200px;}
.x4_c00423{left:84.188700px;}
.x1c_c00423{left:92.890200px;}
.x2_c00423{left:101.140200px;}
.x18_c00423{left:103.990200px;}
.xd_c00423{left:134.590200px;}
.x1a_c00423{left:138.565200px;}
.xe_c00423{left:190.090200px;}
.x5_c00423{left:220.315200px;}
.x1e_c00423{left:224.590200px;}
.x3_c00423{left:275.740200px;}
.x6_c00423{left:314.590200px;}
.x11_c00423{left:440.590200px;}
.x12_c00423{left:469.090200px;}
.x1b_c00423{left:495.340200px;}
.x1d_c00423{left:549.340200px;}
.x17_c00423{left:604.765200px;}
.x1f_c00423{left:615.565200px;}
.x19_c00423{left:637.165200px;}
.x15_c00423{left:643.315200px;}
.x7_c00423{left:654.490200px;}
.xf_c00423{left:656.590200px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls0_c00423{letter-spacing:0.000000pt;}
.ws0_c00423{word-spacing:0.000000pt;}
.fs1_c00423{font-size:53.333333pt;}
.fs0_c00423{font-size:58.666667pt;}
.fs2_c00423{font-size:64.000000pt;}
.y0_c00423{bottom:0.000000pt;}
.y43_c00423{bottom:74.732000pt;}
.y42_c00423{bottom:93.598667pt;}
.y40_c00423{bottom:111.532000pt;}
.y41_c00423{bottom:112.465333pt;}
.y3f_c00423{bottom:116.333333pt;}
.y3e_c00423{bottom:137.732000pt;}
.y3d_c00423{bottom:150.198667pt;}
.y3c_c00423{bottom:169.732000pt;}
.y3b_c00423{bottom:188.666667pt;}
.y3a_c00423{bottom:189.598667pt;}
.y39_c00423{bottom:194.065333pt;}
.y38_c00423{bottom:207.532000pt;}
.y37_c00423{bottom:208.465333pt;}
.y36_c00423{bottom:212.932000pt;}
.y35_c00423{bottom:226.065333pt;}
.y34_c00423{bottom:228.932000pt;}
.y33_c00423{bottom:246.598667pt;}
.y32_c00423{bottom:265.466667pt;}
.y31_c00423{bottom:284.932000pt;}
.y30_c00423{bottom:303.865333pt;}
.y2f_c00423{bottom:323.000000pt;}
.y2e_c00423{bottom:323.065333pt;}
.y2d_c00423{bottom:342.598667pt;}
.y2c_c00423{bottom:345.398667pt;}
.y2b_c00423{bottom:362.065333pt;}
.y2a_c00423{bottom:381.265333pt;}
.y29_c00423{bottom:400.198667pt;}
.y28_c00423{bottom:402.398667pt;}
.y27_c00423{bottom:419.065333pt;}
.y26_c00423{bottom:420.000000pt;}
.y25_c00423{bottom:438.598667pt;}
.y24_c00423{bottom:458.065333pt;}
.y23_c00423{bottom:477.000000pt;}
.y22_c00423{bottom:496.132000pt;}
.y21_c00423{bottom:515.398667pt;}
.y20_c00423{bottom:534.865333pt;}
.y1e_c00423{bottom:553.798667pt;}
.y1f_c00423{bottom:554.398667pt;}
.y1d_c00423{bottom:573.265333pt;}
.y1c_c00423{bottom:591.532000pt;}
.y1b_c00423{bottom:611.666667pt;}
.y1a_c00423{bottom:630.865333pt;}
.y17_c00423{bottom:649.798667pt;}
.y18_c00423{bottom:650.066667pt;}
.y19_c00423{bottom:650.400000pt;}
.y16_c00423{bottom:669.598667pt;}
.y15_c00423{bottom:688.798667pt;}
.y12_c00423{bottom:705.133333pt;}
.y13_c00423{bottom:706.065333pt;}
.y14_c00423{bottom:708.000000pt;}
.y11_c00423{bottom:725.000000pt;}
.y10_c00423{bottom:744.800000pt;}
.yf_c00423{bottom:763.666667pt;}
.ye_c00423{bottom:782.865333pt;}
.yd_c00423{bottom:801.732000pt;}
.yc_c00423{bottom:821.266667pt;}
.yb_c00423{bottom:840.466667pt;}
.ya_c00423{bottom:859.333333pt;}
.y9_c00423{bottom:877.933333pt;}
.y8_c00423{bottom:896.466667pt;}
.y4_c00423{bottom:909.266667pt;}
.y5_c00423{bottom:913.466667pt;}
.y7_c00423{bottom:915.000000pt;}
.y6_c00423{bottom:915.666667pt;}
.y1_c00423{bottom:957.266667pt;}
.y3_c00423{bottom:965.600000pt;}
.y2_c00423{bottom:970.065333pt;}
.h2_c00423{height:52.343750pt;}
.h1_c00423{height:61.187500pt;}
.h5_c00423{height:62.781250pt;}
.h3_c00423{height:62.812500pt;}
.h4_c00423{height:64.500000pt;}
.h0_c00423{height:1044.000000pt;}
.w0_c00423{width:650.646400pt;}
.w1_c00423{width:650.666667pt;}
.x0_c00423{left:0.000000pt;}
.x14_c00423{left:41.902400pt;}
.x10_c00423{left:42.835733pt;}
.xb_c00423{left:43.835733pt;}
.xa_c00423{left:44.769067pt;}
.x9_c00423{left:46.702400pt;}
.x8_c00423{left:47.635733pt;}
.x16_c00423{left:62.369067pt;}
.x1_c00423{left:65.569067pt;}
.x13_c00423{left:70.035733pt;}
.xc_c00423{left:71.035733pt;}
.x4_c00423{left:74.834400pt;}
.x1c_c00423{left:82.569067pt;}
.x2_c00423{left:89.902400pt;}
.x18_c00423{left:92.435733pt;}
.xd_c00423{left:119.635733pt;}
.x1a_c00423{left:123.169067pt;}
.xe_c00423{left:168.969067pt;}
.x5_c00423{left:195.835733pt;}
.x1e_c00423{left:199.635733pt;}
.x3_c00423{left:245.102400pt;}
.x6_c00423{left:279.635733pt;}
.x11_c00423{left:391.635733pt;}
.x12_c00423{left:416.969067pt;}
.x1b_c00423{left:440.302400pt;}
.x1d_c00423{left:488.302400pt;}
.x17_c00423{left:537.569067pt;}
.x1f_c00423{left:547.169067pt;}
.x19_c00423{left:566.369067pt;}
.x15_c00423{left:571.835733pt;}
.x7_c00423{left:581.769067pt;}
.xf_c00423{left:583.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_017944de16188fe3792c34c9.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00424{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c00424{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00424{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00424{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3_c00424{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00424{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c00424{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5_c00424{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m9_c00424{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c00424{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.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;}
}
.ws0_c00424{word-spacing:0.000000px;}
.fc0_c00424{color:transparent;}
.fs0_c00424{font-size:60.000000px;}
.fs1_c00424{font-size:72.000000px;}
.y0_c00424{bottom:0.000000px;}
.ye_c00424{bottom:842.550000px;}
.yd_c00424{bottom:865.275000px;}
.yc_c00424{bottom:887.550000px;}
.yb_c00424{bottom:909.525000px;}
.ya_c00424{bottom:931.500000px;}
.y9_c00424{bottom:953.473500px;}
.y8_c00424{bottom:975.823500px;}
.y7_c00424{bottom:998.098500px;}
.y6_c00424{bottom:1020.375000px;}
.y5_c00424{bottom:1043.098500px;}
.y4_c00424{bottom:1065.375000px;}
.y3_c00424{bottom:1123.800000px;}
.y2_c00424{bottom:1125.150000px;}
.y1_c00424{bottom:1126.650000px;}
.h1_c00424{height:58.886719px;}
.h2_c00424{height:70.664062px;}
.h0_c00424{height:1174.500000px;}
.w0_c00424{width:731.977200px;}
.w1_c00424{width:732.000000px;}
.x0_c00424{left:0.000000px;}
.x4_c00424{left:51.490200px;}
.x5_c00424{left:52.915200px;}
.x6_c00424{left:54.340200px;}
.x7_c00424{left:55.390200px;}
.x1_c00424{left:278.590200px;}
.x2_c00424{left:479.890200px;}
.x3_c00424{left:647.290200px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls0_c00424{letter-spacing:0.000000pt;}
.ws0_c00424{word-spacing:0.000000pt;}
.fs0_c00424{font-size:53.333333pt;}
.fs1_c00424{font-size:64.000000pt;}
.y0_c00424{bottom:0.000000pt;}
.ye_c00424{bottom:748.933333pt;}
.yd_c00424{bottom:769.133333pt;}
.yc_c00424{bottom:788.933333pt;}
.yb_c00424{bottom:808.466667pt;}
.ya_c00424{bottom:828.000000pt;}
.y9_c00424{bottom:847.532000pt;}
.y8_c00424{bottom:867.398667pt;}
.y7_c00424{bottom:887.198667pt;}
.y6_c00424{bottom:907.000000pt;}
.y5_c00424{bottom:927.198667pt;}
.y4_c00424{bottom:947.000000pt;}
.y3_c00424{bottom:998.933333pt;}
.y2_c00424{bottom:1000.133333pt;}
.y1_c00424{bottom:1001.466667pt;}
.h1_c00424{height:52.343750pt;}
.h2_c00424{height:62.812500pt;}
.h0_c00424{height:1044.000000pt;}
.w0_c00424{width:650.646400pt;}
.w1_c00424{width:650.666667pt;}
.x0_c00424{left:0.000000pt;}
.x4_c00424{left:45.769067pt;}
.x5_c00424{left:47.035733pt;}
.x6_c00424{left:48.302400pt;}
.x7_c00424{left:49.235733pt;}
.x1_c00424{left:247.635733pt;}
.x2_c00424{left:426.569067pt;}
.x3_c00424{left:575.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e6acb17ebc4b3f692710168.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00425;src:url('chunks/assets/font_fb070418ea93a33b7fd4063f.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00425{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m3_c00425{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m5_c00425{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m0_c00425{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2_c00425{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1_c00425{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,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:0.000000px;}
.fc0_c00425{color:transparent;}
.fs2_c00425{font-size:42.000000px;}
.fs1_c00425{font-size:66.000000px;}
.fs0_c00425{font-size:102.000000px;}
.fs3_c00425{font-size:150.000000px;}
.y0_c00425{bottom:0.000000px;}
.y4_c00425{bottom:560.698500px;}
.y3_c00425{bottom:646.798500px;}
.y2_c00425{bottom:711.898500px;}
.y1_c00425{bottom:795.073500px;}
.h3_c00425{height:41.220703px;}
.h2_c00425{height:64.775391px;}
.h1_c00425{height:106.382812px;}
.h4_c00425{height:156.445312px;}
.h0_c00425{height:1174.500000px;}
.w0_c00425{width:731.977200px;}
.w1_c00425{width:732.000000px;}
.x0_c00425{left:0.000000px;}
.x4_c00425{left:35.963700px;}
.x5_c00425{left:75.938700px;}
.x1_c00425{left:81.340200px;}
.x6_c00425{left:86.365200px;}
.x2_c00425{left:169.540200px;}
.x3_c00425{left:287.590200px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls0_c00425{letter-spacing:0.000000pt;}
.ws0_c00425{word-spacing:0.000000pt;}
.fs2_c00425{font-size:37.333333pt;}
.fs1_c00425{font-size:58.666667pt;}
.fs0_c00425{font-size:90.666667pt;}
.fs3_c00425{font-size:133.333333pt;}
.y0_c00425{bottom:0.000000pt;}
.y4_c00425{bottom:498.398667pt;}
.y3_c00425{bottom:574.932000pt;}
.y2_c00425{bottom:632.798667pt;}
.y1_c00425{bottom:706.732000pt;}
.h3_c00425{height:36.640625pt;}
.h2_c00425{height:57.578125pt;}
.h1_c00425{height:94.562500pt;}
.h4_c00425{height:139.062500pt;}
.h0_c00425{height:1044.000000pt;}
.w0_c00425{width:650.646400pt;}
.w1_c00425{width:650.666667pt;}
.x0_c00425{left:0.000000pt;}
.x4_c00425{left:31.967733pt;}
.x5_c00425{left:67.501067pt;}
.x1_c00425{left:72.302400pt;}
.x6_c00425{left:76.769067pt;}
.x2_c00425{left:150.702400pt;}
.x3_c00425{left:255.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ecb0dae17ddba57c5df78e80.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00426;src:url('chunks/assets/font_01d143a9f7683650f11b8fdf.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00426;src:url('chunks/assets/font_8b5c863aa82e467efbcfd9da.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00426{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1_c00426{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma_c00426{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2_c00426{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8_c00426{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc_c00426{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7_c00426{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m11_c00426{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m13_c00426{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4_c00426{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m18_c00426{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.md_c00426{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me_c00426{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9_c00426{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m15_c00426{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00426{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c00426{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c00426{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0_c00426{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c00426{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m17_c00426{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf_c00426{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c00426{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c00426{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m12_c00426{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.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;}
}
.ws0_c00426{word-spacing:0.000000px;}
.fc0_c00426{color:transparent;}
.fs3_c00426{font-size:90.000000px;}
.fs2_c00426{font-size:96.000000px;}
.fs1_c00426{font-size:126.000000px;}
.fs0_c00426{font-size:150.000000px;}
.y0_c00426{bottom:0.000000px;}
.y26_c00426{bottom:69.973500px;}
.y24_c00426{bottom:98.473500px;}
.y25_c00426{bottom:107.098500px;}
.y22_c00426{bottom:163.273500px;}
.y23_c00426{bottom:171.223500px;}
.y20_c00426{bottom:228.448500px;}
.y21_c00426{bottom:233.098500px;}
.y1e_c00426{bottom:294.298500px;}
.y1f_c00426{bottom:299.025000px;}
.y1c_c00426{bottom:360.598500px;}
.y1d_c00426{bottom:364.798500px;}
.y1a_c00426{bottom:427.500000px;}
.y1b_c00426{bottom:429.298500px;}
.y18_c00426{bottom:492.298500px;}
.y19_c00426{bottom:494.773500px;}
.y17_c00426{bottom:548.098500px;}
.y15_c00426{bottom:638.098500px;}
.y16_c00426{bottom:638.848500px;}
.y14_c00426{bottom:665.773500px;}
.y13_c00426{bottom:733.875000px;}
.y12_c00426{bottom:734.250000px;}
.y11_c00426{bottom:756.898500px;}
.y10_c00426{bottom:758.325000px;}
.yf_c00426{bottom:760.125000px;}
.ye_c00426{bottom:761.173500px;}
.yd_c00426{bottom:761.250000px;}
.yc_c00426{bottom:787.500000px;}
.yb_c00426{bottom:852.675000px;}
.ya_c00426{bottom:855.525000px;}
.y9_c00426{bottom:880.723500px;}
.y8_c00426{bottom:902.698500px;}
.y7_c00426{bottom:904.875000px;}
.y6_c00426{bottom:908.775000px;}
.y5_c00426{bottom:964.948500px;}
.y4_c00426{bottom:984.448500px;}
.y3_c00426{bottom:989.775000px;}
.y2_c00426{bottom:1013.625000px;}
.y1_c00426{bottom:1080.900000px;}
.h4_c00426{height:88.286133px;}
.h6_c00426{height:88.330078px;}
.h5_c00426{height:90.703125px;}
.h3_c00426{height:94.218750px;}
.h2_c00426{height:123.600586px;}
.h1_c00426{height:151.171875px;}
.h0_c00426{height:1174.500000px;}
.w0_c00426{width:731.977200px;}
.w1_c00426{width:732.000000px;}
.x0_c00426{left:0.000000px;}
.x2_c00426{left:66.565200px;}
.xa_c00426{left:68.365200px;}
.x5_c00426{left:70.165200px;}
.x13_c00426{left:73.090200px;}
.x1a_c00426{left:77.365200px;}
.x18_c00426{left:78.790200px;}
.x3_c00426{left:93.563700px;}
.x8_c00426{left:94.990200px;}
.xf_c00426{left:96.490200px;}
.x1c_c00426{left:105.790200px;}
.x10_c00426{left:148.990200px;}
.x1_c00426{left:168.790200px;}
.x11_c00426{left:210.565200px;}
.xb_c00426{left:212.365200px;}
.xc_c00426{left:233.965200px;}
.x14_c00426{left:263.890200px;}
.x12_c00426{left:296.965200px;}
.x17_c00426{left:332.965200px;}
.x4_c00426{left:355.690200px;}
.x19_c00426{left:382.990200px;}
.x1b_c00426{left:430.538700px;}
.x9_c00426{left:434.515200px;}
.x16_c00426{left:439.163700px;}
.x15_c00426{left:472.990200px;}
.x6_c00426{left:497.515200px;}
.x7_c00426{left:546.115200px;}
.xd_c00426{left:549.715200px;}
.xe_c00426{left:628.540200px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls0_c00426{letter-spacing:0.000000pt;}
.ws0_c00426{word-spacing:0.000000pt;}
.fs3_c00426{font-size:80.000000pt;}
.fs2_c00426{font-size:85.333333pt;}
.fs1_c00426{font-size:112.000000pt;}
.fs0_c00426{font-size:133.333333pt;}
.y0_c00426{bottom:0.000000pt;}
.y26_c00426{bottom:62.198667pt;}
.y24_c00426{bottom:87.532000pt;}
.y25_c00426{bottom:95.198667pt;}
.y22_c00426{bottom:145.132000pt;}
.y23_c00426{bottom:152.198667pt;}
.y20_c00426{bottom:203.065333pt;}
.y21_c00426{bottom:207.198667pt;}
.y1e_c00426{bottom:261.598667pt;}
.y1f_c00426{bottom:265.800000pt;}
.y1c_c00426{bottom:320.532000pt;}
.y1d_c00426{bottom:324.265333pt;}
.y1a_c00426{bottom:380.000000pt;}
.y1b_c00426{bottom:381.598667pt;}
.y18_c00426{bottom:437.598667pt;}
.y19_c00426{bottom:439.798667pt;}
.y17_c00426{bottom:487.198667pt;}
.y15_c00426{bottom:567.198667pt;}
.y16_c00426{bottom:567.865333pt;}
.y14_c00426{bottom:591.798667pt;}
.y13_c00426{bottom:652.333333pt;}
.y12_c00426{bottom:652.666667pt;}
.y11_c00426{bottom:672.798667pt;}
.y10_c00426{bottom:674.066667pt;}
.yf_c00426{bottom:675.666667pt;}
.ye_c00426{bottom:676.598667pt;}
.yd_c00426{bottom:676.666667pt;}
.yc_c00426{bottom:700.000000pt;}
.yb_c00426{bottom:757.933333pt;}
.ya_c00426{bottom:760.466667pt;}
.y9_c00426{bottom:782.865333pt;}
.y8_c00426{bottom:802.398667pt;}
.y7_c00426{bottom:804.333333pt;}
.y6_c00426{bottom:807.800000pt;}
.y5_c00426{bottom:857.732000pt;}
.y4_c00426{bottom:875.065333pt;}
.y3_c00426{bottom:879.800000pt;}
.y2_c00426{bottom:901.000000pt;}
.y1_c00426{bottom:960.800000pt;}
.h4_c00426{height:78.476562pt;}
.h6_c00426{height:78.515625pt;}
.h5_c00426{height:80.625000pt;}
.h3_c00426{height:83.750000pt;}
.h2_c00426{height:109.867188pt;}
.h1_c00426{height:134.375000pt;}
.h0_c00426{height:1044.000000pt;}
.w0_c00426{width:650.646400pt;}
.w1_c00426{width:650.666667pt;}
.x0_c00426{left:0.000000pt;}
.x2_c00426{left:59.169067pt;}
.xa_c00426{left:60.769067pt;}
.x5_c00426{left:62.369067pt;}
.x13_c00426{left:64.969067pt;}
.x1a_c00426{left:68.769067pt;}
.x18_c00426{left:70.035733pt;}
.x3_c00426{left:83.167733pt;}
.x8_c00426{left:84.435733pt;}
.xf_c00426{left:85.769067pt;}
.x1c_c00426{left:94.035733pt;}
.x10_c00426{left:132.435733pt;}
.x1_c00426{left:150.035733pt;}
.x11_c00426{left:187.169067pt;}
.xb_c00426{left:188.769067pt;}
.xc_c00426{left:207.969067pt;}
.x14_c00426{left:234.569067pt;}
.x12_c00426{left:263.969067pt;}
.x17_c00426{left:295.969067pt;}
.x4_c00426{left:316.169067pt;}
.x19_c00426{left:340.435733pt;}
.x1b_c00426{left:382.701067pt;}
.x9_c00426{left:386.235733pt;}
.x16_c00426{left:390.367733pt;}
.x15_c00426{left:420.435733pt;}
.x6_c00426{left:442.235733pt;}
.x7_c00426{left:485.435733pt;}
.xd_c00426{left:488.635733pt;}
.xe_c00426{left:558.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f86280bdf4d99bf989625a22.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00427;src:url('chunks/assets/font_1d74e1e0094e0b5eb0d3799f.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00427{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00427{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c00427{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m17_c00427{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00427{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4_c00427{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00427{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00427{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00427{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00427{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00427{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1_c00427{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00427{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c00427{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00427{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c00427{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00427{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c00427{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00427{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c00427{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m19_c00427{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc_c00427{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mf_c00427{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m18_c00427{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m14_c00427{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m16_c00427{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m11_c00427{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,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:0.000000px;}
.fc0_c00427{color:transparent;}
.fs0_c00427{font-size:60.000000px;}
.fs1_c00427{font-size:66.000000px;}
.fs2_c00427{font-size:72.000000px;}
.y0_c00427{bottom:0.000000px;}
.y3e_c00427{bottom:110.323500px;}
.y3d_c00427{bottom:114.298500px;}
.y3c_c00427{bottom:116.473500px;}
.y3b_c00427{bottom:126.898500px;}
.y3a_c00427{bottom:127.273500px;}
.y39_c00427{bottom:131.250000px;}
.y38_c00427{bottom:150.973500px;}
.y37_c00427{bottom:172.273500px;}
.y36_c00427{bottom:193.875000px;}
.y35_c00427{bottom:215.848500px;}
.y34_c00427{bottom:236.698500px;}
.y33_c00427{bottom:240.973500px;}
.y32_c00427{bottom:241.723500px;}
.y31_c00427{bottom:260.098500px;}
.y30_c00427{bottom:281.698500px;}
.y2f_c00427{bottom:301.500000px;}
.y2e_c00427{bottom:304.048500px;}
.y2d_c00427{bottom:324.900000px;}
.y2c_c00427{bottom:346.500000px;}
.y2b_c00427{bottom:367.723500px;}
.y2a_c00427{bottom:369.525000px;}
.y29_c00427{bottom:369.900000px;}
.y28_c00427{bottom:391.500000px;}
.y27_c00427{bottom:412.048500px;}
.y26_c00427{bottom:433.648500px;}
.y25_c00427{bottom:454.875000px;}
.y24_c00427{bottom:455.250000px;}
.y23_c00427{bottom:455.923500px;}
.y22_c00427{bottom:477.223500px;}
.y21_c00427{bottom:498.750000px;}
.y20_c00427{bottom:520.048500px;}
.y1f_c00427{bottom:520.348500px;}
.y1e_c00427{bottom:541.273500px;}
.y1d_c00427{bottom:541.648500px;}
.y1b_c00427{bottom:563.250000px;}
.y1c_c00427{bottom:563.625000px;}
.y1a_c00427{bottom:585.148500px;}
.y19_c00427{bottom:607.125000px;}
.y18_c00427{bottom:629.098500px;}
.y17_c00427{bottom:651.073500px;}
.y16_c00427{bottom:672.973500px;}
.y15_c00427{bottom:694.948500px;}
.y14_c00427{bottom:716.548500px;}
.y12_c00427{bottom:737.848500px;}
.y13_c00427{bottom:738.898500px;}
.y10_c00427{bottom:757.273500px;}
.y11_c00427{bottom:760.500000px;}
.ye_c00427{bottom:777.000000px;}
.yf_c00427{bottom:782.398500px;}
.yc_c00427{bottom:803.323500px;}
.yd_c00427{bottom:803.698500px;}
.y9_c00427{bottom:817.723500px;}
.ya_c00427{bottom:821.698500px;}
.yb_c00427{bottom:826.050000px;}
.y6_c00427{bottom:846.223500px;}
.y8_c00427{bottom:847.650000px;}
.y7_c00427{bottom:848.025000px;}
.y5_c00427{bottom:905.250000px;}
.y2_c00427{bottom:918.150000px;}
.y4_c00427{bottom:922.875000px;}
.y3_c00427{bottom:923.925000px;}
.y3f_c00427{bottom:1101.073500px;}
.y1_c00427{bottom:1112.925000px;}
.h1_c00427{height:58.886719px;}
.h3_c00427{height:60.468750px;}
.h2_c00427{height:64.775391px;}
.h5_c00427{height:66.515625px;}
.h4_c00427{height:70.664062px;}
.h0_c00427{height:1174.500000px;}
.w0_c00427{width:731.977200px;}
.w1_c00427{width:732.000000px;}
.x0_c00427{left:0.000000px;}
.x12_c00427{left:37.390200px;}
.xe_c00427{left:38.515200px;}
.x9_c00427{left:39.565200px;}
.x20_c00427{left:40.690200px;}
.x2_c00427{left:41.740200px;}
.xa_c00427{left:64.765200px;}
.x25_c00427{left:66.565200px;}
.x19_c00427{left:69.490200px;}
.x6_c00427{left:71.290200px;}
.x23_c00427{left:76.313700px;}
.x1a_c00427{left:107.290200px;}
.xd_c00427{left:127.090200px;}
.x1e_c00427{left:141.790200px;}
.x24_c00427{left:181.763700px;}
.xf_c00427{left:188.965200px;}
.x1b_c00427{left:193.690200px;}
.x5_c00427{left:241.540200px;}
.x1f_c00427{left:254.515200px;}
.x1_c00427{left:267.115200px;}
.xb_c00427{left:268.540200px;}
.x15_c00427{left:287.965200px;}
.x16_c00427{left:330.115200px;}
.x3_c00427{left:335.890200px;}
.x17_c00427{left:388.390200px;}
.x18_c00427{left:424.765200px;}
.x21_c00427{left:462.565200px;}
.x7_c00427{left:467.290200px;}
.x8_c00427{left:493.915200px;}
.x13_c00427{left:517.990200px;}
.x22_c00427{left:519.115200px;}
.x10_c00427{left:525.565200px;}
.x1c_c00427{left:528.490200px;}
.x4_c00427{left:540.340200px;}
.x11_c00427{left:553.990200px;}
.x1d_c00427{left:562.315200px;}
.xc_c00427{left:604.765200px;}
.x14_c00427{left:613.090200px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls0_c00427{letter-spacing:0.000000pt;}
.ws0_c00427{word-spacing:0.000000pt;}
.fs0_c00427{font-size:53.333333pt;}
.fs1_c00427{font-size:58.666667pt;}
.fs2_c00427{font-size:64.000000pt;}
.y0_c00427{bottom:0.000000pt;}
.y3e_c00427{bottom:98.065333pt;}
.y3d_c00427{bottom:101.598667pt;}
.y3c_c00427{bottom:103.532000pt;}
.y3b_c00427{bottom:112.798667pt;}
.y3a_c00427{bottom:113.132000pt;}
.y39_c00427{bottom:116.666667pt;}
.y38_c00427{bottom:134.198667pt;}
.y37_c00427{bottom:153.132000pt;}
.y36_c00427{bottom:172.333333pt;}
.y35_c00427{bottom:191.865333pt;}
.y34_c00427{bottom:210.398667pt;}
.y33_c00427{bottom:214.198667pt;}
.y32_c00427{bottom:214.865333pt;}
.y31_c00427{bottom:231.198667pt;}
.y30_c00427{bottom:250.398667pt;}
.y2f_c00427{bottom:268.000000pt;}
.y2e_c00427{bottom:270.265333pt;}
.y2d_c00427{bottom:288.800000pt;}
.y2c_c00427{bottom:308.000000pt;}
.y2b_c00427{bottom:326.865333pt;}
.y2a_c00427{bottom:328.466667pt;}
.y29_c00427{bottom:328.800000pt;}
.y28_c00427{bottom:348.000000pt;}
.y27_c00427{bottom:366.265333pt;}
.y26_c00427{bottom:385.465333pt;}
.y25_c00427{bottom:404.333333pt;}
.y24_c00427{bottom:404.666667pt;}
.y23_c00427{bottom:405.265333pt;}
.y22_c00427{bottom:424.198667pt;}
.y21_c00427{bottom:443.333333pt;}
.y20_c00427{bottom:462.265333pt;}
.y1f_c00427{bottom:462.532000pt;}
.y1e_c00427{bottom:481.132000pt;}
.y1d_c00427{bottom:481.465333pt;}
.y1b_c00427{bottom:500.666667pt;}
.y1c_c00427{bottom:501.000000pt;}
.y1a_c00427{bottom:520.132000pt;}
.y19_c00427{bottom:539.666667pt;}
.y18_c00427{bottom:559.198667pt;}
.y17_c00427{bottom:578.732000pt;}
.y16_c00427{bottom:598.198667pt;}
.y15_c00427{bottom:617.732000pt;}
.y14_c00427{bottom:636.932000pt;}
.y12_c00427{bottom:655.865333pt;}
.y13_c00427{bottom:656.798667pt;}
.y10_c00427{bottom:673.132000pt;}
.y11_c00427{bottom:676.000000pt;}
.ye_c00427{bottom:690.666667pt;}
.yf_c00427{bottom:695.465333pt;}
.yc_c00427{bottom:714.065333pt;}
.yd_c00427{bottom:714.398667pt;}
.y9_c00427{bottom:726.865333pt;}
.ya_c00427{bottom:730.398667pt;}
.yb_c00427{bottom:734.266667pt;}
.y6_c00427{bottom:752.198667pt;}
.y8_c00427{bottom:753.466667pt;}
.y7_c00427{bottom:753.800000pt;}
.y5_c00427{bottom:804.666667pt;}
.y2_c00427{bottom:816.133333pt;}
.y4_c00427{bottom:820.333333pt;}
.y3_c00427{bottom:821.266667pt;}
.y3f_c00427{bottom:978.732000pt;}
.y1_c00427{bottom:989.266667pt;}
.h1_c00427{height:52.343750pt;}
.h3_c00427{height:53.750000pt;}
.h2_c00427{height:57.578125pt;}
.h5_c00427{height:59.125000pt;}
.h4_c00427{height:62.812500pt;}
.h0_c00427{height:1044.000000pt;}
.w0_c00427{width:650.646400pt;}
.w1_c00427{width:650.666667pt;}
.x0_c00427{left:0.000000pt;}
.x12_c00427{left:33.235733pt;}
.xe_c00427{left:34.235733pt;}
.x9_c00427{left:35.169067pt;}
.x20_c00427{left:36.169067pt;}
.x2_c00427{left:37.102400pt;}
.xa_c00427{left:57.569067pt;}
.x25_c00427{left:59.169067pt;}
.x19_c00427{left:61.769067pt;}
.x6_c00427{left:63.369067pt;}
.x23_c00427{left:67.834400pt;}
.x1a_c00427{left:95.369067pt;}
.xd_c00427{left:112.969067pt;}
.x1e_c00427{left:126.035733pt;}
.x24_c00427{left:161.567733pt;}
.xf_c00427{left:167.969067pt;}
.x1b_c00427{left:172.169067pt;}
.x5_c00427{left:214.702400pt;}
.x1f_c00427{left:226.235733pt;}
.x1_c00427{left:237.435733pt;}
.xb_c00427{left:238.702400pt;}
.x15_c00427{left:255.969067pt;}
.x16_c00427{left:293.435733pt;}
.x3_c00427{left:298.569067pt;}
.x17_c00427{left:345.235733pt;}
.x18_c00427{left:377.569067pt;}
.x21_c00427{left:411.169067pt;}
.x7_c00427{left:415.369067pt;}
.x8_c00427{left:439.035733pt;}
.x13_c00427{left:460.435733pt;}
.x22_c00427{left:461.435733pt;}
.x10_c00427{left:467.169067pt;}
.x1c_c00427{left:469.769067pt;}
.x4_c00427{left:480.302400pt;}
.x11_c00427{left:492.435733pt;}
.x1d_c00427{left:499.835733pt;}
.xc_c00427{left:537.569067pt;}
.x14_c00427{left:544.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5285285fa2ec943386380760.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00428;src:url('chunks/assets/font_d20e0dec4a0d64a21b943546.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00428;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00428{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2_c00428{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00428{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c00428{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00428{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c00428{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00428{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00428{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00428{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00428{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00428{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c00428{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00428{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00428{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m8_c00428{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00428{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c00428{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.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;}
}
.ws0_c00428{word-spacing:0.000000px;}
.fc0_c00428{color:transparent;}
.fs0_c00428{font-size:60.000000px;}
.fs2_c00428{font-size:66.000000px;}
.fs1_c00428{font-size:72.000000px;}
.y0_c00428{bottom:0.000000px;}
.y2a_c00428{bottom:23.923500px;}
.y29_c00428{bottom:45.523500px;}
.y28_c00428{bottom:67.875000px;}
.y27_c00428{bottom:90.523500px;}
.y26_c00428{bottom:102.375000px;}
.y25_c00428{bottom:132.298500px;}
.y24_c00428{bottom:154.273500px;}
.y23_c00428{bottom:176.250000px;}
.y22_c00428{bottom:227.323500px;}
.y21_c00428{bottom:250.723500px;}
.y1e_c00428{bottom:266.923500px;}
.y1f_c00428{bottom:270.223500px;}
.y20_c00428{bottom:272.323500px;}
.y1d_c00428{bottom:285.973500px;}
.y1c_c00428{bottom:479.323500px;}
.y1b_c00428{bottom:503.098500px;}
.y1a_c00428{bottom:525.750000px;}
.y19_c00428{bottom:546.973500px;}
.y18_c00428{bottom:569.698500px;}
.y17_c00428{bottom:591.973500px;}
.y16_c00428{bottom:614.323500px;}
.y15_c00428{bottom:636.598500px;}
.y14_c00428{bottom:658.948500px;}
.y13_c00428{bottom:680.923500px;}
.y12_c00428{bottom:704.323500px;}
.y11_c00428{bottom:725.923500px;}
.y10_c00428{bottom:748.273500px;}
.yf_c00428{bottom:770.175000px;}
.ye_c00428{bottom:792.900000px;}
.yd_c00428{bottom:815.925000px;}
.yc_c00428{bottom:837.900000px;}
.yb_c00428{bottom:860.175000px;}
.ya_c00428{bottom:882.525000px;}
.y9_c00428{bottom:904.125000px;}
.y8_c00428{bottom:926.098500px;}
.y7_c00428{bottom:948.073500px;}
.y6_c00428{bottom:970.425000px;}
.y5_c00428{bottom:992.698500px;}
.y4_c00428{bottom:1014.300000px;}
.y3_c00428{bottom:1067.925000px;}
.y1_c00428{bottom:1076.625000px;}
.y2_c00428{bottom:1083.598500px;}
.h1_c00428{height:60.468750px;}
.h3_c00428{height:64.775391px;}
.h4_c00428{height:70.628906px;}
.h2_c00428{height:70.664062px;}
.h0_c00428{height:1174.500000px;}
.w0_c00428{width:731.977200px;}
.w1_c00428{width:732.000000px;}
.x0_c00428{left:0.000000px;}
.x5_c00428{left:49.690200px;}
.x6_c00428{left:51.490200px;}
.x7_c00428{left:52.540200px;}
.x9_c00428{left:53.965200px;}
.xb_c00428{left:56.890200px;}
.x10_c00428{left:58.315200px;}
.x11_c00428{left:60.490200px;}
.x13_c00428{left:61.915200px;}
.xc_c00428{left:75.188700px;}
.xf_c00428{left:80.290200px;}
.x4_c00428{left:84.188700px;}
.x8_c00428{left:86.740200px;}
.xa_c00428{left:88.165200px;}
.x12_c00428{left:94.315200px;}
.x1_c00428{left:275.365200px;}
.xd_c00428{left:451.390200px;}
.xe_c00428{left:467.290200px;}
.x2_c00428{left:477.340200px;}
.x14_c00428{left:616.690200px;}
.x3_c00428{left:643.990200px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls0_c00428{letter-spacing:0.000000pt;}
.ws0_c00428{word-spacing:0.000000pt;}
.fs0_c00428{font-size:53.333333pt;}
.fs2_c00428{font-size:58.666667pt;}
.fs1_c00428{font-size:64.000000pt;}
.y0_c00428{bottom:0.000000pt;}
.y2a_c00428{bottom:21.265333pt;}
.y29_c00428{bottom:40.465333pt;}
.y28_c00428{bottom:60.333333pt;}
.y27_c00428{bottom:80.465333pt;}
.y26_c00428{bottom:91.000000pt;}
.y25_c00428{bottom:117.598667pt;}
.y24_c00428{bottom:137.132000pt;}
.y23_c00428{bottom:156.666667pt;}
.y22_c00428{bottom:202.065333pt;}
.y21_c00428{bottom:222.865333pt;}
.y1e_c00428{bottom:237.265333pt;}
.y1f_c00428{bottom:240.198667pt;}
.y20_c00428{bottom:242.065333pt;}
.y1d_c00428{bottom:254.198667pt;}
.y1c_c00428{bottom:426.065333pt;}
.y1b_c00428{bottom:447.198667pt;}
.y1a_c00428{bottom:467.333333pt;}
.y19_c00428{bottom:486.198667pt;}
.y18_c00428{bottom:506.398667pt;}
.y17_c00428{bottom:526.198667pt;}
.y16_c00428{bottom:546.065333pt;}
.y15_c00428{bottom:565.865333pt;}
.y14_c00428{bottom:585.732000pt;}
.y13_c00428{bottom:605.265333pt;}
.y12_c00428{bottom:626.065333pt;}
.y11_c00428{bottom:645.265333pt;}
.y10_c00428{bottom:665.132000pt;}
.yf_c00428{bottom:684.600000pt;}
.ye_c00428{bottom:704.800000pt;}
.yd_c00428{bottom:725.266667pt;}
.yc_c00428{bottom:744.800000pt;}
.yb_c00428{bottom:764.600000pt;}
.ya_c00428{bottom:784.466667pt;}
.y9_c00428{bottom:803.666667pt;}
.y8_c00428{bottom:823.198667pt;}
.y7_c00428{bottom:842.732000pt;}
.y6_c00428{bottom:862.600000pt;}
.y5_c00428{bottom:882.398667pt;}
.y4_c00428{bottom:901.600000pt;}
.y3_c00428{bottom:949.266667pt;}
.y1_c00428{bottom:957.000000pt;}
.y2_c00428{bottom:963.198667pt;}
.h1_c00428{height:53.750000pt;}
.h3_c00428{height:57.578125pt;}
.h4_c00428{height:62.781250pt;}
.h2_c00428{height:62.812500pt;}
.h0_c00428{height:1044.000000pt;}
.w0_c00428{width:650.646400pt;}
.w1_c00428{width:650.666667pt;}
.x0_c00428{left:0.000000pt;}
.x5_c00428{left:44.169067pt;}
.x6_c00428{left:45.769067pt;}
.x7_c00428{left:46.702400pt;}
.x9_c00428{left:47.969067pt;}
.xb_c00428{left:50.569067pt;}
.x10_c00428{left:51.835733pt;}
.x11_c00428{left:53.769067pt;}
.x13_c00428{left:55.035733pt;}
.xc_c00428{left:66.834400pt;}
.xf_c00428{left:71.369067pt;}
.x4_c00428{left:74.834400pt;}
.x8_c00428{left:77.102400pt;}
.xa_c00428{left:78.369067pt;}
.x12_c00428{left:83.835733pt;}
.x1_c00428{left:244.769067pt;}
.xd_c00428{left:401.235733pt;}
.xe_c00428{left:415.369067pt;}
.x2_c00428{left:424.302400pt;}
.x14_c00428{left:548.169067pt;}
.x3_c00428{left:572.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_596360e3e7e1f8255523258f.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00429;src:url('chunks/assets/font_37e802f0a68c1c2061b7cb9b.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.284180;font-style:normal;font-weight:normal;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_e8cdb9554b254429991f0b4f.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_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);}
.m16_c00429{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00429{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c00429{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00429{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00429{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf_c00429{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00429{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c00429{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c00429{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00429{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00429{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00429{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00429{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00429{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00429{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00429{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00429{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00429{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00429{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c00429{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m18_c00429{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c00429{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m19_c00429{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m14_c00429{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m11_c00429{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1_c00429{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00429{color:transparent;}
.fs1_c00429{font-size:60.000000px;}
.fs0_c00429{font-size:66.000000px;}
.fs3_c00429{font-size:72.000000px;}
.fs2_c00429{font-size:78.000000px;}
.fs4_c00429{font-size:84.000000px;}
.y0_c00429{bottom:0.000000px;}
.y37_c00429{bottom:74.323500px;}
.y36_c00429{bottom:95.548500px;}
.y35_c00429{bottom:116.473500px;}
.y34_c00429{bottom:138.073500px;}
.y33_c00429{bottom:158.548500px;}
.y32_c00429{bottom:158.923500px;}
.y31_c00429{bottom:159.298500px;}
.y30_c00429{bottom:161.098500px;}
.y2f_c00429{bottom:163.573500px;}
.y2e_c00429{bottom:164.698500px;}
.y2d_c00429{bottom:185.923500px;}
.y2c_c00429{bottom:202.875000px;}
.y2b_c00429{bottom:224.773500px;}
.y2a_c00429{bottom:246.375000px;}
.y29_c00429{bottom:267.673500px;}
.y28_c00429{bottom:271.275000px;}
.y27_c00429{bottom:273.073500px;}
.y26_c00429{bottom:291.750000px;}
.y25_c00429{bottom:311.923500px;}
.y24_c00429{bottom:333.150000px;}
.y23_c00429{bottom:334.948500px;}
.y22_c00429{bottom:337.125000px;}
.y21_c00429{bottom:355.500000px;}
.y20_c00429{bottom:377.098500px;}
.y1f_c00429{bottom:399.073500px;}
.y1e_c00429{bottom:420.973500px;}
.y1d_c00429{bottom:442.948500px;}
.y1c_c00429{bottom:464.923500px;}
.y1b_c00429{bottom:486.523500px;}
.y1a_c00429{bottom:534.750000px;}
.y18_c00429{bottom:535.500000px;}
.y17_c00429{bottom:535.798500px;}
.y19_c00429{bottom:535.875000px;}
.y16_c00429{bottom:536.173500px;}
.y15_c00429{bottom:553.125000px;}
.y14_c00429{bottom:701.098500px;}
.y13_c00429{bottom:724.500000px;}
.y12_c00429{bottom:744.298500px;}
.y11_c00429{bottom:768.000000px;}
.y10_c00429{bottom:789.675000px;}
.yf_c00429{bottom:810.900000px;}
.ye_c00429{bottom:832.500000px;}
.yd_c00429{bottom:853.723500px;}
.yc_c00429{bottom:872.098500px;}
.yb_c00429{bottom:895.875000px;}
.ya_c00429{bottom:917.473500px;}
.y9_c00429{bottom:940.125000px;}
.y8_c00429{bottom:954.223500px;}
.y7_c00429{bottom:982.275000px;}
.y6_c00429{bottom:1003.125000px;}
.y4_c00429{bottom:1022.925000px;}
.y5_c00429{bottom:1026.598500px;}
.y1_c00429{bottom:1071.223500px;}
.y3_c00429{bottom:1080.150000px;}
.y2_c00429{bottom:1086.150000px;}
.h2_c00429{height:58.886719px;}
.h1_c00429{height:64.775391px;}
.h4_c00429{height:70.664062px;}
.h3_c00429{height:76.514648px;}
.h5_c00429{height:76.552734px;}
.h7_c00429{height:78.609375px;}
.h6_c00429{height:82.400391px;}
.h0_c00429{height:1174.500000px;}
.w0_c00429{width:731.977200px;}
.w1_c00429{width:732.000000px;}
.x0_c00429{left:0.000000px;}
.x1d_c00429{left:57.565200px;}
.x1c_c00429{left:58.690200px;}
.x15_c00429{left:60.790200px;}
.xd_c00429{left:62.590200px;}
.xb_c00429{left:67.990200px;}
.xa_c00429{left:69.115200px;}
.x9_c00429{left:71.590200px;}
.x7_c00429{left:72.715200px;}
.x6_c00429{left:74.515200px;}
.x1e_c00429{left:79.915200px;}
.x19_c00429{left:82.390200px;}
.x16_c00429{left:83.515200px;}
.x14_c00429{left:95.365200px;}
.x1_c00429{left:96.490200px;}
.xe_c00429{left:97.915200px;}
.xc_c00429{left:98.965200px;}
.x8_c00429{left:103.315200px;}
.x4_c00429{left:107.590200px;}
.x2_c00429{left:123.115200px;}
.x17_c00429{left:124.540200px;}
.x1a_c00429{left:125.590200px;}
.x1f_c00429{left:190.388700px;}
.x1b_c00429{left:221.365200px;}
.x18_c00429{left:255.940200px;}
.x20_c00429{left:273.940200px;}
.x3_c00429{left:298.090200px;}
.xf_c00429{left:319.990200px;}
.x10_c00429{left:335.890200px;}
.x21_c00429{left:357.790200px;}
.x11_c00429{left:424.090200px;}
.x22_c00429{left:435.190200px;}
.x23_c00429{left:443.515200px;}
.x12_c00429{left:510.790200px;}
.x13_c00429{left:566.290200px;}
.x5_c00429{left:594.340200px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls0_c00429{letter-spacing:0.000000pt;}
.ws0_c00429{word-spacing:0.000000pt;}
.fs1_c00429{font-size:53.333333pt;}
.fs0_c00429{font-size:58.666667pt;}
.fs3_c00429{font-size:64.000000pt;}
.fs2_c00429{font-size:69.333333pt;}
.fs4_c00429{font-size:74.666667pt;}
.y0_c00429{bottom:0.000000pt;}
.y37_c00429{bottom:66.065333pt;}
.y36_c00429{bottom:84.932000pt;}
.y35_c00429{bottom:103.532000pt;}
.y34_c00429{bottom:122.732000pt;}
.y33_c00429{bottom:140.932000pt;}
.y32_c00429{bottom:141.265333pt;}
.y31_c00429{bottom:141.598667pt;}
.y30_c00429{bottom:143.198667pt;}
.y2f_c00429{bottom:145.398667pt;}
.y2e_c00429{bottom:146.398667pt;}
.y2d_c00429{bottom:165.265333pt;}
.y2c_c00429{bottom:180.333333pt;}
.y2b_c00429{bottom:199.798667pt;}
.y2a_c00429{bottom:219.000000pt;}
.y29_c00429{bottom:237.932000pt;}
.y28_c00429{bottom:241.133333pt;}
.y27_c00429{bottom:242.732000pt;}
.y26_c00429{bottom:259.333333pt;}
.y25_c00429{bottom:277.265333pt;}
.y24_c00429{bottom:296.133333pt;}
.y23_c00429{bottom:297.732000pt;}
.y22_c00429{bottom:299.666667pt;}
.y21_c00429{bottom:316.000000pt;}
.y20_c00429{bottom:335.198667pt;}
.y1f_c00429{bottom:354.732000pt;}
.y1e_c00429{bottom:374.198667pt;}
.y1d_c00429{bottom:393.732000pt;}
.y1c_c00429{bottom:413.265333pt;}
.y1b_c00429{bottom:432.465333pt;}
.y1a_c00429{bottom:475.333333pt;}
.y18_c00429{bottom:476.000000pt;}
.y17_c00429{bottom:476.265333pt;}
.y19_c00429{bottom:476.333333pt;}
.y16_c00429{bottom:476.598667pt;}
.y15_c00429{bottom:491.666667pt;}
.y14_c00429{bottom:623.198667pt;}
.y13_c00429{bottom:644.000000pt;}
.y12_c00429{bottom:661.598667pt;}
.y11_c00429{bottom:682.666667pt;}
.y10_c00429{bottom:701.933333pt;}
.yf_c00429{bottom:720.800000pt;}
.ye_c00429{bottom:740.000000pt;}
.yd_c00429{bottom:758.865333pt;}
.yc_c00429{bottom:775.198667pt;}
.yb_c00429{bottom:796.333333pt;}
.ya_c00429{bottom:815.532000pt;}
.y9_c00429{bottom:835.666667pt;}
.y8_c00429{bottom:848.198667pt;}
.y7_c00429{bottom:873.133333pt;}
.y6_c00429{bottom:891.666667pt;}
.y4_c00429{bottom:909.266667pt;}
.y5_c00429{bottom:912.532000pt;}
.y1_c00429{bottom:952.198667pt;}
.y3_c00429{bottom:960.133333pt;}
.y2_c00429{bottom:965.466667pt;}
.h2_c00429{height:52.343750pt;}
.h1_c00429{height:57.578125pt;}
.h4_c00429{height:62.812500pt;}
.h3_c00429{height:68.013021pt;}
.h5_c00429{height:68.046875pt;}
.h7_c00429{height:69.875000pt;}
.h6_c00429{height:73.244792pt;}
.h0_c00429{height:1044.000000pt;}
.w0_c00429{width:650.646400pt;}
.w1_c00429{width:650.666667pt;}
.x0_c00429{left:0.000000pt;}
.x1d_c00429{left:51.169067pt;}
.x1c_c00429{left:52.169067pt;}
.x15_c00429{left:54.035733pt;}
.xd_c00429{left:55.635733pt;}
.xb_c00429{left:60.435733pt;}
.xa_c00429{left:61.435733pt;}
.x9_c00429{left:63.635733pt;}
.x7_c00429{left:64.635733pt;}
.x6_c00429{left:66.235733pt;}
.x1e_c00429{left:71.035733pt;}
.x19_c00429{left:73.235733pt;}
.x16_c00429{left:74.235733pt;}
.x14_c00429{left:84.769067pt;}
.x1_c00429{left:85.769067pt;}
.xe_c00429{left:87.035733pt;}
.xc_c00429{left:87.969067pt;}
.x8_c00429{left:91.835733pt;}
.x4_c00429{left:95.635733pt;}
.x2_c00429{left:109.435733pt;}
.x17_c00429{left:110.702400pt;}
.x1a_c00429{left:111.635733pt;}
.x1f_c00429{left:169.234400pt;}
.x1b_c00429{left:196.769067pt;}
.x18_c00429{left:227.502400pt;}
.x20_c00429{left:243.502400pt;}
.x3_c00429{left:264.969067pt;}
.xf_c00429{left:284.435733pt;}
.x10_c00429{left:298.569067pt;}
.x21_c00429{left:318.035733pt;}
.x11_c00429{left:376.969067pt;}
.x22_c00429{left:386.835733pt;}
.x23_c00429{left:394.235733pt;}
.x12_c00429{left:454.035733pt;}
.x13_c00429{left:503.369067pt;}
.x5_c00429{left:528.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19a821afdcd1685c6751ce0e.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00430;src:url('chunks/assets/font_7c85fcca9da83cc428a0d310.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00430;src:url('chunks/assets/font_413adb46473e3bfdb67596ce.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00430{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m0_c00430{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00430{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00430{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c00430{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00430{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00430{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00430{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2_c00430{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00430{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00430{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3_c00430{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00430{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c00430{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00430{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m11_c00430{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10_c00430{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c00430{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c00430{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.v0_c00430{vertical-align:0.000000px;}
.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;}
}
.ws0_c00430{word-spacing:0.000000px;}
.fc0_c00430{color:transparent;}
.fs0_c00430{font-size:60.000000px;}
.fs1_c00430{font-size:72.000000px;}
.fs2_c00430{font-size:78.000000px;}
.y0_c00430{bottom:0.000000px;}
.y33_c00430{bottom:59.625000px;}
.y32_c00430{bottom:81.223500px;}
.y31_c00430{bottom:102.448500px;}
.y30_c00430{bottom:124.723500px;}
.y2f_c00430{bottom:144.523500px;}
.y2e_c00430{bottom:167.250000px;}
.y2d_c00430{bottom:188.848500px;}
.y2c_c00430{bottom:210.000000px;}
.y2b_c00430{bottom:230.548500px;}
.y2a_c00430{bottom:252.148500px;}
.y29_c00430{bottom:273.750000px;}
.y28_c00430{bottom:295.048500px;}
.y27_c00430{bottom:317.698500px;}
.y25_c00430{bottom:337.125000px;}
.y26_c00430{bottom:341.473500px;}
.y24_c00430{bottom:361.650000px;}
.y23_c00430{bottom:383.923500px;}
.y22_c00430{bottom:405.525000px;}
.y21_c00430{bottom:427.500000px;}
.y20_c00430{bottom:449.473500px;}
.y1f_c00430{bottom:472.125000px;}
.y1e_c00430{bottom:494.098500px;}
.y1d_c00430{bottom:516.448500px;}
.y1c_c00430{bottom:538.723500px;}
.y1b_c00430{bottom:561.073500px;}
.y1a_c00430{bottom:583.423500px;}
.y19_c00430{bottom:605.698500px;}
.y18_c00430{bottom:628.723500px;}
.y17_c00430{bottom:649.948500px;}
.y16_c00430{bottom:670.875000px;}
.y15_c00430{bottom:673.048500px;}
.y14_c00430{bottom:696.073500px;}
.y13_c00430{bottom:716.923500px;}
.y12_c00430{bottom:741.375000px;}
.y11_c00430{bottom:761.250000px;}
.y10_c00430{bottom:787.125000px;}
.yf_c00430{bottom:806.175000px;}
.ye_c00430{bottom:828.598500px;}
.yd_c00430{bottom:850.800000px;}
.yc_c00430{bottom:873.900000px;}
.yb_c00430{bottom:895.875000px;}
.ya_c00430{bottom:913.875000px;}
.y7_c00430{bottom:918.525000px;}
.y8_c00430{bottom:918.598500px;}
.y9_c00430{bottom:919.275000px;}
.y6_c00430{bottom:944.400000px;}
.y5_c00430{bottom:961.348500px;}
.y4_c00430{bottom:983.323500px;}
.y3_c00430{bottom:1005.598500px;}
.y2_c00430{bottom:1027.948500px;}
.y1_c00430{bottom:1089.900000px;}
.h1_c00430{height:60.468750px;}
.h2_c00430{height:70.664062px;}
.h3_c00430{height:76.514648px;}
.h0_c00430{height:1174.500000px;}
.w0_c00430{width:731.977200px;}
.w1_c00430{width:732.000000px;}
.x0_c00430{left:0.000000px;}
.x3_c00430{left:56.515200px;}
.x4_c00430{left:58.690200px;}
.xb_c00430{left:59.740200px;}
.xc_c00430{left:61.915200px;}
.xf_c00430{left:63.340200px;}
.x10_c00430{left:64.390200px;}
.x11_c00430{left:65.515200px;}
.x5_c00430{left:82.090200px;}
.x2_c00430{left:92.890200px;}
.x6_c00430{left:94.315200px;}
.xd_c00430{left:96.115200px;}
.x7_c00430{left:98.965200px;}
.x8_c00430{left:129.190200px;}
.xe_c00430{left:237.190200px;}
.x1_c00430{left:282.565200px;}
.x9_c00430{left:392.740200px;}
.xa_c00430{left:471.190200px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls0_c00430{letter-spacing:0.000000pt;}
.ws0_c00430{word-spacing:0.000000pt;}
.fs0_c00430{font-size:53.333333pt;}
.fs1_c00430{font-size:64.000000pt;}
.fs2_c00430{font-size:69.333333pt;}
.y0_c00430{bottom:0.000000pt;}
.y33_c00430{bottom:53.000000pt;}
.y32_c00430{bottom:72.198667pt;}
.y31_c00430{bottom:91.065333pt;}
.y30_c00430{bottom:110.865333pt;}
.y2f_c00430{bottom:128.465333pt;}
.y2e_c00430{bottom:148.666667pt;}
.y2d_c00430{bottom:167.865333pt;}
.y2c_c00430{bottom:186.666667pt;}
.y2b_c00430{bottom:204.932000pt;}
.y2a_c00430{bottom:224.132000pt;}
.y29_c00430{bottom:243.333333pt;}
.y28_c00430{bottom:262.265333pt;}
.y27_c00430{bottom:282.398667pt;}
.y25_c00430{bottom:299.666667pt;}
.y26_c00430{bottom:303.532000pt;}
.y24_c00430{bottom:321.466667pt;}
.y23_c00430{bottom:341.265333pt;}
.y22_c00430{bottom:360.466667pt;}
.y21_c00430{bottom:380.000000pt;}
.y20_c00430{bottom:399.532000pt;}
.y1f_c00430{bottom:419.666667pt;}
.y1e_c00430{bottom:439.198667pt;}
.y1d_c00430{bottom:459.065333pt;}
.y1c_c00430{bottom:478.865333pt;}
.y1b_c00430{bottom:498.732000pt;}
.y1a_c00430{bottom:518.598667pt;}
.y19_c00430{bottom:538.398667pt;}
.y18_c00430{bottom:558.865333pt;}
.y17_c00430{bottom:577.732000pt;}
.y16_c00430{bottom:596.333333pt;}
.y15_c00430{bottom:598.265333pt;}
.y14_c00430{bottom:618.732000pt;}
.y13_c00430{bottom:637.265333pt;}
.y12_c00430{bottom:659.000000pt;}
.y11_c00430{bottom:676.666667pt;}
.y10_c00430{bottom:699.666667pt;}
.yf_c00430{bottom:716.600000pt;}
.ye_c00430{bottom:736.532000pt;}
.yd_c00430{bottom:756.266667pt;}
.yc_c00430{bottom:776.800000pt;}
.yb_c00430{bottom:796.333333pt;}
.ya_c00430{bottom:812.333333pt;}
.y7_c00430{bottom:816.466667pt;}
.y8_c00430{bottom:816.532000pt;}
.y9_c00430{bottom:817.133333pt;}
.y6_c00430{bottom:839.466667pt;}
.y5_c00430{bottom:854.532000pt;}
.y4_c00430{bottom:874.065333pt;}
.y3_c00430{bottom:893.865333pt;}
.y2_c00430{bottom:913.732000pt;}
.y1_c00430{bottom:968.800000pt;}
.h1_c00430{height:53.750000pt;}
.h2_c00430{height:62.812500pt;}
.h3_c00430{height:68.013021pt;}
.h0_c00430{height:1044.000000pt;}
.w0_c00430{width:650.646400pt;}
.w1_c00430{width:650.666667pt;}
.x0_c00430{left:0.000000pt;}
.x3_c00430{left:50.235733pt;}
.x4_c00430{left:52.169067pt;}
.xb_c00430{left:53.102400pt;}
.xc_c00430{left:55.035733pt;}
.xf_c00430{left:56.302400pt;}
.x10_c00430{left:57.235733pt;}
.x11_c00430{left:58.235733pt;}
.x5_c00430{left:72.969067pt;}
.x2_c00430{left:82.569067pt;}
.x6_c00430{left:83.835733pt;}
.xd_c00430{left:85.435733pt;}
.x7_c00430{left:87.969067pt;}
.x8_c00430{left:114.835733pt;}
.xe_c00430{left:210.835733pt;}
.x1_c00430{left:251.169067pt;}
.x9_c00430{left:349.102400pt;}
.xa_c00430{left:418.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_baf2b1e3afce858421025b2d.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00431;src:url('chunks/assets/font_5c6156da20a5046c9502f24e.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00431;src:url('chunks/assets/font_ff6516a4dddbfc0ac511edb2.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00431;src:url('chunks/assets/font_b654bab982ae5cf8a6678216.woff2')format("woff");}.ff4_c00431{font-family:ff4_c00431;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00431{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m18_c00431{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me_c00431{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mf_c00431{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00431{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m14_c00431{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c00431{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00431{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00431{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00431{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00431{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00431{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c00431{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00431{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00431{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00431{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00431{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00431{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m17_c00431{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00431{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00431{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m19_c00431{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m15_c00431{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m16_c00431{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m10_c00431{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m13_c00431{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m12_c00431{transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.087500,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:0.000000px;}
.fc0_c00431{color:transparent;}
.fs4_c00431{font-size:54.000000px;}
.fs0_c00431{font-size:60.000000px;}
.fs1_c00431{font-size:72.000000px;}
.fs2_c00431{font-size:78.000000px;}
.fs3_c00431{font-size:102.000000px;}
.y0_c00431{bottom:0.000000px;}
.y38_c00431{bottom:77.923500px;}
.y37_c00431{bottom:88.723500px;}
.y36_c00431{bottom:89.098500px;}
.y35_c00431{bottom:99.898500px;}
.y34_c00431{bottom:106.048500px;}
.y33_c00431{bottom:125.098500px;}
.y32_c00431{bottom:142.348500px;}
.y31_c00431{bottom:165.448500px;}
.y30_c00431{bottom:185.625000px;}
.y2f_c00431{bottom:190.648500px;}
.y2e_c00431{bottom:213.673500px;}
.y2d_c00431{bottom:229.125000px;}
.y2c_c00431{bottom:235.198500px;}
.y2b_c00431{bottom:255.750000px;}
.y2a_c00431{bottom:272.698500px;}
.y29_c00431{bottom:295.348500px;}
.y28_c00431{bottom:316.948500px;}
.y27_c00431{bottom:337.875000px;}
.y26_c00431{bottom:341.473500px;}
.y25_c00431{bottom:360.150000px;}
.y23_c00431{bottom:361.573500px;}
.y24_c00431{bottom:362.698500px;}
.y22_c00431{bottom:382.125000px;}
.y21_c00431{bottom:403.723500px;}
.y20_c00431{bottom:426.073500px;}
.y1f_c00431{bottom:447.298500px;}
.y1e_c00431{bottom:469.573500px;}
.y1d_c00431{bottom:491.548500px;}
.y1c_c00431{bottom:512.773500px;}
.y1a_c00431{bottom:513.148500px;}
.y1b_c00431{bottom:513.223500px;}
.y19_c00431{bottom:534.448500px;}
.y18_c00431{bottom:556.348500px;}
.y17_c00431{bottom:577.948500px;}
.y16_c00431{bottom:599.923500px;}
.y15_c00431{bottom:621.898500px;}
.y14_c00431{bottom:643.875000px;}
.y13_c00431{bottom:666.148500px;}
.y12_c00431{bottom:687.823500px;}
.y11_c00431{bottom:710.098500px;}
.y10_c00431{bottom:732.375000px;}
.yf_c00431{bottom:754.348500px;}
.ye_c00431{bottom:776.023500px;}
.yd_c00431{bottom:798.000000px;}
.yc_c00431{bottom:820.198500px;}
.yb_c00431{bottom:841.875000px;}
.ya_c00431{bottom:863.473500px;}
.y9_c00431{bottom:885.073500px;}
.y8_c00431{bottom:907.050000px;}
.y7_c00431{bottom:928.948500px;}
.y6_c00431{bottom:950.250000px;}
.y5_c00431{bottom:972.525000px;}
.y4_c00431{bottom:993.448500px;}
.y3_c00431{bottom:1014.675000px;}
.y2_c00431{bottom:1035.900000px;}
.y39_c00431{bottom:1080.223500px;}
.y1_c00431{bottom:1092.375000px;}
.h6_c00431{height:54.421875px;}
.h1_c00431{height:58.886719px;}
.h2_c00431{height:70.664062px;}
.h3_c00431{height:76.514648px;}
.h5_c00431{height:76.552734px;}
.h4_c00431{height:102.796875px;}
.h0_c00431{height:1174.500000px;}
.w0_c00431{width:731.977200px;}
.w1_c00431{width:732.000000px;}
.x0_c00431{left:0.000000px;}
.x1a_c00431{left:66.565200px;}
.x18_c00431{left:67.690200px;}
.x13_c00431{left:69.790200px;}
.xe_c00431{left:70.915200px;}
.xc_c00431{left:73.765200px;}
.xb_c00431{left:75.188700px;}
.xa_c00431{left:76.313700px;}
.x9_c00431{left:77.365200px;}
.x8_c00431{left:78.490200px;}
.x7_c00431{left:80.290200px;}
.x6_c00431{left:81.715200px;}
.x3_c00431{left:86.365200px;}
.x2_c00431{left:87.790200px;}
.x1d_c00431{left:89.290200px;}
.x1c_c00431{left:90.715200px;}
.x5_c00431{left:92.140200px;}
.x14_c00431{left:93.188700px;}
.x1e_c00431{left:101.515200px;}
.xf_c00431{left:103.315200px;}
.xd_c00431{left:104.365200px;}
.x15_c00431{left:108.340200px;}
.x1f_c00431{left:112.315200px;}
.x16_c00431{left:114.490200px;}
.x4_c00431{left:115.540200px;}
.x1b_c00431{left:133.540200px;}
.x19_c00431{left:134.590200px;}
.x17_c00431{left:135.715200px;}
.x10_c00431{left:196.165200px;}
.x11_c00431{left:237.565200px;}
.x12_c00431{left:245.890200px;}
.x1_c00431{left:312.115200px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls0_c00431{letter-spacing:0.000000pt;}
.ws0_c00431{word-spacing:0.000000pt;}
.fs4_c00431{font-size:48.000000pt;}
.fs0_c00431{font-size:53.333333pt;}
.fs1_c00431{font-size:64.000000pt;}
.fs2_c00431{font-size:69.333333pt;}
.fs3_c00431{font-size:90.666667pt;}
.y0_c00431{bottom:0.000000pt;}
.y38_c00431{bottom:69.265333pt;}
.y37_c00431{bottom:78.865333pt;}
.y36_c00431{bottom:79.198667pt;}
.y35_c00431{bottom:88.798667pt;}
.y34_c00431{bottom:94.265333pt;}
.y33_c00431{bottom:111.198667pt;}
.y32_c00431{bottom:126.532000pt;}
.y31_c00431{bottom:147.065333pt;}
.y30_c00431{bottom:165.000000pt;}
.y2f_c00431{bottom:169.465333pt;}
.y2e_c00431{bottom:189.932000pt;}
.y2d_c00431{bottom:203.666667pt;}
.y2c_c00431{bottom:209.065333pt;}
.y2b_c00431{bottom:227.333333pt;}
.y2a_c00431{bottom:242.398667pt;}
.y29_c00431{bottom:262.532000pt;}
.y28_c00431{bottom:281.732000pt;}
.y27_c00431{bottom:300.333333pt;}
.y26_c00431{bottom:303.532000pt;}
.y25_c00431{bottom:320.133333pt;}
.y23_c00431{bottom:321.398667pt;}
.y24_c00431{bottom:322.398667pt;}
.y22_c00431{bottom:339.666667pt;}
.y21_c00431{bottom:358.865333pt;}
.y20_c00431{bottom:378.732000pt;}
.y1f_c00431{bottom:397.598667pt;}
.y1e_c00431{bottom:417.398667pt;}
.y1d_c00431{bottom:436.932000pt;}
.y1c_c00431{bottom:455.798667pt;}
.y1a_c00431{bottom:456.132000pt;}
.y1b_c00431{bottom:456.198667pt;}
.y19_c00431{bottom:475.065333pt;}
.y18_c00431{bottom:494.532000pt;}
.y17_c00431{bottom:513.732000pt;}
.y16_c00431{bottom:533.265333pt;}
.y15_c00431{bottom:552.798667pt;}
.y14_c00431{bottom:572.333333pt;}
.y13_c00431{bottom:592.132000pt;}
.y12_c00431{bottom:611.398667pt;}
.y11_c00431{bottom:631.198667pt;}
.y10_c00431{bottom:651.000000pt;}
.yf_c00431{bottom:670.532000pt;}
.ye_c00431{bottom:689.798667pt;}
.yd_c00431{bottom:709.333333pt;}
.yc_c00431{bottom:729.065333pt;}
.yb_c00431{bottom:748.333333pt;}
.ya_c00431{bottom:767.532000pt;}
.y9_c00431{bottom:786.732000pt;}
.y8_c00431{bottom:806.266667pt;}
.y7_c00431{bottom:825.732000pt;}
.y6_c00431{bottom:844.666667pt;}
.y5_c00431{bottom:864.466667pt;}
.y4_c00431{bottom:883.065333pt;}
.y3_c00431{bottom:901.933333pt;}
.y2_c00431{bottom:920.800000pt;}
.y39_c00431{bottom:960.198667pt;}
.y1_c00431{bottom:971.000000pt;}
.h6_c00431{height:48.375000pt;}
.h1_c00431{height:52.343750pt;}
.h2_c00431{height:62.812500pt;}
.h3_c00431{height:68.013021pt;}
.h5_c00431{height:68.046875pt;}
.h4_c00431{height:91.375000pt;}
.h0_c00431{height:1044.000000pt;}
.w0_c00431{width:650.646400pt;}
.w1_c00431{width:650.666667pt;}
.x0_c00431{left:0.000000pt;}
.x1a_c00431{left:59.169067pt;}
.x18_c00431{left:60.169067pt;}
.x13_c00431{left:62.035733pt;}
.xe_c00431{left:63.035733pt;}
.xc_c00431{left:65.569067pt;}
.xb_c00431{left:66.834400pt;}
.xa_c00431{left:67.834400pt;}
.x9_c00431{left:68.769067pt;}
.x8_c00431{left:69.769067pt;}
.x7_c00431{left:71.369067pt;}
.x6_c00431{left:72.635733pt;}
.x3_c00431{left:76.769067pt;}
.x2_c00431{left:78.035733pt;}
.x1d_c00431{left:79.369067pt;}
.x1c_c00431{left:80.635733pt;}
.x5_c00431{left:81.902400pt;}
.x14_c00431{left:82.834400pt;}
.x1e_c00431{left:90.235733pt;}
.xf_c00431{left:91.835733pt;}
.xd_c00431{left:92.769067pt;}
.x15_c00431{left:96.302400pt;}
.x1f_c00431{left:99.835733pt;}
.x16_c00431{left:101.769067pt;}
.x4_c00431{left:102.702400pt;}
.x1b_c00431{left:118.702400pt;}
.x19_c00431{left:119.635733pt;}
.x17_c00431{left:120.635733pt;}
.x10_c00431{left:174.369067pt;}
.x11_c00431{left:211.169067pt;}
.x12_c00431{left:218.569067pt;}
.x1_c00431{left:277.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3280d2470c9cbd3f28e5ed35.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00432;src:url('chunks/assets/font_c5401541faaf63ee5a8bdda2.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00432;src:url('chunks/assets/font_83fb4e0b454e5333ff54d535.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00432{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mb_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);}
.me_c00432{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c00432{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00432{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00432{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m11_c00432{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c00432{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00432{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00432{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c00432{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3_c00432{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00432{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00432{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00432{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c00432{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c00432{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c00432{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00432{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c00432{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10_c00432{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m18_c00432{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m13_c00432{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m16_c00432{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m2_c00432{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.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;}
}
.ws0_c00432{word-spacing:0.000000px;}
.fc0_c00432{color:transparent;}
.fs0_c00432{font-size:60.000000px;}
.fs3_c00432{font-size:66.000000px;}
.fs1_c00432{font-size:72.000000px;}
.fs2_c00432{font-size:78.000000px;}
.y0_c00432{bottom:0.000000px;}
.y37_c00432{bottom:81.148500px;}
.y36_c00432{bottom:102.750000px;}
.y35_c00432{bottom:121.125000px;}
.y34_c00432{bottom:145.648500px;}
.y33_c00432{bottom:166.500000px;}
.y32_c00432{bottom:188.473500px;}
.y31_c00432{bottom:209.323500px;}
.y30_c00432{bottom:230.625000px;}
.y2f_c00432{bottom:251.848500px;}
.y2c_c00432{bottom:270.900000px;}
.y2d_c00432{bottom:273.073500px;}
.y2e_c00432{bottom:275.923500px;}
.y2b_c00432{bottom:294.673500px;}
.y2a_c00432{bottom:317.323500px;}
.y29_c00432{bottom:339.298500px;}
.y28_c00432{bottom:361.573500px;}
.y25_c00432{bottom:383.173500px;}
.y26_c00432{bottom:386.848500px;}
.y27_c00432{bottom:387.598500px;}
.y24_c00432{bottom:405.150000px;}
.y21_c00432{bottom:425.323500px;}
.y22_c00432{bottom:425.698500px;}
.y23_c00432{bottom:427.500000px;}
.y20_c00432{bottom:449.098500px;}
.y1d_c00432{bottom:470.698500px;}
.y1e_c00432{bottom:471.073500px;}
.y1f_c00432{bottom:472.125000px;}
.y1c_c00432{bottom:493.723500px;}
.y1b_c00432{bottom:516.073500px;}
.y1a_c00432{bottom:538.348500px;}
.y19_c00432{bottom:560.698500px;}
.y18_c00432{bottom:561.073500px;}
.y17_c00432{bottom:607.500000px;}
.y16_c00432{bottom:624.448500px;}
.y15_c00432{bottom:625.500000px;}
.y14_c00432{bottom:625.875000px;}
.y13_c00432{bottom:641.323500px;}
.y12_c00432{bottom:643.125000px;}
.y11_c00432{bottom:807.300000px;}
.y10_c00432{bottom:826.348500px;}
.yf_c00432{bottom:854.098500px;}
.ye_c00432{bottom:871.800000px;}
.yd_c00432{bottom:894.448500px;}
.yc_c00432{bottom:915.973500px;}
.yb_c00432{bottom:937.275000px;}
.ya_c00432{bottom:960.675000px;}
.y9_c00432{bottom:982.650000px;}
.y8_c00432{bottom:1004.175000px;}
.y7_c00432{bottom:1026.900000px;}
.y6_c00432{bottom:1048.875000px;}
.y5_c00432{bottom:1101.750000px;}
.y3_c00432{bottom:1108.573500px;}
.y2_c00432{bottom:1110.073500px;}
.y1_c00432{bottom:1111.500000px;}
.y4_c00432{bottom:1117.425000px;}
.h2_c00432{height:58.886719px;}
.h1_c00432{height:60.468750px;}
.h5_c00432{height:64.743164px;}
.h3_c00432{height:70.664062px;}
.h6_c00432{height:76.514648px;}
.h4_c00432{height:78.609375px;}
.h0_c00432{height:1174.500000px;}
.w0_c00432{width:731.977200px;}
.w1_c00432{width:732.000000px;}
.x0_c00432{left:0.000000px;}
.xb_c00432{left:55.390200px;}
.xc_c00432{left:56.515200px;}
.x8_c00432{left:57.565200px;}
.x6_c00432{left:59.365200px;}
.x7_c00432{left:61.540200px;}
.xe_c00432{left:75.563700px;}
.x13_c00432{left:80.965200px;}
.xa_c00432{left:92.140200px;}
.x9_c00432{left:93.940200px;}
.x14_c00432{left:126.340200px;}
.x16_c00432{left:127.765200px;}
.x1a_c00432{left:129.190200px;}
.x17_c00432{left:222.790200px;}
.x11_c00432{left:236.140200px;}
.x12_c00432{left:254.515200px;}
.x15_c00432{left:264.190200px;}
.x1_c00432{left:286.915200px;}
.xf_c00432{left:298.390200px;}
.x10_c00432{left:315.340200px;}
.x1b_c00432{left:372.565200px;}
.x2_c00432{left:420.115200px;}
.x3_c00432{left:426.565200px;}
.x4_c00432{left:490.315200px;}
.x18_c00432{left:616.690200px;}
.x19_c00432{left:637.540200px;}
.xd_c00432{left:646.915200px;}
.x5_c00432{left:657.715200px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls0_c00432{letter-spacing:0.000000pt;}
.ws0_c00432{word-spacing:0.000000pt;}
.fs0_c00432{font-size:53.333333pt;}
.fs3_c00432{font-size:58.666667pt;}
.fs1_c00432{font-size:64.000000pt;}
.fs2_c00432{font-size:69.333333pt;}
.y0_c00432{bottom:0.000000pt;}
.y37_c00432{bottom:72.132000pt;}
.y36_c00432{bottom:91.333333pt;}
.y35_c00432{bottom:107.666667pt;}
.y34_c00432{bottom:129.465333pt;}
.y33_c00432{bottom:148.000000pt;}
.y32_c00432{bottom:167.532000pt;}
.y31_c00432{bottom:186.065333pt;}
.y30_c00432{bottom:205.000000pt;}
.y2f_c00432{bottom:223.865333pt;}
.y2c_c00432{bottom:240.800000pt;}
.y2d_c00432{bottom:242.732000pt;}
.y2e_c00432{bottom:245.265333pt;}
.y2b_c00432{bottom:261.932000pt;}
.y2a_c00432{bottom:282.065333pt;}
.y29_c00432{bottom:301.598667pt;}
.y28_c00432{bottom:321.398667pt;}
.y25_c00432{bottom:340.598667pt;}
.y26_c00432{bottom:343.865333pt;}
.y27_c00432{bottom:344.532000pt;}
.y24_c00432{bottom:360.133333pt;}
.y21_c00432{bottom:378.065333pt;}
.y22_c00432{bottom:378.398667pt;}
.y23_c00432{bottom:380.000000pt;}
.y20_c00432{bottom:399.198667pt;}
.y1d_c00432{bottom:418.398667pt;}
.y1e_c00432{bottom:418.732000pt;}
.y1f_c00432{bottom:419.666667pt;}
.y1c_c00432{bottom:438.865333pt;}
.y1b_c00432{bottom:458.732000pt;}
.y1a_c00432{bottom:478.532000pt;}
.y19_c00432{bottom:498.398667pt;}
.y18_c00432{bottom:498.732000pt;}
.y17_c00432{bottom:540.000000pt;}
.y16_c00432{bottom:555.065333pt;}
.y15_c00432{bottom:556.000000pt;}
.y14_c00432{bottom:556.333333pt;}
.y13_c00432{bottom:570.065333pt;}
.y12_c00432{bottom:571.666667pt;}
.y11_c00432{bottom:717.600000pt;}
.y10_c00432{bottom:734.532000pt;}
.yf_c00432{bottom:759.198667pt;}
.ye_c00432{bottom:774.933333pt;}
.yd_c00432{bottom:795.065333pt;}
.yc_c00432{bottom:814.198667pt;}
.yb_c00432{bottom:833.133333pt;}
.ya_c00432{bottom:853.933333pt;}
.y9_c00432{bottom:873.466667pt;}
.y8_c00432{bottom:892.600000pt;}
.y7_c00432{bottom:912.800000pt;}
.y6_c00432{bottom:932.333333pt;}
.y5_c00432{bottom:979.333333pt;}
.y3_c00432{bottom:985.398667pt;}
.y2_c00432{bottom:986.732000pt;}
.y1_c00432{bottom:988.000000pt;}
.y4_c00432{bottom:993.266667pt;}
.h2_c00432{height:52.343750pt;}
.h1_c00432{height:53.750000pt;}
.h5_c00432{height:57.549479pt;}
.h3_c00432{height:62.812500pt;}
.h6_c00432{height:68.013021pt;}
.h4_c00432{height:69.875000pt;}
.h0_c00432{height:1044.000000pt;}
.w0_c00432{width:650.646400pt;}
.w1_c00432{width:650.666667pt;}
.x0_c00432{left:0.000000pt;}
.xb_c00432{left:49.235733pt;}
.xc_c00432{left:50.235733pt;}
.x8_c00432{left:51.169067pt;}
.x6_c00432{left:52.769067pt;}
.x7_c00432{left:54.702400pt;}
.xe_c00432{left:67.167733pt;}
.x13_c00432{left:71.969067pt;}
.xa_c00432{left:81.902400pt;}
.x9_c00432{left:83.502400pt;}
.x14_c00432{left:112.302400pt;}
.x16_c00432{left:113.569067pt;}
.x1a_c00432{left:114.835733pt;}
.x17_c00432{left:198.035733pt;}
.x11_c00432{left:209.902400pt;}
.x12_c00432{left:226.235733pt;}
.x15_c00432{left:234.835733pt;}
.x1_c00432{left:255.035733pt;}
.xf_c00432{left:265.235733pt;}
.x10_c00432{left:280.302400pt;}
.x1b_c00432{left:331.169067pt;}
.x2_c00432{left:373.435733pt;}
.x3_c00432{left:379.169067pt;}
.x4_c00432{left:435.835733pt;}
.x18_c00432{left:548.169067pt;}
.x19_c00432{left:566.702400pt;}
.xd_c00432{left:575.035733pt;}
.x5_c00432{left:584.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54efd7bc50bc26f6d491ff02.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00433;src:url('chunks/assets/font_eb156ed22458b5534bd78f0d.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00433;src:url('chunks/assets/font_cbd567df44c76e46ff743da0.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00433;src:url('chunks/assets/font_3511ea5b6c9b6468fe665b47.woff2')format("woff");}.ff4_c00433{font-family:ff4_c00433;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00433{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9_c00433{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00433{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00433{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m0_c00433{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00433{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c00433{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14_c00433{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00433{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00433{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00433{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17_c00433{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00433{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md_c00433{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3_c00433{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00433{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00433{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00433{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m19_c00433{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00433{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c00433{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00433{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00433{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m18_c00433{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m16_c00433{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m6_c00433{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m1_c00433{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.ls0_c00433{letter-spacing:0.000000px;}
.sc__c00433{text-shadow:none;}
.sc0_c00433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00433{-webkit-text-stroke:0px transparent;}
.sc0_c00433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00433{word-spacing:0.000000px;}
.fc0_c00433{color:transparent;}
.fs1_c00433{font-size:60.000000px;}
.fs0_c00433{font-size:66.000000px;}
.fs2_c00433{font-size:72.000000px;}
.fs4_c00433{font-size:84.000000px;}
.fs3_c00433{font-size:126.000000px;}
.y0_c00433{bottom:0.000000px;}
.y38_c00433{bottom:104.548500px;}
.y37_c00433{bottom:117.223500px;}
.y36_c00433{bottom:139.125000px;}
.y35_c00433{bottom:159.973500px;}
.y34_c00433{bottom:188.773500px;}
.y33_c00433{bottom:203.923500px;}
.y32_c00433{bottom:210.823500px;}
.y31_c00433{bottom:229.500000px;}
.y30_c00433{bottom:247.500000px;}
.y2f_c00433{bottom:254.323500px;}
.y2e_c00433{bottom:275.173500px;}
.y2d_c00433{bottom:290.698500px;}
.y2c_c00433{bottom:316.275000px;}
.y2b_c00433{bottom:334.198500px;}
.y2a_c00433{bottom:356.250000px;}
.y29_c00433{bottom:378.223500px;}
.y28_c00433{bottom:399.823500px;}
.y27_c00433{bottom:402.598500px;}
.y26_c00433{bottom:423.898500px;}
.y25_c00433{bottom:444.073500px;}
.y24_c00433{bottom:465.973500px;}
.y23_c00433{bottom:487.648500px;}
.y22_c00433{bottom:509.548500px;}
.y21_c00433{bottom:532.273500px;}
.y20_c00433{bottom:552.750000px;}
.y1f_c00433{bottom:575.098500px;}
.y1e_c00433{bottom:597.073500px;}
.y1d_c00433{bottom:619.048500px;}
.y1c_c00433{bottom:640.948500px;}
.y1b_c00433{bottom:662.923500px;}
.y1a_c00433{bottom:684.898500px;}
.y19_c00433{bottom:706.500000px;}
.y18_c00433{bottom:728.473500px;}
.y17_c00433{bottom:750.450000px;}
.y16_c00433{bottom:772.348500px;}
.y15_c00433{bottom:794.323500px;}
.y14_c00433{bottom:815.625000px;}
.y13_c00433{bottom:837.525000px;}
.y11_c00433{bottom:855.900000px;}
.y12_c00433{bottom:858.823500px;}
.y10_c00433{bottom:879.300000px;}
.yf_c00433{bottom:901.948500px;}
.ye_c00433{bottom:923.925000px;}
.yd_c00433{bottom:944.473500px;}
.yc_c00433{bottom:959.250000px;}
.ya_c00433{bottom:960.300000px;}
.y8_c00433{bottom:961.723500px;}
.y9_c00433{bottom:962.848500px;}
.yb_c00433{bottom:967.875000px;}
.y7_c00433{bottom:989.473500px;}
.y6_c00433{bottom:1010.698500px;}
.y5_c00433{bottom:1030.125000px;}
.y4_c00433{bottom:1053.150000px;}
.y1_c00433{bottom:1098.900000px;}
.y3_c00433{bottom:1109.698500px;}
.y2_c00433{bottom:1114.573500px;}
.h2_c00433{height:58.886719px;}
.h1_c00433{height:64.775391px;}
.h6_c00433{height:66.515625px;}
.h3_c00433{height:70.664062px;}
.h5_c00433{height:82.400391px;}
.h4_c00433{height:131.414062px;}
.h0_c00433{height:1174.500000px;}
.w0_c00433{width:731.977200px;}
.w1_c00433{width:732.000000px;}
.x0_c00433{left:0.000000px;}
.x10_c00433{left:61.165200px;}
.xf_c00433{left:62.290200px;}
.xd_c00433{left:64.090200px;}
.xb_c00433{left:65.515200px;}
.x5_c00433{left:67.315200px;}
.x9_c00433{left:77.740200px;}
.x1_c00433{left:83.515200px;}
.x15_c00433{left:84.563700px;}
.x17_c00433{left:85.688700px;}
.x13_c00433{left:86.740200px;}
.x11_c00433{left:94.315200px;}
.xc_c00433{left:95.365200px;}
.x4_c00433{left:98.965200px;}
.x6_c00433{left:101.140200px;}
.x2_c00433{left:112.315200px;}
.x16_c00433{left:127.765200px;}
.x14_c00433{left:129.565200px;}
.x7_c00433{left:147.190200px;}
.xa_c00433{left:155.515200px;}
.x12_c00433{left:235.765200px;}
.xe_c00433{left:238.690200px;}
.x3_c00433{left:287.290200px;}
.x8_c00433{left:652.990200px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls0_c00433{letter-spacing:0.000000pt;}
.ws0_c00433{word-spacing:0.000000pt;}
.fs1_c00433{font-size:53.333333pt;}
.fs0_c00433{font-size:58.666667pt;}
.fs2_c00433{font-size:64.000000pt;}
.fs4_c00433{font-size:74.666667pt;}
.fs3_c00433{font-size:112.000000pt;}
.y0_c00433{bottom:0.000000pt;}
.y38_c00433{bottom:92.932000pt;}
.y37_c00433{bottom:104.198667pt;}
.y36_c00433{bottom:123.666667pt;}
.y35_c00433{bottom:142.198667pt;}
.y34_c00433{bottom:167.798667pt;}
.y33_c00433{bottom:181.265333pt;}
.y32_c00433{bottom:187.398667pt;}
.y31_c00433{bottom:204.000000pt;}
.y30_c00433{bottom:220.000000pt;}
.y2f_c00433{bottom:226.065333pt;}
.y2e_c00433{bottom:244.598667pt;}
.y2d_c00433{bottom:258.398667pt;}
.y2c_c00433{bottom:281.133333pt;}
.y2b_c00433{bottom:297.065333pt;}
.y2a_c00433{bottom:316.666667pt;}
.y29_c00433{bottom:336.198667pt;}
.y28_c00433{bottom:355.398667pt;}
.y27_c00433{bottom:357.865333pt;}
.y26_c00433{bottom:376.798667pt;}
.y25_c00433{bottom:394.732000pt;}
.y24_c00433{bottom:414.198667pt;}
.y23_c00433{bottom:433.465333pt;}
.y22_c00433{bottom:452.932000pt;}
.y21_c00433{bottom:473.132000pt;}
.y20_c00433{bottom:491.333333pt;}
.y1f_c00433{bottom:511.198667pt;}
.y1e_c00433{bottom:530.732000pt;}
.y1d_c00433{bottom:550.265333pt;}
.y1c_c00433{bottom:569.732000pt;}
.y1b_c00433{bottom:589.265333pt;}
.y1a_c00433{bottom:608.798667pt;}
.y19_c00433{bottom:628.000000pt;}
.y18_c00433{bottom:647.532000pt;}
.y17_c00433{bottom:667.066667pt;}
.y16_c00433{bottom:686.532000pt;}
.y15_c00433{bottom:706.065333pt;}
.y14_c00433{bottom:725.000000pt;}
.y13_c00433{bottom:744.466667pt;}
.y11_c00433{bottom:760.800000pt;}
.y12_c00433{bottom:763.398667pt;}
.y10_c00433{bottom:781.600000pt;}
.yf_c00433{bottom:801.732000pt;}
.ye_c00433{bottom:821.266667pt;}
.yd_c00433{bottom:839.532000pt;}
.yc_c00433{bottom:852.666667pt;}
.ya_c00433{bottom:853.600000pt;}
.y8_c00433{bottom:854.865333pt;}
.y9_c00433{bottom:855.865333pt;}
.yb_c00433{bottom:860.333333pt;}
.y7_c00433{bottom:879.532000pt;}
.y6_c00433{bottom:898.398667pt;}
.y5_c00433{bottom:915.666667pt;}
.y4_c00433{bottom:936.133333pt;}
.y1_c00433{bottom:976.800000pt;}
.y3_c00433{bottom:986.398667pt;}
.y2_c00433{bottom:990.732000pt;}
.h2_c00433{height:52.343750pt;}
.h1_c00433{height:57.578125pt;}
.h6_c00433{height:59.125000pt;}
.h3_c00433{height:62.812500pt;}
.h5_c00433{height:73.244792pt;}
.h4_c00433{height:116.812500pt;}
.h0_c00433{height:1044.000000pt;}
.w0_c00433{width:650.646400pt;}
.w1_c00433{width:650.666667pt;}
.x0_c00433{left:0.000000pt;}
.x10_c00433{left:54.369067pt;}
.xf_c00433{left:55.369067pt;}
.xd_c00433{left:56.969067pt;}
.xb_c00433{left:58.235733pt;}
.x5_c00433{left:59.835733pt;}
.x9_c00433{left:69.102400pt;}
.x1_c00433{left:74.235733pt;}
.x15_c00433{left:75.167733pt;}
.x17_c00433{left:76.167733pt;}
.x13_c00433{left:77.102400pt;}
.x11_c00433{left:83.835733pt;}
.xc_c00433{left:84.769067pt;}
.x4_c00433{left:87.969067pt;}
.x6_c00433{left:89.902400pt;}
.x2_c00433{left:99.835733pt;}
.x16_c00433{left:113.569067pt;}
.x14_c00433{left:115.169067pt;}
.x7_c00433{left:130.835733pt;}
.xa_c00433{left:138.235733pt;}
.x12_c00433{left:209.569067pt;}
.xe_c00433{left:212.169067pt;}
.x3_c00433{left:255.369067pt;}
.x8_c00433{left:580.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a11fd754bc4ef1a2daffa0d4.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00434;src:url('chunks/assets/font_95afb105a9434bdf0ba835c4.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00434;src:url('chunks/assets/font_5d944b907458a9430805607c.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00434;src:url('chunks/assets/font_27bef74f75d5539718af8c35.woff2')format("woff");}.ff4_c00434{font-family:ff4_c00434;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00434{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m1_c00434{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00434{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c00434{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c00434{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00434{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00434{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00434{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00434{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00434{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00434{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00434{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00434{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00434{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c00434{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00434{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m11_c00434{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me_c00434{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00434{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c00434{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m2_c00434{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls0_c00434{letter-spacing:0.000000px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00434{word-spacing:0.000000px;}
.fc0_c00434{color:transparent;}
.fs1_c00434{font-size:60.000000px;}
.fs0_c00434{font-size:66.000000px;}
.fs2_c00434{font-size:72.000000px;}
.fs3_c00434{font-size:78.000000px;}
.fs4_c00434{font-size:84.000000px;}
.y0_c00434{bottom:0.000000px;}
.y32_c00434{bottom:73.273500px;}
.y33_c00434{bottom:78.973500px;}
.y34_c00434{bottom:79.723500px;}
.y31_c00434{bottom:94.500000px;}
.y30_c00434{bottom:116.098500px;}
.y2f_c00434{bottom:137.323500px;}
.y2e_c00434{bottom:159.298500px;}
.y2d_c00434{bottom:179.848500px;}
.y2c_c00434{bottom:201.073500px;}
.y2b_c00434{bottom:222.298500px;}
.y2a_c00434{bottom:243.898500px;}
.y29_c00434{bottom:264.375000px;}
.y28_c00434{bottom:287.473500px;}
.y24_c00434{bottom:307.275000px;}
.y25_c00434{bottom:308.323500px;}
.y26_c00434{bottom:310.500000px;}
.y27_c00434{bottom:313.348500px;}
.y23_c00434{bottom:330.973500px;}
.y22_c00434{bottom:353.323500px;}
.y21_c00434{bottom:375.298500px;}
.y1e_c00434{bottom:394.723500px;}
.y1f_c00434{bottom:396.150000px;}
.y20_c00434{bottom:398.025000px;}
.y1d_c00434{bottom:418.500000px;}
.y1c_c00434{bottom:440.773500px;}
.y19_c00434{bottom:462.750000px;}
.y1a_c00434{bottom:463.875000px;}
.y1b_c00434{bottom:465.298500px;}
.y18_c00434{bottom:485.473500px;}
.y17_c00434{bottom:507.750000px;}
.y16_c00434{bottom:530.473500px;}
.y15_c00434{bottom:552.375000px;}
.y14_c00434{bottom:574.723500px;}
.y13_c00434{bottom:596.698500px;}
.y12_c00434{bottom:618.673500px;}
.y11_c00434{bottom:641.323500px;}
.y10_c00434{bottom:663.298500px;}
.yf_c00434{bottom:685.948500px;}
.ye_c00434{bottom:708.000000px;}
.yd_c00434{bottom:729.523500px;}
.yc_c00434{bottom:752.548500px;}
.yb_c00434{bottom:913.875000px;}
.ya_c00434{bottom:930.000000px;}
.y9_c00434{bottom:954.900000px;}
.y8_c00434{bottom:975.375000px;}
.y7_c00434{bottom:997.050000px;}
.y6_c00434{bottom:1020.073500px;}
.y5_c00434{bottom:1041.675000px;}
.y4_c00434{bottom:1094.550000px;}
.y2_c00434{bottom:1103.250000px;}
.y1_c00434{bottom:1105.723500px;}
.y3_c00434{bottom:1110.223500px;}
.h2_c00434{height:60.468750px;}
.h1_c00434{height:66.515625px;}
.h3_c00434{height:70.664062px;}
.h4_c00434{height:76.514648px;}
.h5_c00434{height:84.656250px;}
.h0_c00434{height:1174.500000px;}
.w0_c00434{width:731.977200px;}
.w1_c00434{width:732.000000px;}
.x0_c00434{left:0.000000px;}
.xe_c00434{left:60.790200px;}
.xb_c00434{left:61.915200px;}
.xa_c00434{left:63.340200px;}
.x9_c00434{left:64.390200px;}
.x6_c00434{left:66.940200px;}
.x5_c00434{left:90.715200px;}
.x16_c00434{left:94.990200px;}
.x15_c00434{left:97.165200px;}
.x8_c00434{left:98.590200px;}
.x7_c00434{left:101.515200px;}
.x11_c00434{left:123.115200px;}
.xf_c00434{left:196.540200px;}
.x12_c00434{left:220.990200px;}
.x13_c00434{left:241.915200px;}
.x1_c00434{left:294.490200px;}
.x2_c00434{left:323.290200px;}
.x10_c00434{left:360.715200px;}
.x14_c00434{left:411.788700px;}
.xc_c00434{left:470.890200px;}
.x3_c00434{left:497.890200px;}
.xd_c00434{left:570.565200px;}
.x17_c00434{left:658.765200px;}
.x18_c00434{left:663.115200px;}
.x4_c00434{left:664.540200px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls0_c00434{letter-spacing:0.000000pt;}
.ws0_c00434{word-spacing:0.000000pt;}
.fs1_c00434{font-size:53.333333pt;}
.fs0_c00434{font-size:58.666667pt;}
.fs2_c00434{font-size:64.000000pt;}
.fs3_c00434{font-size:69.333333pt;}
.fs4_c00434{font-size:74.666667pt;}
.y0_c00434{bottom:0.000000pt;}
.y32_c00434{bottom:65.132000pt;}
.y33_c00434{bottom:70.198667pt;}
.y34_c00434{bottom:70.865333pt;}
.y31_c00434{bottom:84.000000pt;}
.y30_c00434{bottom:103.198667pt;}
.y2f_c00434{bottom:122.065333pt;}
.y2e_c00434{bottom:141.598667pt;}
.y2d_c00434{bottom:159.865333pt;}
.y2c_c00434{bottom:178.732000pt;}
.y2b_c00434{bottom:197.598667pt;}
.y2a_c00434{bottom:216.798667pt;}
.y29_c00434{bottom:235.000000pt;}
.y28_c00434{bottom:255.532000pt;}
.y24_c00434{bottom:273.133333pt;}
.y25_c00434{bottom:274.065333pt;}
.y26_c00434{bottom:276.000000pt;}
.y27_c00434{bottom:278.532000pt;}
.y23_c00434{bottom:294.198667pt;}
.y22_c00434{bottom:314.065333pt;}
.y21_c00434{bottom:333.598667pt;}
.y1e_c00434{bottom:350.865333pt;}
.y1f_c00434{bottom:352.133333pt;}
.y20_c00434{bottom:353.800000pt;}
.y1d_c00434{bottom:372.000000pt;}
.y1c_c00434{bottom:391.798667pt;}
.y19_c00434{bottom:411.333333pt;}
.y1a_c00434{bottom:412.333333pt;}
.y1b_c00434{bottom:413.598667pt;}
.y18_c00434{bottom:431.532000pt;}
.y17_c00434{bottom:451.333333pt;}
.y16_c00434{bottom:471.532000pt;}
.y15_c00434{bottom:491.000000pt;}
.y14_c00434{bottom:510.865333pt;}
.y13_c00434{bottom:530.398667pt;}
.y12_c00434{bottom:549.932000pt;}
.y11_c00434{bottom:570.065333pt;}
.y10_c00434{bottom:589.598667pt;}
.yf_c00434{bottom:609.732000pt;}
.ye_c00434{bottom:629.333333pt;}
.yd_c00434{bottom:648.465333pt;}
.yc_c00434{bottom:668.932000pt;}
.yb_c00434{bottom:812.333333pt;}
.ya_c00434{bottom:826.666667pt;}
.y9_c00434{bottom:848.800000pt;}
.y8_c00434{bottom:867.000000pt;}
.y7_c00434{bottom:886.266667pt;}
.y6_c00434{bottom:906.732000pt;}
.y5_c00434{bottom:925.933333pt;}
.y4_c00434{bottom:972.933333pt;}
.y2_c00434{bottom:980.666667pt;}
.y1_c00434{bottom:982.865333pt;}
.y3_c00434{bottom:986.865333pt;}
.h2_c00434{height:53.750000pt;}
.h1_c00434{height:59.125000pt;}
.h3_c00434{height:62.812500pt;}
.h4_c00434{height:68.013021pt;}
.h5_c00434{height:75.250000pt;}
.h0_c00434{height:1044.000000pt;}
.w0_c00434{width:650.646400pt;}
.w1_c00434{width:650.666667pt;}
.x0_c00434{left:0.000000pt;}
.xe_c00434{left:54.035733pt;}
.xb_c00434{left:55.035733pt;}
.xa_c00434{left:56.302400pt;}
.x9_c00434{left:57.235733pt;}
.x6_c00434{left:59.502400pt;}
.x5_c00434{left:80.635733pt;}
.x16_c00434{left:84.435733pt;}
.x15_c00434{left:86.369067pt;}
.x8_c00434{left:87.635733pt;}
.x7_c00434{left:90.235733pt;}
.x11_c00434{left:109.435733pt;}
.xf_c00434{left:174.702400pt;}
.x12_c00434{left:196.435733pt;}
.x13_c00434{left:215.035733pt;}
.x1_c00434{left:261.769067pt;}
.x2_c00434{left:287.369067pt;}
.x10_c00434{left:320.635733pt;}
.x14_c00434{left:366.034400pt;}
.xc_c00434{left:418.569067pt;}
.x3_c00434{left:442.569067pt;}
.xd_c00434{left:507.169067pt;}
.x17_c00434{left:585.569067pt;}
.x18_c00434{left:589.435733pt;}
.x4_c00434{left:590.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f6ee97d43cbd417eb85e05f.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00435;src:url('chunks/assets/font_355dba3ec2067cf82d71f4b5.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00435{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m0_c00435{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m11_c00435{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c00435{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1_c00435{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00435{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00435{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00435{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00435{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00435{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00435{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00435{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00435{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00435{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00435{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c00435{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c00435{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c00435{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00435{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m8_c00435{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.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;}
}
.ws0_c00435{word-spacing:0.000000px;}
.fc0_c00435{color:transparent;}
.fs0_c00435{font-size:60.000000px;}
.fs1_c00435{font-size:72.000000px;}
.y0_c00435{bottom:0.000000px;}
.y34_c00435{bottom:103.798500px;}
.y35_c00435{bottom:106.798500px;}
.y33_c00435{bottom:131.923500px;}
.y32_c00435{bottom:147.073500px;}
.y31_c00435{bottom:168.673500px;}
.y30_c00435{bottom:189.898500px;}
.y2f_c00435{bottom:211.875000px;}
.y2e_c00435{bottom:234.223500px;}
.y2d_c00435{bottom:256.500000px;}
.y2c_c00435{bottom:277.348500px;}
.y2b_c00435{bottom:299.698500px;}
.y2a_c00435{bottom:325.275000px;}
.y29_c00435{bottom:342.525000px;}
.y28_c00435{bottom:366.298500px;}
.y27_c00435{bottom:386.098500px;}
.y25_c00435{bottom:407.398500px;}
.y26_c00435{bottom:407.698500px;}
.y24_c00435{bottom:409.875000px;}
.y23_c00435{bottom:429.973500px;}
.y22_c00435{bottom:453.073500px;}
.y21_c00435{bottom:473.625000px;}
.y20_c00435{bottom:495.523500px;}
.y1f_c00435{bottom:517.125000px;}
.y1e_c00435{bottom:538.723500px;}
.y1d_c00435{bottom:560.698500px;}
.y1c_c00435{bottom:582.298500px;}
.y1b_c00435{bottom:604.198500px;}
.y1a_c00435{bottom:625.875000px;}
.y19_c00435{bottom:647.773500px;}
.y18_c00435{bottom:669.750000px;}
.y17_c00435{bottom:691.348500px;}
.y16_c00435{bottom:713.023500px;}
.y14_c00435{bottom:734.923500px;}
.y15_c00435{bottom:735.298500px;}
.y13_c00435{bottom:756.898500px;}
.y12_c00435{bottom:778.800000px;}
.y10_c00435{bottom:797.250000px;}
.y11_c00435{bottom:800.473500px;}
.yf_c00435{bottom:821.025000px;}
.ye_c00435{bottom:843.000000px;}
.yd_c00435{bottom:864.223500px;}
.yc_c00435{bottom:885.375000px;}
.yb_c00435{bottom:906.973500px;}
.ya_c00435{bottom:928.948500px;}
.y9_c00435{bottom:950.550000px;}
.y8_c00435{bottom:972.525000px;}
.y7_c00435{bottom:994.125000px;}
.y6_c00435{bottom:1014.598500px;}
.y5_c00435{bottom:1035.150000px;}
.y2_c00435{bottom:1047.073500px;}
.y3_c00435{bottom:1051.425000px;}
.y4_c00435{bottom:1058.925000px;}
.y36_c00435{bottom:1100.698500px;}
.y1_c00435{bottom:1112.550000px;}
.h1_c00435{height:58.886719px;}
.h3_c00435{height:70.628906px;}
.h2_c00435{height:70.664062px;}
.h0_c00435{height:1174.500000px;}
.w0_c00435{width:731.977200px;}
.w1_c00435{width:732.000000px;}
.x0_c00435{left:0.000000px;}
.xb_c00435{left:51.790200px;}
.x8_c00435{left:52.915200px;}
.x7_c00435{left:53.965200px;}
.x6_c00435{left:55.090200px;}
.x5_c00435{left:56.140200px;}
.x2_c00435{left:57.565200px;}
.x12_c00435{left:76.990200px;}
.x9_c00435{left:83.515200px;}
.x10_c00435{left:85.990200px;}
.xa_c00435{left:111.940200px;}
.x11_c00435{left:237.190200px;}
.x3_c00435{left:248.365200px;}
.x4_c00435{left:257.740200px;}
.x1_c00435{left:283.990200px;}
.xe_c00435{left:363.940200px;}
.xc_c00435{left:389.515200px;}
.xf_c00435{left:440.290200px;}
.xd_c00435{left:451.390200px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls0_c00435{letter-spacing:0.000000pt;}
.ws0_c00435{word-spacing:0.000000pt;}
.fs0_c00435{font-size:53.333333pt;}
.fs1_c00435{font-size:64.000000pt;}
.y0_c00435{bottom:0.000000pt;}
.y34_c00435{bottom:92.265333pt;}
.y35_c00435{bottom:94.932000pt;}
.y33_c00435{bottom:117.265333pt;}
.y32_c00435{bottom:130.732000pt;}
.y31_c00435{bottom:149.932000pt;}
.y30_c00435{bottom:168.798667pt;}
.y2f_c00435{bottom:188.333333pt;}
.y2e_c00435{bottom:208.198667pt;}
.y2d_c00435{bottom:228.000000pt;}
.y2c_c00435{bottom:246.532000pt;}
.y2b_c00435{bottom:266.398667pt;}
.y2a_c00435{bottom:289.133333pt;}
.y29_c00435{bottom:304.466667pt;}
.y28_c00435{bottom:325.598667pt;}
.y27_c00435{bottom:343.198667pt;}
.y25_c00435{bottom:362.132000pt;}
.y26_c00435{bottom:362.398667pt;}
.y24_c00435{bottom:364.333333pt;}
.y23_c00435{bottom:382.198667pt;}
.y22_c00435{bottom:402.732000pt;}
.y21_c00435{bottom:421.000000pt;}
.y20_c00435{bottom:440.465333pt;}
.y1f_c00435{bottom:459.666667pt;}
.y1e_c00435{bottom:478.865333pt;}
.y1d_c00435{bottom:498.398667pt;}
.y1c_c00435{bottom:517.598667pt;}
.y1b_c00435{bottom:537.065333pt;}
.y1a_c00435{bottom:556.333333pt;}
.y19_c00435{bottom:575.798667pt;}
.y18_c00435{bottom:595.333333pt;}
.y17_c00435{bottom:614.532000pt;}
.y16_c00435{bottom:633.798667pt;}
.y14_c00435{bottom:653.265333pt;}
.y15_c00435{bottom:653.598667pt;}
.y13_c00435{bottom:672.798667pt;}
.y12_c00435{bottom:692.266667pt;}
.y10_c00435{bottom:708.666667pt;}
.y11_c00435{bottom:711.532000pt;}
.yf_c00435{bottom:729.800000pt;}
.ye_c00435{bottom:749.333333pt;}
.yd_c00435{bottom:768.198667pt;}
.yc_c00435{bottom:787.000000pt;}
.yb_c00435{bottom:806.198667pt;}
.ya_c00435{bottom:825.732000pt;}
.y9_c00435{bottom:844.933333pt;}
.y8_c00435{bottom:864.466667pt;}
.y7_c00435{bottom:883.666667pt;}
.y6_c00435{bottom:901.865333pt;}
.y5_c00435{bottom:920.133333pt;}
.y2_c00435{bottom:930.732000pt;}
.y3_c00435{bottom:934.600000pt;}
.y4_c00435{bottom:941.266667pt;}
.y36_c00435{bottom:978.398667pt;}
.y1_c00435{bottom:988.933333pt;}
.h1_c00435{height:52.343750pt;}
.h3_c00435{height:62.781250pt;}
.h2_c00435{height:62.812500pt;}
.h0_c00435{height:1044.000000pt;}
.w0_c00435{width:650.646400pt;}
.w1_c00435{width:650.666667pt;}
.x0_c00435{left:0.000000pt;}
.xb_c00435{left:46.035733pt;}
.x8_c00435{left:47.035733pt;}
.x7_c00435{left:47.969067pt;}
.x6_c00435{left:48.969067pt;}
.x5_c00435{left:49.902400pt;}
.x2_c00435{left:51.169067pt;}
.x12_c00435{left:68.435733pt;}
.x9_c00435{left:74.235733pt;}
.x10_c00435{left:76.435733pt;}
.xa_c00435{left:99.502400pt;}
.x11_c00435{left:210.835733pt;}
.x3_c00435{left:220.769067pt;}
.x4_c00435{left:229.102400pt;}
.x1_c00435{left:252.435733pt;}
.xe_c00435{left:323.502400pt;}
.xc_c00435{left:346.235733pt;}
.xf_c00435{left:391.369067pt;}
.xd_c00435{left:401.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_802fdb44de16bce6a704bd8f.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00436;src:url('chunks/assets/font_8b0c4d1a3c1e543e0447f2c8.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00436;src:url('chunks/assets/font_30992ce91bcd1540b490920d.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00436;src:url('chunks/assets/font_9b592f9e084909225a5b229e.woff2')format("woff");}.ff4_c00436{font-family:ff4_c00436;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_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);}
.m10_c00436{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00436{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m11_c00436{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf_c00436{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00436{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c00436{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00436{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00436{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c00436{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00436{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00436{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3_c00436{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c00436{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c00436{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c00436{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.ma_c00436{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c00436{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00436{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00436{color:transparent;}
.fs0_c00436{font-size:60.000000px;}
.fs2_c00436{font-size:66.000000px;}
.fs3_c00436{font-size:72.000000px;}
.fs1_c00436{font-size:78.000000px;}
.fs4_c00436{font-size:84.000000px;}
.y0_c00436{bottom:0.000000px;}
.y30_c00436{bottom:71.773500px;}
.y2f_c00436{bottom:93.448500px;}
.y2e_c00436{bottom:114.973500px;}
.y2d_c00436{bottom:136.573500px;}
.y2c_c00436{bottom:157.875000px;}
.y2b_c00436{bottom:179.098500px;}
.y2a_c00436{bottom:200.698500px;}
.y29_c00436{bottom:221.625000px;}
.y28_c00436{bottom:242.848500px;}
.y27_c00436{bottom:264.448500px;}
.y26_c00436{bottom:285.973500px;}
.y23_c00436{bottom:307.573500px;}
.y24_c00436{bottom:309.750000px;}
.y25_c00436{bottom:312.673500px;}
.y22_c00436{bottom:330.000000px;}
.y21_c00436{bottom:352.573500px;}
.y20_c00436{bottom:374.548500px;}
.y1f_c00436{bottom:395.775000px;}
.y1e_c00436{bottom:417.750000px;}
.y1d_c00436{bottom:439.723500px;}
.y1c_c00436{bottom:462.073500px;}
.y1b_c00436{bottom:484.348500px;}
.y1a_c00436{bottom:506.698500px;}
.y19_c00436{bottom:529.348500px;}
.y18_c00436{bottom:550.573500px;}
.y17_c00436{bottom:572.923500px;}
.y16_c00436{bottom:594.898500px;}
.y15_c00436{bottom:617.250000px;}
.y14_c00436{bottom:638.098500px;}
.y13_c00436{bottom:638.398500px;}
.y12_c00436{bottom:640.573500px;}
.y11_c00436{bottom:661.500000px;}
.y10_c00436{bottom:683.848500px;}
.yf_c00436{bottom:706.500000px;}
.ye_c00436{bottom:728.098500px;}
.yd_c00436{bottom:754.723500px;}
.yc_c00436{bottom:772.723500px;}
.yb_c00436{bottom:795.448500px;}
.ya_c00436{bottom:817.723500px;}
.y9_c00436{bottom:839.698500px;}
.y8_c00436{bottom:858.073500px;}
.y7_c00436{bottom:863.848500px;}
.y6_c00436{bottom:1025.473500px;}
.y5_c00436{bottom:1039.125000px;}
.y4_c00436{bottom:1091.698500px;}
.y3_c00436{bottom:1092.073500px;}
.y2_c00436{bottom:1097.473500px;}
.y1_c00436{bottom:1100.323500px;}
.h1_c00436{height:60.468750px;}
.h3_c00436{height:68.835938px;}
.h4_c00436{height:70.664062px;}
.h2_c00436{height:78.609375px;}
.h5_c00436{height:82.400391px;}
.h0_c00436{height:1174.500000px;}
.w0_c00436{width:731.977200px;}
.w1_c00436{width:732.000000px;}
.x0_c00436{left:0.000000px;}
.xa_c00436{left:64.090200px;}
.x8_c00436{left:65.515200px;}
.x5_c00436{left:66.940200px;}
.x4_c00436{left:72.715200px;}
.x9_c00436{left:100.090200px;}
.x6_c00436{left:102.190200px;}
.x1_c00436{left:317.890200px;}
.xd_c00436{left:363.940200px;}
.xb_c00436{left:481.990200px;}
.x2_c00436{left:494.590200px;}
.x7_c00436{left:512.290200px;}
.xc_c00436{left:513.340200px;}
.x3_c00436{left:661.690200px;}
.xe_c00436{left:676.090200px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls0_c00436{letter-spacing:0.000000pt;}
.ws0_c00436{word-spacing:0.000000pt;}
.fs0_c00436{font-size:53.333333pt;}
.fs2_c00436{font-size:58.666667pt;}
.fs3_c00436{font-size:64.000000pt;}
.fs1_c00436{font-size:69.333333pt;}
.fs4_c00436{font-size:74.666667pt;}
.y0_c00436{bottom:0.000000pt;}
.y30_c00436{bottom:63.798667pt;}
.y2f_c00436{bottom:83.065333pt;}
.y2e_c00436{bottom:102.198667pt;}
.y2d_c00436{bottom:121.398667pt;}
.y2c_c00436{bottom:140.333333pt;}
.y2b_c00436{bottom:159.198667pt;}
.y2a_c00436{bottom:178.398667pt;}
.y29_c00436{bottom:197.000000pt;}
.y28_c00436{bottom:215.865333pt;}
.y27_c00436{bottom:235.065333pt;}
.y26_c00436{bottom:254.198667pt;}
.y23_c00436{bottom:273.398667pt;}
.y24_c00436{bottom:275.333333pt;}
.y25_c00436{bottom:277.932000pt;}
.y22_c00436{bottom:293.333333pt;}
.y21_c00436{bottom:313.398667pt;}
.y20_c00436{bottom:332.932000pt;}
.y1f_c00436{bottom:351.800000pt;}
.y1e_c00436{bottom:371.333333pt;}
.y1d_c00436{bottom:390.865333pt;}
.y1c_c00436{bottom:410.732000pt;}
.y1b_c00436{bottom:430.532000pt;}
.y1a_c00436{bottom:450.398667pt;}
.y19_c00436{bottom:470.532000pt;}
.y18_c00436{bottom:489.398667pt;}
.y17_c00436{bottom:509.265333pt;}
.y16_c00436{bottom:528.798667pt;}
.y15_c00436{bottom:548.666667pt;}
.y14_c00436{bottom:567.198667pt;}
.y13_c00436{bottom:567.465333pt;}
.y12_c00436{bottom:569.398667pt;}
.y11_c00436{bottom:588.000000pt;}
.y10_c00436{bottom:607.865333pt;}
.yf_c00436{bottom:628.000000pt;}
.ye_c00436{bottom:647.198667pt;}
.yd_c00436{bottom:670.865333pt;}
.yc_c00436{bottom:686.865333pt;}
.yb_c00436{bottom:707.065333pt;}
.ya_c00436{bottom:726.865333pt;}
.y9_c00436{bottom:746.398667pt;}
.y8_c00436{bottom:762.732000pt;}
.y7_c00436{bottom:767.865333pt;}
.y6_c00436{bottom:911.532000pt;}
.y5_c00436{bottom:923.666667pt;}
.y4_c00436{bottom:970.398667pt;}
.y3_c00436{bottom:970.732000pt;}
.y2_c00436{bottom:975.532000pt;}
.y1_c00436{bottom:978.065333pt;}
.h1_c00436{height:53.750000pt;}
.h3_c00436{height:61.187500pt;}
.h4_c00436{height:62.812500pt;}
.h2_c00436{height:69.875000pt;}
.h5_c00436{height:73.244792pt;}
.h0_c00436{height:1044.000000pt;}
.w0_c00436{width:650.646400pt;}
.w1_c00436{width:650.666667pt;}
.x0_c00436{left:0.000000pt;}
.xa_c00436{left:56.969067pt;}
.x8_c00436{left:58.235733pt;}
.x5_c00436{left:59.502400pt;}
.x4_c00436{left:64.635733pt;}
.x9_c00436{left:88.969067pt;}
.x6_c00436{left:90.835733pt;}
.x1_c00436{left:282.569067pt;}
.xd_c00436{left:323.502400pt;}
.xb_c00436{left:428.435733pt;}
.x2_c00436{left:439.635733pt;}
.x7_c00436{left:455.369067pt;}
.xc_c00436{left:456.302400pt;}
.x3_c00436{left:588.169067pt;}
.xe_c00436{left:600.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_160bfbddbed48aaf54ebeb42.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00437;src:url('chunks/assets/font_ecb6854a73c13dc20b1158f4.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00437;src:url('chunks/assets/font_baa41095b9ef02ee1c153813.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00437{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m0_c00437{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10_c00437{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00437{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00437{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00437{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00437{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00437{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c00437{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00437{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c00437{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00437{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00437{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00437{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00437{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00437{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00437{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c00437{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m14_c00437{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m13_c00437{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1_c00437{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00437{word-spacing:0.000000px;}
.fc0_c00437{color:transparent;}
.fs1_c00437{font-size:60.000000px;}
.fs2_c00437{font-size:66.000000px;}
.fs0_c00437{font-size:72.000000px;}
.fs3_c00437{font-size:78.000000px;}
.y0_c00437{bottom:0.000000px;}
.y2f_c00437{bottom:98.848500px;}
.y2e_c00437{bottom:120.073500px;}
.y2d_c00437{bottom:141.298500px;}
.y2c_c00437{bottom:146.323500px;}
.y2b_c00437{bottom:149.250000px;}
.y2a_c00437{bottom:162.598500px;}
.y29_c00437{bottom:190.948500px;}
.y28_c00437{bottom:206.848500px;}
.y27_c00437{bottom:229.500000px;}
.y26_c00437{bottom:251.098500px;}
.y25_c00437{bottom:273.000000px;}
.y24_c00437{bottom:295.048500px;}
.y23_c00437{bottom:316.948500px;}
.y22_c00437{bottom:338.548500px;}
.y21_c00437{bottom:360.525000px;}
.y20_c00437{bottom:381.073500px;}
.y1f_c00437{bottom:383.250000px;}
.y1e_c00437{bottom:406.948500px;}
.y1d_c00437{bottom:426.000000px;}
.y1c_c00437{bottom:448.048500px;}
.y1b_c00437{bottom:469.573500px;}
.y1a_c00437{bottom:491.250000px;}
.y19_c00437{bottom:665.098500px;}
.y18_c00437{bottom:686.698500px;}
.y17_c00437{bottom:708.298500px;}
.y16_c00437{bottom:730.575000px;}
.y15_c00437{bottom:752.548500px;}
.y14_c00437{bottom:774.523500px;}
.y13_c00437{bottom:795.000000px;}
.y12_c00437{bottom:817.050000px;}
.y11_c00437{bottom:838.948500px;}
.y10_c00437{bottom:859.500000px;}
.yf_c00437{bottom:881.098500px;}
.ye_c00437{bottom:902.698500px;}
.yd_c00437{bottom:924.300000px;}
.yc_c00437{bottom:946.275000px;}
.yb_c00437{bottom:967.875000px;}
.ya_c00437{bottom:989.098500px;}
.y9_c00437{bottom:1010.025000px;}
.y6_c00437{bottom:1029.823500px;}
.y8_c00437{bottom:1032.300000px;}
.y7_c00437{bottom:1032.598500px;}
.y4_c00437{bottom:1041.598500px;}
.y5_c00437{bottom:1051.425000px;}
.y1_c00437{bottom:1097.473500px;}
.y3_c00437{bottom:1107.150000px;}
.y2_c00437{bottom:1113.000000px;}
.h2_c00437{height:58.886719px;}
.h3_c00437{height:64.743164px;}
.h1_c00437{height:70.664062px;}
.h4_c00437{height:76.514648px;}
.h0_c00437{height:1174.500000px;}
.w0_c00437{width:731.977200px;}
.w1_c00437{width:732.000000px;}
.x0_c00437{left:0.000000px;}
.xe_c00437{left:56.140200px;}
.xb_c00437{left:57.190200px;}
.xa_c00437{left:58.315200px;}
.x9_c00437{left:59.740200px;}
.x8_c00437{left:61.540200px;}
.x4_c00437{left:63.340200px;}
.x1_c00437{left:83.515200px;}
.xd_c00437{left:86.740200px;}
.xc_c00437{left:88.540200px;}
.x5_c00437{left:89.965200px;}
.x2_c00437{left:112.690200px;}
.x10_c00437{left:169.540200px;}
.x11_c00437{left:189.340200px;}
.x3_c00437{left:286.165200px;}
.xf_c00437{left:387.715200px;}
.x6_c00437{left:611.590200px;}
.x7_c00437{left:614.515200px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls0_c00437{letter-spacing:0.000000pt;}
.ws0_c00437{word-spacing:0.000000pt;}
.fs1_c00437{font-size:53.333333pt;}
.fs2_c00437{font-size:58.666667pt;}
.fs0_c00437{font-size:64.000000pt;}
.fs3_c00437{font-size:69.333333pt;}
.y0_c00437{bottom:0.000000pt;}
.y2f_c00437{bottom:87.865333pt;}
.y2e_c00437{bottom:106.732000pt;}
.y2d_c00437{bottom:125.598667pt;}
.y2c_c00437{bottom:130.065333pt;}
.y2b_c00437{bottom:132.666667pt;}
.y2a_c00437{bottom:144.532000pt;}
.y29_c00437{bottom:169.732000pt;}
.y28_c00437{bottom:183.865333pt;}
.y27_c00437{bottom:204.000000pt;}
.y26_c00437{bottom:223.198667pt;}
.y25_c00437{bottom:242.666667pt;}
.y24_c00437{bottom:262.265333pt;}
.y23_c00437{bottom:281.732000pt;}
.y22_c00437{bottom:300.932000pt;}
.y21_c00437{bottom:320.466667pt;}
.y20_c00437{bottom:338.732000pt;}
.y1f_c00437{bottom:340.666667pt;}
.y1e_c00437{bottom:361.732000pt;}
.y1d_c00437{bottom:378.666667pt;}
.y1c_c00437{bottom:398.265333pt;}
.y1b_c00437{bottom:417.398667pt;}
.y1a_c00437{bottom:436.666667pt;}
.y19_c00437{bottom:591.198667pt;}
.y18_c00437{bottom:610.398667pt;}
.y17_c00437{bottom:629.598667pt;}
.y16_c00437{bottom:649.400000pt;}
.y15_c00437{bottom:668.932000pt;}
.y14_c00437{bottom:688.465333pt;}
.y13_c00437{bottom:706.666667pt;}
.y12_c00437{bottom:726.266667pt;}
.y11_c00437{bottom:745.732000pt;}
.y10_c00437{bottom:764.000000pt;}
.yf_c00437{bottom:783.198667pt;}
.ye_c00437{bottom:802.398667pt;}
.yd_c00437{bottom:821.600000pt;}
.yc_c00437{bottom:841.133333pt;}
.yb_c00437{bottom:860.333333pt;}
.ya_c00437{bottom:879.198667pt;}
.y9_c00437{bottom:897.800000pt;}
.y6_c00437{bottom:915.398667pt;}
.y8_c00437{bottom:917.600000pt;}
.y7_c00437{bottom:917.865333pt;}
.y4_c00437{bottom:925.865333pt;}
.y5_c00437{bottom:934.600000pt;}
.y1_c00437{bottom:975.532000pt;}
.y3_c00437{bottom:984.133333pt;}
.y2_c00437{bottom:989.333333pt;}
.h2_c00437{height:52.343750pt;}
.h3_c00437{height:57.549479pt;}
.h1_c00437{height:62.812500pt;}
.h4_c00437{height:68.013021pt;}
.h0_c00437{height:1044.000000pt;}
.w0_c00437{width:650.646400pt;}
.w1_c00437{width:650.666667pt;}
.x0_c00437{left:0.000000pt;}
.xe_c00437{left:49.902400pt;}
.xb_c00437{left:50.835733pt;}
.xa_c00437{left:51.835733pt;}
.x9_c00437{left:53.102400pt;}
.x8_c00437{left:54.702400pt;}
.x4_c00437{left:56.302400pt;}
.x1_c00437{left:74.235733pt;}
.xd_c00437{left:77.102400pt;}
.xc_c00437{left:78.702400pt;}
.x5_c00437{left:79.969067pt;}
.x2_c00437{left:100.169067pt;}
.x10_c00437{left:150.702400pt;}
.x11_c00437{left:168.302400pt;}
.x3_c00437{left:254.369067pt;}
.xf_c00437{left:344.635733pt;}
.x6_c00437{left:543.635733pt;}
.x7_c00437{left:546.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2544cfb8278eb6f345079ad2.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00438;src:url('chunks/assets/font_4bc033d43420699a5900c0ef.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.284180;font-style:normal;font-weight:normal;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_d18640dccc3948051802b3a3.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00438;src:url('chunks/assets/font_66c4fb2a27a39f1222629eff.woff2')format("woff");}.ff4_c00438{font-family:ff4_c00438;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m18_c00438{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2_c00438{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m17_c00438{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3_c00438{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c00438{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m11_c00438{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c00438{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c00438{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c00438{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00438{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00438{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00438{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00438{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00438{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00438{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c00438{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00438{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00438{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c00438{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c00438{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m13_c00438{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5_c00438{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m16_c00438{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m8_c00438{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1_c00438{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.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;}
}
.ws0_c00438{word-spacing:0.000000px;}
.fc0_c00438{color:transparent;}
.fs0_c00438{font-size:60.000000px;}
.fs3_c00438{font-size:66.000000px;}
.fs2_c00438{font-size:72.000000px;}
.fs1_c00438{font-size:78.000000px;}
.y0_c00438{bottom:0.000000px;}
.y40_c00438{bottom:67.875000px;}
.y3f_c00438{bottom:89.098500px;}
.y3e_c00438{bottom:110.323500px;}
.y3d_c00438{bottom:131.923500px;}
.y39_c00438{bottom:149.173500px;}
.y3a_c00438{bottom:153.148500px;}
.y3b_c00438{bottom:157.798500px;}
.y3c_c00438{bottom:160.048500px;}
.y37_c00438{bottom:175.125000px;}
.y38_c00438{bottom:182.323500px;}
.y36_c00438{bottom:196.048500px;}
.y35_c00438{bottom:217.273500px;}
.y32_c00438{bottom:236.698500px;}
.y33_c00438{bottom:237.448500px;}
.y34_c00438{bottom:240.673500px;}
.y31_c00438{bottom:257.548500px;}
.y2e_c00438{bottom:280.275000px;}
.y2f_c00438{bottom:280.573500px;}
.y30_c00438{bottom:282.750000px;}
.y2d_c00438{bottom:303.673500px;}
.y2c_c00438{bottom:325.650000px;}
.y2b_c00438{bottom:347.923500px;}
.y2a_c00438{bottom:369.525000px;}
.y27_c00438{bottom:389.323500px;}
.y28_c00438{bottom:391.500000px;}
.y29_c00438{bottom:394.048500px;}
.y25_c00438{bottom:412.723500px;}
.y26_c00438{bottom:415.273500px;}
.y24_c00438{bottom:435.073500px;}
.y23_c00438{bottom:457.348500px;}
.y22_c00438{bottom:479.698500px;}
.y21_c00438{bottom:502.048500px;}
.y20_c00438{bottom:523.948500px;}
.y1f_c00438{bottom:546.298500px;}
.y1e_c00438{bottom:568.648500px;}
.y1d_c00438{bottom:590.548500px;}
.y1c_c00438{bottom:612.523500px;}
.y1b_c00438{bottom:634.875000px;}
.y1a_c00438{bottom:657.148500px;}
.y19_c00438{bottom:679.125000px;}
.y18_c00438{bottom:701.473500px;}
.y17_c00438{bottom:723.750000px;}
.y16_c00438{bottom:746.473500px;}
.y15_c00438{bottom:768.375000px;}
.y14_c00438{bottom:791.098500px;}
.y13_c00438{bottom:813.375000px;}
.y12_c00438{bottom:835.348500px;}
.y11_c00438{bottom:857.698500px;}
.y10_c00438{bottom:880.723500px;}
.yf_c00438{bottom:901.948500px;}
.ye_c00438{bottom:923.925000px;}
.yd_c00438{bottom:945.900000px;}
.yc_c00438{bottom:968.250000px;}
.yb_c00438{bottom:990.150000px;}
.ya_c00438{bottom:1009.275000px;}
.y9_c00438{bottom:1012.500000px;}
.y8_c00438{bottom:1016.848500px;}
.y7_c00438{bottom:1030.500000px;}
.y6_c00438{bottom:1034.098500px;}
.y5_c00438{bottom:1038.073500px;}
.y4_c00438{bottom:1042.348500px;}
.y3_c00438{bottom:1088.098500px;}
.y1_c00438{bottom:1095.675000px;}
.y2_c00438{bottom:1103.250000px;}
.h1_c00438{height:60.468750px;}
.h6_c00438{height:64.775391px;}
.h3_c00438{height:70.628906px;}
.h4_c00438{height:70.664062px;}
.h5_c00438{height:76.514648px;}
.h2_c00438{height:78.609375px;}
.h0_c00438{height:1174.500000px;}
.w0_c00438{width:731.977200px;}
.w1_c00438{width:732.000000px;}
.x0_c00438{left:0.000000px;}
.xb_c00438{left:67.690200px;}
.x8_c00438{left:68.740200px;}
.x4_c00438{left:70.165200px;}
.x10_c00438{left:71.290200px;}
.x13_c00438{left:104.365200px;}
.xc_c00438{left:111.940200px;}
.x5_c00438{left:133.540200px;}
.x17_c00438{left:155.140200px;}
.x11_c00438{left:203.740200px;}
.x12_c00438{left:220.990200px;}
.x14_c00438{left:240.490200px;}
.x1_c00438{left:292.990200px;}
.x15_c00438{left:299.890200px;}
.xe_c00438{left:330.115200px;}
.x9_c00438{left:387.715200px;}
.xa_c00438{left:399.565200px;}
.x6_c00438{left:411.490200px;}
.x7_c00438{left:441.715200px;}
.x2_c00438{left:494.590200px;}
.xf_c00438{left:537.115200px;}
.x18_c00438{left:565.915200px;}
.x19_c00438{left:569.890200px;}
.xd_c00438{left:574.540200px;}
.x3_c00438{left:664.915200px;}
.x16_c00438{left:683.590200px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls0_c00438{letter-spacing:0.000000pt;}
.ws0_c00438{word-spacing:0.000000pt;}
.fs0_c00438{font-size:53.333333pt;}
.fs3_c00438{font-size:58.666667pt;}
.fs2_c00438{font-size:64.000000pt;}
.fs1_c00438{font-size:69.333333pt;}
.y0_c00438{bottom:0.000000pt;}
.y40_c00438{bottom:60.333333pt;}
.y3f_c00438{bottom:79.198667pt;}
.y3e_c00438{bottom:98.065333pt;}
.y3d_c00438{bottom:117.265333pt;}
.y39_c00438{bottom:132.598667pt;}
.y3a_c00438{bottom:136.132000pt;}
.y3b_c00438{bottom:140.265333pt;}
.y3c_c00438{bottom:142.265333pt;}
.y37_c00438{bottom:155.666667pt;}
.y38_c00438{bottom:162.065333pt;}
.y36_c00438{bottom:174.265333pt;}
.y35_c00438{bottom:193.132000pt;}
.y32_c00438{bottom:210.398667pt;}
.y33_c00438{bottom:211.065333pt;}
.y34_c00438{bottom:213.932000pt;}
.y31_c00438{bottom:228.932000pt;}
.y2e_c00438{bottom:249.133333pt;}
.y2f_c00438{bottom:249.398667pt;}
.y30_c00438{bottom:251.333333pt;}
.y2d_c00438{bottom:269.932000pt;}
.y2c_c00438{bottom:289.466667pt;}
.y2b_c00438{bottom:309.265333pt;}
.y2a_c00438{bottom:328.466667pt;}
.y27_c00438{bottom:346.065333pt;}
.y28_c00438{bottom:348.000000pt;}
.y29_c00438{bottom:350.265333pt;}
.y25_c00438{bottom:366.865333pt;}
.y26_c00438{bottom:369.132000pt;}
.y24_c00438{bottom:386.732000pt;}
.y23_c00438{bottom:406.532000pt;}
.y22_c00438{bottom:426.398667pt;}
.y21_c00438{bottom:446.265333pt;}
.y20_c00438{bottom:465.732000pt;}
.y1f_c00438{bottom:485.598667pt;}
.y1e_c00438{bottom:505.465333pt;}
.y1d_c00438{bottom:524.932000pt;}
.y1c_c00438{bottom:544.465333pt;}
.y1b_c00438{bottom:564.333333pt;}
.y1a_c00438{bottom:584.132000pt;}
.y19_c00438{bottom:603.666667pt;}
.y18_c00438{bottom:623.532000pt;}
.y17_c00438{bottom:643.333333pt;}
.y16_c00438{bottom:663.532000pt;}
.y15_c00438{bottom:683.000000pt;}
.y14_c00438{bottom:703.198667pt;}
.y13_c00438{bottom:723.000000pt;}
.y12_c00438{bottom:742.532000pt;}
.y11_c00438{bottom:762.398667pt;}
.y10_c00438{bottom:782.865333pt;}
.yf_c00438{bottom:801.732000pt;}
.ye_c00438{bottom:821.266667pt;}
.yd_c00438{bottom:840.800000pt;}
.yc_c00438{bottom:860.666667pt;}
.yb_c00438{bottom:880.133333pt;}
.ya_c00438{bottom:897.133333pt;}
.y9_c00438{bottom:900.000000pt;}
.y8_c00438{bottom:903.865333pt;}
.y7_c00438{bottom:916.000000pt;}
.y6_c00438{bottom:919.198667pt;}
.y5_c00438{bottom:922.732000pt;}
.y4_c00438{bottom:926.532000pt;}
.y3_c00438{bottom:967.198667pt;}
.y1_c00438{bottom:973.933333pt;}
.y2_c00438{bottom:980.666667pt;}
.h1_c00438{height:53.750000pt;}
.h6_c00438{height:57.578125pt;}
.h3_c00438{height:62.781250pt;}
.h4_c00438{height:62.812500pt;}
.h5_c00438{height:68.013021pt;}
.h2_c00438{height:69.875000pt;}
.h0_c00438{height:1044.000000pt;}
.w0_c00438{width:650.646400pt;}
.w1_c00438{width:650.666667pt;}
.x0_c00438{left:0.000000pt;}
.xb_c00438{left:60.169067pt;}
.x8_c00438{left:61.102400pt;}
.x4_c00438{left:62.369067pt;}
.x10_c00438{left:63.369067pt;}
.x13_c00438{left:92.769067pt;}
.xc_c00438{left:99.502400pt;}
.x5_c00438{left:118.702400pt;}
.x17_c00438{left:137.902400pt;}
.x11_c00438{left:181.102400pt;}
.x12_c00438{left:196.435733pt;}
.x14_c00438{left:213.769067pt;}
.x1_c00438{left:260.435733pt;}
.x15_c00438{left:266.569067pt;}
.xe_c00438{left:293.435733pt;}
.x9_c00438{left:344.635733pt;}
.xa_c00438{left:355.169067pt;}
.x6_c00438{left:365.769067pt;}
.x7_c00438{left:392.635733pt;}
.x2_c00438{left:439.635733pt;}
.xf_c00438{left:477.435733pt;}
.x18_c00438{left:503.035733pt;}
.x19_c00438{left:506.569067pt;}
.xd_c00438{left:510.702400pt;}
.x3_c00438{left:591.035733pt;}
.x16_c00438{left:607.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f79ca954cfd7c4fa388f8e4a.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00439;src:url('chunks/assets/font_cf3b80b2b6ab4c61e2ca6410.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.284180;font-style:normal;font-weight:normal;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_a3378568cd86cbce00bc39c6.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00439{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9_c00439{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m19_c00439{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00439{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c00439{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m11_c00439{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c00439{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00439{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8_c00439{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c00439{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2_c00439{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c00439{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00439{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00439{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00439{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c00439{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c00439{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00439{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00439{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00439{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00439{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m18_c00439{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00439{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c00439{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00439{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.me_c00439{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m17_c00439{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mb_c00439{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.ls0_c00439{letter-spacing:0.000000px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00439{word-spacing:0.000000px;}
.fc0_c00439{color:transparent;}
.fs0_c00439{font-size:60.000000px;}
.fs2_c00439{font-size:66.000000px;}
.fs1_c00439{font-size:72.000000px;}
.fs3_c00439{font-size:84.000000px;}
.y0_c00439{bottom:0.000000px;}
.y37_c00439{bottom:103.125000px;}
.y36_c00439{bottom:111.073500px;}
.y35_c00439{bottom:120.823500px;}
.y34_c00439{bottom:127.648500px;}
.y33_c00439{bottom:131.250000px;}
.y32_c00439{bottom:133.798500px;}
.y31_c00439{bottom:136.948500px;}
.y30_c00439{bottom:144.898500px;}
.y2f_c00439{bottom:153.148500px;}
.y2e_c00439{bottom:203.625000px;}
.y2d_c00439{bottom:225.523500px;}
.y2c_c00439{bottom:247.500000px;}
.y2b_c00439{bottom:269.473500px;}
.y2a_c00439{bottom:289.948500px;}
.y29_c00439{bottom:290.323500px;}
.y28_c00439{bottom:293.250000px;}
.y27_c00439{bottom:293.923500px;}
.y26_c00439{bottom:294.673500px;}
.y25_c00439{bottom:296.098500px;}
.y24_c00439{bottom:312.673500px;}
.y23_c00439{bottom:334.275000px;}
.y22_c00439{bottom:355.875000px;}
.y21_c00439{bottom:377.473500px;}
.y20_c00439{bottom:531.523500px;}
.y1f_c00439{bottom:551.323500px;}
.y1e_c00439{bottom:551.698500px;}
.y1d_c00439{bottom:553.125000px;}
.y1c_c00439{bottom:572.923500px;}
.y1b_c00439{bottom:573.298500px;}
.y1a_c00439{bottom:595.273500px;}
.y19_c00439{bottom:617.250000px;}
.y18_c00439{bottom:639.523500px;}
.y17_c00439{bottom:661.125000px;}
.y16_c00439{bottom:683.098500px;}
.y15_c00439{bottom:705.073500px;}
.y14_c00439{bottom:726.973500px;}
.y13_c00439{bottom:748.950000px;}
.y12_c00439{bottom:770.550000px;}
.y11_c00439{bottom:792.525000px;}
.yf_c00439{bottom:811.573500px;}
.y10_c00439{bottom:814.875000px;}
.ye_c00439{bottom:835.050000px;}
.yd_c00439{bottom:858.073500px;}
.yc_c00439{bottom:875.698500px;}
.yb_c00439{bottom:897.675000px;}
.ya_c00439{bottom:922.500000px;}
.y9_c00439{bottom:944.098500px;}
.y8_c00439{bottom:965.698500px;}
.y7_c00439{bottom:986.550000px;}
.y6_c00439{bottom:1008.150000px;}
.y3_c00439{bottom:1020.448500px;}
.y4_c00439{bottom:1024.723500px;}
.y5_c00439{bottom:1028.323500px;}
.y2_c00439{bottom:1049.250000px;}
.y38_c00439{bottom:1093.875000px;}
.y1_c00439{bottom:1104.300000px;}
.h1_c00439{height:58.886719px;}
.h5_c00439{height:60.468750px;}
.h3_c00439{height:64.775391px;}
.h2_c00439{height:70.664062px;}
.h6_c00439{height:72.562500px;}
.h4_c00439{height:82.400391px;}
.h0_c00439{height:1174.500000px;}
.w0_c00439{width:731.977200px;}
.w1_c00439{width:732.000000px;}
.x0_c00439{left:0.000000px;}
.x14_c00439{left:47.515200px;}
.xf_c00439{left:48.565200px;}
.xe_c00439{left:49.690200px;}
.xb_c00439{left:50.740200px;}
.x8_c00439{left:52.540200px;}
.x7_c00439{left:54.715200px;}
.x6_c00439{left:55.765200px;}
.x2_c00439{left:57.190200px;}
.x1c_c00439{left:68.740200px;}
.xc_c00439{left:71.965200px;}
.xa_c00439{left:75.563700px;}
.x21_c00439{left:77.740200px;}
.x15_c00439{left:80.965200px;}
.x9_c00439{left:84.188700px;}
.x5_c00439{left:87.115200px;}
.x1d_c00439{left:105.490200px;}
.x12_c00439{left:110.140200px;}
.xd_c00439{left:114.490200px;}
.x1e_c00439{left:116.290200px;}
.x16_c00439{left:142.540200px;}
.x1f_c00439{left:169.915200px;}
.x17_c00439{left:181.090200px;}
.x18_c00439{left:199.388700px;}
.x19_c00439{left:219.565200px;}
.x3_c00439{left:229.690200px;}
.x4_c00439{left:235.765200px;}
.x20_c00439{left:238.690200px;}
.x1_c00439{left:278.290200px;}
.x13_c00439{left:314.965200px;}
.x10_c00439{left:418.990200px;}
.x11_c00439{left:525.190200px;}
.x1a_c00439{left:589.690200px;}
.x1b_c00439{left:652.990200px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls0_c00439{letter-spacing:0.000000pt;}
.ws0_c00439{word-spacing:0.000000pt;}
.fs0_c00439{font-size:53.333333pt;}
.fs2_c00439{font-size:58.666667pt;}
.fs1_c00439{font-size:64.000000pt;}
.fs3_c00439{font-size:74.666667pt;}
.y0_c00439{bottom:0.000000pt;}
.y37_c00439{bottom:91.666667pt;}
.y36_c00439{bottom:98.732000pt;}
.y35_c00439{bottom:107.398667pt;}
.y34_c00439{bottom:113.465333pt;}
.y33_c00439{bottom:116.666667pt;}
.y32_c00439{bottom:118.932000pt;}
.y31_c00439{bottom:121.732000pt;}
.y30_c00439{bottom:128.798667pt;}
.y2f_c00439{bottom:136.132000pt;}
.y2e_c00439{bottom:181.000000pt;}
.y2d_c00439{bottom:200.465333pt;}
.y2c_c00439{bottom:220.000000pt;}
.y2b_c00439{bottom:239.532000pt;}
.y2a_c00439{bottom:257.732000pt;}
.y29_c00439{bottom:258.065333pt;}
.y28_c00439{bottom:260.666667pt;}
.y27_c00439{bottom:261.265333pt;}
.y26_c00439{bottom:261.932000pt;}
.y25_c00439{bottom:263.198667pt;}
.y24_c00439{bottom:277.932000pt;}
.y23_c00439{bottom:297.133333pt;}
.y22_c00439{bottom:316.333333pt;}
.y21_c00439{bottom:335.532000pt;}
.y20_c00439{bottom:472.465333pt;}
.y1f_c00439{bottom:490.065333pt;}
.y1e_c00439{bottom:490.398667pt;}
.y1d_c00439{bottom:491.666667pt;}
.y1c_c00439{bottom:509.265333pt;}
.y1b_c00439{bottom:509.598667pt;}
.y1a_c00439{bottom:529.132000pt;}
.y19_c00439{bottom:548.666667pt;}
.y18_c00439{bottom:568.465333pt;}
.y17_c00439{bottom:587.666667pt;}
.y16_c00439{bottom:607.198667pt;}
.y15_c00439{bottom:626.732000pt;}
.y14_c00439{bottom:646.198667pt;}
.y13_c00439{bottom:665.733333pt;}
.y12_c00439{bottom:684.933333pt;}
.y11_c00439{bottom:704.466667pt;}
.yf_c00439{bottom:721.398667pt;}
.y10_c00439{bottom:724.333333pt;}
.ye_c00439{bottom:742.266667pt;}
.yd_c00439{bottom:762.732000pt;}
.yc_c00439{bottom:778.398667pt;}
.yb_c00439{bottom:797.933333pt;}
.ya_c00439{bottom:820.000000pt;}
.y9_c00439{bottom:839.198667pt;}
.y8_c00439{bottom:858.398667pt;}
.y7_c00439{bottom:876.933333pt;}
.y6_c00439{bottom:896.133333pt;}
.y3_c00439{bottom:907.065333pt;}
.y4_c00439{bottom:910.865333pt;}
.y5_c00439{bottom:914.065333pt;}
.y2_c00439{bottom:932.666667pt;}
.y38_c00439{bottom:972.333333pt;}
.y1_c00439{bottom:981.600000pt;}
.h1_c00439{height:52.343750pt;}
.h5_c00439{height:53.750000pt;}
.h3_c00439{height:57.578125pt;}
.h2_c00439{height:62.812500pt;}
.h6_c00439{height:64.500000pt;}
.h4_c00439{height:73.244792pt;}
.h0_c00439{height:1044.000000pt;}
.w0_c00439{width:650.646400pt;}
.w1_c00439{width:650.666667pt;}
.x0_c00439{left:0.000000pt;}
.x14_c00439{left:42.235733pt;}
.xf_c00439{left:43.169067pt;}
.xe_c00439{left:44.169067pt;}
.xb_c00439{left:45.102400pt;}
.x8_c00439{left:46.702400pt;}
.x7_c00439{left:48.635733pt;}
.x6_c00439{left:49.569067pt;}
.x2_c00439{left:50.835733pt;}
.x1c_c00439{left:61.102400pt;}
.xc_c00439{left:63.969067pt;}
.xa_c00439{left:67.167733pt;}
.x21_c00439{left:69.102400pt;}
.x15_c00439{left:71.969067pt;}
.x9_c00439{left:74.834400pt;}
.x5_c00439{left:77.435733pt;}
.x1d_c00439{left:93.769067pt;}
.x12_c00439{left:97.902400pt;}
.xd_c00439{left:101.769067pt;}
.x1e_c00439{left:103.369067pt;}
.x16_c00439{left:126.702400pt;}
.x1f_c00439{left:151.035733pt;}
.x17_c00439{left:160.969067pt;}
.x18_c00439{left:177.234400pt;}
.x19_c00439{left:195.169067pt;}
.x3_c00439{left:204.169067pt;}
.x4_c00439{left:209.569067pt;}
.x20_c00439{left:212.169067pt;}
.x1_c00439{left:247.369067pt;}
.x13_c00439{left:279.969067pt;}
.x10_c00439{left:372.435733pt;}
.x11_c00439{left:466.835733pt;}
.x1a_c00439{left:524.169067pt;}
.x1b_c00439{left:580.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6fbf8fbc79ef0b66f1fa1ab7.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00440;src:url('chunks/assets/font_547f14acbba010d2c2f642f4.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00440{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00440{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c00440{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c00440{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00440{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00440{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00440{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00440{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00440{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00440{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00440{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c00440{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00440{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c00440{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6_c00440{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mc_c00440{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c00440{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00440{color:transparent;}
.fs0_c00440{font-size:60.000000px;}
.fs1_c00440{font-size:72.000000px;}
.fs2_c00440{font-size:84.000000px;}
.y0_c00440{bottom:0.000000px;}
.y33_c00440{bottom:62.473500px;}
.y32_c00440{bottom:84.375000px;}
.y31_c00440{bottom:105.298500px;}
.y30_c00440{bottom:127.273500px;}
.y2f_c00440{bottom:148.875000px;}
.y2e_c00440{bottom:169.348500px;}
.y2d_c00440{bottom:190.948500px;}
.y2c_c00440{bottom:211.875000px;}
.y2b_c00440{bottom:232.723500px;}
.y28_c00440{bottom:253.948500px;}
.y29_c00440{bottom:256.500000px;}
.y2a_c00440{bottom:257.625000px;}
.y27_c00440{bottom:274.500000px;}
.y26_c00440{bottom:297.900000px;}
.y25_c00440{bottom:320.625000px;}
.y24_c00440{bottom:342.150000px;}
.y23_c00440{bottom:364.125000px;}
.y22_c00440{bottom:385.723500px;}
.y21_c00440{bottom:407.323500px;}
.y20_c00440{bottom:429.298500px;}
.y1f_c00440{bottom:451.198500px;}
.y1e_c00440{bottom:473.548500px;}
.y1d_c00440{bottom:496.273500px;}
.y1c_c00440{bottom:518.173500px;}
.y1b_c00440{bottom:540.523500px;}
.y1a_c00440{bottom:562.500000px;}
.y19_c00440{bottom:584.773500px;}
.y18_c00440{bottom:607.125000px;}
.y17_c00440{bottom:629.398500px;}
.y16_c00440{bottom:651.448500px;}
.y15_c00440{bottom:673.723500px;}
.y14_c00440{bottom:696.073500px;}
.y13_c00440{bottom:718.348500px;}
.y12_c00440{bottom:737.098500px;}
.y11_c00440{bottom:740.700000px;}
.y10_c00440{bottom:762.598500px;}
.yf_c00440{bottom:785.323500px;}
.ye_c00440{bottom:807.300000px;}
.yd_c00440{bottom:829.948500px;}
.yc_c00440{bottom:852.300000px;}
.yb_c00440{bottom:874.948500px;}
.ya_c00440{bottom:896.550000px;}
.y9_c00440{bottom:917.848500px;}
.y8_c00440{bottom:939.750000px;}
.y7_c00440{bottom:962.098500px;}
.y6_c00440{bottom:984.448500px;}
.y5_c00440{bottom:1006.723500px;}
.y4_c00440{bottom:1028.698500px;}
.y3_c00440{bottom:1081.650000px;}
.y1_c00440{bottom:1090.275000px;}
.y2_c00440{bottom:1097.323500px;}
.h1_c00440{height:60.468750px;}
.h2_c00440{height:70.664062px;}
.h3_c00440{height:82.441406px;}
.h0_c00440{height:1174.500000px;}
.w0_c00440{width:731.977200px;}
.w1_c00440{width:732.000000px;}
.x0_c00440{left:0.000000px;}
.x4_c00440{left:78.490200px;}
.x7_c00440{left:79.915200px;}
.x8_c00440{left:80.965200px;}
.x6_c00440{left:111.565200px;}
.x9_c00440{left:114.490200px;}
.x1_c00440{left:302.740200px;}
.x2_c00440{left:505.090200px;}
.xa_c00440{left:524.140200px;}
.xb_c00440{left:543.565200px;}
.x5_c00440{left:589.690200px;}
.x3_c00440{left:670.315200px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls0_c00440{letter-spacing:0.000000pt;}
.ws0_c00440{word-spacing:0.000000pt;}
.fs0_c00440{font-size:53.333333pt;}
.fs1_c00440{font-size:64.000000pt;}
.fs2_c00440{font-size:74.666667pt;}
.y0_c00440{bottom:0.000000pt;}
.y33_c00440{bottom:55.532000pt;}
.y32_c00440{bottom:75.000000pt;}
.y31_c00440{bottom:93.598667pt;}
.y30_c00440{bottom:113.132000pt;}
.y2f_c00440{bottom:132.333333pt;}
.y2e_c00440{bottom:150.532000pt;}
.y2d_c00440{bottom:169.732000pt;}
.y2c_c00440{bottom:188.333333pt;}
.y2b_c00440{bottom:206.865333pt;}
.y28_c00440{bottom:225.732000pt;}
.y29_c00440{bottom:228.000000pt;}
.y2a_c00440{bottom:229.000000pt;}
.y27_c00440{bottom:244.000000pt;}
.y26_c00440{bottom:264.800000pt;}
.y25_c00440{bottom:285.000000pt;}
.y24_c00440{bottom:304.133333pt;}
.y23_c00440{bottom:323.666667pt;}
.y22_c00440{bottom:342.865333pt;}
.y21_c00440{bottom:362.065333pt;}
.y20_c00440{bottom:381.598667pt;}
.y1f_c00440{bottom:401.065333pt;}
.y1e_c00440{bottom:420.932000pt;}
.y1d_c00440{bottom:441.132000pt;}
.y1c_c00440{bottom:460.598667pt;}
.y1b_c00440{bottom:480.465333pt;}
.y1a_c00440{bottom:500.000000pt;}
.y19_c00440{bottom:519.798667pt;}
.y18_c00440{bottom:539.666667pt;}
.y17_c00440{bottom:559.465333pt;}
.y16_c00440{bottom:579.065333pt;}
.y15_c00440{bottom:598.865333pt;}
.y14_c00440{bottom:618.732000pt;}
.y13_c00440{bottom:638.532000pt;}
.y12_c00440{bottom:655.198667pt;}
.y11_c00440{bottom:658.400000pt;}
.y10_c00440{bottom:677.865333pt;}
.yf_c00440{bottom:698.065333pt;}
.ye_c00440{bottom:717.600000pt;}
.yd_c00440{bottom:737.732000pt;}
.yc_c00440{bottom:757.600000pt;}
.yb_c00440{bottom:777.732000pt;}
.ya_c00440{bottom:796.933333pt;}
.y9_c00440{bottom:815.865333pt;}
.y8_c00440{bottom:835.333333pt;}
.y7_c00440{bottom:855.198667pt;}
.y6_c00440{bottom:875.065333pt;}
.y5_c00440{bottom:894.865333pt;}
.y4_c00440{bottom:914.398667pt;}
.y3_c00440{bottom:961.466667pt;}
.y1_c00440{bottom:969.133333pt;}
.y2_c00440{bottom:975.398667pt;}
.h1_c00440{height:53.750000pt;}
.h2_c00440{height:62.812500pt;}
.h3_c00440{height:73.281250pt;}
.h0_c00440{height:1044.000000pt;}
.w0_c00440{width:650.646400pt;}
.w1_c00440{width:650.666667pt;}
.x0_c00440{left:0.000000pt;}
.x4_c00440{left:69.769067pt;}
.x7_c00440{left:71.035733pt;}
.x8_c00440{left:71.969067pt;}
.x6_c00440{left:99.169067pt;}
.x9_c00440{left:101.769067pt;}
.x1_c00440{left:269.102400pt;}
.x2_c00440{left:448.969067pt;}
.xa_c00440{left:465.902400pt;}
.xb_c00440{left:483.169067pt;}
.x5_c00440{left:524.169067pt;}
.x3_c00440{left:595.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c520495fce94d52ef7cbb65.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00441;src:url('chunks/assets/font_5baedd8aa6d93ae96a031175.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00441{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m0_c00441{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c00441{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00441{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00441{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00441{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00441{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00441{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00441{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00441{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00441{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00441{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00441{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00441{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.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;}
}
.ws0_c00441{word-spacing:0.000000px;}
.fc0_c00441{color:transparent;}
.fs0_c00441{font-size:60.000000px;}
.fs1_c00441{font-size:72.000000px;}
.fs2_c00441{font-size:84.000000px;}
.y0_c00441{bottom:0.000000px;}
.y2c_c00441{bottom:93.823500px;}
.y2b_c00441{bottom:107.098500px;}
.y2a_c00441{bottom:128.698500px;}
.y29_c00441{bottom:149.923500px;}
.y27_c00441{bottom:175.125000px;}
.y26_c00441{bottom:193.198500px;}
.y25_c00441{bottom:215.848500px;}
.y24_c00441{bottom:237.750000px;}
.y23_c00441{bottom:261.525000px;}
.y22_c00441{bottom:262.948500px;}
.y20_c00441{bottom:279.223500px;}
.y21_c00441{bottom:279.525000px;}
.y1f_c00441{bottom:282.073500px;}
.y1e_c00441{bottom:302.923500px;}
.y1d_c00441{bottom:325.650000px;}
.y1c_c00441{bottom:346.500000px;}
.y1b_c00441{bottom:368.473500px;}
.y1a_c00441{bottom:390.375000px;}
.y19_c00441{bottom:412.348500px;}
.y18_c00441{bottom:434.698500px;}
.y17_c00441{bottom:455.923500px;}
.y16_c00441{bottom:478.273500px;}
.y15_c00441{bottom:499.875000px;}
.y14_c00441{bottom:521.473500px;}
.y13_c00441{bottom:543.448500px;}
.y12_c00441{bottom:565.348500px;}
.y11_c00441{bottom:587.323500px;}
.y10_c00441{bottom:609.000000px;}
.yf_c00441{bottom:631.273500px;}
.ye_c00441{bottom:652.875000px;}
.yd_c00441{bottom:675.148500px;}
.yc_c00441{bottom:697.125000px;}
.yb_c00441{bottom:719.098500px;}
.ya_c00441{bottom:741.075000px;}
.y9_c00441{bottom:762.973500px;}
.y8_c00441{bottom:784.948500px;}
.y7_c00441{bottom:806.550000px;}
.y6_c00441{bottom:828.150000px;}
.y5_c00441{bottom:849.448500px;}
.y4_c00441{bottom:870.675000px;}
.y3_c00441{bottom:1010.025000px;}
.y2_c00441{bottom:1041.300000px;}
.y28_c00441{bottom:1086.300000px;}
.y1_c00441{bottom:1097.775000px;}
.h1_c00441{height:58.886719px;}
.h2_c00441{height:70.664062px;}
.h3_c00441{height:82.400391px;}
.h0_c00441{height:1174.500000px;}
.w0_c00441{width:731.977200px;}
.w1_c00441{width:732.000000px;}
.x0_c00441{left:0.000000px;}
.x8_c00441{left:53.965200px;}
.x5_c00441{left:55.090200px;}
.x6_c00441{left:56.890200px;}
.x2_c00441{left:60.490200px;}
.x3_c00441{left:62.590200px;}
.xd_c00441{left:84.188700px;}
.x9_c00441{left:85.990200px;}
.x7_c00441{left:87.490200px;}
.x4_c00441{left:89.590200px;}
.xc_c00441{left:141.790200px;}
.x1_c00441{left:287.965200px;}
.xa_c00441{left:481.990200px;}
.xb_c00441{left:567.340200px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls0_c00441{letter-spacing:0.000000pt;}
.ws0_c00441{word-spacing:0.000000pt;}
.fs0_c00441{font-size:53.333333pt;}
.fs1_c00441{font-size:64.000000pt;}
.fs2_c00441{font-size:74.666667pt;}
.y0_c00441{bottom:0.000000pt;}
.y2c_c00441{bottom:83.398667pt;}
.y2b_c00441{bottom:95.198667pt;}
.y2a_c00441{bottom:114.398667pt;}
.y29_c00441{bottom:133.265333pt;}
.y27_c00441{bottom:155.666667pt;}
.y26_c00441{bottom:171.732000pt;}
.y25_c00441{bottom:191.865333pt;}
.y24_c00441{bottom:211.333333pt;}
.y23_c00441{bottom:232.466667pt;}
.y22_c00441{bottom:233.732000pt;}
.y20_c00441{bottom:248.198667pt;}
.y21_c00441{bottom:248.466667pt;}
.y1f_c00441{bottom:250.732000pt;}
.y1e_c00441{bottom:269.265333pt;}
.y1d_c00441{bottom:289.466667pt;}
.y1c_c00441{bottom:308.000000pt;}
.y1b_c00441{bottom:327.532000pt;}
.y1a_c00441{bottom:347.000000pt;}
.y19_c00441{bottom:366.532000pt;}
.y18_c00441{bottom:386.398667pt;}
.y17_c00441{bottom:405.265333pt;}
.y16_c00441{bottom:425.132000pt;}
.y15_c00441{bottom:444.333333pt;}
.y14_c00441{bottom:463.532000pt;}
.y13_c00441{bottom:483.065333pt;}
.y12_c00441{bottom:502.532000pt;}
.y11_c00441{bottom:522.065333pt;}
.y10_c00441{bottom:541.333333pt;}
.yf_c00441{bottom:561.132000pt;}
.ye_c00441{bottom:580.333333pt;}
.yd_c00441{bottom:600.132000pt;}
.yc_c00441{bottom:619.666667pt;}
.yb_c00441{bottom:639.198667pt;}
.ya_c00441{bottom:658.733333pt;}
.y9_c00441{bottom:678.198667pt;}
.y8_c00441{bottom:697.732000pt;}
.y7_c00441{bottom:716.933333pt;}
.y6_c00441{bottom:736.133333pt;}
.y5_c00441{bottom:755.065333pt;}
.y4_c00441{bottom:773.933333pt;}
.y3_c00441{bottom:897.800000pt;}
.y2_c00441{bottom:925.600000pt;}
.y28_c00441{bottom:965.600000pt;}
.y1_c00441{bottom:975.800000pt;}
.h1_c00441{height:52.343750pt;}
.h2_c00441{height:62.812500pt;}
.h3_c00441{height:73.244792pt;}
.h0_c00441{height:1044.000000pt;}
.w0_c00441{width:650.646400pt;}
.w1_c00441{width:650.666667pt;}
.x0_c00441{left:0.000000pt;}
.x8_c00441{left:47.969067pt;}
.x5_c00441{left:48.969067pt;}
.x6_c00441{left:50.569067pt;}
.x2_c00441{left:53.769067pt;}
.x3_c00441{left:55.635733pt;}
.xd_c00441{left:74.834400pt;}
.x9_c00441{left:76.435733pt;}
.x7_c00441{left:77.769067pt;}
.x4_c00441{left:79.635733pt;}
.xc_c00441{left:126.035733pt;}
.x1_c00441{left:255.969067pt;}
.xa_c00441{left:428.435733pt;}
.xb_c00441{left:504.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea46ef8e4796336db57db1a1.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00442;src:url('chunks/assets/font_ca3b04a90943176aed3e1d90.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00442;src:url('chunks/assets/font_3d9223420e9c88c2366b63ce.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00442;src:url('chunks/assets/font_0e511cc990a0427004f49ac3.woff2')format("woff");}.ff4_c00442{font-family:ff4_c00442;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00442{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1_c00442{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m10_c00442{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c00442{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00442{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c00442{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00442{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00442{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c00442{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00442{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3_c00442{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00442{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00442{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00442{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00442{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8_c00442{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c00442{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,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:0.000000px;}
.fc0_c00442{color:transparent;}
.fs3_c00442{font-size:18.000000px;}
.fs0_c00442{font-size:60.000000px;}
.fs1_c00442{font-size:72.000000px;}
.fs4_c00442{font-size:78.000000px;}
.fs2_c00442{font-size:84.000000px;}
.y0_c00442{bottom:0.000000px;}
.y2f_c00442{bottom:55.948500px;}
.y2e_c00442{bottom:78.673500px;}
.y2d_c00442{bottom:100.273500px;}
.y2a_c00442{bottom:118.948500px;}
.y2b_c00442{bottom:124.048500px;}
.y2c_c00442{bottom:125.473500px;}
.y29_c00442{bottom:143.473500px;}
.y28_c00442{bottom:164.698500px;}
.y27_c00442{bottom:186.298500px;}
.y26_c00442{bottom:206.773500px;}
.y25_c00442{bottom:227.698500px;}
.y24_c00442{bottom:249.598500px;}
.y23_c00442{bottom:282.448500px;}
.y22_c00442{bottom:400.500000px;}
.y21_c00442{bottom:424.273500px;}
.y20_c00442{bottom:446.548500px;}
.y1f_c00442{bottom:468.148500px;}
.y1e_c00442{bottom:491.173500px;}
.y1d_c00442{bottom:513.148500px;}
.y1c_c00442{bottom:535.500000px;}
.y1b_c00442{bottom:557.848500px;}
.y1a_c00442{bottom:580.125000px;}
.y19_c00442{bottom:602.098500px;}
.y18_c00442{bottom:624.375000px;}
.y17_c00442{bottom:646.723500px;}
.y16_c00442{bottom:667.948500px;}
.y15_c00442{bottom:668.698500px;}
.y14_c00442{bottom:669.750000px;}
.y13_c00442{bottom:690.973500px;}
.y12_c00442{bottom:713.698500px;}
.y11_c00442{bottom:735.673500px;}
.y10_c00442{bottom:757.950000px;}
.yf_c00442{bottom:780.973500px;}
.ye_c00442{bottom:802.275000px;}
.yd_c00442{bottom:824.550000px;}
.yc_c00442{bottom:847.573500px;}
.yb_c00442{bottom:869.925000px;}
.ya_c00442{bottom:891.598500px;}
.y9_c00442{bottom:913.198500px;}
.y8_c00442{bottom:935.775000px;}
.y7_c00442{bottom:957.375000px;}
.y6_c00442{bottom:980.400000px;}
.y5_c00442{bottom:1002.823500px;}
.y4_c00442{bottom:1022.175000px;}
.y3_c00442{bottom:1027.948500px;}
.y2_c00442{bottom:1079.473500px;}
.y1_c00442{bottom:1086.973500px;}
.h4_c00442{height:18.140625px;}
.h1_c00442{height:60.468750px;}
.h2_c00442{height:70.664062px;}
.h5_c00442{height:76.552734px;}
.h3_c00442{height:82.400391px;}
.h0_c00442{height:1174.500000px;}
.w0_c00442{width:731.977200px;}
.w1_c00442{width:732.000000px;}
.x0_c00442{left:0.000000px;}
.x5_c00442{left:65.890200px;}
.x6_c00442{left:67.690200px;}
.x7_c00442{left:68.740200px;}
.xb_c00442{left:69.790200px;}
.xc_c00442{left:70.915200px;}
.x10_c00442{left:73.090200px;}
.x11_c00442{left:74.140200px;}
.x12_c00442{left:75.188700px;}
.x13_c00442{left:76.313700px;}
.x16_c00442{left:77.365200px;}
.x3_c00442{left:101.890200px;}
.xd_c00442{left:102.940200px;}
.x8_c00442{left:104.365200px;}
.xf_c00442{left:107.290200px;}
.x9_c00442{left:289.090200px;}
.x1_c00442{left:290.890200px;}
.x4_c00442{left:380.140200px;}
.xe_c00442{left:472.690200px;}
.x14_c00442{left:501.490200px;}
.x15_c00442{left:530.965200px;}
.xa_c00442{left:546.790200px;}
.x2_c00442{left:661.690200px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls0_c00442{letter-spacing:0.000000pt;}
.ws0_c00442{word-spacing:0.000000pt;}
.fs3_c00442{font-size:16.000000pt;}
.fs0_c00442{font-size:53.333333pt;}
.fs1_c00442{font-size:64.000000pt;}
.fs4_c00442{font-size:69.333333pt;}
.fs2_c00442{font-size:74.666667pt;}
.y0_c00442{bottom:0.000000pt;}
.y2f_c00442{bottom:49.732000pt;}
.y2e_c00442{bottom:69.932000pt;}
.y2d_c00442{bottom:89.132000pt;}
.y2a_c00442{bottom:105.732000pt;}
.y2b_c00442{bottom:110.265333pt;}
.y2c_c00442{bottom:111.532000pt;}
.y29_c00442{bottom:127.532000pt;}
.y28_c00442{bottom:146.398667pt;}
.y27_c00442{bottom:165.598667pt;}
.y26_c00442{bottom:183.798667pt;}
.y25_c00442{bottom:202.398667pt;}
.y24_c00442{bottom:221.865333pt;}
.y23_c00442{bottom:251.065333pt;}
.y22_c00442{bottom:356.000000pt;}
.y21_c00442{bottom:377.132000pt;}
.y20_c00442{bottom:396.932000pt;}
.y1f_c00442{bottom:416.132000pt;}
.y1e_c00442{bottom:436.598667pt;}
.y1d_c00442{bottom:456.132000pt;}
.y1c_c00442{bottom:476.000000pt;}
.y1b_c00442{bottom:495.865333pt;}
.y1a_c00442{bottom:515.666667pt;}
.y19_c00442{bottom:535.198667pt;}
.y18_c00442{bottom:555.000000pt;}
.y17_c00442{bottom:574.865333pt;}
.y16_c00442{bottom:593.732000pt;}
.y15_c00442{bottom:594.398667pt;}
.y14_c00442{bottom:595.333333pt;}
.y13_c00442{bottom:614.198667pt;}
.y12_c00442{bottom:634.398667pt;}
.y11_c00442{bottom:653.932000pt;}
.y10_c00442{bottom:673.733333pt;}
.yf_c00442{bottom:694.198667pt;}
.ye_c00442{bottom:713.133333pt;}
.yd_c00442{bottom:732.933333pt;}
.yc_c00442{bottom:753.398667pt;}
.yb_c00442{bottom:773.266667pt;}
.ya_c00442{bottom:792.532000pt;}
.y9_c00442{bottom:811.732000pt;}
.y8_c00442{bottom:831.800000pt;}
.y7_c00442{bottom:851.000000pt;}
.y6_c00442{bottom:871.466667pt;}
.y5_c00442{bottom:891.398667pt;}
.y4_c00442{bottom:908.600000pt;}
.y3_c00442{bottom:913.732000pt;}
.y2_c00442{bottom:959.532000pt;}
.y1_c00442{bottom:966.198667pt;}
.h4_c00442{height:16.125000pt;}
.h1_c00442{height:53.750000pt;}
.h2_c00442{height:62.812500pt;}
.h5_c00442{height:68.046875pt;}
.h3_c00442{height:73.244792pt;}
.h0_c00442{height:1044.000000pt;}
.w0_c00442{width:650.646400pt;}
.w1_c00442{width:650.666667pt;}
.x0_c00442{left:0.000000pt;}
.x5_c00442{left:58.569067pt;}
.x6_c00442{left:60.169067pt;}
.x7_c00442{left:61.102400pt;}
.xb_c00442{left:62.035733pt;}
.xc_c00442{left:63.035733pt;}
.x10_c00442{left:64.969067pt;}
.x11_c00442{left:65.902400pt;}
.x12_c00442{left:66.834400pt;}
.x13_c00442{left:67.834400pt;}
.x16_c00442{left:68.769067pt;}
.x3_c00442{left:90.569067pt;}
.xd_c00442{left:91.502400pt;}
.x8_c00442{left:92.769067pt;}
.xf_c00442{left:95.369067pt;}
.x9_c00442{left:256.969067pt;}
.x1_c00442{left:258.569067pt;}
.x4_c00442{left:337.902400pt;}
.xe_c00442{left:420.169067pt;}
.x14_c00442{left:445.769067pt;}
.x15_c00442{left:471.969067pt;}
.xa_c00442{left:486.035733pt;}
.x2_c00442{left:588.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_adaba9927be06a54045d92da.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00443;src:url('chunks/assets/font_6498ebe2cdf671ed2ce103d1.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00443;src:url('chunks/assets/font_1d6703f1721f985fc1b9afee.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00443{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m18_c00443{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m17_c00443{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00443{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c00443{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m14_c00443{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c00443{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m0_c00443{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m15_c00443{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00443{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00443{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00443{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00443{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00443{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00443{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00443{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00443{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c00443{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13_c00443{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00443{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00443{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c00443{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m16_c00443{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c00443{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00443{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00443{color:transparent;}
.fs0_c00443{font-size:60.000000px;}
.fs3_c00443{font-size:66.000000px;}
.fs1_c00443{font-size:72.000000px;}
.fs2_c00443{font-size:84.000000px;}
.y0_c00443{bottom:0.000000px;}
.y3c_c00443{bottom:88.423500px;}
.y3a_c00443{bottom:108.148500px;}
.y3b_c00443{bottom:109.273500px;}
.y39_c00443{bottom:115.048500px;}
.y38_c00443{bottom:130.125000px;}
.y37_c00443{bottom:131.250000px;}
.y36_c00443{bottom:152.098500px;}
.y35_c00443{bottom:172.273500px;}
.y34_c00443{bottom:173.698500px;}
.y33_c00443{bottom:195.673500px;}
.y32_c00443{bottom:217.273500px;}
.y31_c00443{bottom:242.098500px;}
.y30_c00443{bottom:261.525000px;}
.y2f_c00443{bottom:283.125000px;}
.y2e_c00443{bottom:305.098500px;}
.y2d_c00443{bottom:327.073500px;}
.y2c_c00443{bottom:348.298500px;}
.y2b_c00443{bottom:370.573500px;}
.y2a_c00443{bottom:392.548500px;}
.y29_c00443{bottom:413.848500px;}
.y28_c00443{bottom:436.500000px;}
.y27_c00443{bottom:458.098500px;}
.y26_c00443{bottom:479.698500px;}
.y25_c00443{bottom:501.298500px;}
.y24_c00443{bottom:523.198500px;}
.y23_c00443{bottom:544.500000px;}
.y22_c00443{bottom:566.473500px;}
.y21_c00443{bottom:588.073500px;}
.y20_c00443{bottom:610.423500px;}
.y1f_c00443{bottom:632.323500px;}
.y1e_c00443{bottom:654.298500px;}
.y1d_c00443{bottom:676.273500px;}
.y1c_c00443{bottom:698.173500px;}
.y1b_c00443{bottom:720.148500px;}
.y18_c00443{bottom:741.450000px;}
.y1a_c00443{bottom:742.125000px;}
.y19_c00443{bottom:742.500000px;}
.y17_c00443{bottom:764.098500px;}
.y16_c00443{bottom:785.698500px;}
.y15_c00443{bottom:807.300000px;}
.y14_c00443{bottom:828.900000px;}
.y13_c00443{bottom:850.500000px;}
.y12_c00443{bottom:872.098500px;}
.y11_c00443{bottom:894.073500px;}
.y10_c00443{bottom:915.675000px;}
.yf_c00443{bottom:937.948500px;}
.ye_c00443{bottom:954.525000px;}
.yd_c00443{bottom:980.098500px;}
.y9_c00443{bottom:999.223500px;}
.yb_c00443{bottom:1001.323500px;}
.ya_c00443{bottom:1002.448500px;}
.yc_c00443{bottom:1002.823500px;}
.y5_c00443{bottom:1018.650000px;}
.y6_c00443{bottom:1022.925000px;}
.y8_c00443{bottom:1023.675000px;}
.y7_c00443{bottom:1024.425000px;}
.y4_c00443{bottom:1043.848500px;}
.y1_c00443{bottom:1089.223500px;}
.y3_c00443{bottom:1099.573500px;}
.y2_c00443{bottom:1104.675000px;}
.h2_c00443{height:58.886719px;}
.h1_c00443{height:60.468750px;}
.h7_c00443{height:64.775391px;}
.h5_c00443{height:66.515625px;}
.h3_c00443{height:70.664062px;}
.h6_c00443{height:72.562500px;}
.h4_c00443{height:82.400391px;}
.h0_c00443{height:1174.500000px;}
.w0_c00443{width:731.977200px;}
.w1_c00443{width:732.000000px;}
.x0_c00443{left:0.000000px;}
.x16_c00443{left:52.915200px;}
.x15_c00443{left:53.965200px;}
.x11_c00443{left:55.090200px;}
.x10_c00443{left:56.140200px;}
.xf_c00443{left:57.190200px;}
.xe_c00443{left:58.315200px;}
.xc_c00443{left:60.115200px;}
.x5_c00443{left:62.290200px;}
.x4_c00443{left:83.515200px;}
.x1_c00443{left:85.990200px;}
.x17_c00443{left:87.115200px;}
.x18_c00443{left:88.165200px;}
.xd_c00443{left:89.590200px;}
.x2_c00443{left:113.365200px;}
.x1a_c00443{left:205.165200px;}
.x3_c00443{left:293.365200px;}
.x12_c00443{left:322.540200px;}
.x6_c00443{left:338.740200px;}
.x13_c00443{left:350.290200px;}
.x9_c00443{left:388.090200px;}
.xb_c00443{left:389.140200px;}
.x7_c00443{left:410.740200px;}
.x8_c00443{left:506.890200px;}
.x19_c00443{left:645.115200px;}
.x1b_c00443{left:662.365200px;}
.x14_c00443{left:666.340200px;}
.xa_c00443{left:678.565200px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls0_c00443{letter-spacing:0.000000pt;}
.ws0_c00443{word-spacing:0.000000pt;}
.fs0_c00443{font-size:53.333333pt;}
.fs3_c00443{font-size:58.666667pt;}
.fs1_c00443{font-size:64.000000pt;}
.fs2_c00443{font-size:74.666667pt;}
.y0_c00443{bottom:0.000000pt;}
.y3c_c00443{bottom:78.598667pt;}
.y3a_c00443{bottom:96.132000pt;}
.y3b_c00443{bottom:97.132000pt;}
.y39_c00443{bottom:102.265333pt;}
.y38_c00443{bottom:115.666667pt;}
.y37_c00443{bottom:116.666667pt;}
.y36_c00443{bottom:135.198667pt;}
.y35_c00443{bottom:153.132000pt;}
.y34_c00443{bottom:154.398667pt;}
.y33_c00443{bottom:173.932000pt;}
.y32_c00443{bottom:193.132000pt;}
.y31_c00443{bottom:215.198667pt;}
.y30_c00443{bottom:232.466667pt;}
.y2f_c00443{bottom:251.666667pt;}
.y2e_c00443{bottom:271.198667pt;}
.y2d_c00443{bottom:290.732000pt;}
.y2c_c00443{bottom:309.598667pt;}
.y2b_c00443{bottom:329.398667pt;}
.y2a_c00443{bottom:348.932000pt;}
.y29_c00443{bottom:367.865333pt;}
.y28_c00443{bottom:388.000000pt;}
.y27_c00443{bottom:407.198667pt;}
.y26_c00443{bottom:426.398667pt;}
.y25_c00443{bottom:445.598667pt;}
.y24_c00443{bottom:465.065333pt;}
.y23_c00443{bottom:484.000000pt;}
.y22_c00443{bottom:503.532000pt;}
.y21_c00443{bottom:522.732000pt;}
.y20_c00443{bottom:542.598667pt;}
.y1f_c00443{bottom:562.065333pt;}
.y1e_c00443{bottom:581.598667pt;}
.y1d_c00443{bottom:601.132000pt;}
.y1c_c00443{bottom:620.598667pt;}
.y1b_c00443{bottom:640.132000pt;}
.y18_c00443{bottom:659.066667pt;}
.y1a_c00443{bottom:659.666667pt;}
.y19_c00443{bottom:660.000000pt;}
.y17_c00443{bottom:679.198667pt;}
.y16_c00443{bottom:698.398667pt;}
.y15_c00443{bottom:717.600000pt;}
.y14_c00443{bottom:736.800000pt;}
.y13_c00443{bottom:756.000000pt;}
.y12_c00443{bottom:775.198667pt;}
.y11_c00443{bottom:794.732000pt;}
.y10_c00443{bottom:813.933333pt;}
.yf_c00443{bottom:833.732000pt;}
.ye_c00443{bottom:848.466667pt;}
.yd_c00443{bottom:871.198667pt;}
.y9_c00443{bottom:888.198667pt;}
.yb_c00443{bottom:890.065333pt;}
.ya_c00443{bottom:891.065333pt;}
.yc_c00443{bottom:891.398667pt;}
.y5_c00443{bottom:905.466667pt;}
.y6_c00443{bottom:909.266667pt;}
.y8_c00443{bottom:909.933333pt;}
.y7_c00443{bottom:910.600000pt;}
.y4_c00443{bottom:927.865333pt;}
.y1_c00443{bottom:968.198667pt;}
.y3_c00443{bottom:977.398667pt;}
.y2_c00443{bottom:981.933333pt;}
.h2_c00443{height:52.343750pt;}
.h1_c00443{height:53.750000pt;}
.h7_c00443{height:57.578125pt;}
.h5_c00443{height:59.125000pt;}
.h3_c00443{height:62.812500pt;}
.h6_c00443{height:64.500000pt;}
.h4_c00443{height:73.244792pt;}
.h0_c00443{height:1044.000000pt;}
.w0_c00443{width:650.646400pt;}
.w1_c00443{width:650.666667pt;}
.x0_c00443{left:0.000000pt;}
.x16_c00443{left:47.035733pt;}
.x15_c00443{left:47.969067pt;}
.x11_c00443{left:48.969067pt;}
.x10_c00443{left:49.902400pt;}
.xf_c00443{left:50.835733pt;}
.xe_c00443{left:51.835733pt;}
.xc_c00443{left:53.435733pt;}
.x5_c00443{left:55.369067pt;}
.x4_c00443{left:74.235733pt;}
.x1_c00443{left:76.435733pt;}
.x17_c00443{left:77.435733pt;}
.x18_c00443{left:78.369067pt;}
.xd_c00443{left:79.635733pt;}
.x2_c00443{left:100.769067pt;}
.x1a_c00443{left:182.369067pt;}
.x3_c00443{left:260.769067pt;}
.x12_c00443{left:286.702400pt;}
.x6_c00443{left:301.102400pt;}
.x13_c00443{left:311.369067pt;}
.x9_c00443{left:344.969067pt;}
.xb_c00443{left:345.902400pt;}
.x7_c00443{left:365.102400pt;}
.x8_c00443{left:450.569067pt;}
.x19_c00443{left:573.435733pt;}
.x1b_c00443{left:588.769067pt;}
.x14_c00443{left:592.302400pt;}
.xa_c00443{left:603.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8663556f2e7eb5559dc478f6.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00444;src:url('chunks/assets/font_3f432f1a1a1a8d32a57c11e0.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00444{transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);}
.m0_c00444{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00444{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00444{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00444{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00444{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00444{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c00444{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00444{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c00444{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00444{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00444{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00444{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00444{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00444{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.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;}
}
.ws0_c00444{word-spacing:0.000000px;}
.fc0_c00444{color:transparent;}
.fs0_c00444{font-size:60.000000px;}
.fs2_c00444{font-size:66.000000px;}
.fs1_c00444{font-size:72.000000px;}
.y0_c00444{bottom:0.000000px;}
.y34_c00444{bottom:41.548500px;}
.y33_c00444{bottom:65.323500px;}
.y32_c00444{bottom:87.298500px;}
.y31_c00444{bottom:109.273500px;}
.y30_c00444{bottom:131.173500px;}
.y2f_c00444{bottom:151.723500px;}
.y2e_c00444{bottom:173.698500px;}
.y2d_c00444{bottom:194.548500px;}
.y2c_c00444{bottom:214.723500px;}
.y2b_c00444{bottom:236.323500px;}
.y2a_c00444{bottom:257.923500px;}
.y29_c00444{bottom:280.275000px;}
.y28_c00444{bottom:302.173500px;}
.y27_c00444{bottom:323.775000px;}
.y26_c00444{bottom:345.750000px;}
.y25_c00444{bottom:367.723500px;}
.y24_c00444{bottom:390.000000px;}
.y23_c00444{bottom:411.673500px;}
.y22_c00444{bottom:433.573500px;}
.y21_c00444{bottom:455.250000px;}
.y20_c00444{bottom:477.898500px;}
.y1f_c00444{bottom:499.875000px;}
.y1e_c00444{bottom:522.148500px;}
.y1d_c00444{bottom:544.125000px;}
.y1c_c00444{bottom:566.473500px;}
.y1b_c00444{bottom:588.750000px;}
.y1a_c00444{bottom:611.098500px;}
.y19_c00444{bottom:633.750000px;}
.y18_c00444{bottom:655.348500px;}
.y17_c00444{bottom:677.698500px;}
.y16_c00444{bottom:700.048500px;}
.y15_c00444{bottom:723.750000px;}
.y14_c00444{bottom:744.298500px;}
.y13_c00444{bottom:765.523500px;}
.y12_c00444{bottom:768.375000px;}
.y11_c00444{bottom:768.823500px;}
.y10_c00444{bottom:788.550000px;}
.yf_c00444{bottom:811.948500px;}
.ye_c00444{bottom:833.550000px;}
.yd_c00444{bottom:856.948500px;}
.yc_c00444{bottom:878.550000px;}
.yb_c00444{bottom:899.848500px;}
.ya_c00444{bottom:922.875000px;}
.y9_c00444{bottom:944.473500px;}
.y8_c00444{bottom:966.073500px;}
.y7_c00444{bottom:987.973500px;}
.y6_c00444{bottom:1003.125000px;}
.y5_c00444{bottom:1011.375000px;}
.y4_c00444{bottom:1033.050000px;}
.y3_c00444{bottom:1085.925000px;}
.y1_c00444{bottom:1094.250000px;}
.y2_c00444{bottom:1101.223500px;}
.h1_c00444{height:60.468750px;}
.h4_c00444{height:64.775391px;}
.h2_c00444{height:70.664062px;}
.h3_c00444{height:72.562500px;}
.h0_c00444{height:1174.500000px;}
.w0_c00444{width:731.977200px;}
.w1_c00444{width:732.000000px;}
.x0_c00444{left:0.000000px;}
.x7_c00444{left:54.715200px;}
.x4_c00444{left:55.765200px;}
.x8_c00444{left:57.190200px;}
.x5_c00444{left:58.690200px;}
.xc_c00444{left:60.115200px;}
.xd_c00444{left:61.915200px;}
.xf_c00444{left:63.715200px;}
.x9_c00444{left:91.765200px;}
.xe_c00444{left:97.165200px;}
.xa_c00444{left:203.365200px;}
.xb_c00444{left:206.590200px;}
.x1_c00444{left:283.315200px;}
.x2_c00444{left:484.165200px;}
.x10_c00444{left:615.565200px;}
.x3_c00444{left:650.515200px;}
.x6_c00444{left:654.790200px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls0_c00444{letter-spacing:0.000000pt;}
.ws0_c00444{word-spacing:0.000000pt;}
.fs0_c00444{font-size:53.333333pt;}
.fs2_c00444{font-size:58.666667pt;}
.fs1_c00444{font-size:64.000000pt;}
.y0_c00444{bottom:0.000000pt;}
.y34_c00444{bottom:36.932000pt;}
.y33_c00444{bottom:58.065333pt;}
.y32_c00444{bottom:77.598667pt;}
.y31_c00444{bottom:97.132000pt;}
.y30_c00444{bottom:116.598667pt;}
.y2f_c00444{bottom:134.865333pt;}
.y2e_c00444{bottom:154.398667pt;}
.y2d_c00444{bottom:172.932000pt;}
.y2c_c00444{bottom:190.865333pt;}
.y2b_c00444{bottom:210.065333pt;}
.y2a_c00444{bottom:229.265333pt;}
.y29_c00444{bottom:249.133333pt;}
.y28_c00444{bottom:268.598667pt;}
.y27_c00444{bottom:287.800000pt;}
.y26_c00444{bottom:307.333333pt;}
.y25_c00444{bottom:326.865333pt;}
.y24_c00444{bottom:346.666667pt;}
.y23_c00444{bottom:365.932000pt;}
.y22_c00444{bottom:385.398667pt;}
.y21_c00444{bottom:404.666667pt;}
.y20_c00444{bottom:424.798667pt;}
.y1f_c00444{bottom:444.333333pt;}
.y1e_c00444{bottom:464.132000pt;}
.y1d_c00444{bottom:483.666667pt;}
.y1c_c00444{bottom:503.532000pt;}
.y1b_c00444{bottom:523.333333pt;}
.y1a_c00444{bottom:543.198667pt;}
.y19_c00444{bottom:563.333333pt;}
.y18_c00444{bottom:582.532000pt;}
.y17_c00444{bottom:602.398667pt;}
.y16_c00444{bottom:622.265333pt;}
.y15_c00444{bottom:643.333333pt;}
.y14_c00444{bottom:661.598667pt;}
.y13_c00444{bottom:680.465333pt;}
.y12_c00444{bottom:683.000000pt;}
.y11_c00444{bottom:683.398667pt;}
.y10_c00444{bottom:700.933333pt;}
.yf_c00444{bottom:721.732000pt;}
.ye_c00444{bottom:740.933333pt;}
.yd_c00444{bottom:761.732000pt;}
.yc_c00444{bottom:780.933333pt;}
.yb_c00444{bottom:799.865333pt;}
.ya_c00444{bottom:820.333333pt;}
.y9_c00444{bottom:839.532000pt;}
.y8_c00444{bottom:858.732000pt;}
.y7_c00444{bottom:878.198667pt;}
.y6_c00444{bottom:891.666667pt;}
.y5_c00444{bottom:899.000000pt;}
.y4_c00444{bottom:918.266667pt;}
.y3_c00444{bottom:965.266667pt;}
.y1_c00444{bottom:972.666667pt;}
.y2_c00444{bottom:978.865333pt;}
.h1_c00444{height:53.750000pt;}
.h4_c00444{height:57.578125pt;}
.h2_c00444{height:62.812500pt;}
.h3_c00444{height:64.500000pt;}
.h0_c00444{height:1044.000000pt;}
.w0_c00444{width:650.646400pt;}
.w1_c00444{width:650.666667pt;}
.x0_c00444{left:0.000000pt;}
.x7_c00444{left:48.635733pt;}
.x4_c00444{left:49.569067pt;}
.x8_c00444{left:50.835733pt;}
.x5_c00444{left:52.169067pt;}
.xc_c00444{left:53.435733pt;}
.xd_c00444{left:55.035733pt;}
.xf_c00444{left:56.635733pt;}
.x9_c00444{left:81.569067pt;}
.xe_c00444{left:86.369067pt;}
.xa_c00444{left:180.769067pt;}
.xb_c00444{left:183.635733pt;}
.x1_c00444{left:251.835733pt;}
.x2_c00444{left:430.369067pt;}
.x10_c00444{left:547.169067pt;}
.x3_c00444{left:578.235733pt;}
.x6_c00444{left:582.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8319bd571670a2e8767d941d.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00445;src:url('chunks/assets/font_9b3dff96e4ec522467ddce14.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00445;src:url('chunks/assets/font_e451917c4d9b672dedad68fd.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:1.435059;font-style:normal;font-weight:normal;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_7ec93b5c1f85e9711eef4d4f.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:1.402354;font-style:normal;font-weight:normal;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_a6245f0b6d36cbf6f522d2a6.woff2')format("woff");}.ff5_c00445{font-family:ff5_c00445;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00445{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00445{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m16_c00445{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m17_c00445{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc_c00445{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00445{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00445{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m18_c00445{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c00445{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00445{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c00445{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00445{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2_c00445{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c00445{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00445{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c00445{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c00445{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00445{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00445{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00445{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00445{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00445{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00445{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00445{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m14_c00445{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00445{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c00445{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c00445{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m19_c00445{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00445{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,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:0.000000px;}
.fc0_c00445{color:transparent;}
.fs5_c00445{font-size:48.000000px;}
.fs0_c00445{font-size:60.000000px;}
.fs2_c00445{font-size:66.000000px;}
.fs1_c00445{font-size:72.000000px;}
.fs4_c00445{font-size:78.000000px;}
.fs3_c00445{font-size:84.000000px;}
.y0_c00445{bottom:0.000000px;}
.y45_c00445{bottom:99.898500px;}
.y44_c00445{bottom:100.648500px;}
.y43_c00445{bottom:103.125000px;}
.y42_c00445{bottom:104.923500px;}
.y41_c00445{bottom:107.473500px;}
.y40_c00445{bottom:109.648500px;}
.y3e_c00445{bottom:121.500000px;}
.y3f_c00445{bottom:121.875000px;}
.y3d_c00445{bottom:122.548500px;}
.y3c_c00445{bottom:125.098500px;}
.y3b_c00445{bottom:127.648500px;}
.y3a_c00445{bottom:129.073500px;}
.y39_c00445{bottom:143.773500px;}
.y38_c00445{bottom:144.898500px;}
.y37_c00445{bottom:147.823500px;}
.y36_c00445{bottom:165.823500px;}
.y35_c00445{bottom:189.148500px;}
.y34_c00445{bottom:209.323500px;}
.y33_c00445{bottom:232.048500px;}
.y31_c00445{bottom:251.773500px;}
.y32_c00445{bottom:252.223500px;}
.y30_c00445{bottom:254.698500px;}
.y2f_c00445{bottom:276.000000px;}
.y2e_c00445{bottom:297.900000px;}
.y2d_c00445{bottom:319.875000px;}
.y2c_c00445{bottom:341.775000px;}
.y2b_c00445{bottom:363.375000px;}
.y2a_c00445{bottom:385.048500px;}
.y29_c00445{bottom:407.323500px;}
.y28_c00445{bottom:429.298500px;}
.y27_c00445{bottom:451.198500px;}
.y26_c00445{bottom:472.875000px;}
.y25_c00445{bottom:494.473500px;}
.y24_c00445{bottom:516.073500px;}
.y23_c00445{bottom:536.923500px;}
.y22_c00445{bottom:558.898500px;}
.y21_c00445{bottom:581.250000px;}
.y20_c00445{bottom:602.848500px;}
.y1d_c00445{bottom:624.823500px;}
.y1f_c00445{bottom:625.875000px;}
.y1e_c00445{bottom:626.173500px;}
.y1c_c00445{bottom:647.398500px;}
.y1b_c00445{bottom:669.073500px;}
.y1a_c00445{bottom:691.048500px;}
.y19_c00445{bottom:713.023500px;}
.y18_c00445{bottom:731.700000px;}
.y17_c00445{bottom:756.523500px;}
.y16_c00445{bottom:778.875000px;}
.y15_c00445{bottom:800.098500px;}
.y14_c00445{bottom:821.698500px;}
.y13_c00445{bottom:843.598500px;}
.y11_c00445{bottom:859.125000px;}
.y12_c00445{bottom:865.275000px;}
.y10_c00445{bottom:886.875000px;}
.yf_c00445{bottom:908.473500px;}
.yb_c00445{bottom:924.300000px;}
.ye_c00445{bottom:929.323500px;}
.yc_c00445{bottom:930.823500px;}
.yd_c00445{bottom:931.125000px;}
.y9_c00445{bottom:944.775000px;}
.ya_c00445{bottom:951.675000px;}
.y8_c00445{bottom:973.275000px;}
.y7_c00445{bottom:994.500000px;}
.y6_c00445{bottom:1015.425000px;}
.y3_c00445{bottom:1027.275000px;}
.y4_c00445{bottom:1032.300000px;}
.y5_c00445{bottom:1037.698500px;}
.y2_c00445{bottom:1057.875000px;}
.y46_c00445{bottom:1101.448500px;}
.y1_c00445{bottom:1113.675000px;}
.h9_c00445{height:49.336436px;}
.h8_c00445{height:49.968750px;}
.h1_c00445{height:58.886719px;}
.ha_c00445{height:61.670545px;}
.h3_c00445{height:64.775391px;}
.h5_c00445{height:66.515625px;}
.h7_c00445{height:68.707031px;}
.h2_c00445{height:70.664062px;}
.hb_c00445{height:75.093750px;}
.h6_c00445{height:78.609375px;}
.h4_c00445{height:82.441406px;}
.h0_c00445{height:1174.500000px;}
.w0_c00445{width:731.977200px;}
.w1_c00445{width:732.000000px;}
.x0_c00445{left:0.000000px;}
.x1b_c00445{left:57.565200px;}
.x18_c00445{left:59.740200px;}
.x12_c00445{left:60.790200px;}
.x17_c00445{left:61.915200px;}
.x11_c00445{left:62.965200px;}
.x10_c00445{left:65.140200px;}
.xf_c00445{left:66.565200px;}
.xd_c00445{left:68.365200px;}
.x9_c00445{left:69.790200px;}
.x7_c00445{left:71.590200px;}
.x6_c00445{left:73.765200px;}
.x3_c00445{left:74.890200px;}
.x2_c00445{left:76.688700px;}
.x25_c00445{left:81.340200px;}
.x1c_c00445{left:90.340200px;}
.x2b_c00445{left:93.563700px;}
.x16_c00445{left:94.690200px;}
.x13_c00445{left:96.490200px;}
.x8_c00445{left:107.965200px;}
.x1f_c00445{left:114.490200px;}
.xe_c00445{left:123.790200px;}
.x20_c00445{left:136.765200px;}
.x26_c00445{left:141.790200px;}
.xa_c00445{left:164.890200px;}
.x27_c00445{left:219.565200px;}
.x4_c00445{left:241.915200px;}
.x5_c00445{left:248.365200px;}
.x1d_c00445{left:264.565200px;}
.x1_c00445{left:299.140200px;}
.x28_c00445{left:310.315200px;}
.x14_c00445{left:320.740200px;}
.x15_c00445{left:337.690200px;}
.x21_c00445{left:348.115200px;}
.x1e_c00445{left:410.740200px;}
.x22_c00445{left:536.365200px;}
.x29_c00445{left:540.340200px;}
.x2a_c00445{left:570.190200px;}
.xb_c00445{left:616.315200px;}
.x23_c00445{left:623.890200px;}
.x19_c00445{left:637.165200px;}
.x24_c00445{left:644.365200px;}
.xc_c00445{left:656.590200px;}
.x1a_c00445{left:663.790200px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls0_c00445{letter-spacing:0.000000pt;}
.ws0_c00445{word-spacing:0.000000pt;}
.fs5_c00445{font-size:42.666667pt;}
.fs0_c00445{font-size:53.333333pt;}
.fs2_c00445{font-size:58.666667pt;}
.fs1_c00445{font-size:64.000000pt;}
.fs4_c00445{font-size:69.333333pt;}
.fs3_c00445{font-size:74.666667pt;}
.y0_c00445{bottom:0.000000pt;}
.y45_c00445{bottom:88.798667pt;}
.y44_c00445{bottom:89.465333pt;}
.y43_c00445{bottom:91.666667pt;}
.y42_c00445{bottom:93.265333pt;}
.y41_c00445{bottom:95.532000pt;}
.y40_c00445{bottom:97.465333pt;}
.y3e_c00445{bottom:108.000000pt;}
.y3f_c00445{bottom:108.333333pt;}
.y3d_c00445{bottom:108.932000pt;}
.y3c_c00445{bottom:111.198667pt;}
.y3b_c00445{bottom:113.465333pt;}
.y3a_c00445{bottom:114.732000pt;}
.y39_c00445{bottom:127.798667pt;}
.y38_c00445{bottom:128.798667pt;}
.y37_c00445{bottom:131.398667pt;}
.y36_c00445{bottom:147.398667pt;}
.y35_c00445{bottom:168.132000pt;}
.y34_c00445{bottom:186.065333pt;}
.y33_c00445{bottom:206.265333pt;}
.y31_c00445{bottom:223.798667pt;}
.y32_c00445{bottom:224.198667pt;}
.y30_c00445{bottom:226.398667pt;}
.y2f_c00445{bottom:245.333333pt;}
.y2e_c00445{bottom:264.800000pt;}
.y2d_c00445{bottom:284.333333pt;}
.y2c_c00445{bottom:303.800000pt;}
.y2b_c00445{bottom:323.000000pt;}
.y2a_c00445{bottom:342.265333pt;}
.y29_c00445{bottom:362.065333pt;}
.y28_c00445{bottom:381.598667pt;}
.y27_c00445{bottom:401.065333pt;}
.y26_c00445{bottom:420.333333pt;}
.y25_c00445{bottom:439.532000pt;}
.y24_c00445{bottom:458.732000pt;}
.y23_c00445{bottom:477.265333pt;}
.y22_c00445{bottom:496.798667pt;}
.y21_c00445{bottom:516.666667pt;}
.y20_c00445{bottom:535.865333pt;}
.y1d_c00445{bottom:555.398667pt;}
.y1f_c00445{bottom:556.333333pt;}
.y1e_c00445{bottom:556.598667pt;}
.y1c_c00445{bottom:575.465333pt;}
.y1b_c00445{bottom:594.732000pt;}
.y1a_c00445{bottom:614.265333pt;}
.y19_c00445{bottom:633.798667pt;}
.y18_c00445{bottom:650.400000pt;}
.y17_c00445{bottom:672.465333pt;}
.y16_c00445{bottom:692.333333pt;}
.y15_c00445{bottom:711.198667pt;}
.y14_c00445{bottom:730.398667pt;}
.y13_c00445{bottom:749.865333pt;}
.y11_c00445{bottom:763.666667pt;}
.y12_c00445{bottom:769.133333pt;}
.y10_c00445{bottom:788.333333pt;}
.yf_c00445{bottom:807.532000pt;}
.yb_c00445{bottom:821.600000pt;}
.ye_c00445{bottom:826.065333pt;}
.yc_c00445{bottom:827.398667pt;}
.yd_c00445{bottom:827.666667pt;}
.y9_c00445{bottom:839.800000pt;}
.ya_c00445{bottom:845.933333pt;}
.y8_c00445{bottom:865.133333pt;}
.y7_c00445{bottom:884.000000pt;}
.y6_c00445{bottom:902.600000pt;}
.y3_c00445{bottom:913.133333pt;}
.y4_c00445{bottom:917.600000pt;}
.y5_c00445{bottom:922.398667pt;}
.y2_c00445{bottom:940.333333pt;}
.y46_c00445{bottom:979.065333pt;}
.y1_c00445{bottom:989.933333pt;}
.h9_c00445{height:43.854610pt;}
.h8_c00445{height:44.416667pt;}
.h1_c00445{height:52.343750pt;}
.ha_c00445{height:54.818262pt;}
.h3_c00445{height:57.578125pt;}
.h5_c00445{height:59.125000pt;}
.h7_c00445{height:61.072917pt;}
.h2_c00445{height:62.812500pt;}
.hb_c00445{height:66.750000pt;}
.h6_c00445{height:69.875000pt;}
.h4_c00445{height:73.281250pt;}
.h0_c00445{height:1044.000000pt;}
.w0_c00445{width:650.646400pt;}
.w1_c00445{width:650.666667pt;}
.x0_c00445{left:0.000000pt;}
.x1b_c00445{left:51.169067pt;}
.x18_c00445{left:53.102400pt;}
.x12_c00445{left:54.035733pt;}
.x17_c00445{left:55.035733pt;}
.x11_c00445{left:55.969067pt;}
.x10_c00445{left:57.902400pt;}
.xf_c00445{left:59.169067pt;}
.xd_c00445{left:60.769067pt;}
.x9_c00445{left:62.035733pt;}
.x7_c00445{left:63.635733pt;}
.x6_c00445{left:65.569067pt;}
.x3_c00445{left:66.569067pt;}
.x2_c00445{left:68.167733pt;}
.x25_c00445{left:72.302400pt;}
.x1c_c00445{left:80.302400pt;}
.x2b_c00445{left:83.167733pt;}
.x16_c00445{left:84.169067pt;}
.x13_c00445{left:85.769067pt;}
.x8_c00445{left:95.969067pt;}
.x1f_c00445{left:101.769067pt;}
.xe_c00445{left:110.035733pt;}
.x20_c00445{left:121.569067pt;}
.x26_c00445{left:126.035733pt;}
.xa_c00445{left:146.569067pt;}
.x27_c00445{left:195.169067pt;}
.x4_c00445{left:215.035733pt;}
.x5_c00445{left:220.769067pt;}
.x1d_c00445{left:235.169067pt;}
.x1_c00445{left:265.902400pt;}
.x28_c00445{left:275.835733pt;}
.x14_c00445{left:285.102400pt;}
.x15_c00445{left:300.169067pt;}
.x21_c00445{left:309.435733pt;}
.x1e_c00445{left:365.102400pt;}
.x22_c00445{left:476.769067pt;}
.x29_c00445{left:480.302400pt;}
.x2a_c00445{left:506.835733pt;}
.xb_c00445{left:547.835733pt;}
.x23_c00445{left:554.569067pt;}
.x19_c00445{left:566.369067pt;}
.x24_c00445{left:572.769067pt;}
.xc_c00445{left:583.635733pt;}
.x1a_c00445{left:590.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2802dc8b240facb16987363.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00446{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c00446{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00446{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c00446{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00446{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00446{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00446{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00446{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00446{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00446{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00446{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00446{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00446{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00446{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c00446{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c00446{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2_c00446{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.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;}
}
.ws0_c00446{word-spacing:0.000000px;}
.fc0_c00446{color:transparent;}
.fs1_c00446{font-size:60.000000px;}
.fs2_c00446{font-size:66.000000px;}
.fs0_c00446{font-size:72.000000px;}
.y0_c00446{bottom:0.000000px;}
.y35_c00446{bottom:76.875000px;}
.y34_c00446{bottom:98.848500px;}
.y33_c00446{bottom:120.448500px;}
.y31_c00446{bottom:140.923500px;}
.y32_c00446{bottom:148.125000px;}
.y30_c00446{bottom:162.898500px;}
.y2f_c00446{bottom:184.125000px;}
.y2e_c00446{bottom:205.348500px;}
.y2d_c00446{bottom:226.648500px;}
.y2c_c00446{bottom:247.500000px;}
.y29_c00446{bottom:268.048500px;}
.y2a_c00446{bottom:269.848500px;}
.y2b_c00446{bottom:271.948500px;}
.y28_c00446{bottom:290.323500px;}
.y27_c00446{bottom:312.673500px;}
.y26_c00446{bottom:334.650000px;}
.y25_c00446{bottom:356.548500px;}
.y24_c00446{bottom:378.598500px;}
.y22_c00446{bottom:400.500000px;}
.y23_c00446{bottom:404.098500px;}
.y21_c00446{bottom:422.473500px;}
.y20_c00446{bottom:444.448500px;}
.y1f_c00446{bottom:466.348500px;}
.y1e_c00446{bottom:488.698500px;}
.y1d_c00446{bottom:510.673500px;}
.y1c_c00446{bottom:533.323500px;}
.y1b_c00446{bottom:554.923500px;}
.y1a_c00446{bottom:577.273500px;}
.y19_c00446{bottom:599.548500px;}
.y18_c00446{bottom:621.898500px;}
.y17_c00446{bottom:644.173500px;}
.y16_c00446{bottom:666.148500px;}
.y15_c00446{bottom:688.500000px;}
.y14_c00446{bottom:710.848500px;}
.y13_c00446{bottom:732.750000px;}
.y12_c00446{bottom:755.098500px;}
.y11_c00446{bottom:777.000000px;}
.y10_c00446{bottom:799.425000px;}
.yf_c00446{bottom:822.448500px;}
.ye_c00446{bottom:844.348500px;}
.yd_c00446{bottom:867.073500px;}
.yc_c00446{bottom:888.675000px;}
.yb_c00446{bottom:910.650000px;}
.ya_c00446{bottom:932.250000px;}
.y9_c00446{bottom:954.525000px;}
.y8_c00446{bottom:976.125000px;}
.y7_c00446{bottom:998.848500px;}
.y6_c00446{bottom:1020.750000px;}
.y5_c00446{bottom:1043.848500px;}
.y4_c00446{bottom:1095.300000px;}
.y2_c00446{bottom:1103.550000px;}
.y1_c00446{bottom:1105.348500px;}
.y3_c00446{bottom:1110.448500px;}
.h2_c00446{height:58.886719px;}
.h3_c00446{height:64.775391px;}
.h1_c00446{height:70.664062px;}
.h0_c00446{height:1174.500000px;}
.w0_c00446{width:731.977200px;}
.w1_c00446{width:732.000000px;}
.x0_c00446{left:0.000000px;}
.x6_c00446{left:52.915200px;}
.x5_c00446{left:53.965200px;}
.x7_c00446{left:55.090200px;}
.x9_c00446{left:56.515200px;}
.xa_c00446{left:57.565200px;}
.xc_c00446{left:58.990200px;}
.xd_c00446{left:60.115200px;}
.xe_c00446{left:61.165200px;}
.xf_c00446{left:62.290200px;}
.x12_c00446{left:63.340200px;}
.x13_c00446{left:64.765200px;}
.x14_c00446{left:66.190200px;}
.x15_c00446{left:67.315200px;}
.x8_c00446{left:89.590200px;}
.x1_c00446{left:277.915200px;}
.x2_c00446{left:304.540200px;}
.x10_c00446{left:406.390200px;}
.x11_c00446{left:435.190200px;}
.x3_c00446{left:477.715200px;}
.x4_c00446{left:645.790200px;}
.xb_c00446{left:668.890200px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls0_c00446{letter-spacing:0.000000pt;}
.ws0_c00446{word-spacing:0.000000pt;}
.fs1_c00446{font-size:53.333333pt;}
.fs2_c00446{font-size:58.666667pt;}
.fs0_c00446{font-size:64.000000pt;}
.y0_c00446{bottom:0.000000pt;}
.y35_c00446{bottom:68.333333pt;}
.y34_c00446{bottom:87.865333pt;}
.y33_c00446{bottom:107.065333pt;}
.y31_c00446{bottom:125.265333pt;}
.y32_c00446{bottom:131.666667pt;}
.y30_c00446{bottom:144.798667pt;}
.y2f_c00446{bottom:163.666667pt;}
.y2e_c00446{bottom:182.532000pt;}
.y2d_c00446{bottom:201.465333pt;}
.y2c_c00446{bottom:220.000000pt;}
.y29_c00446{bottom:238.265333pt;}
.y2a_c00446{bottom:239.865333pt;}
.y2b_c00446{bottom:241.732000pt;}
.y28_c00446{bottom:258.065333pt;}
.y27_c00446{bottom:277.932000pt;}
.y26_c00446{bottom:297.466667pt;}
.y25_c00446{bottom:316.932000pt;}
.y24_c00446{bottom:336.532000pt;}
.y22_c00446{bottom:356.000000pt;}
.y23_c00446{bottom:359.198667pt;}
.y21_c00446{bottom:375.532000pt;}
.y20_c00446{bottom:395.065333pt;}
.y1f_c00446{bottom:414.532000pt;}
.y1e_c00446{bottom:434.398667pt;}
.y1d_c00446{bottom:453.932000pt;}
.y1c_c00446{bottom:474.065333pt;}
.y1b_c00446{bottom:493.265333pt;}
.y1a_c00446{bottom:513.132000pt;}
.y19_c00446{bottom:532.932000pt;}
.y18_c00446{bottom:552.798667pt;}
.y17_c00446{bottom:572.598667pt;}
.y16_c00446{bottom:592.132000pt;}
.y15_c00446{bottom:612.000000pt;}
.y14_c00446{bottom:631.865333pt;}
.y13_c00446{bottom:651.333333pt;}
.y12_c00446{bottom:671.198667pt;}
.y11_c00446{bottom:690.666667pt;}
.y10_c00446{bottom:710.600000pt;}
.yf_c00446{bottom:731.065333pt;}
.ye_c00446{bottom:750.532000pt;}
.yd_c00446{bottom:770.732000pt;}
.yc_c00446{bottom:789.933333pt;}
.yb_c00446{bottom:809.466667pt;}
.ya_c00446{bottom:828.666667pt;}
.y9_c00446{bottom:848.466667pt;}
.y8_c00446{bottom:867.666667pt;}
.y7_c00446{bottom:887.865333pt;}
.y6_c00446{bottom:907.333333pt;}
.y5_c00446{bottom:927.865333pt;}
.y4_c00446{bottom:973.600000pt;}
.y2_c00446{bottom:980.933333pt;}
.y1_c00446{bottom:982.532000pt;}
.y3_c00446{bottom:987.065333pt;}
.h2_c00446{height:52.343750pt;}
.h3_c00446{height:57.578125pt;}
.h1_c00446{height:62.812500pt;}
.h0_c00446{height:1044.000000pt;}
.w0_c00446{width:650.646400pt;}
.w1_c00446{width:650.666667pt;}
.x0_c00446{left:0.000000pt;}
.x6_c00446{left:47.035733pt;}
.x5_c00446{left:47.969067pt;}
.x7_c00446{left:48.969067pt;}
.x9_c00446{left:50.235733pt;}
.xa_c00446{left:51.169067pt;}
.xc_c00446{left:52.435733pt;}
.xd_c00446{left:53.435733pt;}
.xe_c00446{left:54.369067pt;}
.xf_c00446{left:55.369067pt;}
.x12_c00446{left:56.302400pt;}
.x13_c00446{left:57.569067pt;}
.x14_c00446{left:58.835733pt;}
.x15_c00446{left:59.835733pt;}
.x8_c00446{left:79.635733pt;}
.x1_c00446{left:247.035733pt;}
.x2_c00446{left:270.702400pt;}
.x10_c00446{left:361.235733pt;}
.x11_c00446{left:386.835733pt;}
.x3_c00446{left:424.635733pt;}
.x4_c00446{left:574.035733pt;}
.xb_c00446{left:594.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6edf28bade3814c024fda861.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00447{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8_c00447{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mc_c00447{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c00447{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00447{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c00447{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00447{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00447{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00447{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00447{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00447{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00447{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00447{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00447{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00447{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00447{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00447{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2_c00447{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1_c00447{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00447{color:transparent;}
.fs1_c00447{font-size:36.000000px;}
.fs0_c00447{font-size:60.000000px;}
.fs2_c00447{font-size:72.000000px;}
.y0_c00447{bottom:0.000000px;}
.y2b_c00447{bottom:217.948500px;}
.y2a_c00447{bottom:235.948500px;}
.y29_c00447{bottom:258.598500px;}
.y28_c00447{bottom:280.948500px;}
.y27_c00447{bottom:302.548500px;}
.y26_c00447{bottom:324.525000px;}
.y25_c00447{bottom:347.250000px;}
.y24_c00447{bottom:368.400000px;}
.y23_c00447{bottom:390.375000px;}
.y22_c00447{bottom:411.973500px;}
.y21_c00447{bottom:434.698500px;}
.y20_c00447{bottom:456.298500px;}
.y1f_c00447{bottom:478.273500px;}
.y1e_c00447{bottom:500.250000px;}
.y1d_c00447{bottom:521.848500px;}
.y1c_c00447{bottom:543.375000px;}
.y1b_c00447{bottom:565.048500px;}
.y1a_c00447{bottom:586.948500px;}
.y19_c00447{bottom:608.923500px;}
.y18_c00447{bottom:631.273500px;}
.y17_c00447{bottom:653.250000px;}
.y16_c00447{bottom:675.148500px;}
.y15_c00447{bottom:697.125000px;}
.y14_c00447{bottom:718.723500px;}
.y13_c00447{bottom:733.125000px;}
.y12_c00447{bottom:740.700000px;}
.y11_c00447{bottom:759.450000px;}
.y10_c00447{bottom:784.198500px;}
.yf_c00447{bottom:805.875000px;}
.ye_c00447{bottom:827.473500px;}
.yd_c00447{bottom:848.698500px;}
.yc_c00447{bottom:868.875000px;}
.yb_c00447{bottom:892.275000px;}
.ya_c00447{bottom:910.275000px;}
.y9_c00447{bottom:935.473500px;}
.y8_c00447{bottom:957.375000px;}
.y7_c00447{bottom:978.598500px;}
.y6_c00447{bottom:995.925000px;}
.y5_c00447{bottom:1020.073500px;}
.y4_c00447{bottom:1041.675000px;}
.y1_c00447{bottom:1088.473500px;}
.y3_c00447{bottom:1098.525000px;}
.y2_c00447{bottom:1103.400000px;}
.h2_c00447{height:35.332031px;}
.h1_c00447{height:58.886719px;}
.h3_c00447{height:70.664062px;}
.h0_c00447{height:1174.500000px;}
.w0_c00447{width:731.977200px;}
.w1_c00447{width:732.000000px;}
.x0_c00447{left:0.000000px;}
.x15_c00447{left:58.315200px;}
.x14_c00447{left:59.740200px;}
.x12_c00447{left:60.790200px;}
.x13_c00447{left:61.915200px;}
.x10_c00447{left:63.340200px;}
.xe_c00447{left:64.390200px;}
.xd_c00447{left:65.890200px;}
.xc_c00447{left:66.940200px;}
.xb_c00447{left:68.365200px;}
.x7_c00447{left:70.540200px;}
.x6_c00447{left:72.340200px;}
.x4_c00447{left:75.563700px;}
.x11_c00447{left:83.140200px;}
.xf_c00447{left:85.990200px;}
.xa_c00447{left:89.590200px;}
.x9_c00447{left:91.390200px;}
.x8_c00447{left:92.515200px;}
.x1_c00447{left:100.390200px;}
.x5_c00447{left:102.940200px;}
.x2_c00447{left:128.515200px;}
.x3_c00447{left:302.740200px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls0_c00447{letter-spacing:0.000000pt;}
.ws0_c00447{word-spacing:0.000000pt;}
.fs1_c00447{font-size:32.000000pt;}
.fs0_c00447{font-size:53.333333pt;}
.fs2_c00447{font-size:64.000000pt;}
.y0_c00447{bottom:0.000000pt;}
.y2b_c00447{bottom:193.732000pt;}
.y2a_c00447{bottom:209.732000pt;}
.y29_c00447{bottom:229.865333pt;}
.y28_c00447{bottom:249.732000pt;}
.y27_c00447{bottom:268.932000pt;}
.y26_c00447{bottom:288.466667pt;}
.y25_c00447{bottom:308.666667pt;}
.y24_c00447{bottom:327.466667pt;}
.y23_c00447{bottom:347.000000pt;}
.y22_c00447{bottom:366.198667pt;}
.y21_c00447{bottom:386.398667pt;}
.y20_c00447{bottom:405.598667pt;}
.y1f_c00447{bottom:425.132000pt;}
.y1e_c00447{bottom:444.666667pt;}
.y1d_c00447{bottom:463.865333pt;}
.y1c_c00447{bottom:483.000000pt;}
.y1b_c00447{bottom:502.265333pt;}
.y1a_c00447{bottom:521.732000pt;}
.y19_c00447{bottom:541.265333pt;}
.y18_c00447{bottom:561.132000pt;}
.y17_c00447{bottom:580.666667pt;}
.y16_c00447{bottom:600.132000pt;}
.y15_c00447{bottom:619.666667pt;}
.y14_c00447{bottom:638.865333pt;}
.y13_c00447{bottom:651.666667pt;}
.y12_c00447{bottom:658.400000pt;}
.y11_c00447{bottom:675.066667pt;}
.y10_c00447{bottom:697.065333pt;}
.yf_c00447{bottom:716.333333pt;}
.ye_c00447{bottom:735.532000pt;}
.yd_c00447{bottom:754.398667pt;}
.yc_c00447{bottom:772.333333pt;}
.yb_c00447{bottom:793.133333pt;}
.ya_c00447{bottom:809.133333pt;}
.y9_c00447{bottom:831.532000pt;}
.y8_c00447{bottom:851.000000pt;}
.y7_c00447{bottom:869.865333pt;}
.y6_c00447{bottom:885.266667pt;}
.y5_c00447{bottom:906.732000pt;}
.y4_c00447{bottom:925.933333pt;}
.y1_c00447{bottom:967.532000pt;}
.y3_c00447{bottom:976.466667pt;}
.y2_c00447{bottom:980.800000pt;}
.h2_c00447{height:31.406250pt;}
.h1_c00447{height:52.343750pt;}
.h3_c00447{height:62.812500pt;}
.h0_c00447{height:1044.000000pt;}
.w0_c00447{width:650.646400pt;}
.w1_c00447{width:650.666667pt;}
.x0_c00447{left:0.000000pt;}
.x15_c00447{left:51.835733pt;}
.x14_c00447{left:53.102400pt;}
.x12_c00447{left:54.035733pt;}
.x13_c00447{left:55.035733pt;}
.x10_c00447{left:56.302400pt;}
.xe_c00447{left:57.235733pt;}
.xd_c00447{left:58.569067pt;}
.xc_c00447{left:59.502400pt;}
.xb_c00447{left:60.769067pt;}
.x7_c00447{left:62.702400pt;}
.x6_c00447{left:64.302400pt;}
.x4_c00447{left:67.167733pt;}
.x11_c00447{left:73.902400pt;}
.xf_c00447{left:76.435733pt;}
.xa_c00447{left:79.635733pt;}
.x9_c00447{left:81.235733pt;}
.x8_c00447{left:82.235733pt;}
.x1_c00447{left:89.235733pt;}
.x5_c00447{left:91.502400pt;}
.x2_c00447{left:114.235733pt;}
.x3_c00447{left:269.102400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_58bb8a38889a3f21b8dd9967.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00448;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00448{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md_c00448{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00448{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m11_c00448{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma_c00448{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00448{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00448{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3_c00448{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00448{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00448{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00448{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00448{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00448{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00448{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c00448{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c00448{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c00448{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c00448{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.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;}
}
.ws0_c00448{word-spacing:0.000000px;}
.fc0_c00448{color:transparent;}
.fs1_c00448{font-size:60.000000px;}
.fs0_c00448{font-size:72.000000px;}
.fs3_c00448{font-size:78.000000px;}
.fs2_c00448{font-size:84.000000px;}
.y0_c00448{bottom:0.000000px;}
.y2e_c00448{bottom:70.723500px;}
.y2d_c00448{bottom:92.023500px;}
.y2c_c00448{bottom:113.548500px;}
.y2b_c00448{bottom:134.473500px;}
.y2a_c00448{bottom:156.073500px;}
.y29_c00448{bottom:177.673500px;}
.y28_c00448{bottom:198.523500px;}
.y27_c00448{bottom:219.823500px;}
.y26_c00448{bottom:237.750000px;}
.y25_c00448{bottom:261.900000px;}
.y24_c00448{bottom:283.125000px;}
.y23_c00448{bottom:306.150000px;}
.y22_c00448{bottom:327.073500px;}
.y21_c00448{bottom:349.048500px;}
.y1e_c00448{bottom:370.948500px;}
.y1f_c00448{bottom:374.548500px;}
.y20_c00448{bottom:375.298500px;}
.y1d_c00448{bottom:393.298500px;}
.y1c_c00448{bottom:414.898500px;}
.y1b_c00448{bottom:436.500000px;}
.y1a_c00448{bottom:458.848500px;}
.y19_c00448{bottom:481.125000px;}
.y18_c00448{bottom:503.098500px;}
.y17_c00448{bottom:525.448500px;}
.y16_c00448{bottom:547.723500px;}
.y15_c00448{bottom:570.000000px;}
.y14_c00448{bottom:591.973500px;}
.y13_c00448{bottom:613.648500px;}
.y12_c00448{bottom:635.923500px;}
.y11_c00448{bottom:658.273500px;}
.y10_c00448{bottom:680.250000px;}
.yf_c00448{bottom:703.648500px;}
.ye_c00448{bottom:724.875000px;}
.yd_c00448{bottom:746.848500px;}
.yc_c00448{bottom:769.125000px;}
.yb_c00448{bottom:791.775000px;}
.ya_c00448{bottom:813.750000px;}
.y9_c00448{bottom:836.400000px;}
.y8_c00448{bottom:858.823500px;}
.y6_c00448{bottom:880.723500px;}
.y7_c00448{bottom:903.000000px;}
.y5_c00448{bottom:925.050000px;}
.y4_c00448{bottom:941.925000px;}
.y3_c00448{bottom:945.900000px;}
.y2_c00448{bottom:950.175000px;}
.y1_c00448{bottom:968.175000px;}
.h2_c00448{height:58.886719px;}
.h1_c00448{height:70.664062px;}
.h4_c00448{height:76.514648px;}
.h3_c00448{height:82.441406px;}
.h0_c00448{height:1174.500000px;}
.w0_c00448{width:731.977200px;}
.w1_c00448{width:732.000000px;}
.x0_c00448{left:0.000000px;}
.xb_c00448{left:60.490200px;}
.xa_c00448{left:61.540200px;}
.x5_c00448{left:63.340200px;}
.x7_c00448{left:65.140200px;}
.x2_c00448{left:66.190200px;}
.x6_c00448{left:82.390200px;}
.x9_c00448{left:96.115200px;}
.x8_c00448{left:97.165200px;}
.x1_c00448{left:101.140200px;}
.x3_c00448{left:414.715200px;}
.x4_c00448{left:448.540200px;}
.xc_c00448{left:623.140200px;}
.xd_c00448{left:642.565200px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls0_c00448{letter-spacing:0.000000pt;}
.ws0_c00448{word-spacing:0.000000pt;}
.fs1_c00448{font-size:53.333333pt;}
.fs0_c00448{font-size:64.000000pt;}
.fs3_c00448{font-size:69.333333pt;}
.fs2_c00448{font-size:74.666667pt;}
.y0_c00448{bottom:0.000000pt;}
.y2e_c00448{bottom:62.865333pt;}
.y2d_c00448{bottom:81.798667pt;}
.y2c_c00448{bottom:100.932000pt;}
.y2b_c00448{bottom:119.532000pt;}
.y2a_c00448{bottom:138.732000pt;}
.y29_c00448{bottom:157.932000pt;}
.y28_c00448{bottom:176.465333pt;}
.y27_c00448{bottom:195.398667pt;}
.y26_c00448{bottom:211.333333pt;}
.y25_c00448{bottom:232.800000pt;}
.y24_c00448{bottom:251.666667pt;}
.y23_c00448{bottom:272.133333pt;}
.y22_c00448{bottom:290.732000pt;}
.y21_c00448{bottom:310.265333pt;}
.y1e_c00448{bottom:329.732000pt;}
.y1f_c00448{bottom:332.932000pt;}
.y20_c00448{bottom:333.598667pt;}
.y1d_c00448{bottom:349.598667pt;}
.y1c_c00448{bottom:368.798667pt;}
.y1b_c00448{bottom:388.000000pt;}
.y1a_c00448{bottom:407.865333pt;}
.y19_c00448{bottom:427.666667pt;}
.y18_c00448{bottom:447.198667pt;}
.y17_c00448{bottom:467.065333pt;}
.y16_c00448{bottom:486.865333pt;}
.y15_c00448{bottom:506.666667pt;}
.y14_c00448{bottom:526.198667pt;}
.y13_c00448{bottom:545.465333pt;}
.y12_c00448{bottom:565.265333pt;}
.y11_c00448{bottom:585.132000pt;}
.y10_c00448{bottom:604.666667pt;}
.yf_c00448{bottom:625.465333pt;}
.ye_c00448{bottom:644.333333pt;}
.yd_c00448{bottom:663.865333pt;}
.yc_c00448{bottom:683.666667pt;}
.yb_c00448{bottom:703.800000pt;}
.ya_c00448{bottom:723.333333pt;}
.y9_c00448{bottom:743.466667pt;}
.y8_c00448{bottom:763.398667pt;}
.y6_c00448{bottom:782.865333pt;}
.y7_c00448{bottom:802.666667pt;}
.y5_c00448{bottom:822.266667pt;}
.y4_c00448{bottom:837.266667pt;}
.y3_c00448{bottom:840.800000pt;}
.y2_c00448{bottom:844.600000pt;}
.y1_c00448{bottom:860.600000pt;}
.h2_c00448{height:52.343750pt;}
.h1_c00448{height:62.812500pt;}
.h4_c00448{height:68.013021pt;}
.h3_c00448{height:73.281250pt;}
.h0_c00448{height:1044.000000pt;}
.w0_c00448{width:650.646400pt;}
.w1_c00448{width:650.666667pt;}
.x0_c00448{left:0.000000pt;}
.xb_c00448{left:53.769067pt;}
.xa_c00448{left:54.702400pt;}
.x5_c00448{left:56.302400pt;}
.x7_c00448{left:57.902400pt;}
.x2_c00448{left:58.835733pt;}
.x6_c00448{left:73.235733pt;}
.x9_c00448{left:85.435733pt;}
.x8_c00448{left:86.369067pt;}
.x1_c00448{left:89.902400pt;}
.x3_c00448{left:368.635733pt;}
.x4_c00448{left:398.702400pt;}
.xc_c00448{left:553.902400pt;}
.xd_c00448{left:571.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9ce3dce0f4368e631bfacd1a.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00449;src:url('chunks/assets/font_dcd3210ee098fd4f15ae16c0.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00449{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m6_c00449{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m13_c00449{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m11_c00449{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00449{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00449{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00449{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c00449{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00449{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00449{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00449{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00449{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00449{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c00449{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00449{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00449{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00449{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c00449{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c00449{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c00449{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00449{color:transparent;}
.fs1_c00449{font-size:60.000000px;}
.fs2_c00449{font-size:66.000000px;}
.fs0_c00449{font-size:72.000000px;}
.y0_c00449{bottom:0.000000px;}
.y38_c00449{bottom:85.500000px;}
.y37_c00449{bottom:97.723500px;}
.y36_c00449{bottom:107.398500px;}
.y35_c00449{bottom:107.773500px;}
.y34_c00449{bottom:128.698500px;}
.y33_c00449{bottom:150.673500px;}
.y31_c00449{bottom:171.523500px;}
.y32_c00449{bottom:172.198500px;}
.y30_c00449{bottom:193.500000px;}
.y2f_c00449{bottom:215.773500px;}
.y2d_c00449{bottom:236.698500px;}
.y2e_c00449{bottom:237.750000px;}
.y2c_c00449{bottom:238.125000px;}
.y2b_c00449{bottom:261.525000px;}
.y29_c00449{bottom:279.900000px;}
.y2a_c00449{bottom:280.948500px;}
.y28_c00449{bottom:282.073500px;}
.y27_c00449{bottom:303.673500px;}
.y26_c00449{bottom:328.125000px;}
.y25_c00449{bottom:346.500000px;}
.y24_c00449{bottom:368.098500px;}
.y23_c00449{bottom:390.448500px;}
.y22_c00449{bottom:412.423500px;}
.y21_c00449{bottom:434.323500px;}
.y20_c00449{bottom:456.298500px;}
.y1f_c00449{bottom:478.273500px;}
.y1e_c00449{bottom:499.875000px;}
.y1d_c00449{bottom:521.473500px;}
.y1c_c00449{bottom:543.073500px;}
.y1b_c00449{bottom:565.048500px;}
.y1a_c00449{bottom:586.948500px;}
.y19_c00449{bottom:609.000000px;}
.y18_c00449{bottom:630.898500px;}
.y17_c00449{bottom:652.875000px;}
.y16_c00449{bottom:674.848500px;}
.y15_c00449{bottom:696.448500px;}
.y14_c00449{bottom:718.723500px;}
.y13_c00449{bottom:740.325000px;}
.y12_c00449{bottom:762.298500px;}
.y11_c00449{bottom:784.273500px;}
.y10_c00449{bottom:805.875000px;}
.yf_c00449{bottom:827.098500px;}
.ye_c00449{bottom:848.323500px;}
.yd_c00449{bottom:869.550000px;}
.yc_c00449{bottom:890.848500px;}
.yb_c00449{bottom:912.750000px;}
.y8_c00449{bottom:928.650000px;}
.ya_c00449{bottom:935.473500px;}
.y9_c00449{bottom:957.073500px;}
.y7_c00449{bottom:978.300000px;}
.y6_c00449{bottom:999.223500px;}
.y5_c00449{bottom:1019.698500px;}
.y4_c00449{bottom:1040.550000px;}
.y1_c00449{bottom:1086.300000px;}
.y3_c00449{bottom:1097.473500px;}
.y2_c00449{bottom:1101.598500px;}
.h2_c00449{height:58.886719px;}
.h4_c00449{height:66.515625px;}
.h1_c00449{height:70.664062px;}
.h3_c00449{height:72.562500px;}
.h0_c00449{height:1174.500000px;}
.w0_c00449{width:731.977200px;}
.w1_c00449{width:732.000000px;}
.x0_c00449{left:0.000000px;}
.x8_c00449{left:58.990200px;}
.x7_c00449{left:60.490200px;}
.x6_c00449{left:62.290200px;}
.x4_c00449{left:64.090200px;}
.x5_c00449{left:76.313700px;}
.x1_c00449{left:84.938700px;}
.x9_c00449{left:91.390200px;}
.xa_c00449{left:92.515200px;}
.xf_c00449{left:93.563700px;}
.x2_c00449{left:111.940200px;}
.x3_c00449{left:287.290200px;}
.xd_c00449{left:584.290200px;}
.xb_c00449{left:601.165200px;}
.xe_c00449{left:619.165200px;}
.x11_c00449{left:633.565200px;}
.x10_c00449{left:657.340200px;}
.xc_c00449{left:664.540200px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls0_c00449{letter-spacing:0.000000pt;}
.ws0_c00449{word-spacing:0.000000pt;}
.fs1_c00449{font-size:53.333333pt;}
.fs2_c00449{font-size:58.666667pt;}
.fs0_c00449{font-size:64.000000pt;}
.y0_c00449{bottom:0.000000pt;}
.y38_c00449{bottom:76.000000pt;}
.y37_c00449{bottom:86.865333pt;}
.y36_c00449{bottom:95.465333pt;}
.y35_c00449{bottom:95.798667pt;}
.y34_c00449{bottom:114.398667pt;}
.y33_c00449{bottom:133.932000pt;}
.y31_c00449{bottom:152.465333pt;}
.y32_c00449{bottom:153.065333pt;}
.y30_c00449{bottom:172.000000pt;}
.y2f_c00449{bottom:191.798667pt;}
.y2d_c00449{bottom:210.398667pt;}
.y2e_c00449{bottom:211.333333pt;}
.y2c_c00449{bottom:211.666667pt;}
.y2b_c00449{bottom:232.466667pt;}
.y29_c00449{bottom:248.800000pt;}
.y2a_c00449{bottom:249.732000pt;}
.y28_c00449{bottom:250.732000pt;}
.y27_c00449{bottom:269.932000pt;}
.y26_c00449{bottom:291.666667pt;}
.y25_c00449{bottom:308.000000pt;}
.y24_c00449{bottom:327.198667pt;}
.y23_c00449{bottom:347.065333pt;}
.y22_c00449{bottom:366.598667pt;}
.y21_c00449{bottom:386.065333pt;}
.y20_c00449{bottom:405.598667pt;}
.y1f_c00449{bottom:425.132000pt;}
.y1e_c00449{bottom:444.333333pt;}
.y1d_c00449{bottom:463.532000pt;}
.y1c_c00449{bottom:482.732000pt;}
.y1b_c00449{bottom:502.265333pt;}
.y1a_c00449{bottom:521.732000pt;}
.y19_c00449{bottom:541.333333pt;}
.y18_c00449{bottom:560.798667pt;}
.y17_c00449{bottom:580.333333pt;}
.y16_c00449{bottom:599.865333pt;}
.y15_c00449{bottom:619.065333pt;}
.y14_c00449{bottom:638.865333pt;}
.y13_c00449{bottom:658.066667pt;}
.y12_c00449{bottom:677.598667pt;}
.y11_c00449{bottom:697.132000pt;}
.y10_c00449{bottom:716.333333pt;}
.yf_c00449{bottom:735.198667pt;}
.ye_c00449{bottom:754.065333pt;}
.yd_c00449{bottom:772.933333pt;}
.yc_c00449{bottom:791.865333pt;}
.yb_c00449{bottom:811.333333pt;}
.y8_c00449{bottom:825.466667pt;}
.ya_c00449{bottom:831.532000pt;}
.y9_c00449{bottom:850.732000pt;}
.y7_c00449{bottom:869.600000pt;}
.y6_c00449{bottom:888.198667pt;}
.y5_c00449{bottom:906.398667pt;}
.y4_c00449{bottom:924.933333pt;}
.y1_c00449{bottom:965.600000pt;}
.y3_c00449{bottom:975.532000pt;}
.y2_c00449{bottom:979.198667pt;}
.h2_c00449{height:52.343750pt;}
.h4_c00449{height:59.125000pt;}
.h1_c00449{height:62.812500pt;}
.h3_c00449{height:64.500000pt;}
.h0_c00449{height:1044.000000pt;}
.w0_c00449{width:650.646400pt;}
.w1_c00449{width:650.666667pt;}
.x0_c00449{left:0.000000pt;}
.x8_c00449{left:52.435733pt;}
.x7_c00449{left:53.769067pt;}
.x6_c00449{left:55.369067pt;}
.x4_c00449{left:56.969067pt;}
.x5_c00449{left:67.834400pt;}
.x1_c00449{left:75.501067pt;}
.x9_c00449{left:81.235733pt;}
.xa_c00449{left:82.235733pt;}
.xf_c00449{left:83.167733pt;}
.x2_c00449{left:99.502400pt;}
.x3_c00449{left:255.369067pt;}
.xd_c00449{left:519.369067pt;}
.xb_c00449{left:534.369067pt;}
.xe_c00449{left:550.369067pt;}
.x11_c00449{left:563.169067pt;}
.x10_c00449{left:584.302400pt;}
.xc_c00449{left:590.702400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_39b52fa3e3f8a0165f61045a.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00450;src:url('chunks/assets/font_6ee73567de5e4c7924c874eb.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00450{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00450{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c00450{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00450{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00450{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md_c00450{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00450{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00450{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00450{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c00450{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c00450{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00450{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00450{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00450{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00450{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m6_c00450{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m2_c00450{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.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;}
}
.ws0_c00450{word-spacing:0.000000px;}
.fc0_c00450{color:transparent;}
.fs3_c00450{font-size:36.000000px;}
.fs1_c00450{font-size:60.000000px;}
.fs0_c00450{font-size:66.000000px;}
.fs2_c00450{font-size:72.000000px;}
.y0_c00450{bottom:0.000000px;}
.y33_c00450{bottom:63.223500px;}
.y32_c00450{bottom:84.750000px;}
.y31_c00450{bottom:106.423500px;}
.y30_c00450{bottom:127.948500px;}
.y2f_c00450{bottom:149.250000px;}
.y2e_c00450{bottom:170.773500px;}
.y2d_c00450{bottom:191.698500px;}
.y2c_c00450{bottom:212.625000px;}
.y2b_c00450{bottom:233.473500px;}
.y2a_c00450{bottom:254.698500px;}
.y29_c00450{bottom:276.298500px;}
.y28_c00450{bottom:296.775000px;}
.y27_c00450{bottom:320.250000px;}
.y26_c00450{bottom:342.525000px;}
.y25_c00450{bottom:364.125000px;}
.y24_c00450{bottom:386.098500px;}
.y23_c00450{bottom:407.698500px;}
.y22_c00450{bottom:429.298500px;}
.y21_c00450{bottom:450.523500px;}
.y20_c00450{bottom:473.250000px;}
.y1f_c00450{bottom:495.523500px;}
.y1e_c00450{bottom:517.875000px;}
.y1d_c00450{bottom:540.148500px;}
.y1c_c00450{bottom:562.500000px;}
.y1b_c00450{bottom:584.473500px;}
.y1a_c00450{bottom:606.448500px;}
.y19_c00450{bottom:628.348500px;}
.y18_c00450{bottom:650.698500px;}
.y17_c00450{bottom:672.973500px;}
.y16_c00450{bottom:694.648500px;}
.y15_c00450{bottom:716.923500px;}
.y14_c00450{bottom:739.273500px;}
.y13_c00450{bottom:761.250000px;}
.y12_c00450{bottom:783.148500px;}
.y11_c00450{bottom:808.050000px;}
.y10_c00450{bottom:828.150000px;}
.yf_c00450{bottom:854.098500px;}
.ye_c00450{bottom:872.473500px;}
.yd_c00450{bottom:894.448500px;}
.yc_c00450{bottom:916.050000px;}
.yb_c00450{bottom:937.948500px;}
.ya_c00450{bottom:960.300000px;}
.y9_c00450{bottom:981.900000px;}
.y7_c00450{bottom:997.723500px;}
.y8_c00450{bottom:998.098500px;}
.y6_c00450{bottom:1004.250000px;}
.y5_c00450{bottom:1026.223500px;}
.y4_c00450{bottom:1081.650000px;}
.y2_c00450{bottom:1087.723500px;}
.y1_c00450{bottom:1088.848500px;}
.y3_c00450{bottom:1096.425000px;}
.h4_c00450{height:35.332031px;}
.h2_c00450{height:60.468750px;}
.h1_c00450{height:66.515625px;}
.h3_c00450{height:70.664062px;}
.h0_c00450{height:1174.500000px;}
.w0_c00450{width:731.977200px;}
.w1_c00450{width:732.000000px;}
.x0_c00450{left:0.000000px;}
.x10_c00450{left:67.990200px;}
.xf_c00450{left:69.115200px;}
.xd_c00450{left:70.165200px;}
.x9_c00450{left:72.340200px;}
.xc_c00450{left:73.765200px;}
.x6_c00450{left:75.188700px;}
.x5_c00450{left:76.313700px;}
.x11_c00450{left:103.990200px;}
.xe_c00450{left:105.115200px;}
.xb_c00450{left:107.290200px;}
.xa_c00450{left:108.715200px;}
.x1_c00450{left:299.515200px;}
.x2_c00450{left:327.940200px;}
.x3_c00450{left:501.790200px;}
.x4_c00450{left:668.515200px;}
.x7_c00450{left:670.315200px;}
.x8_c00450{left:685.765200px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls0_c00450{letter-spacing:0.000000pt;}
.ws0_c00450{word-spacing:0.000000pt;}
.fs3_c00450{font-size:32.000000pt;}
.fs1_c00450{font-size:53.333333pt;}
.fs0_c00450{font-size:58.666667pt;}
.fs2_c00450{font-size:64.000000pt;}
.y0_c00450{bottom:0.000000pt;}
.y33_c00450{bottom:56.198667pt;}
.y32_c00450{bottom:75.333333pt;}
.y31_c00450{bottom:94.598667pt;}
.y30_c00450{bottom:113.732000pt;}
.y2f_c00450{bottom:132.666667pt;}
.y2e_c00450{bottom:151.798667pt;}
.y2d_c00450{bottom:170.398667pt;}
.y2c_c00450{bottom:189.000000pt;}
.y2b_c00450{bottom:207.532000pt;}
.y2a_c00450{bottom:226.398667pt;}
.y29_c00450{bottom:245.598667pt;}
.y28_c00450{bottom:263.800000pt;}
.y27_c00450{bottom:284.666667pt;}
.y26_c00450{bottom:304.466667pt;}
.y25_c00450{bottom:323.666667pt;}
.y24_c00450{bottom:343.198667pt;}
.y23_c00450{bottom:362.398667pt;}
.y22_c00450{bottom:381.598667pt;}
.y21_c00450{bottom:400.465333pt;}
.y20_c00450{bottom:420.666667pt;}
.y1f_c00450{bottom:440.465333pt;}
.y1e_c00450{bottom:460.333333pt;}
.y1d_c00450{bottom:480.132000pt;}
.y1c_c00450{bottom:500.000000pt;}
.y1b_c00450{bottom:519.532000pt;}
.y1a_c00450{bottom:539.065333pt;}
.y19_c00450{bottom:558.532000pt;}
.y18_c00450{bottom:578.398667pt;}
.y17_c00450{bottom:598.198667pt;}
.y16_c00450{bottom:617.465333pt;}
.y15_c00450{bottom:637.265333pt;}
.y14_c00450{bottom:657.132000pt;}
.y13_c00450{bottom:676.666667pt;}
.y12_c00450{bottom:696.132000pt;}
.y11_c00450{bottom:718.266667pt;}
.y10_c00450{bottom:736.133333pt;}
.yf_c00450{bottom:759.198667pt;}
.ye_c00450{bottom:775.532000pt;}
.yd_c00450{bottom:795.065333pt;}
.yc_c00450{bottom:814.266667pt;}
.yb_c00450{bottom:833.732000pt;}
.ya_c00450{bottom:853.600000pt;}
.y9_c00450{bottom:872.800000pt;}
.y7_c00450{bottom:886.865333pt;}
.y8_c00450{bottom:887.198667pt;}
.y6_c00450{bottom:892.666667pt;}
.y5_c00450{bottom:912.198667pt;}
.y4_c00450{bottom:961.466667pt;}
.y2_c00450{bottom:966.865333pt;}
.y1_c00450{bottom:967.865333pt;}
.y3_c00450{bottom:974.600000pt;}
.h4_c00450{height:31.406250pt;}
.h2_c00450{height:53.750000pt;}
.h1_c00450{height:59.125000pt;}
.h3_c00450{height:62.812500pt;}
.h0_c00450{height:1044.000000pt;}
.w0_c00450{width:650.646400pt;}
.w1_c00450{width:650.666667pt;}
.x0_c00450{left:0.000000pt;}
.x10_c00450{left:60.435733pt;}
.xf_c00450{left:61.435733pt;}
.xd_c00450{left:62.369067pt;}
.x9_c00450{left:64.302400pt;}
.xc_c00450{left:65.569067pt;}
.x6_c00450{left:66.834400pt;}
.x5_c00450{left:67.834400pt;}
.x11_c00450{left:92.435733pt;}
.xe_c00450{left:93.435733pt;}
.xb_c00450{left:95.369067pt;}
.xa_c00450{left:96.635733pt;}
.x1_c00450{left:266.235733pt;}
.x2_c00450{left:291.502400pt;}
.x3_c00450{left:446.035733pt;}
.x4_c00450{left:594.235733pt;}
.x7_c00450{left:595.835733pt;}
.x8_c00450{left:609.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d5ccf3bde4c3c2f5169567c.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00451;src:url('chunks/assets/font_b8e763a2649a74a8087691b3.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14_c00451{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m12_c00451{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m17_c00451{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5_c00451{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18_c00451{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9_c00451{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00451{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00451{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c00451{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00451{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00451{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m16_c00451{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00451{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00451{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10_c00451{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00451{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c00451{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00451{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00451{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c00451{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13_c00451{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00451{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_c00451{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me_c00451{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c00451{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m19_c00451{transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);}
.m1_c00451{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00451{color:transparent;}
.fs0_c00451{font-size:60.000000px;}
.fs2_c00451{font-size:66.000000px;}
.fs1_c00451{font-size:72.000000px;}
.y0_c00451{bottom:0.000000px;}
.y3c_c00451{bottom:92.323500px;}
.y3b_c00451{bottom:113.548500px;}
.y3a_c00451{bottom:134.848500px;}
.y39_c00451{bottom:156.375000px;}
.y38_c00451{bottom:177.673500px;}
.y37_c00451{bottom:207.148500px;}
.y36_c00451{bottom:221.548500px;}
.y35_c00451{bottom:243.523500px;}
.y33_c00451{bottom:247.125000px;}
.y34_c00451{bottom:247.500000px;}
.y32_c00451{bottom:272.323500px;}
.y31_c00451{bottom:287.400000px;}
.y30_c00451{bottom:308.698500px;}
.y2f_c00451{bottom:331.723500px;}
.y2e_c00451{bottom:352.948500px;}
.y2d_c00451{bottom:374.923500px;}
.y2c_c00451{bottom:396.525000px;}
.y2b_c00451{bottom:400.875000px;}
.y2a_c00451{bottom:401.250000px;}
.y29_c00451{bottom:420.598500px;}
.y28_c00451{bottom:440.098500px;}
.y27_c00451{bottom:462.375000px;}
.y26_c00451{bottom:484.048500px;}
.y25_c00451{bottom:505.648500px;}
.y24_c00451{bottom:527.548500px;}
.y23_c00451{bottom:549.523500px;}
.y22_c00451{bottom:571.125000px;}
.y21_c00451{bottom:572.548500px;}
.y20_c00451{bottom:593.773500px;}
.y1f_c00451{bottom:615.448500px;}
.y1e_c00451{bottom:637.348500px;}
.y1d_c00451{bottom:659.323500px;}
.y1c_c00451{bottom:681.298500px;}
.y1b_c00451{bottom:702.898500px;}
.y1a_c00451{bottom:724.875000px;}
.y19_c00451{bottom:746.773500px;}
.y18_c00451{bottom:769.125000px;}
.y17_c00451{bottom:790.050000px;}
.y16_c00451{bottom:812.025000px;}
.y15_c00451{bottom:833.925000px;}
.y14_c00451{bottom:855.150000px;}
.y13_c00451{bottom:876.073500px;}
.y12_c00451{bottom:897.973500px;}
.y11_c00451{bottom:919.650000px;}
.y10_c00451{bottom:941.550000px;}
.yf_c00451{bottom:963.525000px;}
.yc_c00451{bottom:976.125000px;}
.yd_c00451{bottom:980.775000px;}
.ye_c00451{bottom:985.800000px;}
.y9_c00451{bottom:996.300000px;}
.y8_c00451{bottom:996.675000px;}
.ya_c00451{bottom:998.473500px;}
.yb_c00451{bottom:1006.723500px;}
.y5_c00451{bottom:1021.875000px;}
.y6_c00451{bottom:1026.223500px;}
.y7_c00451{bottom:1028.323500px;}
.y4_c00451{bottom:1048.125000px;}
.y1_c00451{bottom:1093.875000px;}
.y3_c00451{bottom:1104.300000px;}
.y2_c00451{bottom:1109.550000px;}
.h2_c00451{height:58.886719px;}
.h1_c00451{height:60.468750px;}
.h4_c00451{height:64.775391px;}
.h3_c00451{height:70.664062px;}
.h5_c00451{height:72.562500px;}
.h0_c00451{height:1174.500000px;}
.w0_c00451{width:731.977200px;}
.w1_c00451{width:732.000000px;}
.x0_c00451{left:0.000000px;}
.x20_c00451{left:46.390200px;}
.x1f_c00451{left:47.515200px;}
.x19_c00451{left:48.940200px;}
.x15_c00451{left:50.365200px;}
.x10_c00451{left:51.490200px;}
.xf_c00451{left:52.915200px;}
.xc_c00451{left:54.340200px;}
.x8_c00451{left:55.390200px;}
.x4_c00451{left:56.890200px;}
.x9_c00451{left:64.765200px;}
.x1a_c00451{left:70.540200px;}
.x16_c00451{left:71.965200px;}
.x12_c00451{left:73.390200px;}
.x1_c00451{left:76.313700px;}
.x1b_c00451{left:79.915200px;}
.x18_c00451{left:81.340200px;}
.x11_c00451{left:83.515200px;}
.x5_c00451{left:84.938700px;}
.x1c_c00451{left:91.090200px;}
.x17_c00451{left:98.290200px;}
.x13_c00451{left:99.340200px;}
.x1d_c00451{left:102.940200px;}
.x2_c00451{left:105.115200px;}
.x14_c00451{left:106.165200px;}
.xa_c00451{left:119.140200px;}
.x1e_c00451{left:124.165200px;}
.xd_c00451{left:136.765200px;}
.xb_c00451{left:142.540200px;}
.xe_c00451{left:233.290200px;}
.x3_c00451{left:281.515200px;}
.x6_c00451{left:297.340200px;}
.x7_c00451{left:305.590200px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls0_c00451{letter-spacing:0.000000pt;}
.ws0_c00451{word-spacing:0.000000pt;}
.fs0_c00451{font-size:53.333333pt;}
.fs2_c00451{font-size:58.666667pt;}
.fs1_c00451{font-size:64.000000pt;}
.y0_c00451{bottom:0.000000pt;}
.y3c_c00451{bottom:82.065333pt;}
.y3b_c00451{bottom:100.932000pt;}
.y3a_c00451{bottom:119.865333pt;}
.y39_c00451{bottom:139.000000pt;}
.y38_c00451{bottom:157.932000pt;}
.y37_c00451{bottom:184.132000pt;}
.y36_c00451{bottom:196.932000pt;}
.y35_c00451{bottom:216.465333pt;}
.y33_c00451{bottom:219.666667pt;}
.y34_c00451{bottom:220.000000pt;}
.y32_c00451{bottom:242.065333pt;}
.y31_c00451{bottom:255.466667pt;}
.y30_c00451{bottom:274.398667pt;}
.y2f_c00451{bottom:294.865333pt;}
.y2e_c00451{bottom:313.732000pt;}
.y2d_c00451{bottom:333.265333pt;}
.y2c_c00451{bottom:352.466667pt;}
.y2b_c00451{bottom:356.333333pt;}
.y2a_c00451{bottom:356.666667pt;}
.y29_c00451{bottom:373.865333pt;}
.y28_c00451{bottom:391.198667pt;}
.y27_c00451{bottom:411.000000pt;}
.y26_c00451{bottom:430.265333pt;}
.y25_c00451{bottom:449.465333pt;}
.y24_c00451{bottom:468.932000pt;}
.y23_c00451{bottom:488.465333pt;}
.y22_c00451{bottom:507.666667pt;}
.y21_c00451{bottom:508.932000pt;}
.y20_c00451{bottom:527.798667pt;}
.y1f_c00451{bottom:547.065333pt;}
.y1e_c00451{bottom:566.532000pt;}
.y1d_c00451{bottom:586.065333pt;}
.y1c_c00451{bottom:605.598667pt;}
.y1b_c00451{bottom:624.798667pt;}
.y1a_c00451{bottom:644.333333pt;}
.y19_c00451{bottom:663.798667pt;}
.y18_c00451{bottom:683.666667pt;}
.y17_c00451{bottom:702.266667pt;}
.y16_c00451{bottom:721.800000pt;}
.y15_c00451{bottom:741.266667pt;}
.y14_c00451{bottom:760.133333pt;}
.y13_c00451{bottom:778.732000pt;}
.y12_c00451{bottom:798.198667pt;}
.y11_c00451{bottom:817.466667pt;}
.y10_c00451{bottom:836.933333pt;}
.yf_c00451{bottom:856.466667pt;}
.yc_c00451{bottom:867.666667pt;}
.yd_c00451{bottom:871.800000pt;}
.ye_c00451{bottom:876.266667pt;}
.y9_c00451{bottom:885.600000pt;}
.y8_c00451{bottom:885.933333pt;}
.ya_c00451{bottom:887.532000pt;}
.yb_c00451{bottom:894.865333pt;}
.y5_c00451{bottom:908.333333pt;}
.y6_c00451{bottom:912.198667pt;}
.y7_c00451{bottom:914.065333pt;}
.y4_c00451{bottom:931.666667pt;}
.y1_c00451{bottom:972.333333pt;}
.y3_c00451{bottom:981.600000pt;}
.y2_c00451{bottom:986.266667pt;}
.h2_c00451{height:52.343750pt;}
.h1_c00451{height:53.750000pt;}
.h4_c00451{height:57.578125pt;}
.h3_c00451{height:62.812500pt;}
.h5_c00451{height:64.500000pt;}
.h0_c00451{height:1044.000000pt;}
.w0_c00451{width:650.646400pt;}
.w1_c00451{width:650.666667pt;}
.x0_c00451{left:0.000000pt;}
.x20_c00451{left:41.235733pt;}
.x1f_c00451{left:42.235733pt;}
.x19_c00451{left:43.502400pt;}
.x15_c00451{left:44.769067pt;}
.x10_c00451{left:45.769067pt;}
.xf_c00451{left:47.035733pt;}
.xc_c00451{left:48.302400pt;}
.x8_c00451{left:49.235733pt;}
.x4_c00451{left:50.569067pt;}
.x9_c00451{left:57.569067pt;}
.x1a_c00451{left:62.702400pt;}
.x16_c00451{left:63.969067pt;}
.x12_c00451{left:65.235733pt;}
.x1_c00451{left:67.834400pt;}
.x1b_c00451{left:71.035733pt;}
.x18_c00451{left:72.302400pt;}
.x11_c00451{left:74.235733pt;}
.x5_c00451{left:75.501067pt;}
.x1c_c00451{left:80.969067pt;}
.x17_c00451{left:87.369067pt;}
.x13_c00451{left:88.302400pt;}
.x1d_c00451{left:91.502400pt;}
.x2_c00451{left:93.435733pt;}
.x14_c00451{left:94.369067pt;}
.xa_c00451{left:105.902400pt;}
.x1e_c00451{left:110.369067pt;}
.xd_c00451{left:121.569067pt;}
.xb_c00451{left:126.702400pt;}
.xe_c00451{left:207.369067pt;}
.x3_c00451{left:250.235733pt;}
.x6_c00451{left:264.302400pt;}
.x7_c00451{left:271.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_666847b982b44e15b6b8f0ce.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00452;src:url('chunks/assets/font_904d6c24c2be0bf777c7ac06.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00452;src:url('chunks/assets/font_a99e5e8b20a28b0a32dd0332.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19_c00452{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m4_c00452{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2_c00452{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m13_c00452{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c00452{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m0_c00452{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00452{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c00452{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c00452{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c00452{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m17_c00452{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md_c00452{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00452{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00452{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00452{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00452{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00452{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c00452{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c00452{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00452{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m14_c00452{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c00452{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m10_c00452{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m7_c00452{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me_c00452{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00452{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00452{vertical-align:0.000000px;}
.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;}
}
.ws0_c00452{word-spacing:0.000000px;}
._0_c00452{margin-left:-75.620609px;}
.fc0_c00452{color:transparent;}
.fs0_c00452{font-size:60.000000px;}
.fs1_c00452{font-size:72.000000px;}
.y0_c00452{bottom:0.000000px;}
.y2e_c00452{bottom:59.548500px;}
.y2f_c00452{bottom:61.723500px;}
.y30_c00452{bottom:65.398500px;}
.y2d_c00452{bottom:84.448500px;}
.y2c_c00452{bottom:105.973500px;}
.y2b_c00452{bottom:127.573500px;}
.y2a_c00452{bottom:149.923500px;}
.y29_c00452{bottom:170.773500px;}
.y28_c00452{bottom:192.073500px;}
.y27_c00452{bottom:213.298500px;}
.y26_c00452{bottom:234.148500px;}
.y25_c00452{bottom:255.375000px;}
.y24_c00452{bottom:277.348500px;}
.y23_c00452{bottom:298.948500px;}
.y22_c00452{bottom:321.298500px;}
.y21_c00452{bottom:343.573500px;}
.y20_c00452{bottom:365.548500px;}
.y1f_c00452{bottom:386.775000px;}
.y1e_c00452{bottom:408.750000px;}
.y1d_c00452{bottom:431.098500px;}
.y1b_c00452{bottom:480.073500px;}
.y1c_c00452{bottom:481.125000px;}
.y1a_c00452{bottom:498.448500px;}
.y19_c00452{bottom:629.773500px;}
.y18_c00452{bottom:651.375000px;}
.y17_c00452{bottom:673.348500px;}
.y16_c00452{bottom:696.000000px;}
.y15_c00452{bottom:718.348500px;}
.y14_c00452{bottom:739.648500px;}
.y13_c00452{bottom:742.500000px;}
.y12_c00452{bottom:762.298500px;}
.y11_c00452{bottom:784.273500px;}
.y10_c00452{bottom:807.300000px;}
.yf_c00452{bottom:828.900000px;}
.ye_c00452{bottom:851.250000px;}
.yd_c00452{bottom:873.900000px;}
.yc_c00452{bottom:896.250000px;}
.yb_c00452{bottom:918.150000px;}
.ya_c00452{bottom:939.375000px;}
.y9_c00452{bottom:946.275000px;}
.y8_c00452{bottom:962.098500px;}
.y7_c00452{bottom:984.073500px;}
.y6_c00452{bottom:998.098500px;}
.y5_c00452{bottom:1006.348500px;}
.y4_c00452{bottom:1028.698500px;}
.y3_c00452{bottom:1080.525000px;}
.y1_c00452{bottom:1090.275000px;}
.y2_c00452{bottom:1097.098500px;}
.h1_c00452{height:60.468750px;}
.h3_c00452{height:70.628906px;}
.h2_c00452{height:70.664062px;}
.h0_c00452{height:1174.500000px;}
.w0_c00452{width:731.977200px;}
.w1_c00452{width:732.000000px;}
.x0_c00452{left:0.000000px;}
.x6_c00452{left:65.515200px;}
.x4_c00452{left:66.565200px;}
.xb_c00452{left:67.690200px;}
.xc_c00452{left:86.365200px;}
.x7_c00452{left:96.115200px;}
.x9_c00452{left:100.090200px;}
.xd_c00452{left:101.890200px;}
.x8_c00452{left:120.190200px;}
.xa_c00452{left:122.740200px;}
.x1_c00452{left:289.390200px;}
.xe_c00452{left:300.940200px;}
.xf_c00452{left:308.515200px;}
.x2_c00452{left:493.540200px;}
.x3_c00452{left:660.940200px;}
.x5_c00452{left:696.565200px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls0_c00452{letter-spacing:0.000000pt;}
.ws0_c00452{word-spacing:0.000000pt;}
._0_c00452{margin-left:-67.218319pt;}
.fs0_c00452{font-size:53.333333pt;}
.fs1_c00452{font-size:64.000000pt;}
.y0_c00452{bottom:0.000000pt;}
.y2e_c00452{bottom:52.932000pt;}
.y2f_c00452{bottom:54.865333pt;}
.y30_c00452{bottom:58.132000pt;}
.y2d_c00452{bottom:75.065333pt;}
.y2c_c00452{bottom:94.198667pt;}
.y2b_c00452{bottom:113.398667pt;}
.y2a_c00452{bottom:133.265333pt;}
.y29_c00452{bottom:151.798667pt;}
.y28_c00452{bottom:170.732000pt;}
.y27_c00452{bottom:189.598667pt;}
.y26_c00452{bottom:208.132000pt;}
.y25_c00452{bottom:227.000000pt;}
.y24_c00452{bottom:246.532000pt;}
.y23_c00452{bottom:265.732000pt;}
.y22_c00452{bottom:285.598667pt;}
.y21_c00452{bottom:305.398667pt;}
.y20_c00452{bottom:324.932000pt;}
.y1f_c00452{bottom:343.800000pt;}
.y1e_c00452{bottom:363.333333pt;}
.y1d_c00452{bottom:383.198667pt;}
.y1b_c00452{bottom:426.732000pt;}
.y1c_c00452{bottom:427.666667pt;}
.y1a_c00452{bottom:443.065333pt;}
.y19_c00452{bottom:559.798667pt;}
.y18_c00452{bottom:579.000000pt;}
.y17_c00452{bottom:598.532000pt;}
.y16_c00452{bottom:618.666667pt;}
.y15_c00452{bottom:638.532000pt;}
.y14_c00452{bottom:657.465333pt;}
.y13_c00452{bottom:660.000000pt;}
.y12_c00452{bottom:677.598667pt;}
.y11_c00452{bottom:697.132000pt;}
.y10_c00452{bottom:717.600000pt;}
.yf_c00452{bottom:736.800000pt;}
.ye_c00452{bottom:756.666667pt;}
.yd_c00452{bottom:776.800000pt;}
.yc_c00452{bottom:796.666667pt;}
.yb_c00452{bottom:816.133333pt;}
.ya_c00452{bottom:835.000000pt;}
.y9_c00452{bottom:841.133333pt;}
.y8_c00452{bottom:855.198667pt;}
.y7_c00452{bottom:874.732000pt;}
.y6_c00452{bottom:887.198667pt;}
.y5_c00452{bottom:894.532000pt;}
.y4_c00452{bottom:914.398667pt;}
.y3_c00452{bottom:960.466667pt;}
.y1_c00452{bottom:969.133333pt;}
.y2_c00452{bottom:975.198667pt;}
.h1_c00452{height:53.750000pt;}
.h3_c00452{height:62.781250pt;}
.h2_c00452{height:62.812500pt;}
.h0_c00452{height:1044.000000pt;}
.w0_c00452{width:650.646400pt;}
.w1_c00452{width:650.666667pt;}
.x0_c00452{left:0.000000pt;}
.x6_c00452{left:58.235733pt;}
.x4_c00452{left:59.169067pt;}
.xb_c00452{left:60.169067pt;}
.xc_c00452{left:76.769067pt;}
.x7_c00452{left:85.435733pt;}
.x9_c00452{left:88.969067pt;}
.xd_c00452{left:90.569067pt;}
.x8_c00452{left:106.835733pt;}
.xa_c00452{left:109.102400pt;}
.x1_c00452{left:257.235733pt;}
.xe_c00452{left:267.502400pt;}
.xf_c00452{left:274.235733pt;}
.x2_c00452{left:438.702400pt;}
.x3_c00452{left:587.502400pt;}
.x5_c00452{left:619.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_72bf6efc60105f16e29443b3.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00453;src:url('chunks/assets/font_17c2f7880330d60e9c025dca.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00453;src:url('chunks/assets/font_5e5851fe301d7da4289f8bf9.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00453;src:url('chunks/assets/font_3a6fef9a81ffe43f544c2028.woff2')format("woff");}.ff4_c00453{font-family:ff4_c00453;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00453;src:url('chunks/assets/font_18ca37e5bde2da3e53b3b347.woff2')format("woff");}.ff5_c00453{font-family:ff5_c00453;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00453{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m12_c00453{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00453{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00453{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00453{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00453{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00453{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00453{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00453{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00453{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00453{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00453{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00453{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00453{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c00453{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00453{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00453{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00453{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c00453{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00453{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00453{color:transparent;}
.fs1_c00453{font-size:60.000000px;}
.fs0_c00453{font-size:66.000000px;}
.fs2_c00453{font-size:72.000000px;}
.y0_c00453{bottom:0.000000px;}
.y36_c00453{bottom:80.848500px;}
.y35_c00453{bottom:98.098500px;}
.y34_c00453{bottom:98.473500px;}
.y33_c00453{bottom:120.000000px;}
.y31_c00453{bottom:141.298500px;}
.y32_c00453{bottom:141.973500px;}
.y30_c00453{bottom:163.198500px;}
.y2f_c00453{bottom:185.173500px;}
.y2e_c00453{bottom:206.773500px;}
.y2d_c00453{bottom:207.148500px;}
.y2c_c00453{bottom:228.750000px;}
.y2b_c00453{bottom:250.348500px;}
.y2a_c00453{bottom:272.400000px;}
.y29_c00453{bottom:294.598500px;}
.y28_c00453{bottom:315.150000px;}
.y27_c00453{bottom:315.900000px;}
.y26_c00453{bottom:317.323500px;}
.y25_c00453{bottom:337.875000px;}
.y24_c00453{bottom:359.848500px;}
.y23_c00453{bottom:381.750000px;}
.y22_c00453{bottom:403.348500px;}
.y21_c00453{bottom:425.323500px;}
.y20_c00453{bottom:447.673500px;}
.y1f_c00453{bottom:469.648500px;}
.y1e_c00453{bottom:491.548500px;}
.y1d_c00453{bottom:513.223500px;}
.y1c_c00453{bottom:534.750000px;}
.y1b_c00453{bottom:556.723500px;}
.y1a_c00453{bottom:578.698500px;}
.y19_c00453{bottom:600.598500px;}
.y18_c00453{bottom:622.273500px;}
.y17_c00453{bottom:644.548500px;}
.y16_c00453{bottom:666.523500px;}
.y15_c00453{bottom:688.198500px;}
.y14_c00453{bottom:710.098500px;}
.y13_c00453{bottom:732.375000px;}
.y11_c00453{bottom:752.923500px;}
.y12_c00453{bottom:754.723500px;}
.y10_c00453{bottom:773.848500px;}
.yf_c00453{bottom:797.550000px;}
.ye_c00453{bottom:818.848500px;}
.yd_c00453{bottom:840.823500px;}
.yc_c00453{bottom:862.050000px;}
.yb_c00453{bottom:882.900000px;}
.ya_c00453{bottom:905.250000px;}
.y9_c00453{bottom:927.150000px;}
.y8_c00453{bottom:948.448500px;}
.y7_c00453{bottom:970.425000px;}
.y6_c00453{bottom:991.650000px;}
.y5_c00453{bottom:1012.500000px;}
.y4_c00453{bottom:1033.348500px;}
.y1_c00453{bottom:1079.473500px;}
.y3_c00453{bottom:1089.900000px;}
.y2_c00453{bottom:1094.625000px;}
.h2_c00453{height:58.886719px;}
.h5_c00453{height:66.515625px;}
.h1_c00453{height:68.835938px;}
.h4_c00453{height:70.628906px;}
.h3_c00453{height:70.664062px;}
.h0_c00453{height:1174.500000px;}
.w0_c00453{width:731.977200px;}
.w1_c00453{width:732.000000px;}
.x0_c00453{left:0.000000px;}
.xa_c00453{left:48.565200px;}
.xf_c00453{left:49.690200px;}
.x9_c00453{left:50.740200px;}
.x7_c00453{left:52.915200px;}
.x6_c00453{left:54.340200px;}
.x5_c00453{left:56.890200px;}
.x4_c00453{left:59.365200px;}
.xb_c00453{left:80.965200px;}
.x1_c00453{left:83.140200px;}
.x2_c00453{left:109.765200px;}
.x3_c00453{left:285.790200px;}
.x8_c00453{left:302.740200px;}
.xc_c00453{left:313.540200px;}
.xd_c00453{left:438.115200px;}
.xe_c00453{left:610.165200px;}
.x11_c00453{left:631.390200px;}
.x10_c00453{left:646.165200px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls0_c00453{letter-spacing:0.000000pt;}
.ws0_c00453{word-spacing:0.000000pt;}
.fs1_c00453{font-size:53.333333pt;}
.fs0_c00453{font-size:58.666667pt;}
.fs2_c00453{font-size:64.000000pt;}
.y0_c00453{bottom:0.000000pt;}
.y36_c00453{bottom:71.865333pt;}
.y35_c00453{bottom:87.198667pt;}
.y34_c00453{bottom:87.532000pt;}
.y33_c00453{bottom:106.666667pt;}
.y31_c00453{bottom:125.598667pt;}
.y32_c00453{bottom:126.198667pt;}
.y30_c00453{bottom:145.065333pt;}
.y2f_c00453{bottom:164.598667pt;}
.y2e_c00453{bottom:183.798667pt;}
.y2d_c00453{bottom:184.132000pt;}
.y2c_c00453{bottom:203.333333pt;}
.y2b_c00453{bottom:222.532000pt;}
.y2a_c00453{bottom:242.133333pt;}
.y29_c00453{bottom:261.865333pt;}
.y28_c00453{bottom:280.133333pt;}
.y27_c00453{bottom:280.800000pt;}
.y26_c00453{bottom:282.065333pt;}
.y25_c00453{bottom:300.333333pt;}
.y24_c00453{bottom:319.865333pt;}
.y23_c00453{bottom:339.333333pt;}
.y22_c00453{bottom:358.532000pt;}
.y21_c00453{bottom:378.065333pt;}
.y20_c00453{bottom:397.932000pt;}
.y1f_c00453{bottom:417.465333pt;}
.y1e_c00453{bottom:436.932000pt;}
.y1d_c00453{bottom:456.198667pt;}
.y1c_c00453{bottom:475.333333pt;}
.y1b_c00453{bottom:494.865333pt;}
.y1a_c00453{bottom:514.398667pt;}
.y19_c00453{bottom:533.865333pt;}
.y18_c00453{bottom:553.132000pt;}
.y17_c00453{bottom:572.932000pt;}
.y16_c00453{bottom:592.465333pt;}
.y15_c00453{bottom:611.732000pt;}
.y14_c00453{bottom:631.198667pt;}
.y13_c00453{bottom:651.000000pt;}
.y11_c00453{bottom:669.265333pt;}
.y12_c00453{bottom:670.865333pt;}
.y10_c00453{bottom:687.865333pt;}
.yf_c00453{bottom:708.933333pt;}
.ye_c00453{bottom:727.865333pt;}
.yd_c00453{bottom:747.398667pt;}
.yc_c00453{bottom:766.266667pt;}
.yb_c00453{bottom:784.800000pt;}
.ya_c00453{bottom:804.666667pt;}
.y9_c00453{bottom:824.133333pt;}
.y8_c00453{bottom:843.065333pt;}
.y7_c00453{bottom:862.600000pt;}
.y6_c00453{bottom:881.466667pt;}
.y5_c00453{bottom:900.000000pt;}
.y4_c00453{bottom:918.532000pt;}
.y1_c00453{bottom:959.532000pt;}
.y3_c00453{bottom:968.800000pt;}
.y2_c00453{bottom:973.000000pt;}
.h2_c00453{height:52.343750pt;}
.h5_c00453{height:59.125000pt;}
.h1_c00453{height:61.187500pt;}
.h4_c00453{height:62.781250pt;}
.h3_c00453{height:62.812500pt;}
.h0_c00453{height:1044.000000pt;}
.w0_c00453{width:650.646400pt;}
.w1_c00453{width:650.666667pt;}
.x0_c00453{left:0.000000pt;}
.xa_c00453{left:43.169067pt;}
.xf_c00453{left:44.169067pt;}
.x9_c00453{left:45.102400pt;}
.x7_c00453{left:47.035733pt;}
.x6_c00453{left:48.302400pt;}
.x5_c00453{left:50.569067pt;}
.x4_c00453{left:52.769067pt;}
.xb_c00453{left:71.969067pt;}
.x1_c00453{left:73.902400pt;}
.x2_c00453{left:97.569067pt;}
.x3_c00453{left:254.035733pt;}
.x8_c00453{left:269.102400pt;}
.xc_c00453{left:278.702400pt;}
.xd_c00453{left:389.435733pt;}
.xe_c00453{left:542.369067pt;}
.x11_c00453{left:561.235733pt;}
.x10_c00453{left:574.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c51ea0030e74571b0404a33.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00454;src:url('chunks/assets/font_4557eafe6b8380505ae2c581.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00454;src:url('chunks/assets/font_533fbc34fdf10b3e56344b36.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00454;src:url('chunks/assets/font_9eda5963308013816a9ed052.woff2')format("woff");}.ff4_c00454{font-family:ff4_c00454;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00454{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5_c00454{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m4_c00454{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2_c00454{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c00454{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m8_c00454{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m0_c00454{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c00454{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c00454{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m13_c00454{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00454{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00454{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00454{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00454{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00454{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00454{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m14_c00454{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c00454{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m11_c00454{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c00454{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3_c00454{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.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;}
}
.ws0_c00454{word-spacing:0.000000px;}
.fc0_c00454{color:transparent;}
.fs0_c00454{font-size:60.000000px;}
.fs3_c00454{font-size:72.000000px;}
.fs1_c00454{font-size:78.000000px;}
.fs2_c00454{font-size:90.000000px;}
.y0_c00454{bottom:0.000000px;}
.y3a_c00454{bottom:60.000000px;}
.y39_c00454{bottom:81.898500px;}
.y38_c00454{bottom:103.875000px;}
.y37_c00454{bottom:122.250000px;}
.y36_c00454{bottom:145.648500px;}
.y35_c00454{bottom:167.250000px;}
.y34_c00454{bottom:188.473500px;}
.y33_c00454{bottom:209.698500px;}
.y32_c00454{bottom:230.173500px;}
.y31_c00454{bottom:252.148500px;}
.y30_c00454{bottom:273.448500px;}
.y2f_c00454{bottom:294.000000px;}
.y2e_c00454{bottom:316.650000px;}
.y2d_c00454{bottom:338.923500px;}
.y2b_c00454{bottom:359.098500px;}
.y2c_c00454{bottom:361.275000px;}
.y2a_c00454{bottom:380.698500px;}
.y29_c00454{bottom:404.098500px;}
.y28_c00454{bottom:425.698500px;}
.y27_c00454{bottom:447.673500px;}
.y26_c00454{bottom:469.948500px;}
.y25_c00454{bottom:491.923500px;}
.y24_c00454{bottom:514.648500px;}
.y23_c00454{bottom:536.625000px;}
.y22_c00454{bottom:558.523500px;}
.y21_c00454{bottom:581.173500px;}
.y20_c00454{bottom:602.848500px;}
.y1f_c00454{bottom:624.750000px;}
.y1e_c00454{bottom:646.723500px;}
.y1d_c00454{bottom:668.698500px;}
.y1c_c00454{bottom:691.048500px;}
.y1b_c00454{bottom:712.948500px;}
.y1a_c00454{bottom:734.923500px;}
.y19_c00454{bottom:757.273500px;}
.y18_c00454{bottom:779.550000px;}
.y17_c00454{bottom:801.150000px;}
.y16_c00454{bottom:806.925000px;}
.y15_c00454{bottom:807.675000px;}
.y14_c00454{bottom:823.875000px;}
.y13_c00454{bottom:846.900000px;}
.y12_c00454{bottom:868.875000px;}
.y11_c00454{bottom:885.073500px;}
.y10_c00454{bottom:891.150000px;}
.yf_c00454{bottom:912.375000px;}
.ye_c00454{bottom:934.348500px;}
.yd_c00454{bottom:956.698500px;}
.yc_c00454{bottom:978.300000px;}
.yb_c00454{bottom:998.473500px;}
.ya_c00454{bottom:1007.098500px;}
.y9_c00454{bottom:1019.698500px;}
.y8_c00454{bottom:1025.400000px;}
.y7_c00454{bottom:1028.323500px;}
.y6_c00454{bottom:1030.875000px;}
.y5_c00454{bottom:1076.925000px;}
.y3_c00454{bottom:1082.323500px;}
.y2_c00454{bottom:1083.375000px;}
.y1_c00454{bottom:1085.250000px;}
.y4_c00454{bottom:1091.698500px;}
.h2_c00454{height:58.886719px;}
.h1_c00454{height:60.468750px;}
.h6_c00454{height:70.664062px;}
.h3_c00454{height:78.609375px;}
.h4_c00454{height:88.286133px;}
.h5_c00454{height:90.703125px;}
.h0_c00454{height:1174.500000px;}
.w0_c00454{width:731.977200px;}
.w1_c00454{width:732.000000px;}
.x0_c00454{left:0.000000px;}
.x14_c00454{left:69.790200px;}
.x13_c00454{left:70.915200px;}
.x10_c00454{left:72.715200px;}
.xe_c00454{left:73.765200px;}
.xc_c00454{left:75.188700px;}
.xd_c00454{left:76.313700px;}
.x11_c00454{left:104.740200px;}
.x15_c00454{left:106.165200px;}
.xa_c00454{left:108.340200px;}
.x6_c00454{left:113.740200px;}
.x12_c00454{left:130.690200px;}
.x16_c00454{left:175.990200px;}
.x7_c00454{left:192.565200px;}
.x8_c00454{left:212.365200px;}
.xb_c00454{left:219.190200px;}
.x1_c00454{left:297.340200px;}
.x9_c00454{left:364.990200px;}
.x2_c00454{left:429.490200px;}
.x3_c00454{left:436.315200px;}
.x4_c00454{left:499.315200px;}
.x5_c00454{left:664.915200px;}
.xf_c00454{left:675.715200px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls0_c00454{letter-spacing:0.000000pt;}
.ws0_c00454{word-spacing:0.000000pt;}
.fs0_c00454{font-size:53.333333pt;}
.fs3_c00454{font-size:64.000000pt;}
.fs1_c00454{font-size:69.333333pt;}
.fs2_c00454{font-size:80.000000pt;}
.y0_c00454{bottom:0.000000pt;}
.y3a_c00454{bottom:53.333333pt;}
.y39_c00454{bottom:72.798667pt;}
.y38_c00454{bottom:92.333333pt;}
.y37_c00454{bottom:108.666667pt;}
.y36_c00454{bottom:129.465333pt;}
.y35_c00454{bottom:148.666667pt;}
.y34_c00454{bottom:167.532000pt;}
.y33_c00454{bottom:186.398667pt;}
.y32_c00454{bottom:204.598667pt;}
.y31_c00454{bottom:224.132000pt;}
.y30_c00454{bottom:243.065333pt;}
.y2f_c00454{bottom:261.333333pt;}
.y2e_c00454{bottom:281.466667pt;}
.y2d_c00454{bottom:301.265333pt;}
.y2b_c00454{bottom:319.198667pt;}
.y2c_c00454{bottom:321.133333pt;}
.y2a_c00454{bottom:338.398667pt;}
.y29_c00454{bottom:359.198667pt;}
.y28_c00454{bottom:378.398667pt;}
.y27_c00454{bottom:397.932000pt;}
.y26_c00454{bottom:417.732000pt;}
.y25_c00454{bottom:437.265333pt;}
.y24_c00454{bottom:457.465333pt;}
.y23_c00454{bottom:477.000000pt;}
.y22_c00454{bottom:496.465333pt;}
.y21_c00454{bottom:516.598667pt;}
.y20_c00454{bottom:535.865333pt;}
.y1f_c00454{bottom:555.333333pt;}
.y1e_c00454{bottom:574.865333pt;}
.y1d_c00454{bottom:594.398667pt;}
.y1c_c00454{bottom:614.265333pt;}
.y1b_c00454{bottom:633.732000pt;}
.y1a_c00454{bottom:653.265333pt;}
.y19_c00454{bottom:673.132000pt;}
.y18_c00454{bottom:692.933333pt;}
.y17_c00454{bottom:712.133333pt;}
.y16_c00454{bottom:717.266667pt;}
.y15_c00454{bottom:717.933333pt;}
.y14_c00454{bottom:732.333333pt;}
.y13_c00454{bottom:752.800000pt;}
.y12_c00454{bottom:772.333333pt;}
.y11_c00454{bottom:786.732000pt;}
.y10_c00454{bottom:792.133333pt;}
.yf_c00454{bottom:811.000000pt;}
.ye_c00454{bottom:830.532000pt;}
.yd_c00454{bottom:850.398667pt;}
.yc_c00454{bottom:869.600000pt;}
.yb_c00454{bottom:887.532000pt;}
.ya_c00454{bottom:895.198667pt;}
.y9_c00454{bottom:906.398667pt;}
.y8_c00454{bottom:911.466667pt;}
.y7_c00454{bottom:914.065333pt;}
.y6_c00454{bottom:916.333333pt;}
.y5_c00454{bottom:957.266667pt;}
.y3_c00454{bottom:962.065333pt;}
.y2_c00454{bottom:963.000000pt;}
.y1_c00454{bottom:964.666667pt;}
.y4_c00454{bottom:970.398667pt;}
.h2_c00454{height:52.343750pt;}
.h1_c00454{height:53.750000pt;}
.h6_c00454{height:62.812500pt;}
.h3_c00454{height:69.875000pt;}
.h4_c00454{height:78.476562pt;}
.h5_c00454{height:80.625000pt;}
.h0_c00454{height:1044.000000pt;}
.w0_c00454{width:650.646400pt;}
.w1_c00454{width:650.666667pt;}
.x0_c00454{left:0.000000pt;}
.x14_c00454{left:62.035733pt;}
.x13_c00454{left:63.035733pt;}
.x10_c00454{left:64.635733pt;}
.xe_c00454{left:65.569067pt;}
.xc_c00454{left:66.834400pt;}
.xd_c00454{left:67.834400pt;}
.x11_c00454{left:93.102400pt;}
.x15_c00454{left:94.369067pt;}
.xa_c00454{left:96.302400pt;}
.x6_c00454{left:101.102400pt;}
.x12_c00454{left:116.169067pt;}
.x16_c00454{left:156.435733pt;}
.x7_c00454{left:171.169067pt;}
.x8_c00454{left:188.769067pt;}
.xb_c00454{left:194.835733pt;}
.x1_c00454{left:264.302400pt;}
.x9_c00454{left:324.435733pt;}
.x2_c00454{left:381.769067pt;}
.x3_c00454{left:387.835733pt;}
.x4_c00454{left:443.835733pt;}
.x5_c00454{left:591.035733pt;}
.xf_c00454{left:600.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66eae34a31d6d771b2bb309e.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00455;src:url('chunks/assets/font_a6d557f73440ef9c9a9e5f13.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00455;src:url('chunks/assets/font_3b1c76d15c0701296281127b.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00455;src:url('chunks/assets/font_5c9ad04267788314bf33f87d.woff2')format("woff");}.ff4_c00455{font-family:ff4_c00455;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me_c00455{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11_c00455{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb_c00455{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00455{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00455{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00455{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00455{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c00455{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00455{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00455{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00455{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00455{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00455{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00455{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c00455{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00455{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c00455{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c00455{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,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;}
}
.ws0_c00455{word-spacing:0.000000px;}
.fc0_c00455{color:transparent;}
.fs0_c00455{font-size:60.000000px;}
.fs1_c00455{font-size:72.000000px;}
.fs2_c00455{font-size:78.000000px;}
.y0_c00455{bottom:0.000000px;}
.y36_c00455{bottom:84.448500px;}
.y35_c00455{bottom:92.698500px;}
.y34_c00455{bottom:95.250000px;}
.y33_c00455{bottom:106.348500px;}
.y32_c00455{bottom:125.848500px;}
.y31_c00455{bottom:129.448500px;}
.y30_c00455{bottom:147.823500px;}
.y2f_c00455{bottom:153.148500px;}
.y2d_c00455{bottom:170.473500px;}
.y2e_c00455{bottom:171.148500px;}
.y2c_c00455{bottom:192.448500px;}
.y2b_c00455{bottom:214.723500px;}
.y2a_c00455{bottom:236.323500px;}
.y29_c00455{bottom:257.923500px;}
.y28_c00455{bottom:279.900000px;}
.y27_c00455{bottom:300.823500px;}
.y26_c00455{bottom:304.423500px;}
.y25_c00455{bottom:322.798500px;}
.y24_c00455{bottom:324.150000px;}
.y23_c00455{bottom:345.073500px;}
.y22_c00455{bottom:367.048500px;}
.y21_c00455{bottom:388.948500px;}
.y20_c00455{bottom:413.098500px;}
.y1f_c00455{bottom:432.523500px;}
.y1e_c00455{bottom:454.500000px;}
.y1d_c00455{bottom:476.473500px;}
.y1c_c00455{bottom:476.773500px;}
.y1b_c00455{bottom:498.375000px;}
.y1a_c00455{bottom:520.723500px;}
.y19_c00455{bottom:541.648500px;}
.y18_c00455{bottom:563.625000px;}
.y17_c00455{bottom:585.898500px;}
.y16_c00455{bottom:607.798500px;}
.y15_c00455{bottom:629.848500px;}
.y14_c00455{bottom:651.448500px;}
.y13_c00455{bottom:673.348500px;}
.y12_c00455{bottom:695.323500px;}
.y11_c00455{bottom:717.298500px;}
.y10_c00455{bottom:739.273500px;}
.yf_c00455{bottom:761.250000px;}
.ye_c00455{bottom:783.223500px;}
.yd_c00455{bottom:804.823500px;}
.yc_c00455{bottom:826.050000px;}
.yb_c00455{bottom:847.275000px;}
.ya_c00455{bottom:868.875000px;}
.y9_c00455{bottom:890.098500px;}
.y8_c00455{bottom:912.375000px;}
.y7_c00455{bottom:933.675000px;}
.y6_c00455{bottom:956.025000px;}
.y5_c00455{bottom:976.875000px;}
.y4_c00455{bottom:999.150000px;}
.y3_c00455{bottom:1016.473500px;}
.y2_c00455{bottom:1040.250000px;}
.y37_c00455{bottom:1087.050000px;}
.y1_c00455{bottom:1096.723500px;}
.h1_c00455{height:58.886719px;}
.h2_c00455{height:70.664062px;}
.h3_c00455{height:72.562500px;}
.h4_c00455{height:76.514648px;}
.h0_c00455{height:1174.500000px;}
.w0_c00455{width:731.977200px;}
.w1_c00455{width:732.000000px;}
.x0_c00455{left:0.000000px;}
.x7_c00455{left:50.740200px;}
.x6_c00455{left:52.540200px;}
.x4_c00455{left:54.340200px;}
.x2_c00455{left:56.515200px;}
.x12_c00455{left:76.688700px;}
.x8_c00455{left:82.090200px;}
.x5_c00455{left:84.938700px;}
.x3_c00455{left:86.740200px;}
.x10_c00455{left:105.490200px;}
.x11_c00455{left:139.690200px;}
.x1_c00455{left:278.290200px;}
.xd_c00455{left:297.340200px;}
.xb_c00455{left:301.690200px;}
.xe_c00455{left:460.765200px;}
.xf_c00455{left:483.115200px;}
.xa_c00455{left:564.115200px;}
.xc_c00455{left:660.565200px;}
.x9_c00455{left:661.690200px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls0_c00455{letter-spacing:0.000000pt;}
.ws0_c00455{word-spacing:0.000000pt;}
.fs0_c00455{font-size:53.333333pt;}
.fs1_c00455{font-size:64.000000pt;}
.fs2_c00455{font-size:69.333333pt;}
.y0_c00455{bottom:0.000000pt;}
.y36_c00455{bottom:75.065333pt;}
.y35_c00455{bottom:82.398667pt;}
.y34_c00455{bottom:84.666667pt;}
.y33_c00455{bottom:94.532000pt;}
.y32_c00455{bottom:111.865333pt;}
.y31_c00455{bottom:115.065333pt;}
.y30_c00455{bottom:131.398667pt;}
.y2f_c00455{bottom:136.132000pt;}
.y2d_c00455{bottom:151.532000pt;}
.y2e_c00455{bottom:152.132000pt;}
.y2c_c00455{bottom:171.065333pt;}
.y2b_c00455{bottom:190.865333pt;}
.y2a_c00455{bottom:210.065333pt;}
.y29_c00455{bottom:229.265333pt;}
.y28_c00455{bottom:248.800000pt;}
.y27_c00455{bottom:267.398667pt;}
.y26_c00455{bottom:270.598667pt;}
.y25_c00455{bottom:286.932000pt;}
.y24_c00455{bottom:288.133333pt;}
.y23_c00455{bottom:306.732000pt;}
.y22_c00455{bottom:326.265333pt;}
.y21_c00455{bottom:345.732000pt;}
.y20_c00455{bottom:367.198667pt;}
.y1f_c00455{bottom:384.465333pt;}
.y1e_c00455{bottom:404.000000pt;}
.y1d_c00455{bottom:423.532000pt;}
.y1c_c00455{bottom:423.798667pt;}
.y1b_c00455{bottom:443.000000pt;}
.y1a_c00455{bottom:462.865333pt;}
.y19_c00455{bottom:481.465333pt;}
.y18_c00455{bottom:501.000000pt;}
.y17_c00455{bottom:520.798667pt;}
.y16_c00455{bottom:540.265333pt;}
.y15_c00455{bottom:559.865333pt;}
.y14_c00455{bottom:579.065333pt;}
.y13_c00455{bottom:598.532000pt;}
.y12_c00455{bottom:618.065333pt;}
.y11_c00455{bottom:637.598667pt;}
.y10_c00455{bottom:657.132000pt;}
.yf_c00455{bottom:676.666667pt;}
.ye_c00455{bottom:696.198667pt;}
.yd_c00455{bottom:715.398667pt;}
.yc_c00455{bottom:734.266667pt;}
.yb_c00455{bottom:753.133333pt;}
.ya_c00455{bottom:772.333333pt;}
.y9_c00455{bottom:791.198667pt;}
.y8_c00455{bottom:811.000000pt;}
.y7_c00455{bottom:829.933333pt;}
.y6_c00455{bottom:849.800000pt;}
.y5_c00455{bottom:868.333333pt;}
.y4_c00455{bottom:888.133333pt;}
.y3_c00455{bottom:903.532000pt;}
.y2_c00455{bottom:924.666667pt;}
.y37_c00455{bottom:966.266667pt;}
.y1_c00455{bottom:974.865333pt;}
.h1_c00455{height:52.343750pt;}
.h2_c00455{height:62.812500pt;}
.h3_c00455{height:64.500000pt;}
.h4_c00455{height:68.013021pt;}
.h0_c00455{height:1044.000000pt;}
.w0_c00455{width:650.646400pt;}
.w1_c00455{width:650.666667pt;}
.x0_c00455{left:0.000000pt;}
.x7_c00455{left:45.102400pt;}
.x6_c00455{left:46.702400pt;}
.x4_c00455{left:48.302400pt;}
.x2_c00455{left:50.235733pt;}
.x12_c00455{left:68.167733pt;}
.x8_c00455{left:72.969067pt;}
.x5_c00455{left:75.501067pt;}
.x3_c00455{left:77.102400pt;}
.x10_c00455{left:93.769067pt;}
.x11_c00455{left:124.169067pt;}
.x1_c00455{left:247.369067pt;}
.xd_c00455{left:264.302400pt;}
.xb_c00455{left:268.169067pt;}
.xe_c00455{left:409.569067pt;}
.xf_c00455{left:429.435733pt;}
.xa_c00455{left:501.435733pt;}
.xc_c00455{left:587.169067pt;}
.x9_c00455{left:588.169067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7cfc457dc74f2c48a849bf0c.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00456;src:url('chunks/assets/font_260a85bc6d34e47fc563c694.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00456;src:url('chunks/assets/font_6fa7395b0050cb098890d246.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00456{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00456{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c00456{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c00456{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c00456{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00456{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c00456{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c00456{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00456{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c00456{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00456{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00456{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c00456{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00456{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00456{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00456{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00456{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00456{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c00456{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00456{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3_c00456{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13_c00456{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c00456{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m11_c00456{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00456{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m18_c00456{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m19_c00456{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1_c00456{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.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;}
}
.ws0_c00456{word-spacing:0.000000px;}
.fc0_c00456{color:transparent;}
.fs0_c00456{font-size:60.000000px;}
.fs3_c00456{font-size:66.000000px;}
.fs1_c00456{font-size:72.000000px;}
.fs2_c00456{font-size:78.000000px;}
.fs4_c00456{font-size:84.000000px;}
.y0_c00456{bottom:0.000000px;}
.y3f_c00456{bottom:75.375000px;}
.y3d_c00456{bottom:86.250000px;}
.y3e_c00456{bottom:98.848500px;}
.y3c_c00456{bottom:120.823500px;}
.y3b_c00456{bottom:141.673500px;}
.y3a_c00456{bottom:162.898500px;}
.y39_c00456{bottom:184.500000px;}
.y38_c00456{bottom:205.723500px;}
.y37_c00456{bottom:226.573500px;}
.y36_c00456{bottom:244.573500px;}
.y33_c00456{bottom:267.298500px;}
.y34_c00456{bottom:268.723500px;}
.y35_c00456{bottom:270.900000px;}
.y32_c00456{bottom:291.073500px;}
.y31_c00456{bottom:312.298500px;}
.y30_c00456{bottom:334.573500px;}
.y2d_c00456{bottom:353.698500px;}
.y2e_c00456{bottom:355.500000px;}
.y2f_c00456{bottom:357.973500px;}
.y2c_c00456{bottom:374.923500px;}
.y2b_c00456{bottom:400.125000px;}
.y2a_c00456{bottom:421.723500px;}
.y29_c00456{bottom:443.698500px;}
.y27_c00456{bottom:466.048500px;}
.y28_c00456{bottom:467.098500px;}
.y26_c00456{bottom:487.948500px;}
.y25_c00456{bottom:509.548500px;}
.y24_c00456{bottom:532.273500px;}
.y23_c00456{bottom:554.250000px;}
.y22_c00456{bottom:576.523500px;}
.y21_c00456{bottom:598.500000px;}
.y1f_c00456{bottom:620.773500px;}
.y20_c00456{bottom:620.848500px;}
.y1e_c00456{bottom:642.823500px;}
.y1d_c00456{bottom:665.473500px;}
.y1c_c00456{bottom:685.648500px;}
.y1b_c00456{bottom:686.698500px;}
.y1a_c00456{bottom:687.375000px;}
.y19_c00456{bottom:688.198500px;}
.y18_c00456{bottom:709.423500px;}
.y17_c00456{bottom:731.700000px;}
.y16_c00456{bottom:754.048500px;}
.y15_c00456{bottom:774.898500px;}
.y14_c00456{bottom:777.073500px;}
.y13_c00456{bottom:798.300000px;}
.y12_c00456{bottom:820.275000px;}
.y11_c00456{bottom:843.300000px;}
.y10_c00456{bottom:863.775000px;}
.yf_c00456{bottom:867.073500px;}
.ye_c00456{bottom:867.750000px;}
.yd_c00456{bottom:889.348500px;}
.yc_c00456{bottom:908.775000px;}
.yb_c00456{bottom:927.525000px;}
.ya_c00456{bottom:932.925000px;}
.y9_c00456{bottom:945.900000px;}
.y8_c00456{bottom:953.098500px;}
.y7_c00456{bottom:981.223500px;}
.y6_c00456{bottom:996.598500px;}
.y5_c00456{bottom:1018.948500px;}
.y4_c00456{bottom:1041.300000px;}
.y3_c00456{bottom:1094.925000px;}
.y1_c00456{bottom:1102.500000px;}
.y2_c00456{bottom:1109.698500px;}
.h1_c00456{height:60.468750px;}
.h4_c00456{height:64.775391px;}
.h2_c00456{height:70.664062px;}
.h3_c00456{height:76.514648px;}
.h5_c00456{height:82.441406px;}
.h0_c00456{height:1174.500000px;}
.w0_c00456{width:731.977200px;}
.w1_c00456{width:732.000000px;}
.x0_c00456{left:0.000000px;}
.x9_c00456{left:69.115200px;}
.x4_c00456{left:70.540200px;}
.x5_c00456{left:71.590200px;}
.x6_c00456{left:72.715200px;}
.x19_c00456{left:73.765200px;}
.x1c_c00456{left:74.890200px;}
.x1d_c00456{left:83.140200px;}
.x7_c00456{left:105.490200px;}
.xe_c00456{left:106.915200px;}
.x1b_c00456{left:109.090200px;}
.xb_c00456{left:188.590200px;}
.x15_c00456{left:192.565200px;}
.x14_c00456{left:218.890200px;}
.x10_c00456{left:249.115200px;}
.xc_c00456{left:255.940200px;}
.xd_c00456{left:266.365200px;}
.x17_c00456{left:286.165200px;}
.x1_c00456{left:295.915200px;}
.x18_c00456{left:338.740200px;}
.xf_c00456{left:351.715200px;}
.x11_c00456{left:359.290200px;}
.xa_c00456{left:391.990200px;}
.x1a_c00456{left:397.765200px;}
.x12_c00456{left:400.690200px;}
.x13_c00456{left:480.190200px;}
.x2_c00456{left:497.890200px;}
.x8_c00456{left:660.565200px;}
.x3_c00456{left:663.490200px;}
.x16_c00456{left:698.365200px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls0_c00456{letter-spacing:0.000000pt;}
.ws0_c00456{word-spacing:0.000000pt;}
.fs0_c00456{font-size:53.333333pt;}
.fs3_c00456{font-size:58.666667pt;}
.fs1_c00456{font-size:64.000000pt;}
.fs2_c00456{font-size:69.333333pt;}
.fs4_c00456{font-size:74.666667pt;}
.y0_c00456{bottom:0.000000pt;}
.y3f_c00456{bottom:67.000000pt;}
.y3d_c00456{bottom:76.666667pt;}
.y3e_c00456{bottom:87.865333pt;}
.y3c_c00456{bottom:107.398667pt;}
.y3b_c00456{bottom:125.932000pt;}
.y3a_c00456{bottom:144.798667pt;}
.y39_c00456{bottom:164.000000pt;}
.y38_c00456{bottom:182.865333pt;}
.y37_c00456{bottom:201.398667pt;}
.y36_c00456{bottom:217.398667pt;}
.y33_c00456{bottom:237.598667pt;}
.y34_c00456{bottom:238.865333pt;}
.y35_c00456{bottom:240.800000pt;}
.y32_c00456{bottom:258.732000pt;}
.y31_c00456{bottom:277.598667pt;}
.y30_c00456{bottom:297.398667pt;}
.y2d_c00456{bottom:314.398667pt;}
.y2e_c00456{bottom:316.000000pt;}
.y2f_c00456{bottom:318.198667pt;}
.y2c_c00456{bottom:333.265333pt;}
.y2b_c00456{bottom:355.666667pt;}
.y2a_c00456{bottom:374.865333pt;}
.y29_c00456{bottom:394.398667pt;}
.y27_c00456{bottom:414.265333pt;}
.y28_c00456{bottom:415.198667pt;}
.y26_c00456{bottom:433.732000pt;}
.y25_c00456{bottom:452.932000pt;}
.y24_c00456{bottom:473.132000pt;}
.y23_c00456{bottom:492.666667pt;}
.y22_c00456{bottom:512.465333pt;}
.y21_c00456{bottom:532.000000pt;}
.y1f_c00456{bottom:551.798667pt;}
.y20_c00456{bottom:551.865333pt;}
.y1e_c00456{bottom:571.398667pt;}
.y1d_c00456{bottom:591.532000pt;}
.y1c_c00456{bottom:609.465333pt;}
.y1b_c00456{bottom:610.398667pt;}
.y1a_c00456{bottom:611.000000pt;}
.y19_c00456{bottom:611.732000pt;}
.y18_c00456{bottom:630.598667pt;}
.y17_c00456{bottom:650.400000pt;}
.y16_c00456{bottom:670.265333pt;}
.y15_c00456{bottom:688.798667pt;}
.y14_c00456{bottom:690.732000pt;}
.y13_c00456{bottom:709.600000pt;}
.y12_c00456{bottom:729.133333pt;}
.y11_c00456{bottom:749.600000pt;}
.y10_c00456{bottom:767.800000pt;}
.yf_c00456{bottom:770.732000pt;}
.ye_c00456{bottom:771.333333pt;}
.yd_c00456{bottom:790.532000pt;}
.yc_c00456{bottom:807.800000pt;}
.yb_c00456{bottom:824.466667pt;}
.ya_c00456{bottom:829.266667pt;}
.y9_c00456{bottom:840.800000pt;}
.y8_c00456{bottom:847.198667pt;}
.y7_c00456{bottom:872.198667pt;}
.y6_c00456{bottom:885.865333pt;}
.y5_c00456{bottom:905.732000pt;}
.y4_c00456{bottom:925.600000pt;}
.y3_c00456{bottom:973.266667pt;}
.y1_c00456{bottom:980.000000pt;}
.y2_c00456{bottom:986.398667pt;}
.h1_c00456{height:53.750000pt;}
.h4_c00456{height:57.578125pt;}
.h2_c00456{height:62.812500pt;}
.h3_c00456{height:68.013021pt;}
.h5_c00456{height:73.281250pt;}
.h0_c00456{height:1044.000000pt;}
.w0_c00456{width:650.646400pt;}
.w1_c00456{width:650.666667pt;}
.x0_c00456{left:0.000000pt;}
.x9_c00456{left:61.435733pt;}
.x4_c00456{left:62.702400pt;}
.x5_c00456{left:63.635733pt;}
.x6_c00456{left:64.635733pt;}
.x19_c00456{left:65.569067pt;}
.x1c_c00456{left:66.569067pt;}
.x1d_c00456{left:73.902400pt;}
.x7_c00456{left:93.769067pt;}
.xe_c00456{left:95.035733pt;}
.x1b_c00456{left:96.969067pt;}
.xb_c00456{left:167.635733pt;}
.x15_c00456{left:171.169067pt;}
.x14_c00456{left:194.569067pt;}
.x10_c00456{left:221.435733pt;}
.xc_c00456{left:227.502400pt;}
.xd_c00456{left:236.769067pt;}
.x17_c00456{left:254.369067pt;}
.x1_c00456{left:263.035733pt;}
.x18_c00456{left:301.102400pt;}
.xf_c00456{left:312.635733pt;}
.x11_c00456{left:319.369067pt;}
.xa_c00456{left:348.435733pt;}
.x1a_c00456{left:353.569067pt;}
.x12_c00456{left:356.169067pt;}
.x13_c00456{left:426.835733pt;}
.x2_c00456{left:442.569067pt;}
.x8_c00456{left:587.169067pt;}
.x3_c00456{left:589.769067pt;}
.x16_c00456{left:620.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0164ee6c65c01de8ff512a13.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00457;src:url('chunks/assets/font_8f4c5442ac741cc89a10b352.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00457;src:url('chunks/assets/font_895a2bc4a3c677ffefc6d9df.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_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);}
.m5_c00457{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m15_c00457{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00457{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00457{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00457{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00457{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c00457{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00457{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00457{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00457{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00457{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00457{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00457{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00457{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00457{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m14_c00457{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00457{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00457{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m12_c00457{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m13_c00457{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m1_c00457{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00457{color:transparent;}
.fs0_c00457{font-size:60.000000px;}
.fs1_c00457{font-size:72.000000px;}
.fs2_c00457{font-size:78.000000px;}
.y0_c00457{bottom:0.000000px;}
.y39_c00457{bottom:100.273500px;}
.y38_c00457{bottom:121.500000px;}
.y37_c00457{bottom:142.723500px;}
.y36_c00457{bottom:164.698500px;}
.y35_c00457{bottom:186.298500px;}
.y34_c00457{bottom:208.273500px;}
.y33_c00457{bottom:230.173500px;}
.y32_c00457{bottom:252.223500px;}
.y31_c00457{bottom:273.750000px;}
.y30_c00457{bottom:296.098500px;}
.y2f_c00457{bottom:317.698500px;}
.y2e_c00457{bottom:339.973500px;}
.y2d_c00457{bottom:361.650000px;}
.y2c_c00457{bottom:383.548500px;}
.y2b_c00457{bottom:405.525000px;}
.y2a_c00457{bottom:426.823500px;}
.y29_c00457{bottom:448.423500px;}
.y28_c00457{bottom:449.773500px;}
.y27_c00457{bottom:471.448500px;}
.y23_c00457{bottom:492.298500px;}
.y26_c00457{bottom:492.673500px;}
.y24_c00457{bottom:493.348500px;}
.y25_c00457{bottom:493.723500px;}
.y22_c00457{bottom:514.573500px;}
.y21_c00457{bottom:536.173500px;}
.y20_c00457{bottom:557.848500px;}
.y1f_c00457{bottom:579.750000px;}
.y1e_c00457{bottom:601.423500px;}
.y1d_c00457{bottom:623.698500px;}
.y1c_c00457{bottom:645.673500px;}
.y1b_c00457{bottom:667.648500px;}
.y1a_c00457{bottom:689.548500px;}
.y19_c00457{bottom:711.148500px;}
.y18_c00457{bottom:733.125000px;}
.y17_c00457{bottom:755.473500px;}
.y16_c00457{bottom:777.073500px;}
.y15_c00457{bottom:798.973500px;}
.y14_c00457{bottom:820.275000px;}
.y13_c00457{bottom:841.875000px;}
.y12_c00457{bottom:861.000000px;}
.y11_c00457{bottom:885.000000px;}
.y10_c00457{bottom:906.675000px;}
.yf_c00457{bottom:923.625000px;}
.ye_c00457{bottom:949.875000px;}
.ya_c00457{bottom:963.150000px;}
.yb_c00457{bottom:965.698500px;}
.yc_c00457{bottom:968.625000px;}
.yd_c00457{bottom:972.223500px;}
.y9_c00457{bottom:992.323500px;}
.y8_c00457{bottom:1008.525000px;}
.y5_c00457{bottom:1026.525000px;}
.y6_c00457{bottom:1030.500000px;}
.y7_c00457{bottom:1035.223500px;}
.y4_c00457{bottom:1055.698500px;}
.y1_c00457{bottom:1101.375000px;}
.y3_c00457{bottom:1112.550000px;}
.y2_c00457{bottom:1117.050000px;}
.h2_c00457{height:58.886719px;}
.h1_c00457{height:60.468750px;}
.h3_c00457{height:70.664062px;}
.h4_c00457{height:76.514648px;}
.h0_c00457{height:1174.500000px;}
.w0_c00457{width:731.977200px;}
.w1_c00457{width:732.000000px;}
.x0_c00457{left:0.000000px;}
.x1c_c00457{left:37.090200px;}
.x1b_c00457{left:38.140200px;}
.x15_c00457{left:39.190200px;}
.x14_c00457{left:40.315200px;}
.x12_c00457{left:41.365200px;}
.x11_c00457{left:42.790200px;}
.xf_c00457{left:44.590200px;}
.xe_c00457{left:46.090200px;}
.xa_c00457{left:47.140200px;}
.x5_c00457{left:48.565200px;}
.x8_c00457{left:49.690200px;}
.x1_c00457{left:70.165200px;}
.x13_c00457{left:71.965200px;}
.xb_c00457{left:74.890200px;}
.x10_c00457{left:75.938700px;}
.x16_c00457{left:77.740200px;}
.x9_c00457{left:78.790200px;}
.x4_c00457{left:80.590200px;}
.x2_c00457{left:98.965200px;}
.x17_c00457{left:102.190200px;}
.xc_c00457{left:188.290200px;}
.xd_c00457{left:199.388700px;}
.x6_c00457{left:201.940200px;}
.x7_c00457{left:211.315200px;}
.x18_c00457{left:250.915200px;}
.x3_c00457{left:273.565200px;}
.x1a_c00457{left:287.590200px;}
.x19_c00457{left:312.490200px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls0_c00457{letter-spacing:0.000000pt;}
.ws0_c00457{word-spacing:0.000000pt;}
.fs0_c00457{font-size:53.333333pt;}
.fs1_c00457{font-size:64.000000pt;}
.fs2_c00457{font-size:69.333333pt;}
.y0_c00457{bottom:0.000000pt;}
.y39_c00457{bottom:89.132000pt;}
.y38_c00457{bottom:108.000000pt;}
.y37_c00457{bottom:126.865333pt;}
.y36_c00457{bottom:146.398667pt;}
.y35_c00457{bottom:165.598667pt;}
.y34_c00457{bottom:185.132000pt;}
.y33_c00457{bottom:204.598667pt;}
.y32_c00457{bottom:224.198667pt;}
.y31_c00457{bottom:243.333333pt;}
.y30_c00457{bottom:263.198667pt;}
.y2f_c00457{bottom:282.398667pt;}
.y2e_c00457{bottom:302.198667pt;}
.y2d_c00457{bottom:321.466667pt;}
.y2c_c00457{bottom:340.932000pt;}
.y2b_c00457{bottom:360.466667pt;}
.y2a_c00457{bottom:379.398667pt;}
.y29_c00457{bottom:398.598667pt;}
.y28_c00457{bottom:399.798667pt;}
.y27_c00457{bottom:419.065333pt;}
.y23_c00457{bottom:437.598667pt;}
.y26_c00457{bottom:437.932000pt;}
.y24_c00457{bottom:438.532000pt;}
.y25_c00457{bottom:438.865333pt;}
.y22_c00457{bottom:457.398667pt;}
.y21_c00457{bottom:476.598667pt;}
.y20_c00457{bottom:495.865333pt;}
.y1f_c00457{bottom:515.333333pt;}
.y1e_c00457{bottom:534.598667pt;}
.y1d_c00457{bottom:554.398667pt;}
.y1c_c00457{bottom:573.932000pt;}
.y1b_c00457{bottom:593.465333pt;}
.y1a_c00457{bottom:612.932000pt;}
.y19_c00457{bottom:632.132000pt;}
.y18_c00457{bottom:651.666667pt;}
.y17_c00457{bottom:671.532000pt;}
.y16_c00457{bottom:690.732000pt;}
.y15_c00457{bottom:710.198667pt;}
.y14_c00457{bottom:729.133333pt;}
.y13_c00457{bottom:748.333333pt;}
.y12_c00457{bottom:765.333333pt;}
.y11_c00457{bottom:786.666667pt;}
.y10_c00457{bottom:805.933333pt;}
.yf_c00457{bottom:821.000000pt;}
.ye_c00457{bottom:844.333333pt;}
.ya_c00457{bottom:856.133333pt;}
.yb_c00457{bottom:858.398667pt;}
.yc_c00457{bottom:861.000000pt;}
.yd_c00457{bottom:864.198667pt;}
.y9_c00457{bottom:882.065333pt;}
.y8_c00457{bottom:896.466667pt;}
.y5_c00457{bottom:912.466667pt;}
.y6_c00457{bottom:916.000000pt;}
.y7_c00457{bottom:920.198667pt;}
.y4_c00457{bottom:938.398667pt;}
.y1_c00457{bottom:979.000000pt;}
.y3_c00457{bottom:988.933333pt;}
.y2_c00457{bottom:992.933333pt;}
.h2_c00457{height:52.343750pt;}
.h1_c00457{height:53.750000pt;}
.h3_c00457{height:62.812500pt;}
.h4_c00457{height:68.013021pt;}
.h0_c00457{height:1044.000000pt;}
.w0_c00457{width:650.646400pt;}
.w1_c00457{width:650.666667pt;}
.x0_c00457{left:0.000000pt;}
.x1c_c00457{left:32.969067pt;}
.x1b_c00457{left:33.902400pt;}
.x15_c00457{left:34.835733pt;}
.x14_c00457{left:35.835733pt;}
.x12_c00457{left:36.769067pt;}
.x11_c00457{left:38.035733pt;}
.xf_c00457{left:39.635733pt;}
.xe_c00457{left:40.969067pt;}
.xa_c00457{left:41.902400pt;}
.x5_c00457{left:43.169067pt;}
.x8_c00457{left:44.169067pt;}
.x1_c00457{left:62.369067pt;}
.x13_c00457{left:63.969067pt;}
.xb_c00457{left:66.569067pt;}
.x10_c00457{left:67.501067pt;}
.x16_c00457{left:69.102400pt;}
.x9_c00457{left:70.035733pt;}
.x4_c00457{left:71.635733pt;}
.x2_c00457{left:87.969067pt;}
.x17_c00457{left:90.835733pt;}
.xc_c00457{left:167.369067pt;}
.xd_c00457{left:177.234400pt;}
.x6_c00457{left:179.502400pt;}
.x7_c00457{left:187.835733pt;}
.x18_c00457{left:223.035733pt;}
.x3_c00457{left:243.169067pt;}
.x1a_c00457{left:255.635733pt;}
.x19_c00457{left:277.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec5de34922be8c67eb0259bf.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00458;src:url('chunks/assets/font_2ed150fcf4bb0a1189e07ae6.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00458;src:url('chunks/assets/font_61ca84a067595ec2c702fa83.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00458{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00458{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00458{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00458{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma_c00458{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00458{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00458{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00458{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00458{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00458{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00458{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c00458{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00458{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6_c00458{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c00458{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00458{color:transparent;}
.fs0_c00458{font-size:60.000000px;}
.fs1_c00458{font-size:66.000000px;}
.fs2_c00458{font-size:72.000000px;}
.fs3_c00458{font-size:84.000000px;}
.y0_c00458{bottom:0.000000px;}
.y18_c00458{bottom:628.423500px;}
.y17_c00458{bottom:654.298500px;}
.y15_c00458{bottom:676.273500px;}
.y16_c00458{bottom:681.298500px;}
.y14_c00458{bottom:698.923500px;}
.y13_c00458{bottom:719.848500px;}
.y12_c00458{bottom:743.173500px;}
.y11_c00458{bottom:765.223500px;}
.y10_c00458{bottom:787.875000px;}
.yf_c00458{bottom:810.525000px;}
.ye_c00458{bottom:832.500000px;}
.yd_c00458{bottom:854.848500px;}
.yc_c00458{bottom:877.125000px;}
.yb_c00458{bottom:899.098500px;}
.ya_c00458{bottom:921.750000px;}
.y9_c00458{bottom:942.598500px;}
.y8_c00458{bottom:964.948500px;}
.y7_c00458{bottom:987.300000px;}
.y6_c00458{bottom:1009.275000px;}
.y5_c00458{bottom:1031.925000px;}
.y4_c00458{bottom:1054.573500px;}
.y3_c00458{bottom:1111.875000px;}
.y2_c00458{bottom:1114.348500px;}
.y1_c00458{bottom:1115.848500px;}
.h1_c00458{height:60.468750px;}
.h2_c00458{height:64.775391px;}
.h3_c00458{height:70.664062px;}
.h4_c00458{height:82.400391px;}
.h0_c00458{height:1174.500000px;}
.w0_c00458{width:731.977200px;}
.w1_c00458{width:732.000000px;}
.x0_c00458{left:0.000000px;}
.x4_c00458{left:57.190200px;}
.x5_c00458{left:58.990200px;}
.x8_c00458{left:60.790200px;}
.x9_c00458{left:61.915200px;}
.xa_c00458{left:62.965200px;}
.xc_c00458{left:64.090200px;}
.xe_c00458{left:65.140200px;}
.x6_c00458{left:94.990200px;}
.xb_c00458{left:97.165200px;}
.x1_c00458{left:280.090200px;}
.x7_c00458{left:297.340200px;}
.x2_c00458{left:484.165200px;}
.x3_c00458{left:650.140200px;}
.xd_c00458{left:686.515200px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls0_c00458{letter-spacing:0.000000pt;}
.ws0_c00458{word-spacing:0.000000pt;}
.fs0_c00458{font-size:53.333333pt;}
.fs1_c00458{font-size:58.666667pt;}
.fs2_c00458{font-size:64.000000pt;}
.fs3_c00458{font-size:74.666667pt;}
.y0_c00458{bottom:0.000000pt;}
.y18_c00458{bottom:558.598667pt;}
.y17_c00458{bottom:581.598667pt;}
.y15_c00458{bottom:601.132000pt;}
.y16_c00458{bottom:605.598667pt;}
.y14_c00458{bottom:621.265333pt;}
.y13_c00458{bottom:639.865333pt;}
.y12_c00458{bottom:660.598667pt;}
.y11_c00458{bottom:680.198667pt;}
.y10_c00458{bottom:700.333333pt;}
.yf_c00458{bottom:720.466667pt;}
.ye_c00458{bottom:740.000000pt;}
.yd_c00458{bottom:759.865333pt;}
.yc_c00458{bottom:779.666667pt;}
.yb_c00458{bottom:799.198667pt;}
.ya_c00458{bottom:819.333333pt;}
.y9_c00458{bottom:837.865333pt;}
.y8_c00458{bottom:857.732000pt;}
.y7_c00458{bottom:877.600000pt;}
.y6_c00458{bottom:897.133333pt;}
.y5_c00458{bottom:917.266667pt;}
.y4_c00458{bottom:937.398667pt;}
.y3_c00458{bottom:988.333333pt;}
.y2_c00458{bottom:990.532000pt;}
.y1_c00458{bottom:991.865333pt;}
.h1_c00458{height:53.750000pt;}
.h2_c00458{height:57.578125pt;}
.h3_c00458{height:62.812500pt;}
.h4_c00458{height:73.244792pt;}
.h0_c00458{height:1044.000000pt;}
.w0_c00458{width:650.646400pt;}
.w1_c00458{width:650.666667pt;}
.x0_c00458{left:0.000000pt;}
.x4_c00458{left:50.835733pt;}
.x5_c00458{left:52.435733pt;}
.x8_c00458{left:54.035733pt;}
.x9_c00458{left:55.035733pt;}
.xa_c00458{left:55.969067pt;}
.xc_c00458{left:56.969067pt;}
.xe_c00458{left:57.902400pt;}
.x6_c00458{left:84.435733pt;}
.xb_c00458{left:86.369067pt;}
.x1_c00458{left:248.969067pt;}
.x7_c00458{left:264.302400pt;}
.x2_c00458{left:430.369067pt;}
.x3_c00458{left:577.902400pt;}
.xd_c00458{left:610.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e488e7294fc6e8264da01d06.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.402354;font-style: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.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,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:0.000000px;}
.fc0_c00459{color:transparent;}
.fs0_c00459{font-size:60.000000px;}
.y0_c00459{bottom:0.000000px;}
.y1_c00459{bottom:1071.223500px;}
.h1_c00459{height:61.670545px;}
.h0_c00459{height:1174.500000px;}
.w0_c00459{width:731.977200px;}
.w1_c00459{width:732.000000px;}
.x0_c00459{left:0.000000px;}
.x1_c00459{left:652.990200px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls0_c00459{letter-spacing:0.000000pt;}
.ws0_c00459{word-spacing:0.000000pt;}
.fs0_c00459{font-size:53.333333pt;}
.y0_c00459{bottom:0.000000pt;}
.y1_c00459{bottom:952.198667pt;}
.h1_c00459{height:54.818262pt;}
.h0_c00459{height:1044.000000pt;}
.w0_c00459{width:650.646400pt;}
.w1_c00459{width:650.666667pt;}
.x0_c00459{left:0.000000pt;}
.x1_c00459{left:580.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3eedb1da931512483caa0c05.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00460;src:url('chunks/assets/font_40f7832fd8933a27b2ad86a3.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00460;src:url('chunks/assets/font_9908707ce79ed3d94a330a69.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00460{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00460{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m1_c00460{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,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.000000px;}
.fc0_c00460{color:transparent;}
.fs2_c00460{font-size:66.000000px;}
.fs1_c00460{font-size:120.000000px;}
.fs0_c00460{font-size:192.000000px;}
.y0_c00460{bottom:0.000000px;}
.y3_c00460{bottom:36.148500px;}
.y2_c00460{bottom:549.523500px;}
.y1_c00460{bottom:712.273500px;}
.h3_c00460{height:68.835938px;}
.h2_c00460{height:120.937500px;}
.h1_c00460{height:188.437500px;}
.h0_c00460{height:1174.500000px;}
.w0_c00460{width:731.977200px;}
.w1_c00460{width:732.000000px;}
.x0_c00460{left:0.000000px;}
.x1_c00460{left:65.140200px;}
.x2_c00460{left:116.290200px;}
.x3_c00460{left:624.940200px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls0_c00460{letter-spacing:0.000000pt;}
.ws0_c00460{word-spacing:0.000000pt;}
.fs2_c00460{font-size:58.666667pt;}
.fs1_c00460{font-size:106.666667pt;}
.fs0_c00460{font-size:170.666667pt;}
.y0_c00460{bottom:0.000000pt;}
.y3_c00460{bottom:32.132000pt;}
.y2_c00460{bottom:488.465333pt;}
.y1_c00460{bottom:633.132000pt;}
.h3_c00460{height:61.187500pt;}
.h2_c00460{height:107.500000pt;}
.h1_c00460{height:167.500000pt;}
.h0_c00460{height:1044.000000pt;}
.w0_c00460{width:650.646400pt;}
.w1_c00460{width:650.666667pt;}
.x0_c00460{left:0.000000pt;}
.x1_c00460{left:57.902400pt;}
.x2_c00460{left:103.369067pt;}
.x3_c00460{left:555.502400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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:1174.500000px;}
.w0_c00461{width:731.977200px;}
.w1_c00461{width:732.000000px;}
.x0_c00461{left:0.000000px;}
@media print{
.y0_c00461{bottom:0.000000pt;}
.h0_c00461{height:1044.000000pt;}
.w0_c00461{width:650.646400pt;}
.w1_c00461{width:650.666667pt;}
.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_c386323107cc875d07ffb802.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00462;src:url('chunks/assets/font_2e56d376d12dc466ea7dee4c.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.432129;font-style:normal;font-weight:normal;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_f363f3a07c6d2612504d16e4.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00462;src:url('chunks/assets/font_3695ae40b11ee67737354064.woff2')format("woff");}.ff4_c00462{font-family:ff4_c00462;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00462{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c00462{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m0_c00462{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c00462{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00462{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00462{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00462{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00462{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00462{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00462{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00462{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00462{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00462{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m8_c00462{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.ls0_c00462{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00462{word-spacing:0.000000px;}
.fc0_c00462{color:transparent;}
.fs0_c00462{font-size:60.000000px;}
.fs3_c00462{font-size:66.000000px;}
.fs4_c00462{font-size:72.000000px;}
.fs2_c00462{font-size:96.000000px;}
.fs1_c00462{font-size:126.000000px;}
.y0_c00462{bottom:0.000000px;}
.y18_c00462{bottom:85.198500px;}
.y17_c00462{bottom:106.048500px;}
.y16_c00462{bottom:125.773500px;}
.y14_c00462{bottom:144.148500px;}
.y15_c00462{bottom:147.073500px;}
.y13_c00462{bottom:221.548500px;}
.y12_c00462{bottom:240.673500px;}
.y11_c00462{bottom:303.598500px;}
.y10_c00462{bottom:324.150000px;}
.yf_c00462{bottom:402.298500px;}
.ye_c00462{bottom:422.773500px;}
.yd_c00462{bottom:503.473500px;}
.yc_c00462{bottom:523.648500px;}
.yb_c00462{bottom:543.448500px;}
.ya_c00462{bottom:623.698500px;}
.y9_c00462{bottom:624.448500px;}
.y8_c00462{bottom:624.750000px;}
.y7_c00462{bottom:644.173500px;}
.y6_c00462{bottom:724.125000px;}
.y5_c00462{bottom:744.598500px;}
.y3_c00462{bottom:833.925000px;}
.y2_c00462{bottom:923.925000px;}
.y4_c00462{bottom:1072.650000px;}
.y1_c00462{bottom:1082.323500px;}
.h1_c00462{height:60.468750px;}
.h4_c00462{height:64.775391px;}
.h5_c00462{height:70.628906px;}
.h3_c00462{height:100.125000px;}
.h2_c00462{height:126.984375px;}
.h0_c00462{height:1174.500000px;}
.w0_c00462{width:731.977200px;}
.w1_c00462{width:732.000000px;}
.x0_c00462{left:0.000000px;}
.x5_c00462{left:70.915200px;}
.x9_c00462{left:71.965200px;}
.xa_c00462{left:73.090200px;}
.x6_c00462{left:91.390200px;}
.x7_c00462{left:92.890200px;}
.xc_c00462{left:94.690200px;}
.x3_c00462{left:172.388700px;}
.x1_c00462{left:295.165200px;}
.x2_c00462{left:302.365200px;}
.x8_c00462{left:311.365200px;}
.xb_c00462{left:578.890200px;}
.x4_c00462{left:657.340200px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls0_c00462{letter-spacing:0.000000pt;}
.ws0_c00462{word-spacing:0.000000pt;}
.fs0_c00462{font-size:53.333333pt;}
.fs3_c00462{font-size:58.666667pt;}
.fs4_c00462{font-size:64.000000pt;}
.fs2_c00462{font-size:85.333333pt;}
.fs1_c00462{font-size:112.000000pt;}
.y0_c00462{bottom:0.000000pt;}
.y18_c00462{bottom:75.732000pt;}
.y17_c00462{bottom:94.265333pt;}
.y16_c00462{bottom:111.798667pt;}
.y14_c00462{bottom:128.132000pt;}
.y15_c00462{bottom:130.732000pt;}
.y13_c00462{bottom:196.932000pt;}
.y12_c00462{bottom:213.932000pt;}
.y11_c00462{bottom:269.865333pt;}
.y10_c00462{bottom:288.133333pt;}
.yf_c00462{bottom:357.598667pt;}
.ye_c00462{bottom:375.798667pt;}
.yd_c00462{bottom:447.532000pt;}
.yc_c00462{bottom:465.465333pt;}
.yb_c00462{bottom:483.065333pt;}
.ya_c00462{bottom:554.398667pt;}
.y9_c00462{bottom:555.065333pt;}
.y8_c00462{bottom:555.333333pt;}
.y7_c00462{bottom:572.598667pt;}
.y6_c00462{bottom:643.666667pt;}
.y5_c00462{bottom:661.865333pt;}
.y3_c00462{bottom:741.266667pt;}
.y2_c00462{bottom:821.266667pt;}
.y4_c00462{bottom:953.466667pt;}
.y1_c00462{bottom:962.065333pt;}
.h1_c00462{height:53.750000pt;}
.h4_c00462{height:57.578125pt;}
.h5_c00462{height:62.781250pt;}
.h3_c00462{height:89.000000pt;}
.h2_c00462{height:112.875000pt;}
.h0_c00462{height:1044.000000pt;}
.w0_c00462{width:650.646400pt;}
.w1_c00462{width:650.666667pt;}
.x0_c00462{left:0.000000pt;}
.x5_c00462{left:63.035733pt;}
.x9_c00462{left:63.969067pt;}
.xa_c00462{left:64.969067pt;}
.x6_c00462{left:81.235733pt;}
.x7_c00462{left:82.569067pt;}
.xc_c00462{left:84.169067pt;}
.x3_c00462{left:153.234400pt;}
.x1_c00462{left:262.369067pt;}
.x2_c00462{left:268.769067pt;}
.x8_c00462{left:276.769067pt;}
.xb_c00462{left:514.569067pt;}
.x4_c00462{left:584.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_06a94ee17ec6d58d2cd01186.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00463;src:url('chunks/assets/font_78ea6fdd7daf144ecf2d80dc.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00463;src:url('chunks/assets/font_5bf4d23b27f7eb4f45fe0380.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00463;src:url('chunks/assets/font_0841708d7ac5bd02fe807f41.woff2')format("woff");}.ff4_c00463{font-family:ff4_c00463;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00463{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m0_c00463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m18_c00463{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c00463{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00463{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8_c00463{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17_c00463{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4_c00463{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c00463{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c00463{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00463{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c00463{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00463{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00463{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9_c00463{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00463{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00463{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c00463{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00463{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00463{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11_c00463{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c00463{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m15_c00463{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m12_c00463{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1_c00463{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.ls0_c00463{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00463{color:transparent;}
.fs1_c00463{font-size:60.000000px;}
.fs2_c00463{font-size:66.000000px;}
.fs0_c00463{font-size:72.000000px;}
.fs3_c00463{font-size:78.000000px;}
.y0_c00463{bottom:0.000000px;}
.y2b_c00463{bottom:65.698500px;}
.y2a_c00463{bottom:82.198500px;}
.y29_c00463{bottom:99.598500px;}
.y28_c00463{bottom:102.073500px;}
.y27_c00463{bottom:176.250000px;}
.y26_c00463{bottom:191.698500px;}
.y25_c00463{bottom:193.125000px;}
.y24_c00463{bottom:212.548500px;}
.y23_c00463{bottom:232.723500px;}
.y22_c00463{bottom:306.598500px;}
.y21_c00463{bottom:326.323500px;}
.y20_c00463{bottom:399.750000px;}
.y1f_c00463{bottom:419.548500px;}
.y1d_c00463{bottom:492.673500px;}
.y1e_c00463{bottom:492.973500px;}
.y1c_c00463{bottom:512.773500px;}
.y19_c00463{bottom:532.273500px;}
.y1b_c00463{bottom:532.573500px;}
.y1a_c00463{bottom:532.648500px;}
.y18_c00463{bottom:604.648500px;}
.y17_c00463{bottom:624.448500px;}
.y16_c00463{bottom:624.750000px;}
.y15_c00463{bottom:625.198500px;}
.y14_c00463{bottom:645.298500px;}
.y13_c00463{bottom:665.398500px;}
.y12_c00463{bottom:744.298500px;}
.y11_c00463{bottom:764.473500px;}
.y10_c00463{bottom:783.523500px;}
.yf_c00463{bottom:784.648500px;}
.ye_c00463{bottom:862.050000px;}
.yd_c00463{bottom:882.223500px;}
.ya_c00463{bottom:900.900000px;}
.yc_c00463{bottom:902.698500px;}
.yb_c00463{bottom:903.073500px;}
.y9_c00463{bottom:966.448500px;}
.y8_c00463{bottom:992.698500px;}
.y5_c00463{bottom:1004.625000px;}
.y6_c00463{bottom:1008.900000px;}
.y7_c00463{bottom:1012.800000px;}
.y4_c00463{bottom:1030.500000px;}
.y1_c00463{bottom:1076.625000px;}
.y3_c00463{bottom:1086.675000px;}
.y2_c00463{bottom:1091.698500px;}
.h2_c00463{height:58.886719px;}
.h4_c00463{height:64.775391px;}
.h3_c00463{height:70.628906px;}
.h1_c00463{height:72.562500px;}
.h5_c00463{height:76.514648px;}
.h0_c00463{height:1174.500000px;}
.w0_c00463{width:731.977200px;}
.w1_c00463{width:732.000000px;}
.x0_c00463{left:0.000000px;}
.x1a_c00463{left:40.990200px;}
.x1c_c00463{left:42.115200px;}
.x12_c00463{left:43.915200px;}
.xd_c00463{left:47.140200px;}
.x9_c00463{left:49.315200px;}
.x4_c00463{left:53.590200px;}
.x1d_c00463{left:59.365200px;}
.x1b_c00463{left:61.165200px;}
.x13_c00463{left:62.290200px;}
.x11_c00463{left:64.090200px;}
.x10_c00463{left:65.140200px;}
.xc_c00463{left:66.940200px;}
.x8_c00463{left:70.165200px;}
.x5_c00463{left:71.290200px;}
.x1_c00463{left:74.515200px;}
.x2_c00463{left:101.515200px;}
.x18_c00463{left:146.140200px;}
.x16_c00463{left:171.715200px;}
.x19_c00463{left:175.315200px;}
.x17_c00463{left:197.965200px;}
.x6_c00463{left:246.940200px;}
.x7_c00463{left:253.390200px;}
.x3_c00463{left:277.165200px;}
.xe_c00463{left:521.290200px;}
.xa_c00463{left:525.565200px;}
.x14_c00463{left:563.365200px;}
.x15_c00463{left:580.690200px;}
.xb_c00463{left:594.340200px;}
.x20_c00463{left:602.590200px;}
.x1e_c00463{left:629.965200px;}
.x1f_c00463{left:645.115200px;}
.xf_c00463{left:655.915200px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls0_c00463{letter-spacing:0.000000pt;}
.ws0_c00463{word-spacing:0.000000pt;}
.fs1_c00463{font-size:53.333333pt;}
.fs2_c00463{font-size:58.666667pt;}
.fs0_c00463{font-size:64.000000pt;}
.fs3_c00463{font-size:69.333333pt;}
.y0_c00463{bottom:0.000000pt;}
.y2b_c00463{bottom:58.398667pt;}
.y2a_c00463{bottom:73.065333pt;}
.y29_c00463{bottom:88.532000pt;}
.y28_c00463{bottom:90.732000pt;}
.y27_c00463{bottom:156.666667pt;}
.y26_c00463{bottom:170.398667pt;}
.y25_c00463{bottom:171.666667pt;}
.y24_c00463{bottom:188.932000pt;}
.y23_c00463{bottom:206.865333pt;}
.y22_c00463{bottom:272.532000pt;}
.y21_c00463{bottom:290.065333pt;}
.y20_c00463{bottom:355.333333pt;}
.y1f_c00463{bottom:372.932000pt;}
.y1d_c00463{bottom:437.932000pt;}
.y1e_c00463{bottom:438.198667pt;}
.y1c_c00463{bottom:455.798667pt;}
.y19_c00463{bottom:473.132000pt;}
.y1b_c00463{bottom:473.398667pt;}
.y1a_c00463{bottom:473.465333pt;}
.y18_c00463{bottom:537.465333pt;}
.y17_c00463{bottom:555.065333pt;}
.y16_c00463{bottom:555.333333pt;}
.y15_c00463{bottom:555.732000pt;}
.y14_c00463{bottom:573.598667pt;}
.y13_c00463{bottom:591.465333pt;}
.y12_c00463{bottom:661.598667pt;}
.y11_c00463{bottom:679.532000pt;}
.y10_c00463{bottom:696.465333pt;}
.yf_c00463{bottom:697.465333pt;}
.ye_c00463{bottom:766.266667pt;}
.yd_c00463{bottom:784.198667pt;}
.ya_c00463{bottom:800.800000pt;}
.yc_c00463{bottom:802.398667pt;}
.yb_c00463{bottom:802.732000pt;}
.y9_c00463{bottom:859.065333pt;}
.y8_c00463{bottom:882.398667pt;}
.y5_c00463{bottom:893.000000pt;}
.y6_c00463{bottom:896.800000pt;}
.y7_c00463{bottom:900.266667pt;}
.y4_c00463{bottom:916.000000pt;}
.y1_c00463{bottom:957.000000pt;}
.y3_c00463{bottom:965.933333pt;}
.y2_c00463{bottom:970.398667pt;}
.h2_c00463{height:52.343750pt;}
.h4_c00463{height:57.578125pt;}
.h3_c00463{height:62.781250pt;}
.h1_c00463{height:64.500000pt;}
.h5_c00463{height:68.013021pt;}
.h0_c00463{height:1044.000000pt;}
.w0_c00463{width:650.646400pt;}
.w1_c00463{width:650.666667pt;}
.x0_c00463{left:0.000000pt;}
.x1a_c00463{left:36.435733pt;}
.x1c_c00463{left:37.435733pt;}
.x12_c00463{left:39.035733pt;}
.xd_c00463{left:41.902400pt;}
.x9_c00463{left:43.835733pt;}
.x4_c00463{left:47.635733pt;}
.x1d_c00463{left:52.769067pt;}
.x1b_c00463{left:54.369067pt;}
.x13_c00463{left:55.369067pt;}
.x11_c00463{left:56.969067pt;}
.x10_c00463{left:57.902400pt;}
.xc_c00463{left:59.502400pt;}
.x8_c00463{left:62.369067pt;}
.x5_c00463{left:63.369067pt;}
.x1_c00463{left:66.235733pt;}
.x2_c00463{left:90.235733pt;}
.x18_c00463{left:129.902400pt;}
.x16_c00463{left:152.635733pt;}
.x19_c00463{left:155.835733pt;}
.x17_c00463{left:175.969067pt;}
.x6_c00463{left:219.502400pt;}
.x7_c00463{left:225.235733pt;}
.x3_c00463{left:246.369067pt;}
.xe_c00463{left:463.369067pt;}
.xa_c00463{left:467.169067pt;}
.x14_c00463{left:500.769067pt;}
.x15_c00463{left:516.169067pt;}
.xb_c00463{left:528.302400pt;}
.x20_c00463{left:535.635733pt;}
.x1e_c00463{left:559.969067pt;}
.x1f_c00463{left:573.435733pt;}
.xf_c00463{left:583.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c87544125dedef8e146cde0.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00464;src:url('chunks/assets/font_e659e1b45c64f78914b5cee2.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00464;src:url('chunks/assets/font_d19dfd84261eb9b9270e39c8.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00464;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff4_c00464{font-family:ff4_c00464;line-height:1.575000;font-style:normal;font-weight:normal;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_b77e792e263bc98cb21e011f.woff2')format("woff");}.ff5_c00464{font-family:ff5_c00464;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00464{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m5_c00464{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3_c00464{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1_c00464{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00464{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c00464{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me_c00464{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00464{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00464{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00464{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00464{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7_c00464{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00464{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m11_c00464{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m12_c00464{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m14_c00464{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00464{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00464{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c00464{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c00464{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m15_c00464{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c00464{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m17_c00464{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00464{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m18_c00464{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.ma_c00464{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6_c00464{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m9_c00464{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.md_c00464{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m19_c00464{transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);}
.mc_c00464{transform:matrix(2.945000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.945000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.945000,0.000000,0.000000,0.250000,0,0);}
.m2_c00464{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls0_c00464{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00464{color:transparent;}
.fs4_c00464{font-size:18.000000px;}
.fs1_c00464{font-size:60.000000px;}
.fs0_c00464{font-size:66.000000px;}
.fs6_c00464{font-size:72.000000px;}
.fs2_c00464{font-size:78.000000px;}
.fs5_c00464{font-size:84.000000px;}
.fs3_c00464{font-size:96.000000px;}
.y0_c00464{bottom:0.000000px;}
.y29_c00464{bottom:79.723500px;}
.y2a_c00464{bottom:84.750000px;}
.y28_c00464{bottom:102.750000px;}
.y26_c00464{bottom:146.023500px;}
.y27_c00464{bottom:151.798500px;}
.y25_c00464{bottom:198.523500px;}
.y24_c00464{bottom:281.323500px;}
.y20_c00464{bottom:303.673500px;}
.y21_c00464{bottom:306.150000px;}
.y22_c00464{bottom:308.323500px;}
.y23_c00464{bottom:308.698500px;}
.y1f_c00464{bottom:326.323500px;}
.y1e_c00464{bottom:348.298500px;}
.y1d_c00464{bottom:370.650000px;}
.y1c_c00464{bottom:392.250000px;}
.y1b_c00464{bottom:414.223500px;}
.y1a_c00464{bottom:435.823500px;}
.y19_c00464{bottom:457.723500px;}
.y18_c00464{bottom:480.375000px;}
.y17_c00464{bottom:502.348500px;}
.y16_c00464{bottom:524.698500px;}
.y15_c00464{bottom:546.673500px;}
.y14_c00464{bottom:568.648500px;}
.y13_c00464{bottom:590.923500px;}
.y12_c00464{bottom:613.273500px;}
.y11_c00464{bottom:635.250000px;}
.y10_c00464{bottom:657.148500px;}
.yf_c00464{bottom:679.125000px;}
.ye_c00464{bottom:726.298500px;}
.yd_c00464{bottom:743.923500px;}
.yc_c00464{bottom:804.073500px;}
.yb_c00464{bottom:805.500000px;}
.ya_c00464{bottom:806.925000px;}
.y8_c00464{bottom:877.800000px;}
.y9_c00464{bottom:877.875000px;}
.y7_c00464{bottom:878.550000px;}
.y6_c00464{bottom:878.625000px;}
.y5_c00464{bottom:904.125000px;}
.y4_c00464{bottom:1099.948500px;}
.y3_c00464{bottom:1104.973500px;}
.y2_c00464{bottom:1106.473500px;}
.y1_c00464{bottom:1109.698500px;}
.h5_c00464{height:18.773438px;}
.h6_c00464{height:19.206000px;}
.hc_c00464{height:58.886719px;}
.h2_c00464{height:60.468750px;}
.ha_c00464{height:64.775391px;}
.h1_c00464{height:66.515625px;}
.h8_c00464{height:70.628906px;}
.h9_c00464{height:70.664062px;}
.hb_c00464{height:76.514648px;}
.h3_c00464{height:78.609375px;}
.h7_c00464{height:82.400391px;}
.h4_c00464{height:94.218750px;}
.h0_c00464{height:1174.500000px;}
.w0_c00464{width:731.977200px;}
.w1_c00464{width:732.000000px;}
.x0_c00464{left:0.000000px;}
.x1c_c00464{left:74.890200px;}
.x18_c00464{left:76.688700px;}
.x17_c00464{left:78.490200px;}
.x16_c00464{left:79.540200px;}
.x15_c00464{left:80.590200px;}
.x12_c00464{left:84.938700px;}
.x1e_c00464{left:96.115200px;}
.x14_c00464{left:103.690200px;}
.x20_c00464{left:112.315200px;}
.x5_c00464{left:203.365200px;}
.xf_c00464{left:240.790200px;}
.x1d_c00464{left:246.565200px;}
.x1_c00464{left:314.965200px;}
.x13_c00464{left:320.740200px;}
.x2_c00464{left:340.540200px;}
.x6_c00464{left:354.190200px;}
.x7_c00464{left:357.790200px;}
.x8_c00464{left:362.890200px;}
.x10_c00464{left:378.340200px;}
.x9_c00464{left:395.288700px;}
.xa_c00464{left:399.190200px;}
.x19_c00464{left:404.590200px;}
.x11_c00464{left:407.140200px;}
.xb_c00464{left:409.315200px;}
.xc_c00464{left:413.965200px;}
.xd_c00464{left:415.765200px;}
.xe_c00464{left:456.115200px;}
.x3_c00464{left:512.590200px;}
.x1f_c00464{left:551.515200px;}
.x1a_c00464{left:649.090200px;}
.x1b_c00464{left:663.115200px;}
.x4_c00464{left:676.765200px;}
.x21_c00464{left:690.490200px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls0_c00464{letter-spacing:0.000000pt;}
.ws0_c00464{word-spacing:0.000000pt;}
.fs4_c00464{font-size:16.000000pt;}
.fs1_c00464{font-size:53.333333pt;}
.fs0_c00464{font-size:58.666667pt;}
.fs6_c00464{font-size:64.000000pt;}
.fs2_c00464{font-size:69.333333pt;}
.fs5_c00464{font-size:74.666667pt;}
.fs3_c00464{font-size:85.333333pt;}
.y0_c00464{bottom:0.000000pt;}
.y29_c00464{bottom:70.865333pt;}
.y2a_c00464{bottom:75.333333pt;}
.y28_c00464{bottom:91.333333pt;}
.y26_c00464{bottom:129.798667pt;}
.y27_c00464{bottom:134.932000pt;}
.y25_c00464{bottom:176.465333pt;}
.y24_c00464{bottom:250.065333pt;}
.y20_c00464{bottom:269.932000pt;}
.y21_c00464{bottom:272.133333pt;}
.y22_c00464{bottom:274.065333pt;}
.y23_c00464{bottom:274.398667pt;}
.y1f_c00464{bottom:290.065333pt;}
.y1e_c00464{bottom:309.598667pt;}
.y1d_c00464{bottom:329.466667pt;}
.y1c_c00464{bottom:348.666667pt;}
.y1b_c00464{bottom:368.198667pt;}
.y1a_c00464{bottom:387.398667pt;}
.y19_c00464{bottom:406.865333pt;}
.y18_c00464{bottom:427.000000pt;}
.y17_c00464{bottom:446.532000pt;}
.y16_c00464{bottom:466.398667pt;}
.y15_c00464{bottom:485.932000pt;}
.y14_c00464{bottom:505.465333pt;}
.y13_c00464{bottom:525.265333pt;}
.y12_c00464{bottom:545.132000pt;}
.y11_c00464{bottom:564.666667pt;}
.y10_c00464{bottom:584.132000pt;}
.yf_c00464{bottom:603.666667pt;}
.ye_c00464{bottom:645.598667pt;}
.yd_c00464{bottom:661.265333pt;}
.yc_c00464{bottom:714.732000pt;}
.yb_c00464{bottom:716.000000pt;}
.ya_c00464{bottom:717.266667pt;}
.y8_c00464{bottom:780.266667pt;}
.y9_c00464{bottom:780.333333pt;}
.y7_c00464{bottom:780.933333pt;}
.y6_c00464{bottom:781.000000pt;}
.y5_c00464{bottom:803.666667pt;}
.y4_c00464{bottom:977.732000pt;}
.y3_c00464{bottom:982.198667pt;}
.y2_c00464{bottom:983.532000pt;}
.y1_c00464{bottom:986.398667pt;}
.h5_c00464{height:16.687500pt;}
.h6_c00464{height:17.072000pt;}
.hc_c00464{height:52.343750pt;}
.h2_c00464{height:53.750000pt;}
.ha_c00464{height:57.578125pt;}
.h1_c00464{height:59.125000pt;}
.h8_c00464{height:62.781250pt;}
.h9_c00464{height:62.812500pt;}
.hb_c00464{height:68.013021pt;}
.h3_c00464{height:69.875000pt;}
.h7_c00464{height:73.244792pt;}
.h4_c00464{height:83.750000pt;}
.h0_c00464{height:1044.000000pt;}
.w0_c00464{width:650.646400pt;}
.w1_c00464{width:650.666667pt;}
.x0_c00464{left:0.000000pt;}
.x1c_c00464{left:66.569067pt;}
.x18_c00464{left:68.167733pt;}
.x17_c00464{left:69.769067pt;}
.x16_c00464{left:70.702400pt;}
.x15_c00464{left:71.635733pt;}
.x12_c00464{left:75.501067pt;}
.x1e_c00464{left:85.435733pt;}
.x14_c00464{left:92.169067pt;}
.x20_c00464{left:99.835733pt;}
.x5_c00464{left:180.769067pt;}
.xf_c00464{left:214.035733pt;}
.x1d_c00464{left:219.169067pt;}
.x1_c00464{left:279.969067pt;}
.x13_c00464{left:285.102400pt;}
.x2_c00464{left:302.702400pt;}
.x6_c00464{left:314.835733pt;}
.x7_c00464{left:318.035733pt;}
.x8_c00464{left:322.569067pt;}
.x10_c00464{left:336.302400pt;}
.x9_c00464{left:351.367733pt;}
.xa_c00464{left:354.835733pt;}
.x19_c00464{left:359.635733pt;}
.x11_c00464{left:361.902400pt;}
.xb_c00464{left:363.835733pt;}
.xc_c00464{left:367.969067pt;}
.xd_c00464{left:369.569067pt;}
.xe_c00464{left:405.435733pt;}
.x3_c00464{left:455.635733pt;}
.x1f_c00464{left:490.235733pt;}
.x1a_c00464{left:576.969067pt;}
.x1b_c00464{left:589.435733pt;}
.x4_c00464{left:601.569067pt;}
.x21_c00464{left:613.769067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b97b0c7541352bd37dcaaee0.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00465;src:url('chunks/assets/font_1194dfa2d8c9654cc6ddbd4f.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00465;src:url('chunks/assets/font_9f0a0b549674f3bba6b7763e.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00465{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7_c00465{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9_c00465{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0_c00465{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me_c00465{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c00465{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c00465{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00465{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00465{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00465{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma_c00465{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00465{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c00465{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00465{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00465{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00465{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00465{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c00465{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00465{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00465{word-spacing:0.000000px;}
.fc0_c00465{color:transparent;}
.fs1_c00465{font-size:54.000000px;}
.fs3_c00465{font-size:60.000000px;}
.fs0_c00465{font-size:66.000000px;}
.fs2_c00465{font-size:72.000000px;}
.y0_c00465{bottom:0.000000px;}
.y23_c00465{bottom:96.298500px;}
.y22_c00465{bottom:100.948500px;}
.y21_c00465{bottom:121.875000px;}
.y20_c00465{bottom:142.723500px;}
.y1f_c00465{bottom:164.698500px;}
.y1e_c00465{bottom:186.298500px;}
.y1d_c00465{bottom:208.948500px;}
.y1c_c00465{bottom:229.500000px;}
.y1b_c00465{bottom:277.348500px;}
.y1a_c00465{bottom:335.698500px;}
.y19_c00465{bottom:491.923500px;}
.y18_c00465{bottom:512.098500px;}
.y17_c00465{bottom:533.698500px;}
.y16_c00465{bottom:555.673500px;}
.y15_c00465{bottom:577.948500px;}
.y14_c00465{bottom:600.298500px;}
.y13_c00465{bottom:622.273500px;}
.y12_c00465{bottom:644.250000px;}
.y11_c00465{bottom:666.523500px;}
.y10_c00465{bottom:688.198500px;}
.yf_c00465{bottom:710.473500px;}
.ye_c00465{bottom:756.598500px;}
.yd_c00465{bottom:773.398500px;}
.yc_c00465{bottom:774.523500px;}
.yb_c00465{bottom:832.875000px;}
.ya_c00465{bottom:973.275000px;}
.y7_c00465{bottom:988.348500px;}
.y8_c00465{bottom:991.650000px;}
.y9_c00465{bottom:996.300000px;}
.y6_c00465{bottom:1016.473500px;}
.y5_c00465{bottom:1037.400000px;}
.y4_c00465{bottom:1057.875000px;}
.y1_c00465{bottom:1105.723500px;}
.y3_c00465{bottom:1114.800000px;}
.y2_c00465{bottom:1120.500000px;}
.h2_c00465{height:52.998047px;}
.h5_c00465{height:61.670545px;}
.h1_c00465{height:64.775391px;}
.h4_c00465{height:70.628906px;}
.h3_c00465{height:70.664062px;}
.h0_c00465{height:1174.500000px;}
.w0_c00465{width:731.977200px;}
.w1_c00465{width:732.000000px;}
.x0_c00465{left:0.000000px;}
.x9_c00465{left:43.540200px;}
.xd_c00465{left:44.590200px;}
.x5_c00465{left:46.090200px;}
.x4_c00465{left:47.140200px;}
.x1_c00465{left:66.940200px;}
.xc_c00465{left:76.990200px;}
.x2_c00465{left:94.315200px;}
.xb_c00465{left:109.390200px;}
.xf_c00465{left:137.890200px;}
.x6_c00465{left:187.915200px;}
.x8_c00465{left:190.763700px;}
.xe_c00465{left:192.940200px;}
.x7_c00465{left:196.165200px;}
.x3_c00465{left:268.540200px;}
.x10_c00465{left:534.190200px;}
.xa_c00465{left:650.140200px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ws0_c00465{word-spacing:0.000000pt;}
.fs1_c00465{font-size:48.000000pt;}
.fs3_c00465{font-size:53.333333pt;}
.fs0_c00465{font-size:58.666667pt;}
.fs2_c00465{font-size:64.000000pt;}
.y0_c00465{bottom:0.000000pt;}
.y23_c00465{bottom:85.598667pt;}
.y22_c00465{bottom:89.732000pt;}
.y21_c00465{bottom:108.333333pt;}
.y20_c00465{bottom:126.865333pt;}
.y1f_c00465{bottom:146.398667pt;}
.y1e_c00465{bottom:165.598667pt;}
.y1d_c00465{bottom:185.732000pt;}
.y1c_c00465{bottom:204.000000pt;}
.y1b_c00465{bottom:246.532000pt;}
.y1a_c00465{bottom:298.398667pt;}
.y19_c00465{bottom:437.265333pt;}
.y18_c00465{bottom:455.198667pt;}
.y17_c00465{bottom:474.398667pt;}
.y16_c00465{bottom:493.932000pt;}
.y15_c00465{bottom:513.732000pt;}
.y14_c00465{bottom:533.598667pt;}
.y13_c00465{bottom:553.132000pt;}
.y12_c00465{bottom:572.666667pt;}
.y11_c00465{bottom:592.465333pt;}
.y10_c00465{bottom:611.732000pt;}
.yf_c00465{bottom:631.532000pt;}
.ye_c00465{bottom:672.532000pt;}
.yd_c00465{bottom:687.465333pt;}
.yc_c00465{bottom:688.465333pt;}
.yb_c00465{bottom:740.333333pt;}
.ya_c00465{bottom:865.133333pt;}
.y7_c00465{bottom:878.532000pt;}
.y8_c00465{bottom:881.466667pt;}
.y9_c00465{bottom:885.600000pt;}
.y6_c00465{bottom:903.532000pt;}
.y5_c00465{bottom:922.133333pt;}
.y4_c00465{bottom:940.333333pt;}
.y1_c00465{bottom:982.865333pt;}
.y3_c00465{bottom:990.933333pt;}
.y2_c00465{bottom:996.000000pt;}
.h2_c00465{height:47.109375pt;}
.h5_c00465{height:54.818262pt;}
.h1_c00465{height:57.578125pt;}
.h4_c00465{height:62.781250pt;}
.h3_c00465{height:62.812500pt;}
.h0_c00465{height:1044.000000pt;}
.w0_c00465{width:650.646400pt;}
.w1_c00465{width:650.666667pt;}
.x0_c00465{left:0.000000pt;}
.x9_c00465{left:38.702400pt;}
.xd_c00465{left:39.635733pt;}
.x5_c00465{left:40.969067pt;}
.x4_c00465{left:41.902400pt;}
.x1_c00465{left:59.502400pt;}
.xc_c00465{left:68.435733pt;}
.x2_c00465{left:83.835733pt;}
.xb_c00465{left:97.235733pt;}
.xf_c00465{left:122.569067pt;}
.x6_c00465{left:167.035733pt;}
.x8_c00465{left:169.567733pt;}
.xe_c00465{left:171.502400pt;}
.x7_c00465{left:174.369067pt;}
.x3_c00465{left:238.702400pt;}
.x10_c00465{left:474.835733pt;}
.xa_c00465{left:577.902400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8736741f5a58f2c1b074023b.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00466;src:url('chunks/assets/font_f726e4fdecd8928ccda29c99.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00466;src:url('chunks/assets/font_7f6ff63cfe785a392d5ddc7e.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00466;src:url('chunks/assets/font_09f2c550598d429bd5bba567.woff2')format("woff");}.ff4_c00466{font-family:ff4_c00466;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19_c00466{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1a_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);}
.m9_c00466{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c00466{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c00466{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m18_c00466{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m13_c00466{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md_c00466{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m16_c00466{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8_c00466{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3_c00466{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00466{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c00466{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m0_c00466{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00466{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00466{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00466{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00466{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c00466{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c00466{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00466{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00466{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c00466{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m14_c00466{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m10_c00466{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c00466{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m11_c00466{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1_c00466{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00466{color:transparent;}
.fs2_c00466{font-size:54.000000px;}
.fs0_c00466{font-size:60.000000px;}
.fs4_c00466{font-size:66.000000px;}
.fs1_c00466{font-size:72.000000px;}
.fs3_c00466{font-size:84.000000px;}
.y0_c00466{bottom:0.000000px;}
.y36_c00466{bottom:72.898500px;}
.y35_c00466{bottom:98.098500px;}
.y34_c00466{bottom:119.698500px;}
.y33_c00466{bottom:164.023500px;}
.y32_c00466{bottom:181.273500px;}
.y2f_c00466{bottom:223.348500px;}
.y30_c00466{bottom:224.773500px;}
.y31_c00466{bottom:226.948500px;}
.y2e_c00466{bottom:308.698500px;}
.y2b_c00466{bottom:329.548500px;}
.y2c_c00466{bottom:330.298500px;}
.y2d_c00466{bottom:335.323500px;}
.y29_c00466{bottom:352.275000px;}
.y2a_c00466{bottom:357.298500px;}
.y28_c00466{bottom:378.525000px;}
.y27_c00466{bottom:400.125000px;}
.y23_c00466{bottom:417.823500px;}
.y20_c00466{bottom:418.798500px;}
.y21_c00466{bottom:419.923500px;}
.y22_c00466{bottom:421.723500px;}
.y24_c00466{bottom:422.473500px;}
.y25_c00466{bottom:422.773500px;}
.y26_c00466{bottom:423.523500px;}
.y1e_c00466{bottom:469.573500px;}
.y1f_c00466{bottom:470.398500px;}
.y1d_c00466{bottom:565.723500px;}
.y1c_c00466{bottom:588.073500px;}
.y1b_c00466{bottom:610.048500px;}
.y1a_c00466{bottom:632.323500px;}
.y19_c00466{bottom:654.673500px;}
.y18_c00466{bottom:676.948500px;}
.y17_c00466{bottom:699.973500px;}
.y16_c00466{bottom:700.348500px;}
.y15_c00466{bottom:700.723500px;}
.y14_c00466{bottom:721.575000px;}
.y13_c00466{bottom:743.548500px;}
.y12_c00466{bottom:766.273500px;}
.y11_c00466{bottom:786.073500px;}
.y10_c00466{bottom:789.300000px;}
.yf_c00466{bottom:791.098500px;}
.ye_c00466{bottom:810.525000px;}
.yd_c00466{bottom:832.875000px;}
.yc_c00466{bottom:882.150000px;}
.yb_c00466{bottom:971.098500px;}
.ya_c00466{bottom:971.775000px;}
.y9_c00466{bottom:977.925000px;}
.y8_c00466{bottom:991.948500px;}
.y7_c00466{bottom:994.125000px;}
.y6_c00466{bottom:1000.573500px;}
.y5_c00466{bottom:1021.800000px;}
.y4_c00466{bottom:1044.150000px;}
.y3_c00466{bottom:1098.223500px;}
.y2_c00466{bottom:1102.800000px;}
.y1_c00466{bottom:1105.348500px;}
.h4_c00466{height:52.998047px;}
.h1_c00466{height:58.886719px;}
.h6_c00466{height:64.775391px;}
.h3_c00466{height:70.664062px;}
.h2_c00466{height:72.562500px;}
.h5_c00466{height:82.400391px;}
.h0_c00466{height:1174.500000px;}
.w0_c00466{width:731.977200px;}
.w1_c00466{width:732.000000px;}
.x0_c00466{left:0.000000px;}
.xb_c00466{left:67.690200px;}
.xe_c00466{left:69.490200px;}
.x4_c00466{left:70.540200px;}
.x1e_c00466{left:73.090200px;}
.x1a_c00466{left:85.990200px;}
.xf_c00466{left:97.915200px;}
.xa_c00466{left:102.190200px;}
.x20_c00466{left:105.115200px;}
.x10_c00466{left:127.765200px;}
.xc_c00466{left:148.990200px;}
.x1b_c00466{left:173.888700px;}
.x13_c00466{left:184.990200px;}
.x1c_c00466{left:204.115200px;}
.x9_c00466{left:226.765200px;}
.x11_c00466{left:236.140200px;}
.x14_c00466{left:277.540200px;}
.x1_c00466{left:291.940200px;}
.x1f_c00466{left:322.540200px;}
.x19_c00466{left:330.115200px;}
.x12_c00466{left:334.090200px;}
.x1d_c00466{left:339.790200px;}
.x15_c00466{left:385.163700px;}
.xd_c00466{left:395.590200px;}
.x16_c00466{left:420.490200px;}
.x17_c00466{left:454.990200px;}
.x18_c00466{left:488.890200px;}
.x2_c00466{left:492.115200px;}
.x5_c00466{left:600.115200px;}
.x7_c00466{left:605.140200px;}
.x6_c00466{left:628.165200px;}
.x8_c00466{left:630.340200px;}
.x3_c00466{left:657.715200px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls0_c00466{letter-spacing:0.000000pt;}
.ws0_c00466{word-spacing:0.000000pt;}
.fs2_c00466{font-size:48.000000pt;}
.fs0_c00466{font-size:53.333333pt;}
.fs4_c00466{font-size:58.666667pt;}
.fs1_c00466{font-size:64.000000pt;}
.fs3_c00466{font-size:74.666667pt;}
.y0_c00466{bottom:0.000000pt;}
.y36_c00466{bottom:64.798667pt;}
.y35_c00466{bottom:87.198667pt;}
.y34_c00466{bottom:106.398667pt;}
.y33_c00466{bottom:145.798667pt;}
.y32_c00466{bottom:161.132000pt;}
.y2f_c00466{bottom:198.532000pt;}
.y30_c00466{bottom:199.798667pt;}
.y31_c00466{bottom:201.732000pt;}
.y2e_c00466{bottom:274.398667pt;}
.y2b_c00466{bottom:292.932000pt;}
.y2c_c00466{bottom:293.598667pt;}
.y2d_c00466{bottom:298.065333pt;}
.y29_c00466{bottom:313.133333pt;}
.y2a_c00466{bottom:317.598667pt;}
.y28_c00466{bottom:336.466667pt;}
.y27_c00466{bottom:355.666667pt;}
.y23_c00466{bottom:371.398667pt;}
.y20_c00466{bottom:372.265333pt;}
.y21_c00466{bottom:373.265333pt;}
.y22_c00466{bottom:374.865333pt;}
.y24_c00466{bottom:375.532000pt;}
.y25_c00466{bottom:375.798667pt;}
.y26_c00466{bottom:376.465333pt;}
.y1e_c00466{bottom:417.398667pt;}
.y1f_c00466{bottom:418.132000pt;}
.y1d_c00466{bottom:502.865333pt;}
.y1c_c00466{bottom:522.732000pt;}
.y1b_c00466{bottom:542.265333pt;}
.y1a_c00466{bottom:562.065333pt;}
.y19_c00466{bottom:581.932000pt;}
.y18_c00466{bottom:601.732000pt;}
.y17_c00466{bottom:622.198667pt;}
.y16_c00466{bottom:622.532000pt;}
.y15_c00466{bottom:622.865333pt;}
.y14_c00466{bottom:641.400000pt;}
.y13_c00466{bottom:660.932000pt;}
.y12_c00466{bottom:681.132000pt;}
.y11_c00466{bottom:698.732000pt;}
.y10_c00466{bottom:701.600000pt;}
.yf_c00466{bottom:703.198667pt;}
.ye_c00466{bottom:720.466667pt;}
.yd_c00466{bottom:740.333333pt;}
.yc_c00466{bottom:784.133333pt;}
.yb_c00466{bottom:863.198667pt;}
.ya_c00466{bottom:863.800000pt;}
.y9_c00466{bottom:869.266667pt;}
.y8_c00466{bottom:881.732000pt;}
.y7_c00466{bottom:883.666667pt;}
.y6_c00466{bottom:889.398667pt;}
.y5_c00466{bottom:908.266667pt;}
.y4_c00466{bottom:928.133333pt;}
.y3_c00466{bottom:976.198667pt;}
.y2_c00466{bottom:980.266667pt;}
.y1_c00466{bottom:982.532000pt;}
.h4_c00466{height:47.109375pt;}
.h1_c00466{height:52.343750pt;}
.h6_c00466{height:57.578125pt;}
.h3_c00466{height:62.812500pt;}
.h2_c00466{height:64.500000pt;}
.h5_c00466{height:73.244792pt;}
.h0_c00466{height:1044.000000pt;}
.w0_c00466{width:650.646400pt;}
.w1_c00466{width:650.666667pt;}
.x0_c00466{left:0.000000pt;}
.xb_c00466{left:60.169067pt;}
.xe_c00466{left:61.769067pt;}
.x4_c00466{left:62.702400pt;}
.x1e_c00466{left:64.969067pt;}
.x1a_c00466{left:76.435733pt;}
.xf_c00466{left:87.035733pt;}
.xa_c00466{left:90.835733pt;}
.x20_c00466{left:93.435733pt;}
.x10_c00466{left:113.569067pt;}
.xc_c00466{left:132.435733pt;}
.x1b_c00466{left:154.567733pt;}
.x13_c00466{left:164.435733pt;}
.x1c_c00466{left:181.435733pt;}
.x9_c00466{left:201.569067pt;}
.x11_c00466{left:209.902400pt;}
.x14_c00466{left:246.702400pt;}
.x1_c00466{left:259.502400pt;}
.x1f_c00466{left:286.702400pt;}
.x19_c00466{left:293.435733pt;}
.x12_c00466{left:296.969067pt;}
.x1d_c00466{left:302.035733pt;}
.x15_c00466{left:342.367733pt;}
.xd_c00466{left:351.635733pt;}
.x16_c00466{left:373.769067pt;}
.x17_c00466{left:404.435733pt;}
.x18_c00466{left:434.569067pt;}
.x2_c00466{left:437.435733pt;}
.x5_c00466{left:533.435733pt;}
.x7_c00466{left:537.902400pt;}
.x6_c00466{left:558.369067pt;}
.x8_c00466{left:560.302400pt;}
.x3_c00466{left:584.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eabb6d40e07ce7e032660d2e.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00467;src:url('chunks/assets/font_ade10c71071d9fb544689b0a.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00467;src:url('chunks/assets/font_db674fcba90f938bb66c3e9b.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00467;src:url('chunks/assets/font_70f9d1903bb234729b39f6d9.woff2')format("woff");}.ff4_c00467{font-family:ff4_c00467;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00467;src:url('chunks/assets/font_78d885d179700629ec7f8e16.woff2')format("woff");}.ff5_c00467{font-family:ff5_c00467;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00467{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m0_c00467{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m12_c00467{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc_c00467{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m16_c00467{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c00467{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00467{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00467{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m15_c00467{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00467{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c00467{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m14_c00467{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11_c00467{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c00467{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c00467{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00467{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00467{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c00467{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00467{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00467{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00467{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00467{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00467{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3_c00467{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00467{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c00467{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00467{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls0_c00467{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00467{color:transparent;}
.fs2_c00467{font-size:48.000000px;}
.fs1_c00467{font-size:60.000000px;}
.fs0_c00467{font-size:66.000000px;}
.fs3_c00467{font-size:72.000000px;}
.fs5_c00467{font-size:78.000000px;}
.fs4_c00467{font-size:84.000000px;}
.y0_c00467{bottom:0.000000px;}
.y39_c00467{bottom:80.473500px;}
.y38_c00467{bottom:81.898500px;}
.y37_c00467{bottom:83.323500px;}
.y36_c00467{bottom:85.125000px;}
.y31_c00467{bottom:90.898500px;}
.y35_c00467{bottom:91.948500px;}
.y34_c00467{bottom:105.673500px;}
.y33_c00467{bottom:112.875000px;}
.y32_c00467{bottom:118.273500px;}
.y30_c00467{bottom:129.000000px;}
.y2f_c00467{bottom:149.923500px;}
.y2e_c00467{bottom:159.000000px;}
.y2d_c00467{bottom:194.923500px;}
.y2c_c00467{bottom:196.723500px;}
.y2b_c00467{bottom:198.898500px;}
.y2a_c00467{bottom:214.423500px;}
.y29_c00467{bottom:273.750000px;}
.y28_c00467{bottom:275.548500px;}
.y27_c00467{bottom:277.423500px;}
.y26_c00467{bottom:279.900000px;}
.y25_c00467{bottom:294.673500px;}
.y24_c00467{bottom:294.973500px;}
.y23_c00467{bottom:297.900000px;}
.y22_c00467{bottom:457.348500px;}
.y21_c00467{bottom:477.523500px;}
.y20_c00467{bottom:499.500000px;}
.y1f_c00467{bottom:521.473500px;}
.y1e_c00467{bottom:543.448500px;}
.y1d_c00467{bottom:565.348500px;}
.y1c_c00467{bottom:587.323500px;}
.y1b_c00467{bottom:609.298500px;}
.y1a_c00467{bottom:631.573500px;}
.y18_c00467{bottom:649.573500px;}
.y19_c00467{bottom:653.548500px;}
.y17_c00467{bottom:675.523500px;}
.y16_c00467{bottom:697.798500px;}
.y15_c00467{bottom:719.473500px;}
.y14_c00467{bottom:741.750000px;}
.y13_c00467{bottom:763.048500px;}
.y12_c00467{bottom:785.698500px;}
.y11_c00467{bottom:807.973500px;}
.y10_c00467{bottom:829.275000px;}
.yf_c00467{bottom:850.500000px;}
.ye_c00467{bottom:872.473500px;}
.yd_c00467{bottom:894.375000px;}
.yc_c00467{bottom:916.348500px;}
.yb_c00467{bottom:932.550000px;}
.ya_c00467{bottom:959.550000px;}
.y9_c00467{bottom:981.150000px;}
.y8_c00467{bottom:1002.448500px;}
.y7_c00467{bottom:1024.425000px;}
.y6_c00467{bottom:1045.573500px;}
.y1_c00467{bottom:1091.323500px;}
.y3_c00467{bottom:1101.448500px;}
.y4_c00467{bottom:1102.500000px;}
.y5_c00467{bottom:1103.175000px;}
.y2_c00467{bottom:1111.348500px;}
.h3_c00467{height:50.062500px;}
.h2_c00467{height:60.468750px;}
.h7_c00467{height:64.743164px;}
.h5_c00467{height:64.775391px;}
.h1_c00467{height:66.515625px;}
.h4_c00467{height:70.664062px;}
.h8_c00467{height:78.609375px;}
.h6_c00467{height:82.400391px;}
.h0_c00467{height:1174.500000px;}
.w0_c00467{width:731.977200px;}
.w1_c00467{width:732.000000px;}
.x0_c00467{left:0.000000px;}
.x11_c00467{left:50.740200px;}
.xd_c00467{left:52.540200px;}
.xb_c00467{left:53.590200px;}
.xa_c00467{left:54.715200px;}
.x8_c00467{left:56.140200px;}
.x7_c00467{left:57.940200px;}
.xe_c00467{left:73.090200px;}
.xc_c00467{left:74.140200px;}
.x9_c00467{left:76.688700px;}
.x1_c00467{left:78.790200px;}
.x6_c00467{left:81.340200px;}
.x19_c00467{left:83.515200px;}
.xf_c00467{left:84.563700px;}
.x10_c00467{left:88.915200px;}
.x1d_c00467{left:94.315200px;}
.x2_c00467{left:106.915200px;}
.x14_c00467{left:112.990200px;}
.x1b_c00467{left:117.340200px;}
.x1a_c00467{left:125.965200px;}
.x17_c00467{left:185.365200px;}
.x1e_c00467{left:258.115200px;}
.x3_c00467{left:275.365200px;}
.x1c_c00467{left:285.790200px;}
.x15_c00467{left:299.890200px;}
.x16_c00467{left:327.190200px;}
.x4_c00467{left:363.565200px;}
.x1f_c00467{left:368.965200px;}
.x5_c00467{left:372.565200px;}
.x18_c00467{left:388.765200px;}
.x12_c00467{left:550.765200px;}
.x13_c00467{left:573.790200px;}
.x20_c00467{left:600.115200px;}
.x21_c00467{left:618.790200px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls0_c00467{letter-spacing:0.000000pt;}
.ws0_c00467{word-spacing:0.000000pt;}
.fs2_c00467{font-size:42.666667pt;}
.fs1_c00467{font-size:53.333333pt;}
.fs0_c00467{font-size:58.666667pt;}
.fs3_c00467{font-size:64.000000pt;}
.fs5_c00467{font-size:69.333333pt;}
.fs4_c00467{font-size:74.666667pt;}
.y0_c00467{bottom:0.000000pt;}
.y39_c00467{bottom:71.532000pt;}
.y38_c00467{bottom:72.798667pt;}
.y37_c00467{bottom:74.065333pt;}
.y36_c00467{bottom:75.666667pt;}
.y31_c00467{bottom:80.798667pt;}
.y35_c00467{bottom:81.732000pt;}
.y34_c00467{bottom:93.932000pt;}
.y33_c00467{bottom:100.333333pt;}
.y32_c00467{bottom:105.132000pt;}
.y30_c00467{bottom:114.666667pt;}
.y2f_c00467{bottom:133.265333pt;}
.y2e_c00467{bottom:141.333333pt;}
.y2d_c00467{bottom:173.265333pt;}
.y2c_c00467{bottom:174.865333pt;}
.y2b_c00467{bottom:176.798667pt;}
.y2a_c00467{bottom:190.598667pt;}
.y29_c00467{bottom:243.333333pt;}
.y28_c00467{bottom:244.932000pt;}
.y27_c00467{bottom:246.598667pt;}
.y26_c00467{bottom:248.800000pt;}
.y25_c00467{bottom:261.932000pt;}
.y24_c00467{bottom:262.198667pt;}
.y23_c00467{bottom:264.800000pt;}
.y22_c00467{bottom:406.532000pt;}
.y21_c00467{bottom:424.465333pt;}
.y20_c00467{bottom:444.000000pt;}
.y1f_c00467{bottom:463.532000pt;}
.y1e_c00467{bottom:483.065333pt;}
.y1d_c00467{bottom:502.532000pt;}
.y1c_c00467{bottom:522.065333pt;}
.y1b_c00467{bottom:541.598667pt;}
.y1a_c00467{bottom:561.398667pt;}
.y18_c00467{bottom:577.398667pt;}
.y19_c00467{bottom:580.932000pt;}
.y17_c00467{bottom:600.465333pt;}
.y16_c00467{bottom:620.265333pt;}
.y15_c00467{bottom:639.532000pt;}
.y14_c00467{bottom:659.333333pt;}
.y13_c00467{bottom:678.265333pt;}
.y12_c00467{bottom:698.398667pt;}
.y11_c00467{bottom:718.198667pt;}
.y10_c00467{bottom:737.133333pt;}
.yf_c00467{bottom:756.000000pt;}
.ye_c00467{bottom:775.532000pt;}
.yd_c00467{bottom:795.000000pt;}
.yc_c00467{bottom:814.532000pt;}
.yb_c00467{bottom:828.933333pt;}
.ya_c00467{bottom:852.933333pt;}
.y9_c00467{bottom:872.133333pt;}
.y8_c00467{bottom:891.065333pt;}
.y7_c00467{bottom:910.600000pt;}
.y6_c00467{bottom:929.398667pt;}
.y1_c00467{bottom:970.065333pt;}
.y3_c00467{bottom:979.065333pt;}
.y4_c00467{bottom:980.000000pt;}
.y5_c00467{bottom:980.600000pt;}
.y2_c00467{bottom:987.865333pt;}
.h3_c00467{height:44.500000pt;}
.h2_c00467{height:53.750000pt;}
.h7_c00467{height:57.549479pt;}
.h5_c00467{height:57.578125pt;}
.h1_c00467{height:59.125000pt;}
.h4_c00467{height:62.812500pt;}
.h8_c00467{height:69.875000pt;}
.h6_c00467{height:73.244792pt;}
.h0_c00467{height:1044.000000pt;}
.w0_c00467{width:650.646400pt;}
.w1_c00467{width:650.666667pt;}
.x0_c00467{left:0.000000pt;}
.x11_c00467{left:45.102400pt;}
.xd_c00467{left:46.702400pt;}
.xb_c00467{left:47.635733pt;}
.xa_c00467{left:48.635733pt;}
.x8_c00467{left:49.902400pt;}
.x7_c00467{left:51.502400pt;}
.xe_c00467{left:64.969067pt;}
.xc_c00467{left:65.902400pt;}
.x9_c00467{left:68.167733pt;}
.x1_c00467{left:70.035733pt;}
.x6_c00467{left:72.302400pt;}
.x19_c00467{left:74.235733pt;}
.xf_c00467{left:75.167733pt;}
.x10_c00467{left:79.035733pt;}
.x1d_c00467{left:83.835733pt;}
.x2_c00467{left:95.035733pt;}
.x14_c00467{left:100.435733pt;}
.x1b_c00467{left:104.302400pt;}
.x1a_c00467{left:111.969067pt;}
.x17_c00467{left:164.769067pt;}
.x1e_c00467{left:229.435733pt;}
.x3_c00467{left:244.769067pt;}
.x1c_c00467{left:254.035733pt;}
.x15_c00467{left:266.569067pt;}
.x16_c00467{left:290.835733pt;}
.x4_c00467{left:323.169067pt;}
.x1f_c00467{left:327.969067pt;}
.x5_c00467{left:331.169067pt;}
.x18_c00467{left:345.569067pt;}
.x12_c00467{left:489.569067pt;}
.x13_c00467{left:510.035733pt;}
.x20_c00467{left:533.435733pt;}
.x21_c00467{left:550.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_52641fd3d718732e3f060501.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00468;src:url('chunks/assets/font_ea64be73fe25699f34ef4efc.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00468{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1_c00468{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c00468{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c00468{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00468{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00468{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00468{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00468{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00468{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c00468{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c00468{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3_c00468{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00468{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c00468{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m0_c00468{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.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;}
}
.ws0_c00468{word-spacing:0.000000px;}
.fc0_c00468{color:transparent;}
.fs0_c00468{font-size:72.000000px;}
.fs1_c00468{font-size:84.000000px;}
.y0_c00468{bottom:0.000000px;}
.y31_c00468{bottom:63.148500px;}
.y30_c00468{bottom:85.125000px;}
.y2f_c00468{bottom:107.098500px;}
.y2e_c00468{bottom:128.023500px;}
.y2d_c00468{bottom:149.625000px;}
.y2c_c00468{bottom:170.848500px;}
.y2b_c00468{bottom:192.073500px;}
.y2a_c00468{bottom:213.298500px;}
.y29_c00468{bottom:234.523500px;}
.y28_c00468{bottom:255.073500px;}
.y27_c00468{bottom:276.973500px;}
.y26_c00468{bottom:298.948500px;}
.y25_c00468{bottom:320.625000px;}
.y24_c00468{bottom:342.525000px;}
.y23_c00468{bottom:364.500000px;}
.y22_c00468{bottom:386.473500px;}
.y21_c00468{bottom:408.823500px;}
.y20_c00468{bottom:430.423500px;}
.y1f_c00468{bottom:451.948500px;}
.y1e_c00468{bottom:474.298500px;}
.y1d_c00468{bottom:496.573500px;}
.y1c_c00468{bottom:518.923500px;}
.y1b_c00468{bottom:541.273500px;}
.y1a_c00468{bottom:563.250000px;}
.y19_c00468{bottom:585.223500px;}
.y18_c00468{bottom:607.500000px;}
.y17_c00468{bottom:629.848500px;}
.y16_c00468{bottom:652.125000px;}
.y15_c00468{bottom:674.098500px;}
.y14_c00468{bottom:696.073500px;}
.y13_c00468{bottom:718.348500px;}
.y12_c00468{bottom:741.075000px;}
.y11_c00468{bottom:763.048500px;}
.y10_c00468{bottom:785.698500px;}
.yf_c00468{bottom:808.348500px;}
.ye_c00468{bottom:830.323500px;}
.yd_c00468{bottom:853.050000px;}
.yc_c00468{bottom:874.948500px;}
.yb_c00468{bottom:897.300000px;}
.ya_c00468{bottom:919.573500px;}
.y9_c00468{bottom:941.175000px;}
.y8_c00468{bottom:963.223500px;}
.y7_c00468{bottom:985.198500px;}
.y6_c00468{bottom:1011.375000px;}
.y5_c00468{bottom:1021.125000px;}
.y4_c00468{bottom:1026.525000px;}
.y3_c00468{bottom:1030.500000px;}
.y2_c00468{bottom:1034.775000px;}
.y1_c00468{bottom:1038.823500px;}
.h3_c00468{height:70.664062px;}
.h1_c00468{height:72.562500px;}
.h2_c00468{height:84.656250px;}
.h0_c00468{height:1174.500000px;}
.w0_c00468{width:731.977200px;}
.w1_c00468{width:732.000000px;}
.x0_c00468{left:0.000000px;}
.x6_c00468{left:66.565200px;}
.x1_c00468{left:68.365200px;}
.x8_c00468{left:69.490200px;}
.x9_c00468{left:70.915200px;}
.x7_c00468{left:101.140200px;}
.x2_c00468{left:138.565200px;}
.x3_c00468{left:331.915200px;}
.x4_c00468{left:437.365200px;}
.x5_c00468{left:682.165200px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls0_c00468{letter-spacing:0.000000pt;}
.ws0_c00468{word-spacing:0.000000pt;}
.fs0_c00468{font-size:64.000000pt;}
.fs1_c00468{font-size:74.666667pt;}
.y0_c00468{bottom:0.000000pt;}
.y31_c00468{bottom:56.132000pt;}
.y30_c00468{bottom:75.666667pt;}
.y2f_c00468{bottom:95.198667pt;}
.y2e_c00468{bottom:113.798667pt;}
.y2d_c00468{bottom:133.000000pt;}
.y2c_c00468{bottom:151.865333pt;}
.y2b_c00468{bottom:170.732000pt;}
.y2a_c00468{bottom:189.598667pt;}
.y29_c00468{bottom:208.465333pt;}
.y28_c00468{bottom:226.732000pt;}
.y27_c00468{bottom:246.198667pt;}
.y26_c00468{bottom:265.732000pt;}
.y25_c00468{bottom:285.000000pt;}
.y24_c00468{bottom:304.466667pt;}
.y23_c00468{bottom:324.000000pt;}
.y22_c00468{bottom:343.532000pt;}
.y21_c00468{bottom:363.398667pt;}
.y20_c00468{bottom:382.598667pt;}
.y1f_c00468{bottom:401.732000pt;}
.y1e_c00468{bottom:421.598667pt;}
.y1d_c00468{bottom:441.398667pt;}
.y1c_c00468{bottom:461.265333pt;}
.y1b_c00468{bottom:481.132000pt;}
.y1a_c00468{bottom:500.666667pt;}
.y19_c00468{bottom:520.198667pt;}
.y18_c00468{bottom:540.000000pt;}
.y17_c00468{bottom:559.865333pt;}
.y16_c00468{bottom:579.666667pt;}
.y15_c00468{bottom:599.198667pt;}
.y14_c00468{bottom:618.732000pt;}
.y13_c00468{bottom:638.532000pt;}
.y12_c00468{bottom:658.733333pt;}
.y11_c00468{bottom:678.265333pt;}
.y10_c00468{bottom:698.398667pt;}
.yf_c00468{bottom:718.532000pt;}
.ye_c00468{bottom:738.065333pt;}
.yd_c00468{bottom:758.266667pt;}
.yc_c00468{bottom:777.732000pt;}
.yb_c00468{bottom:797.600000pt;}
.ya_c00468{bottom:817.398667pt;}
.y9_c00468{bottom:836.600000pt;}
.y8_c00468{bottom:856.198667pt;}
.y7_c00468{bottom:875.732000pt;}
.y6_c00468{bottom:899.000000pt;}
.y5_c00468{bottom:907.666667pt;}
.y4_c00468{bottom:912.466667pt;}
.y3_c00468{bottom:916.000000pt;}
.y2_c00468{bottom:919.800000pt;}
.y1_c00468{bottom:923.398667pt;}
.h3_c00468{height:62.812500pt;}
.h1_c00468{height:64.500000pt;}
.h2_c00468{height:75.250000pt;}
.h0_c00468{height:1044.000000pt;}
.w0_c00468{width:650.646400pt;}
.w1_c00468{width:650.666667pt;}
.x0_c00468{left:0.000000pt;}
.x6_c00468{left:59.169067pt;}
.x1_c00468{left:60.769067pt;}
.x8_c00468{left:61.769067pt;}
.x9_c00468{left:63.035733pt;}
.x7_c00468{left:89.902400pt;}
.x2_c00468{left:123.169067pt;}
.x3_c00468{left:295.035733pt;}
.x4_c00468{left:388.769067pt;}
.x5_c00468{left:606.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_345dec9b7d9a9787f9a7502a.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00469;src:url('chunks/assets/font_8fa00e939326ef80605306c4.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00469;src:url('chunks/assets/font_00986183e37be197f91f6dc5.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19_c00469{transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);}
.m18_c00469{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00469{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m13_c00469{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m11_c00469{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c00469{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4_c00469{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00469{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00469{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf_c00469{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c00469{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c00469{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00469{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00469{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00469{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m14_c00469{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00469{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c00469{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00469{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00469{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c00469{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00469{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c00469{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00469{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma_c00469{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1_c00469{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls0_c00469{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00469{word-spacing:0.000000px;}
.fc0_c00469{color:transparent;}
.fs1_c00469{font-size:60.000000px;}
.fs4_c00469{font-size:66.000000px;}
.fs2_c00469{font-size:72.000000px;}
.fs0_c00469{font-size:78.000000px;}
.fs3_c00469{font-size:84.000000px;}
.y0_c00469{bottom:0.000000px;}
.y36_c00469{bottom:83.323500px;}
.y35_c00469{bottom:86.173500px;}
.y34_c00469{bottom:106.723500px;}
.y33_c00469{bottom:128.323500px;}
.y32_c00469{bottom:149.625000px;}
.y31_c00469{bottom:171.898500px;}
.y30_c00469{bottom:193.500000px;}
.y2f_c00469{bottom:216.898500px;}
.y2e_c00469{bottom:238.125000px;}
.y2d_c00469{bottom:260.098500px;}
.y2c_c00469{bottom:282.073500px;}
.y2b_c00469{bottom:304.348500px;}
.y2a_c00469{bottom:326.323500px;}
.y29_c00469{bottom:348.673500px;}
.y28_c00469{bottom:350.848500px;}
.y27_c00469{bottom:370.275000px;}
.y26_c00469{bottom:394.048500px;}
.y25_c00469{bottom:414.223500px;}
.y24_c00469{bottom:437.548500px;}
.y23_c00469{bottom:459.148500px;}
.y22_c00469{bottom:480.823500px;}
.y21_c00469{bottom:482.250000px;}
.y20_c00469{bottom:503.098500px;}
.y1f_c00469{bottom:549.148500px;}
.y1e_c00469{bottom:566.848500px;}
.y1b_c00469{bottom:618.973500px;}
.y1c_c00469{bottom:619.423500px;}
.y1d_c00469{bottom:619.723500px;}
.y1a_c00469{bottom:744.973500px;}
.y19_c00469{bottom:768.750000px;}
.y18_c00469{bottom:791.098500px;}
.y17_c00469{bottom:812.698500px;}
.y16_c00469{bottom:834.675000px;}
.y15_c00469{bottom:856.573500px;}
.y14_c00469{bottom:873.900000px;}
.y13_c00469{bottom:899.098500px;}
.y12_c00469{bottom:921.375000px;}
.y10_c00469{bottom:936.900000px;}
.y11_c00469{bottom:943.723500px;}
.ye_c00469{bottom:964.948500px;}
.yf_c00469{bottom:965.323500px;}
.ya_c00469{bottom:979.425000px;}
.yb_c00469{bottom:981.900000px;}
.yc_c00469{bottom:982.275000px;}
.yd_c00469{bottom:987.000000px;}
.y8_c00469{bottom:1007.775000px;}
.y9_c00469{bottom:1008.525000px;}
.y7_c00469{bottom:1029.073500px;}
.y4_c00469{bottom:1045.275000px;}
.y5_c00469{bottom:1050.300000px;}
.y6_c00469{bottom:1051.723500px;}
.y1_c00469{bottom:1095.973500px;}
.y3_c00469{bottom:1105.800000px;}
.y2_c00469{bottom:1111.875000px;}
.h6_c00469{height:58.857422px;}
.h2_c00469{height:58.886719px;}
.h5_c00469{height:64.775391px;}
.h3_c00469{height:70.664062px;}
.h1_c00469{height:78.609375px;}
.h4_c00469{height:82.400391px;}
.h0_c00469{height:1174.500000px;}
.w0_c00469{width:731.977200px;}
.w1_c00469{width:732.000000px;}
.x0_c00469{left:0.000000px;}
.x1a_c00469{left:50.365200px;}
.x14_c00469{left:52.915200px;}
.x10_c00469{left:54.715200px;}
.xe_c00469{left:56.515200px;}
.xc_c00469{left:57.565200px;}
.x8_c00469{left:58.690200px;}
.x4_c00469{left:60.490200px;}
.x11_c00469{left:64.090200px;}
.x17_c00469{left:78.115200px;}
.x1_c00469{left:80.965200px;}
.x19_c00469{left:82.090200px;}
.x1b_c00469{left:83.140200px;}
.x18_c00469{left:85.313700px;}
.xf_c00469{left:87.790200px;}
.x2_c00469{left:108.340200px;}
.xd_c00469{left:114.115200px;}
.x9_c00469{left:172.090200px;}
.xa_c00469{left:188.965200px;}
.x12_c00469{left:191.888700px;}
.xb_c00469{left:196.540200px;}
.x13_c00469{left:217.765200px;}
.x3_c00469{left:282.565200px;}
.x5_c00469{left:379.090200px;}
.x6_c00469{left:395.590200px;}
.x15_c00469{left:499.690200px;}
.x16_c00469{left:519.790200px;}
.x1e_c00469{left:566.290200px;}
.x7_c00469{left:653.365200px;}
.x1c_c00469{left:667.090200px;}
.x1d_c00469{left:674.590200px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls0_c00469{letter-spacing:0.000000pt;}
.ws0_c00469{word-spacing:0.000000pt;}
.fs1_c00469{font-size:53.333333pt;}
.fs4_c00469{font-size:58.666667pt;}
.fs2_c00469{font-size:64.000000pt;}
.fs0_c00469{font-size:69.333333pt;}
.fs3_c00469{font-size:74.666667pt;}
.y0_c00469{bottom:0.000000pt;}
.y36_c00469{bottom:74.065333pt;}
.y35_c00469{bottom:76.598667pt;}
.y34_c00469{bottom:94.865333pt;}
.y33_c00469{bottom:114.065333pt;}
.y32_c00469{bottom:133.000000pt;}
.y31_c00469{bottom:152.798667pt;}
.y30_c00469{bottom:172.000000pt;}
.y2f_c00469{bottom:192.798667pt;}
.y2e_c00469{bottom:211.666667pt;}
.y2d_c00469{bottom:231.198667pt;}
.y2c_c00469{bottom:250.732000pt;}
.y2b_c00469{bottom:270.532000pt;}
.y2a_c00469{bottom:290.065333pt;}
.y29_c00469{bottom:309.932000pt;}
.y28_c00469{bottom:311.865333pt;}
.y27_c00469{bottom:329.133333pt;}
.y26_c00469{bottom:350.265333pt;}
.y25_c00469{bottom:368.198667pt;}
.y24_c00469{bottom:388.932000pt;}
.y23_c00469{bottom:408.132000pt;}
.y22_c00469{bottom:427.398667pt;}
.y21_c00469{bottom:428.666667pt;}
.y20_c00469{bottom:447.198667pt;}
.y1f_c00469{bottom:488.132000pt;}
.y1e_c00469{bottom:503.865333pt;}
.y1b_c00469{bottom:550.198667pt;}
.y1c_c00469{bottom:550.598667pt;}
.y1d_c00469{bottom:550.865333pt;}
.y1a_c00469{bottom:662.198667pt;}
.y19_c00469{bottom:683.333333pt;}
.y18_c00469{bottom:703.198667pt;}
.y17_c00469{bottom:722.398667pt;}
.y16_c00469{bottom:741.933333pt;}
.y15_c00469{bottom:761.398667pt;}
.y14_c00469{bottom:776.800000pt;}
.y13_c00469{bottom:799.198667pt;}
.y12_c00469{bottom:819.000000pt;}
.y10_c00469{bottom:832.800000pt;}
.y11_c00469{bottom:838.865333pt;}
.ye_c00469{bottom:857.732000pt;}
.yf_c00469{bottom:858.065333pt;}
.ya_c00469{bottom:870.600000pt;}
.yb_c00469{bottom:872.800000pt;}
.yc_c00469{bottom:873.133333pt;}
.yd_c00469{bottom:877.333333pt;}
.y8_c00469{bottom:895.800000pt;}
.y9_c00469{bottom:896.466667pt;}
.y7_c00469{bottom:914.732000pt;}
.y4_c00469{bottom:929.133333pt;}
.y5_c00469{bottom:933.600000pt;}
.y6_c00469{bottom:934.865333pt;}
.y1_c00469{bottom:974.198667pt;}
.y3_c00469{bottom:982.933333pt;}
.y2_c00469{bottom:988.333333pt;}
.h6_c00469{height:52.317708pt;}
.h2_c00469{height:52.343750pt;}
.h5_c00469{height:57.578125pt;}
.h3_c00469{height:62.812500pt;}
.h1_c00469{height:69.875000pt;}
.h4_c00469{height:73.244792pt;}
.h0_c00469{height:1044.000000pt;}
.w0_c00469{width:650.646400pt;}
.w1_c00469{width:650.666667pt;}
.x0_c00469{left:0.000000pt;}
.x1a_c00469{left:44.769067pt;}
.x14_c00469{left:47.035733pt;}
.x10_c00469{left:48.635733pt;}
.xe_c00469{left:50.235733pt;}
.xc_c00469{left:51.169067pt;}
.x8_c00469{left:52.169067pt;}
.x4_c00469{left:53.769067pt;}
.x11_c00469{left:56.969067pt;}
.x17_c00469{left:69.435733pt;}
.x1_c00469{left:71.969067pt;}
.x19_c00469{left:72.969067pt;}
.x1b_c00469{left:73.902400pt;}
.x18_c00469{left:75.834400pt;}
.xf_c00469{left:78.035733pt;}
.x2_c00469{left:96.302400pt;}
.xd_c00469{left:101.435733pt;}
.x9_c00469{left:152.969067pt;}
.xa_c00469{left:167.969067pt;}
.x12_c00469{left:170.567733pt;}
.xb_c00469{left:174.702400pt;}
.x13_c00469{left:193.569067pt;}
.x3_c00469{left:251.169067pt;}
.x5_c00469{left:336.969067pt;}
.x6_c00469{left:351.635733pt;}
.x15_c00469{left:444.169067pt;}
.x16_c00469{left:462.035733pt;}
.x1e_c00469{left:503.369067pt;}
.x7_c00469{left:580.769067pt;}
.x1c_c00469{left:592.969067pt;}
.x1d_c00469{left:599.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60c72507e05a49f58a5085a8.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00470;src:url('chunks/assets/font_d0bde3f6bb3b2cbb8b937311.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00470{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2_c00470{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m12_c00470{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00470{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00470{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00470{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c00470{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m13_c00470{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c00470{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00470{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00470{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00470{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00470{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00470{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00470{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00470{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00470{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00470{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c00470{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11_c00470{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,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;}
}
.ws0_c00470{word-spacing:0.000000px;}
.fc0_c00470{color:transparent;}
.fs0_c00470{font-size:60.000000px;}
.fs2_c00470{font-size:66.000000px;}
.fs1_c00470{font-size:72.000000px;}
.y0_c00470{bottom:0.000000px;}
.y35_c00470{bottom:75.073500px;}
.y34_c00470{bottom:97.348500px;}
.y33_c00470{bottom:118.948500px;}
.y32_c00470{bottom:140.923500px;}
.y31_c00470{bottom:155.323500px;}
.y2e_c00470{bottom:182.023500px;}
.y2f_c00470{bottom:188.773500px;}
.y30_c00470{bottom:189.523500px;}
.y2d_c00470{bottom:204.673500px;}
.y2c_c00470{bottom:222.973500px;}
.y2b_c00470{bottom:246.448500px;}
.y2a_c00470{bottom:268.423500px;}
.y29_c00470{bottom:289.650000px;}
.y28_c00470{bottom:311.548500px;}
.y27_c00470{bottom:333.525000px;}
.y26_c00470{bottom:355.875000px;}
.y25_c00470{bottom:377.848500px;}
.y24_c00470{bottom:397.650000px;}
.y23_c00470{bottom:421.348500px;}
.y22_c00470{bottom:443.323500px;}
.y21_c00470{bottom:465.298500px;}
.y20_c00470{bottom:487.948500px;}
.y1f_c00470{bottom:509.548500px;}
.y1e_c00470{bottom:531.898500px;}
.y1d_c00470{bottom:554.548500px;}
.y1c_c00470{bottom:576.523500px;}
.y1b_c00470{bottom:598.500000px;}
.y1a_c00470{bottom:621.523500px;}
.y19_c00470{bottom:643.125000px;}
.y18_c00470{bottom:665.473500px;}
.y17_c00470{bottom:687.750000px;}
.y16_c00470{bottom:709.723500px;}
.y15_c00470{bottom:732.075000px;}
.y14_c00470{bottom:757.648500px;}
.y13_c00470{bottom:776.698500px;}
.y12_c00470{bottom:799.348500px;}
.y11_c00470{bottom:821.698500px;}
.y10_c00470{bottom:843.973500px;}
.yf_c00470{bottom:866.323500px;}
.ye_c00470{bottom:887.925000px;}
.yd_c00470{bottom:910.275000px;}
.yc_c00470{bottom:931.198500px;}
.yb_c00470{bottom:957.823500px;}
.ya_c00470{bottom:976.500000px;}
.y9_c00470{bottom:998.098500px;}
.y8_c00470{bottom:1028.323500px;}
.y7_c00470{bottom:1038.750000px;}
.y6_c00470{bottom:1042.723500px;}
.y5_c00470{bottom:1047.073500px;}
.y4_c00470{bottom:1096.050000px;}
.y3_c00470{bottom:1102.500000px;}
.y2_c00470{bottom:1103.925000px;}
.y1_c00470{bottom:1105.723500px;}
.h2_c00470{height:58.886719px;}
.h1_c00470{height:60.468750px;}
.h4_c00470{height:64.775391px;}
.h3_c00470{height:70.664062px;}
.h0_c00470{height:1174.500000px;}
.w0_c00470{width:731.977200px;}
.w1_c00470{width:732.000000px;}
.x0_c00470{left:0.000000px;}
.xc_c00470{left:52.540200px;}
.xd_c00470{left:53.590200px;}
.xa_c00470{left:54.715200px;}
.x9_c00470{left:55.765200px;}
.x5_c00470{left:56.890200px;}
.xe_c00470{left:86.365200px;}
.xb_c00470{left:87.490200px;}
.x11_c00470{left:88.915200px;}
.x8_c00470{left:89.965200px;}
.x1_c00470{left:282.190200px;}
.x6_c00470{left:400.315200px;}
.x7_c00470{left:409.990200px;}
.x2_c00470{left:411.115200px;}
.x3_c00470{left:417.565200px;}
.xf_c00470{left:598.315200px;}
.x4_c00470{left:644.365200px;}
.x10_c00470{left:655.915200px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls0_c00470{letter-spacing:0.000000pt;}
.ws0_c00470{word-spacing:0.000000pt;}
.fs0_c00470{font-size:53.333333pt;}
.fs2_c00470{font-size:58.666667pt;}
.fs1_c00470{font-size:64.000000pt;}
.y0_c00470{bottom:0.000000pt;}
.y35_c00470{bottom:66.732000pt;}
.y34_c00470{bottom:86.532000pt;}
.y33_c00470{bottom:105.732000pt;}
.y32_c00470{bottom:125.265333pt;}
.y31_c00470{bottom:138.065333pt;}
.y2e_c00470{bottom:161.798667pt;}
.y2f_c00470{bottom:167.798667pt;}
.y30_c00470{bottom:168.465333pt;}
.y2d_c00470{bottom:181.932000pt;}
.y2c_c00470{bottom:198.198667pt;}
.y2b_c00470{bottom:219.065333pt;}
.y2a_c00470{bottom:238.598667pt;}
.y29_c00470{bottom:257.466667pt;}
.y28_c00470{bottom:276.932000pt;}
.y27_c00470{bottom:296.466667pt;}
.y26_c00470{bottom:316.333333pt;}
.y25_c00470{bottom:335.865333pt;}
.y24_c00470{bottom:353.466667pt;}
.y23_c00470{bottom:374.532000pt;}
.y22_c00470{bottom:394.065333pt;}
.y21_c00470{bottom:413.598667pt;}
.y20_c00470{bottom:433.732000pt;}
.y1f_c00470{bottom:452.932000pt;}
.y1e_c00470{bottom:472.798667pt;}
.y1d_c00470{bottom:492.932000pt;}
.y1c_c00470{bottom:512.465333pt;}
.y1b_c00470{bottom:532.000000pt;}
.y1a_c00470{bottom:552.465333pt;}
.y19_c00470{bottom:571.666667pt;}
.y18_c00470{bottom:591.532000pt;}
.y17_c00470{bottom:611.333333pt;}
.y16_c00470{bottom:630.865333pt;}
.y15_c00470{bottom:650.733333pt;}
.y14_c00470{bottom:673.465333pt;}
.y13_c00470{bottom:690.398667pt;}
.y12_c00470{bottom:710.532000pt;}
.y11_c00470{bottom:730.398667pt;}
.y10_c00470{bottom:750.198667pt;}
.yf_c00470{bottom:770.065333pt;}
.ye_c00470{bottom:789.266667pt;}
.yd_c00470{bottom:809.133333pt;}
.yc_c00470{bottom:827.732000pt;}
.yb_c00470{bottom:851.398667pt;}
.ya_c00470{bottom:868.000000pt;}
.y9_c00470{bottom:887.198667pt;}
.y8_c00470{bottom:914.065333pt;}
.y7_c00470{bottom:923.333333pt;}
.y6_c00470{bottom:926.865333pt;}
.y5_c00470{bottom:930.732000pt;}
.y4_c00470{bottom:974.266667pt;}
.y3_c00470{bottom:980.000000pt;}
.y2_c00470{bottom:981.266667pt;}
.y1_c00470{bottom:982.865333pt;}
.h2_c00470{height:52.343750pt;}
.h1_c00470{height:53.750000pt;}
.h4_c00470{height:57.578125pt;}
.h3_c00470{height:62.812500pt;}
.h0_c00470{height:1044.000000pt;}
.w0_c00470{width:650.646400pt;}
.w1_c00470{width:650.666667pt;}
.x0_c00470{left:0.000000pt;}
.xc_c00470{left:46.702400pt;}
.xd_c00470{left:47.635733pt;}
.xa_c00470{left:48.635733pt;}
.x9_c00470{left:49.569067pt;}
.x5_c00470{left:50.569067pt;}
.xe_c00470{left:76.769067pt;}
.xb_c00470{left:77.769067pt;}
.x11_c00470{left:79.035733pt;}
.x8_c00470{left:79.969067pt;}
.x1_c00470{left:250.835733pt;}
.x6_c00470{left:355.835733pt;}
.x7_c00470{left:364.435733pt;}
.x2_c00470{left:365.435733pt;}
.x3_c00470{left:371.169067pt;}
.xf_c00470{left:531.835733pt;}
.x4_c00470{left:572.769067pt;}
.x10_c00470{left:583.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b894e15982700eb0e3b27e14.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00471;src:url('chunks/assets/font_6b63dc954a0a0cfc15de4537.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00471{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m0_c00471{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m20_c00471{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5_c00471{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00471{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c00471{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00471{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10_c00471{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m19_c00471{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c00471{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00471{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00471{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00471{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m18_c00471{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00471{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00471{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c00471{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c00471{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00471{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00471{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00471{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c00471{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00471{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00471{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00471{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m17_c00471{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00471{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00471{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00471{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00471{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00471{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m14_c00471{transform:matrix(1.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.245000,0.000000,0.000000,0.250000,0,0);}
.m1_c00471{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00471{color:transparent;}
.fs1_c00471{font-size:60.000000px;}
.fs3_c00471{font-size:66.000000px;}
.fs2_c00471{font-size:72.000000px;}
.fs0_c00471{font-size:78.000000px;}
.fs4_c00471{font-size:84.000000px;}
.y0_c00471{bottom:0.000000px;}
.y3e_c00471{bottom:86.548500px;}
.y3d_c00471{bottom:87.673500px;}
.y3c_c00471{bottom:88.423500px;}
.y3b_c00471{bottom:93.823500px;}
.y3a_c00471{bottom:113.548500px;}
.y39_c00471{bottom:119.698500px;}
.y38_c00471{bottom:122.250000px;}
.y37_c00471{bottom:123.298500px;}
.y36_c00471{bottom:135.898500px;}
.y35_c00471{bottom:142.048500px;}
.y34_c00471{bottom:143.473500px;}
.y33_c00471{bottom:157.875000px;}
.y32_c00471{bottom:179.473500px;}
.y31_c00471{bottom:183.073500px;}
.y30_c00471{bottom:201.000000px;}
.y2f_c00471{bottom:206.848500px;}
.y2e_c00471{bottom:223.048500px;}
.y2d_c00471{bottom:245.323500px;}
.y2c_c00471{bottom:267.298500px;}
.y2b_c00471{bottom:289.198500px;}
.y2a_c00471{bottom:311.625000px;}
.y29_c00471{bottom:333.525000px;}
.y28_c00471{bottom:355.500000px;}
.y27_c00471{bottom:378.150000px;}
.y26_c00471{bottom:399.375000px;}
.y25_c00471{bottom:421.723500px;}
.y24_c00471{bottom:443.323500px;}
.y23_c00471{bottom:466.723500px;}
.y22_c00471{bottom:487.273500px;}
.y21_c00471{bottom:509.250000px;}
.y1f_c00471{bottom:510.598500px;}
.y20_c00471{bottom:510.673500px;}
.y1e_c00471{bottom:532.273500px;}
.y1d_c00471{bottom:552.750000px;}
.y1c_c00471{bottom:575.098500px;}
.y1b_c00471{bottom:597.448500px;}
.y1a_c00471{bottom:619.348500px;}
.y19_c00471{bottom:641.323500px;}
.y18_c00471{bottom:663.298500px;}
.y17_c00471{bottom:685.273500px;}
.y16_c00471{bottom:706.500000px;}
.y15_c00471{bottom:728.848500px;}
.y14_c00471{bottom:751.500000px;}
.y13_c00471{bottom:773.473500px;}
.y12_c00471{bottom:793.948500px;}
.y11_c00471{bottom:817.050000px;}
.y10_c00471{bottom:838.948500px;}
.yf_c00471{bottom:860.550000px;}
.ye_c00471{bottom:881.848500px;}
.yd_c00471{bottom:903.823500px;}
.yc_c00471{bottom:925.723500px;}
.yb_c00471{bottom:948.073500px;}
.ya_c00471{bottom:969.675000px;}
.y9_c00471{bottom:985.500000px;}
.y8_c00471{bottom:1012.125000px;}
.y7_c00471{bottom:1030.500000px;}
.y4_c00471{bottom:1048.875000px;}
.y5_c00471{bottom:1055.323500px;}
.y6_c00471{bottom:1055.698500px;}
.y1_c00471{bottom:1103.550000px;}
.y3_c00471{bottom:1111.500000px;}
.y2_c00471{bottom:1121.250000px;}
.h2_c00471{height:60.468750px;}
.h5_c00471{height:64.775391px;}
.h4_c00471{height:70.664062px;}
.h3_c00471{height:72.562500px;}
.h1_c00471{height:78.609375px;}
.h6_c00471{height:84.656250px;}
.h0_c00471{height:1174.500000px;}
.w0_c00471{width:731.977200px;}
.w1_c00471{width:732.000000px;}
.x0_c00471{left:0.000000px;}
.xf_c00471{left:56.515200px;}
.xd_c00471{left:57.565200px;}
.xb_c00471{left:58.990200px;}
.xa_c00471{left:60.490200px;}
.x9_c00471{left:61.540200px;}
.x4_c00471{left:64.090200px;}
.x10_c00471{left:78.790200px;}
.xc_c00471{left:80.590200px;}
.x1_c00471{left:84.938700px;}
.xe_c00471{left:89.290200px;}
.x8_c00471{left:92.890200px;}
.x7_c00471{left:94.315200px;}
.x11_c00471{left:100.765200px;}
.x2_c00471{left:111.940200px;}
.x16_c00471{left:114.490200px;}
.x12_c00471{left:121.315200px;}
.x17_c00471{left:133.165200px;}
.x13_c00471{left:139.690200px;}
.x14_c00471{left:142.540200px;}
.x15_c00471{left:152.290200px;}
.x18_c00471{left:208.090200px;}
.x5_c00471{left:266.740200px;}
.x3_c00471{left:285.790200px;}
.x6_c00471{left:516.565200px;}
.x19_c00471{left:547.165200px;}
.x1a_c00471{left:571.690200px;}
.x1b_c00471{left:603.715200px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls0_c00471{letter-spacing:0.000000pt;}
.ws0_c00471{word-spacing:0.000000pt;}
.fs1_c00471{font-size:53.333333pt;}
.fs3_c00471{font-size:58.666667pt;}
.fs2_c00471{font-size:64.000000pt;}
.fs0_c00471{font-size:69.333333pt;}
.fs4_c00471{font-size:74.666667pt;}
.y0_c00471{bottom:0.000000pt;}
.y3e_c00471{bottom:76.932000pt;}
.y3d_c00471{bottom:77.932000pt;}
.y3c_c00471{bottom:78.598667pt;}
.y3b_c00471{bottom:83.398667pt;}
.y3a_c00471{bottom:100.932000pt;}
.y39_c00471{bottom:106.398667pt;}
.y38_c00471{bottom:108.666667pt;}
.y37_c00471{bottom:109.598667pt;}
.y36_c00471{bottom:120.798667pt;}
.y35_c00471{bottom:126.265333pt;}
.y34_c00471{bottom:127.532000pt;}
.y33_c00471{bottom:140.333333pt;}
.y32_c00471{bottom:159.532000pt;}
.y31_c00471{bottom:162.732000pt;}
.y30_c00471{bottom:178.666667pt;}
.y2f_c00471{bottom:183.865333pt;}
.y2e_c00471{bottom:198.265333pt;}
.y2d_c00471{bottom:218.065333pt;}
.y2c_c00471{bottom:237.598667pt;}
.y2b_c00471{bottom:257.065333pt;}
.y2a_c00471{bottom:277.000000pt;}
.y29_c00471{bottom:296.466667pt;}
.y28_c00471{bottom:316.000000pt;}
.y27_c00471{bottom:336.133333pt;}
.y26_c00471{bottom:355.000000pt;}
.y25_c00471{bottom:374.865333pt;}
.y24_c00471{bottom:394.065333pt;}
.y23_c00471{bottom:414.865333pt;}
.y22_c00471{bottom:433.132000pt;}
.y21_c00471{bottom:452.666667pt;}
.y1f_c00471{bottom:453.865333pt;}
.y20_c00471{bottom:453.932000pt;}
.y1e_c00471{bottom:473.132000pt;}
.y1d_c00471{bottom:491.333333pt;}
.y1c_c00471{bottom:511.198667pt;}
.y1b_c00471{bottom:531.065333pt;}
.y1a_c00471{bottom:550.532000pt;}
.y19_c00471{bottom:570.065333pt;}
.y18_c00471{bottom:589.598667pt;}
.y17_c00471{bottom:609.132000pt;}
.y16_c00471{bottom:628.000000pt;}
.y15_c00471{bottom:647.865333pt;}
.y14_c00471{bottom:668.000000pt;}
.y13_c00471{bottom:687.532000pt;}
.y12_c00471{bottom:705.732000pt;}
.y11_c00471{bottom:726.266667pt;}
.y10_c00471{bottom:745.732000pt;}
.yf_c00471{bottom:764.933333pt;}
.ye_c00471{bottom:783.865333pt;}
.yd_c00471{bottom:803.398667pt;}
.yc_c00471{bottom:822.865333pt;}
.yb_c00471{bottom:842.732000pt;}
.ya_c00471{bottom:861.933333pt;}
.y9_c00471{bottom:876.000000pt;}
.y8_c00471{bottom:899.666667pt;}
.y7_c00471{bottom:916.000000pt;}
.y4_c00471{bottom:932.333333pt;}
.y5_c00471{bottom:938.065333pt;}
.y6_c00471{bottom:938.398667pt;}
.y1_c00471{bottom:980.933333pt;}
.y3_c00471{bottom:988.000000pt;}
.y2_c00471{bottom:996.666667pt;}
.h2_c00471{height:53.750000pt;}
.h5_c00471{height:57.578125pt;}
.h4_c00471{height:62.812500pt;}
.h3_c00471{height:64.500000pt;}
.h1_c00471{height:69.875000pt;}
.h6_c00471{height:75.250000pt;}
.h0_c00471{height:1044.000000pt;}
.w0_c00471{width:650.646400pt;}
.w1_c00471{width:650.666667pt;}
.x0_c00471{left:0.000000pt;}
.xf_c00471{left:50.235733pt;}
.xd_c00471{left:51.169067pt;}
.xb_c00471{left:52.435733pt;}
.xa_c00471{left:53.769067pt;}
.x9_c00471{left:54.702400pt;}
.x4_c00471{left:56.969067pt;}
.x10_c00471{left:70.035733pt;}
.xc_c00471{left:71.635733pt;}
.x1_c00471{left:75.501067pt;}
.xe_c00471{left:79.369067pt;}
.x8_c00471{left:82.569067pt;}
.x7_c00471{left:83.835733pt;}
.x11_c00471{left:89.569067pt;}
.x2_c00471{left:99.502400pt;}
.x16_c00471{left:101.769067pt;}
.x12_c00471{left:107.835733pt;}
.x17_c00471{left:118.369067pt;}
.x13_c00471{left:124.169067pt;}
.x14_c00471{left:126.702400pt;}
.x15_c00471{left:135.369067pt;}
.x18_c00471{left:184.969067pt;}
.x5_c00471{left:237.102400pt;}
.x3_c00471{left:254.035733pt;}
.x6_c00471{left:459.169067pt;}
.x19_c00471{left:486.369067pt;}
.x1a_c00471{left:508.169067pt;}
.x1b_c00471{left:536.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_82aa9320b3d3387a296a7bda.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00472;src:url('chunks/assets/font_c8f42436af8070abbb1a273a.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00472;src:url('chunks/assets/font_5376b4e368910fc6376f3730.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00472;src:url('chunks/assets/font_e070114caf1a5556eda44d23.woff2')format("woff");}.ff4_c00472{font-family:ff4_c00472;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00472{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7_c00472{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m24_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);}
.m12_c00472{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m15_c00472{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c00472{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc_c00472{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0_c00472{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00472{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00472{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00472{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m22_c00472{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c00472{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m23_c00472{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m16_c00472{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c00472{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00472{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00472{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00472{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00472{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00472{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m18_c00472{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00472{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00472{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m17_c00472{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m19_c00472{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00472{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00472{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m21_c00472{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mf_c00472{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m20_c00472{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00472{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00472{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00472{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.me_c00472{transform:matrix(1.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c00472{transform:matrix(1.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c00472{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00472{word-spacing:0.000000px;}
.fc0_c00472{color:transparent;}
.fs4_c00472{font-size:54.000000px;}
.fs0_c00472{font-size:66.000000px;}
.fs1_c00472{font-size:72.000000px;}
.fs2_c00472{font-size:78.000000px;}
.fs3_c00472{font-size:84.000000px;}
.y0_c00472{bottom:0.000000px;}
.y3d_c00472{bottom:50.923500px;}
.y3e_c00472{bottom:55.273500px;}
.y3c_c00472{bottom:73.573500px;}
.y3b_c00472{bottom:95.548500px;}
.y3a_c00472{bottom:112.125000px;}
.y39_c00472{bottom:131.173500px;}
.y38_c00472{bottom:159.673500px;}
.y34_c00472{bottom:175.125000px;}
.y35_c00472{bottom:178.723500px;}
.y36_c00472{bottom:182.323500px;}
.y37_c00472{bottom:185.250000px;}
.y30_c00472{bottom:198.148500px;}
.y31_c00472{bottom:202.500000px;}
.y32_c00472{bottom:204.000000px;}
.y33_c00472{bottom:206.473500px;}
.y2f_c00472{bottom:223.723500px;}
.y2e_c00472{bottom:245.023500px;}
.y2d_c00472{bottom:265.875000px;}
.y2a_c00472{bottom:285.298500px;}
.y2b_c00472{bottom:287.098500px;}
.y2c_c00472{bottom:288.900000px;}
.y27_c00472{bottom:306.900000px;}
.y28_c00472{bottom:308.323500px;}
.y29_c00472{bottom:310.875000px;}
.y26_c00472{bottom:332.400000px;}
.y25_c00472{bottom:353.698500px;}
.y22_c00472{bottom:375.673500px;}
.y23_c00472{bottom:377.473500px;}
.y24_c00472{bottom:377.848500px;}
.y21_c00472{bottom:426.375000px;}
.y1e_c00472{bottom:442.648500px;}
.y1f_c00472{bottom:443.698500px;}
.y20_c00472{bottom:444.448500px;}
.y1d_c00472{bottom:502.723500px;}
.y1c_c00472{bottom:525.375000px;}
.y1a_c00472{bottom:526.125000px;}
.y1b_c00472{bottom:526.500000px;}
.y19_c00472{bottom:668.323500px;}
.y18_c00472{bottom:687.000000px;}
.y17_c00472{bottom:690.598500px;}
.y16_c00472{bottom:712.573500px;}
.y15_c00472{bottom:736.723500px;}
.y14_c00472{bottom:757.273500px;}
.y13_c00472{bottom:779.550000px;}
.y12_c00472{bottom:805.125000px;}
.y11_c00472{bottom:824.625000px;}
.y10_c00472{bottom:846.525000px;}
.yf_c00472{bottom:851.175000px;}
.ye_c00472{bottom:851.250000px;}
.yd_c00472{bottom:869.250000px;}
.yc_c00472{bottom:873.900000px;}
.yb_c00472{bottom:895.875000px;}
.ya_c00472{bottom:913.500000px;}
.y9_c00472{bottom:935.848500px;}
.y8_c00472{bottom:957.073500px;}
.y7_c00472{bottom:964.573500px;}
.y6_c00472{bottom:981.525000px;}
.y5_c00472{bottom:1002.073500px;}
.y4_c00472{bottom:1024.348500px;}
.y3_c00472{bottom:1075.500000px;}
.y2_c00472{bottom:1080.900000px;}
.y1_c00472{bottom:1083.750000px;}
.h7_c00472{height:52.998047px;}
.h2_c00472{height:64.775391px;}
.h1_c00472{height:66.515625px;}
.h3_c00472{height:70.664062px;}
.h6_c00472{height:76.514648px;}
.h4_c00472{height:78.609375px;}
.h5_c00472{height:82.400391px;}
.h0_c00472{height:1174.500000px;}
.w0_c00472{width:731.977200px;}
.w1_c00472{width:732.000000px;}
.x0_c00472{left:0.000000px;}
.x9_c00472{left:52.915200px;}
.x4_c00472{left:53.965200px;}
.x1d_c00472{left:55.090200px;}
.x23_c00472{left:56.890200px;}
.x25_c00472{left:59.365200px;}
.x5_c00472{left:76.990200px;}
.xd_c00472{left:86.740200px;}
.xc_c00472{left:87.790200px;}
.x18_c00472{left:89.290200px;}
.x24_c00472{left:90.340200px;}
.x6_c00472{left:92.890200px;}
.xa_c00472{left:94.315200px;}
.x7_c00472{left:99.715200px;}
.x8_c00472{left:122.365200px;}
.xb_c00472{left:133.915200px;}
.x19_c00472{left:170.965200px;}
.x1b_c00472{left:196.165200px;}
.x1a_c00472{left:200.138700px;}
.x1c_c00472{left:224.965200px;}
.x1e_c00472{left:254.890200px;}
.x12_c00472{left:274.315200px;}
.x1_c00472{left:275.740200px;}
.x15_c00472{left:277.165200px;}
.x21_c00472{left:313.165200px;}
.x13_c00472{left:327.940200px;}
.x14_c00472{left:404.965200px;}
.x2_c00472{left:476.965200px;}
.x1f_c00472{left:520.165200px;}
.xf_c00472{left:535.690200px;}
.x20_c00472{left:553.315200px;}
.x22_c00472{left:575.590200px;}
.x10_c00472{left:601.540200px;}
.x16_c00472{left:608.740200px;}
.x17_c00472{left:625.315200px;}
.x3_c00472{left:640.765200px;}
.x26_c00472{left:653.365200px;}
.x11_c00472{left:660.940200px;}
.xe_c00472{left:677.140200px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls0_c00472{letter-spacing:0.000000pt;}
.ws0_c00472{word-spacing:0.000000pt;}
.fs4_c00472{font-size:48.000000pt;}
.fs0_c00472{font-size:58.666667pt;}
.fs1_c00472{font-size:64.000000pt;}
.fs2_c00472{font-size:69.333333pt;}
.fs3_c00472{font-size:74.666667pt;}
.y0_c00472{bottom:0.000000pt;}
.y3d_c00472{bottom:45.265333pt;}
.y3e_c00472{bottom:49.132000pt;}
.y3c_c00472{bottom:65.398667pt;}
.y3b_c00472{bottom:84.932000pt;}
.y3a_c00472{bottom:99.666667pt;}
.y39_c00472{bottom:116.598667pt;}
.y38_c00472{bottom:141.932000pt;}
.y34_c00472{bottom:155.666667pt;}
.y35_c00472{bottom:158.865333pt;}
.y36_c00472{bottom:162.065333pt;}
.y37_c00472{bottom:164.666667pt;}
.y30_c00472{bottom:176.132000pt;}
.y31_c00472{bottom:180.000000pt;}
.y32_c00472{bottom:181.333333pt;}
.y33_c00472{bottom:183.532000pt;}
.y2f_c00472{bottom:198.865333pt;}
.y2e_c00472{bottom:217.798667pt;}
.y2d_c00472{bottom:236.333333pt;}
.y2a_c00472{bottom:253.598667pt;}
.y2b_c00472{bottom:255.198667pt;}
.y2c_c00472{bottom:256.800000pt;}
.y27_c00472{bottom:272.800000pt;}
.y28_c00472{bottom:274.065333pt;}
.y29_c00472{bottom:276.333333pt;}
.y26_c00472{bottom:295.466667pt;}
.y25_c00472{bottom:314.398667pt;}
.y22_c00472{bottom:333.932000pt;}
.y23_c00472{bottom:335.532000pt;}
.y24_c00472{bottom:335.865333pt;}
.y21_c00472{bottom:379.000000pt;}
.y1e_c00472{bottom:393.465333pt;}
.y1f_c00472{bottom:394.398667pt;}
.y20_c00472{bottom:395.065333pt;}
.y1d_c00472{bottom:446.865333pt;}
.y1c_c00472{bottom:467.000000pt;}
.y1a_c00472{bottom:467.666667pt;}
.y1b_c00472{bottom:468.000000pt;}
.y19_c00472{bottom:594.065333pt;}
.y18_c00472{bottom:610.666667pt;}
.y17_c00472{bottom:613.865333pt;}
.y16_c00472{bottom:633.398667pt;}
.y15_c00472{bottom:654.865333pt;}
.y14_c00472{bottom:673.132000pt;}
.y13_c00472{bottom:692.933333pt;}
.y12_c00472{bottom:715.666667pt;}
.y11_c00472{bottom:733.000000pt;}
.y10_c00472{bottom:752.466667pt;}
.yf_c00472{bottom:756.600000pt;}
.ye_c00472{bottom:756.666667pt;}
.yd_c00472{bottom:772.666667pt;}
.yc_c00472{bottom:776.800000pt;}
.yb_c00472{bottom:796.333333pt;}
.ya_c00472{bottom:812.000000pt;}
.y9_c00472{bottom:831.865333pt;}
.y8_c00472{bottom:850.732000pt;}
.y7_c00472{bottom:857.398667pt;}
.y6_c00472{bottom:872.466667pt;}
.y5_c00472{bottom:890.732000pt;}
.y4_c00472{bottom:910.532000pt;}
.y3_c00472{bottom:956.000000pt;}
.y2_c00472{bottom:960.800000pt;}
.y1_c00472{bottom:963.333333pt;}
.h7_c00472{height:47.109375pt;}
.h2_c00472{height:57.578125pt;}
.h1_c00472{height:59.125000pt;}
.h3_c00472{height:62.812500pt;}
.h6_c00472{height:68.013021pt;}
.h4_c00472{height:69.875000pt;}
.h5_c00472{height:73.244792pt;}
.h0_c00472{height:1044.000000pt;}
.w0_c00472{width:650.646400pt;}
.w1_c00472{width:650.666667pt;}
.x0_c00472{left:0.000000pt;}
.x9_c00472{left:47.035733pt;}
.x4_c00472{left:47.969067pt;}
.x1d_c00472{left:48.969067pt;}
.x23_c00472{left:50.569067pt;}
.x25_c00472{left:52.769067pt;}
.x5_c00472{left:68.435733pt;}
.xd_c00472{left:77.102400pt;}
.xc_c00472{left:78.035733pt;}
.x18_c00472{left:79.369067pt;}
.x24_c00472{left:80.302400pt;}
.x6_c00472{left:82.569067pt;}
.xa_c00472{left:83.835733pt;}
.x7_c00472{left:88.635733pt;}
.x8_c00472{left:108.769067pt;}
.xb_c00472{left:119.035733pt;}
.x19_c00472{left:151.969067pt;}
.x1b_c00472{left:174.369067pt;}
.x1a_c00472{left:177.901067pt;}
.x1c_c00472{left:199.969067pt;}
.x1e_c00472{left:226.569067pt;}
.x12_c00472{left:243.835733pt;}
.x1_c00472{left:245.102400pt;}
.x15_c00472{left:246.369067pt;}
.x21_c00472{left:278.369067pt;}
.x13_c00472{left:291.502400pt;}
.x14_c00472{left:359.969067pt;}
.x2_c00472{left:423.969067pt;}
.x1f_c00472{left:462.369067pt;}
.xf_c00472{left:476.169067pt;}
.x20_c00472{left:491.835733pt;}
.x22_c00472{left:511.635733pt;}
.x10_c00472{left:534.702400pt;}
.x16_c00472{left:541.102400pt;}
.x17_c00472{left:555.835733pt;}
.x3_c00472{left:569.569067pt;}
.x26_c00472{left:580.769067pt;}
.x11_c00472{left:587.502400pt;}
.xe_c00472{left:601.902400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00473 {
    display:none;
  }
  .loading-indicator_c00473.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00473 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00473 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00473" -> "#page-container .classname_c00473")
 */
.pf_c00473 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00473 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00473 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00473 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00473 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00473 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00473 {overflow:visible;}
  }
}
.c_c00473 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00473 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00473:after { /* webkit #35443 */
  content: '';
}
.t_c00473:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00473 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00473 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00473 { /* info for Javascript */
  display:none;
}
.l_c00473 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00473 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00473 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00473:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00473 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00473.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00473 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00473{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00473;src:url('chunks/assets/font_080c65d4745aacfd745b16f9.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00473;src:url('chunks/assets/font_550f00183a886d522c8baf75.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00473;src:url('chunks/assets/font_ddf6bd5ae499b5108298c07d.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m20_c00473{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00473{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m18_c00473{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00473{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m11_c00473{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m17_c00473{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c00473{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00473{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m15_c00473{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m13_c00473{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10_c00473{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m22_c00473{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c00473{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00473{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00473{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c00473{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf_c00473{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00473{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00473{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00473{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m19_c00473{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00473{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00473{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00473{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00473{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00473{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00473{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3_c00473{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00473{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c00473{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00473{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00473{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00473{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m12_c00473{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1_c00473{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls0_c00473{letter-spacing:0.000000px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00473{word-spacing:0.000000px;}
.fc0_c00473{color:transparent;}
.fs1_c00473{font-size:60.000000px;}
.fs3_c00473{font-size:66.000000px;}
.fs2_c00473{font-size:72.000000px;}
.fs0_c00473{font-size:78.000000px;}
.fs4_c00473{font-size:84.000000px;}
.y0_c00473{bottom:0.000000px;}
.y3f_c00473{bottom:61.723500px;}
.y3e_c00473{bottom:65.323500px;}
.y3d_c00473{bottom:71.098500px;}
.y3c_c00473{bottom:71.473500px;}
.y3b_c00473{bottom:82.948500px;}
.y3a_c00473{bottom:85.125000px;}
.y39_c00473{bottom:86.250000px;}
.y38_c00473{bottom:89.848500px;}
.y37_c00473{bottom:105.000000px;}
.y36_c00473{bottom:105.298500px;}
.y35_c00473{bottom:105.673500px;}
.y34_c00473{bottom:109.273500px;}
.y33_c00473{bottom:129.073500px;}
.y32_c00473{bottom:148.875000px;}
.y31_c00473{bottom:151.048500px;}
.y30_c00473{bottom:153.523500px;}
.y2f_c00473{bottom:153.898500px;}
.y2e_c00473{bottom:155.323500px;}
.y2d_c00473{bottom:171.148500px;}
.y2c_c00473{bottom:173.323500px;}
.y2b_c00473{bottom:193.500000px;}
.y2a_c00473{bottom:195.598500px;}
.y29_c00473{bottom:241.723500px;}
.y28_c00473{bottom:257.173500px;}
.y27_c00473{bottom:260.098500px;}
.y26_c00473{bottom:324.900000px;}
.y25_c00473{bottom:344.025000px;}
.y24_c00473{bottom:345.823500px;}
.y23_c00473{bottom:502.723500px;}
.y22_c00473{bottom:522.148500px;}
.y20_c00473{bottom:522.223500px;}
.y21_c00473{bottom:522.523500px;}
.y1f_c00473{bottom:523.198500px;}
.y1e_c00473{bottom:524.323500px;}
.y1d_c00473{bottom:525.375000px;}
.y1c_c00473{bottom:545.923500px;}
.y1b_c00473{bottom:569.023500px;}
.y1a_c00473{bottom:590.548500px;}
.y19_c00473{bottom:590.923500px;}
.y18_c00473{bottom:612.148500px;}
.y17_c00473{bottom:612.898500px;}
.y16_c00473{bottom:634.875000px;}
.y15_c00473{bottom:657.148500px;}
.y14_c00473{bottom:678.448500px;}
.y13_c00473{bottom:700.723500px;}
.y12_c00473{bottom:722.700000px;}
.y11_c00473{bottom:745.048500px;}
.y10_c00473{bottom:767.325000px;}
.yf_c00473{bottom:789.300000px;}
.ye_c00473{bottom:811.275000px;}
.yd_c00473{bottom:832.500000px;}
.yc_c00473{bottom:854.473500px;}
.yb_c00473{bottom:876.000000px;}
.ya_c00473{bottom:897.675000px;}
.y9_c00473{bottom:919.948500px;}
.y8_c00473{bottom:941.250000px;}
.y7_c00473{bottom:963.150000px;}
.y6_c00473{bottom:984.448500px;}
.y5_c00473{bottom:1005.675000px;}
.y4_c00473{bottom:1026.900000px;}
.y1_c00473{bottom:1076.250000px;}
.y3_c00473{bottom:1085.250000px;}
.y2_c00473{bottom:1090.800000px;}
.h2_c00473{height:58.886719px;}
.h5_c00473{height:64.775391px;}
.h6_c00473{height:66.515625px;}
.h3_c00473{height:70.664062px;}
.h8_c00473{height:72.562500px;}
.h4_c00473{height:76.552734px;}
.h1_c00473{height:78.609375px;}
.h7_c00473{height:82.400391px;}
.h0_c00473{height:1174.500000px;}
.w0_c00473{width:731.977200px;}
.w1_c00473{width:732.000000px;}
.x0_c00473{left:0.000000px;}
.x14_c00473{left:63.715200px;}
.xb_c00473{left:65.140200px;}
.xa_c00473{left:66.190200px;}
.x9_c00473{left:67.990200px;}
.x8_c00473{left:69.115200px;}
.x6_c00473{left:70.165200px;}
.x7_c00473{left:71.290200px;}
.x5_c00473{left:74.140200px;}
.x4_c00473{left:75.938700px;}
.xe_c00473{left:81.340200px;}
.x16_c00473{left:85.313700px;}
.x19_c00473{left:94.690200px;}
.x1_c00473{left:97.165200px;}
.x1c_c00473{left:103.990200px;}
.x26_c00473{left:110.890200px;}
.x27_c00473{left:116.965200px;}
.x2_c00473{left:123.790200px;}
.x28_c00473{left:127.390200px;}
.x1d_c00473{left:190.090200px;}
.x1e_c00473{left:206.965200px;}
.xf_c00473{left:223.540200px;}
.xc_c00473{left:242.965200px;}
.xd_c00473{left:274.990200px;}
.x23_c00473{left:300.940200px;}
.x3_c00473{left:302.365200px;}
.x18_c00473{left:337.315200px;}
.x24_c00473{left:338.365200px;}
.x10_c00473{left:436.990200px;}
.x29_c00473{left:452.890200px;}
.x20_c00473{left:476.290200px;}
.x25_c00473{left:479.890200px;}
.x1a_c00473{left:492.790200px;}
.x1f_c00473{left:502.540200px;}
.x21_c00473{left:505.390200px;}
.x1b_c00473{left:514.090200px;}
.x11_c00473{left:519.490200px;}
.x22_c00473{left:534.940200px;}
.x15_c00473{left:543.190200px;}
.x12_c00473{left:592.540200px;}
.x13_c00473{left:600.490200px;}
.x17_c00473{left:612.340200px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls0_c00473{letter-spacing:0.000000pt;}
.ws0_c00473{word-spacing:0.000000pt;}
.fs1_c00473{font-size:53.333333pt;}
.fs3_c00473{font-size:58.666667pt;}
.fs2_c00473{font-size:64.000000pt;}
.fs0_c00473{font-size:69.333333pt;}
.fs4_c00473{font-size:74.666667pt;}
.y0_c00473{bottom:0.000000pt;}
.y3f_c00473{bottom:54.865333pt;}
.y3e_c00473{bottom:58.065333pt;}
.y3d_c00473{bottom:63.198667pt;}
.y3c_c00473{bottom:63.532000pt;}
.y3b_c00473{bottom:73.732000pt;}
.y3a_c00473{bottom:75.666667pt;}
.y39_c00473{bottom:76.666667pt;}
.y38_c00473{bottom:79.865333pt;}
.y37_c00473{bottom:93.333333pt;}
.y36_c00473{bottom:93.598667pt;}
.y35_c00473{bottom:93.932000pt;}
.y34_c00473{bottom:97.132000pt;}
.y33_c00473{bottom:114.732000pt;}
.y32_c00473{bottom:132.333333pt;}
.y31_c00473{bottom:134.265333pt;}
.y30_c00473{bottom:136.465333pt;}
.y2f_c00473{bottom:136.798667pt;}
.y2e_c00473{bottom:138.065333pt;}
.y2d_c00473{bottom:152.132000pt;}
.y2c_c00473{bottom:154.065333pt;}
.y2b_c00473{bottom:172.000000pt;}
.y2a_c00473{bottom:173.865333pt;}
.y29_c00473{bottom:214.865333pt;}
.y28_c00473{bottom:228.598667pt;}
.y27_c00473{bottom:231.198667pt;}
.y26_c00473{bottom:288.800000pt;}
.y25_c00473{bottom:305.800000pt;}
.y24_c00473{bottom:307.398667pt;}
.y23_c00473{bottom:446.865333pt;}
.y22_c00473{bottom:464.132000pt;}
.y20_c00473{bottom:464.198667pt;}
.y21_c00473{bottom:464.465333pt;}
.y1f_c00473{bottom:465.065333pt;}
.y1e_c00473{bottom:466.065333pt;}
.y1d_c00473{bottom:467.000000pt;}
.y1c_c00473{bottom:485.265333pt;}
.y1b_c00473{bottom:505.798667pt;}
.y1a_c00473{bottom:524.932000pt;}
.y19_c00473{bottom:525.265333pt;}
.y18_c00473{bottom:544.132000pt;}
.y17_c00473{bottom:544.798667pt;}
.y16_c00473{bottom:564.333333pt;}
.y15_c00473{bottom:584.132000pt;}
.y14_c00473{bottom:603.065333pt;}
.y13_c00473{bottom:622.865333pt;}
.y12_c00473{bottom:642.400000pt;}
.y11_c00473{bottom:662.265333pt;}
.y10_c00473{bottom:682.066667pt;}
.yf_c00473{bottom:701.600000pt;}
.ye_c00473{bottom:721.133333pt;}
.yd_c00473{bottom:740.000000pt;}
.yc_c00473{bottom:759.532000pt;}
.yb_c00473{bottom:778.666667pt;}
.ya_c00473{bottom:797.933333pt;}
.y9_c00473{bottom:817.732000pt;}
.y8_c00473{bottom:836.666667pt;}
.y7_c00473{bottom:856.133333pt;}
.y6_c00473{bottom:875.065333pt;}
.y5_c00473{bottom:893.933333pt;}
.y4_c00473{bottom:912.800000pt;}
.y1_c00473{bottom:956.666667pt;}
.y3_c00473{bottom:964.666667pt;}
.y2_c00473{bottom:969.600000pt;}
.h2_c00473{height:52.343750pt;}
.h5_c00473{height:57.578125pt;}
.h6_c00473{height:59.125000pt;}
.h3_c00473{height:62.812500pt;}
.h8_c00473{height:64.500000pt;}
.h4_c00473{height:68.046875pt;}
.h1_c00473{height:69.875000pt;}
.h7_c00473{height:73.244792pt;}
.h0_c00473{height:1044.000000pt;}
.w0_c00473{width:650.646400pt;}
.w1_c00473{width:650.666667pt;}
.x0_c00473{left:0.000000pt;}
.x14_c00473{left:56.635733pt;}
.xb_c00473{left:57.902400pt;}
.xa_c00473{left:58.835733pt;}
.x9_c00473{left:60.435733pt;}
.x8_c00473{left:61.435733pt;}
.x6_c00473{left:62.369067pt;}
.x7_c00473{left:63.369067pt;}
.x5_c00473{left:65.902400pt;}
.x4_c00473{left:67.501067pt;}
.xe_c00473{left:72.302400pt;}
.x16_c00473{left:75.834400pt;}
.x19_c00473{left:84.169067pt;}
.x1_c00473{left:86.369067pt;}
.x1c_c00473{left:92.435733pt;}
.x26_c00473{left:98.569067pt;}
.x27_c00473{left:103.969067pt;}
.x2_c00473{left:110.035733pt;}
.x28_c00473{left:113.235733pt;}
.x1d_c00473{left:168.969067pt;}
.x1e_c00473{left:183.969067pt;}
.xf_c00473{left:198.702400pt;}
.xc_c00473{left:215.969067pt;}
.xd_c00473{left:244.435733pt;}
.x23_c00473{left:267.502400pt;}
.x3_c00473{left:268.769067pt;}
.x18_c00473{left:299.835733pt;}
.x24_c00473{left:300.769067pt;}
.x10_c00473{left:388.435733pt;}
.x29_c00473{left:402.569067pt;}
.x20_c00473{left:423.369067pt;}
.x25_c00473{left:426.569067pt;}
.x1a_c00473{left:438.035733pt;}
.x1f_c00473{left:446.702400pt;}
.x21_c00473{left:449.235733pt;}
.x1b_c00473{left:456.969067pt;}
.x11_c00473{left:461.769067pt;}
.x22_c00473{left:475.502400pt;}
.x15_c00473{left:482.835733pt;}
.x12_c00473{left:526.702400pt;}
.x13_c00473{left:533.769067pt;}
.x17_c00473{left:544.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba10219198c13b843a37b2d0.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00474;src:url('chunks/assets/font_e3e29d63be086551b04be9ee.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00474{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.ma_c00474{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c00474{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m12_c00474{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00474{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00474{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00474{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00474{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00474{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00474{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00474{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md_c00474{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00474{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00474{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c00474{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00474{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c00474{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m10_c00474{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m8_c00474{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls0_c00474{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00474{color:transparent;}
.fs0_c00474{font-size:60.000000px;}
.fs1_c00474{font-size:72.000000px;}
.y0_c00474{bottom:0.000000px;}
.y36_c00474{bottom:62.848500px;}
.y35_c00474{bottom:84.448500px;}
.y34_c00474{bottom:105.298500px;}
.y33_c00474{bottom:127.273500px;}
.y32_c00474{bottom:148.875000px;}
.y31_c00474{bottom:170.098500px;}
.y30_c00474{bottom:192.073500px;}
.y2f_c00474{bottom:213.298500px;}
.y2e_c00474{bottom:234.148500px;}
.y2d_c00474{bottom:255.448500px;}
.y2c_c00474{bottom:276.673500px;}
.y2b_c00474{bottom:298.948500px;}
.y2a_c00474{bottom:320.625000px;}
.y29_c00474{bottom:342.900000px;}
.y28_c00474{bottom:365.250000px;}
.y27_c00474{bottom:387.150000px;}
.y26_c00474{bottom:409.125000px;}
.y25_c00474{bottom:431.473500px;}
.y24_c00474{bottom:453.375000px;}
.y21_c00474{bottom:474.673500px;}
.y22_c00474{bottom:475.348500px;}
.y23_c00474{bottom:475.723500px;}
.y20_c00474{bottom:497.698500px;}
.y1f_c00474{bottom:519.973500px;}
.y1e_c00474{bottom:542.323500px;}
.y1d_c00474{bottom:564.673500px;}
.y1c_c00474{bottom:586.948500px;}
.y1b_c00474{bottom:608.923500px;}
.y1a_c00474{bottom:631.273500px;}
.y19_c00474{bottom:653.548500px;}
.y18_c00474{bottom:675.898500px;}
.y17_c00474{bottom:697.875000px;}
.y16_c00474{bottom:720.898500px;}
.y15_c00474{bottom:742.500000px;}
.y14_c00474{bottom:765.148500px;}
.y13_c00474{bottom:787.125000px;}
.y12_c00474{bottom:809.473500px;}
.y11_c00474{bottom:831.448500px;}
.y10_c00474{bottom:854.098500px;}
.yf_c00474{bottom:876.375000px;}
.ye_c00474{bottom:893.698500px;}
.yd_c00474{bottom:896.925000px;}
.yc_c00474{bottom:900.525000px;}
.yb_c00474{bottom:913.875000px;}
.ya_c00474{bottom:915.675000px;}
.y9_c00474{bottom:922.500000px;}
.y8_c00474{bottom:943.348500px;}
.y7_c00474{bottom:964.948500px;}
.y6_c00474{bottom:987.300000px;}
.y5_c00474{bottom:1008.900000px;}
.y4_c00474{bottom:1031.625000px;}
.y37_c00474{bottom:1084.875000px;}
.y3_c00474{bottom:1092.750000px;}
.y2_c00474{bottom:1094.250000px;}
.y1_c00474{bottom:1095.300000px;}
.h2_c00474{height:58.886719px;}
.h1_c00474{height:60.468750px;}
.h3_c00474{height:70.664062px;}
.h4_c00474{height:72.562500px;}
.h0_c00474{height:1174.500000px;}
.w0_c00474{width:731.977200px;}
.w1_c00474{width:732.000000px;}
.x0_c00474{left:0.000000px;}
.xb_c00474{left:57.940200px;}
.x5_c00474{left:59.365200px;}
.x4_c00474{left:60.490200px;}
.x8_c00474{left:61.915200px;}
.xe_c00474{left:62.965200px;}
.xf_c00474{left:64.090200px;}
.x10_c00474{left:65.515200px;}
.x1_c00474{left:282.940200px;}
.xc_c00474{left:370.765200px;}
.xd_c00474{left:400.315200px;}
.x2_c00474{left:412.163700px;}
.x3_c00474{left:418.315200px;}
.x9_c00474{left:470.140200px;}
.xa_c00474{left:479.515200px;}
.x6_c00474{left:567.340200px;}
.x7_c00474{left:597.565200px;}
.x11_c00474{left:649.390200px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls0_c00474{letter-spacing:0.000000pt;}
.ws0_c00474{word-spacing:0.000000pt;}
.fs0_c00474{font-size:53.333333pt;}
.fs1_c00474{font-size:64.000000pt;}
.y0_c00474{bottom:0.000000pt;}
.y36_c00474{bottom:55.865333pt;}
.y35_c00474{bottom:75.065333pt;}
.y34_c00474{bottom:93.598667pt;}
.y33_c00474{bottom:113.132000pt;}
.y32_c00474{bottom:132.333333pt;}
.y31_c00474{bottom:151.198667pt;}
.y30_c00474{bottom:170.732000pt;}
.y2f_c00474{bottom:189.598667pt;}
.y2e_c00474{bottom:208.132000pt;}
.y2d_c00474{bottom:227.065333pt;}
.y2c_c00474{bottom:245.932000pt;}
.y2b_c00474{bottom:265.732000pt;}
.y2a_c00474{bottom:285.000000pt;}
.y29_c00474{bottom:304.800000pt;}
.y28_c00474{bottom:324.666667pt;}
.y27_c00474{bottom:344.133333pt;}
.y26_c00474{bottom:363.666667pt;}
.y25_c00474{bottom:383.532000pt;}
.y24_c00474{bottom:403.000000pt;}
.y21_c00474{bottom:421.932000pt;}
.y22_c00474{bottom:422.532000pt;}
.y23_c00474{bottom:422.865333pt;}
.y20_c00474{bottom:442.398667pt;}
.y1f_c00474{bottom:462.198667pt;}
.y1e_c00474{bottom:482.065333pt;}
.y1d_c00474{bottom:501.932000pt;}
.y1c_c00474{bottom:521.732000pt;}
.y1b_c00474{bottom:541.265333pt;}
.y1a_c00474{bottom:561.132000pt;}
.y19_c00474{bottom:580.932000pt;}
.y18_c00474{bottom:600.798667pt;}
.y17_c00474{bottom:620.333333pt;}
.y16_c00474{bottom:640.798667pt;}
.y15_c00474{bottom:660.000000pt;}
.y14_c00474{bottom:680.132000pt;}
.y13_c00474{bottom:699.666667pt;}
.y12_c00474{bottom:719.532000pt;}
.y11_c00474{bottom:739.065333pt;}
.y10_c00474{bottom:759.198667pt;}
.yf_c00474{bottom:779.000000pt;}
.ye_c00474{bottom:794.398667pt;}
.yd_c00474{bottom:797.266667pt;}
.yc_c00474{bottom:800.466667pt;}
.yb_c00474{bottom:812.333333pt;}
.ya_c00474{bottom:813.933333pt;}
.y9_c00474{bottom:820.000000pt;}
.y8_c00474{bottom:838.532000pt;}
.y7_c00474{bottom:857.732000pt;}
.y6_c00474{bottom:877.600000pt;}
.y5_c00474{bottom:896.800000pt;}
.y4_c00474{bottom:917.000000pt;}
.y37_c00474{bottom:964.333333pt;}
.y3_c00474{bottom:971.333333pt;}
.y2_c00474{bottom:972.666667pt;}
.y1_c00474{bottom:973.600000pt;}
.h2_c00474{height:52.343750pt;}
.h1_c00474{height:53.750000pt;}
.h3_c00474{height:62.812500pt;}
.h4_c00474{height:64.500000pt;}
.h0_c00474{height:1044.000000pt;}
.w0_c00474{width:650.646400pt;}
.w1_c00474{width:650.666667pt;}
.x0_c00474{left:0.000000pt;}
.xb_c00474{left:51.502400pt;}
.x5_c00474{left:52.769067pt;}
.x4_c00474{left:53.769067pt;}
.x8_c00474{left:55.035733pt;}
.xe_c00474{left:55.969067pt;}
.xf_c00474{left:56.969067pt;}
.x10_c00474{left:58.235733pt;}
.x1_c00474{left:251.502400pt;}
.xc_c00474{left:329.569067pt;}
.xd_c00474{left:355.835733pt;}
.x2_c00474{left:366.367733pt;}
.x3_c00474{left:371.835733pt;}
.x9_c00474{left:417.902400pt;}
.xa_c00474{left:426.235733pt;}
.x6_c00474{left:504.302400pt;}
.x7_c00474{left:531.169067pt;}
.x11_c00474{left:577.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f669512c8afeccaf0b58bd8c.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00475;src:url('chunks/assets/font_bee15211b988f078db008148.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00475;src:url('chunks/assets/font_c1a679046f4111d7726ac7ba.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_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);}
.md_c00475{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00475{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mb_c00475{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m15_c00475{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me_c00475{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00475{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00475{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7_c00475{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c00475{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00475{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c00475{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00475{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00475{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00475{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00475{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00475{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00475{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c00475{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00475{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00475{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00475{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00475{word-spacing:0.000000px;}
.fc0_c00475{color:transparent;}
.fs0_c00475{font-size:60.000000px;}
.fs1_c00475{font-size:72.000000px;}
.fs4_c00475{font-size:78.000000px;}
.fs2_c00475{font-size:84.000000px;}
.fs3_c00475{font-size:90.000000px;}
.y0_c00475{bottom:0.000000px;}
.y30_c00475{bottom:54.898500px;}
.y2f_c00475{bottom:75.375000px;}
.y2e_c00475{bottom:78.298500px;}
.y2d_c00475{bottom:98.848500px;}
.y2c_c00475{bottom:120.750000px;}
.y2b_c00475{bottom:142.723500px;}
.y2a_c00475{bottom:164.698500px;}
.y29_c00475{bottom:186.673500px;}
.y28_c00475{bottom:208.948500px;}
.y27_c00475{bottom:230.625000px;}
.y26_c00475{bottom:231.000000px;}
.y25_c00475{bottom:253.275000px;}
.y24_c00475{bottom:275.548500px;}
.y23_c00475{bottom:297.223500px;}
.y22_c00475{bottom:319.798500px;}
.y21_c00475{bottom:341.775000px;}
.y20_c00475{bottom:363.750000px;}
.y1f_c00475{bottom:385.723500px;}
.y1e_c00475{bottom:386.098500px;}
.y1d_c00475{bottom:386.473500px;}
.y1c_c00475{bottom:408.750000px;}
.y1b_c00475{bottom:430.723500px;}
.y1a_c00475{bottom:453.073500px;}
.y19_c00475{bottom:474.973500px;}
.y18_c00475{bottom:497.323500px;}
.y17_c00475{bottom:519.298500px;}
.y16_c00475{bottom:541.273500px;}
.y15_c00475{bottom:588.073500px;}
.y14_c00475{bottom:606.073500px;}
.y13_c00475{bottom:650.023500px;}
.y11_c00475{bottom:671.923500px;}
.y12_c00475{bottom:674.473500px;}
.yf_c00475{bottom:827.775000px;}
.y10_c00475{bottom:829.650000px;}
.ye_c00475{bottom:851.250000px;}
.yb_c00475{bottom:872.473500px;}
.yc_c00475{bottom:873.900000px;}
.yd_c00475{bottom:874.573500px;}
.ya_c00475{bottom:893.025000px;}
.y9_c00475{bottom:917.098500px;}
.y8_c00475{bottom:939.073500px;}
.y7_c00475{bottom:960.973500px;}
.y6_c00475{bottom:976.198500px;}
.y5_c00475{bottom:1003.500000px;}
.y4_c00475{bottom:1023.675000px;}
.y1_c00475{bottom:1072.650000px;}
.y3_c00475{bottom:1082.698500px;}
.y2_c00475{bottom:1088.323500px;}
.h1_c00475{height:58.886719px;}
.h2_c00475{height:70.664062px;}
.h5_c00475{height:78.609375px;}
.h3_c00475{height:82.400391px;}
.h4_c00475{height:88.286133px;}
.h0_c00475{height:1174.500000px;}
.w0_c00475{width:731.977200px;}
.w1_c00475{width:732.000000px;}
.x0_c00475{left:0.000000px;}
.xe_c00475{left:71.590200px;}
.xa_c00475{left:73.765200px;}
.x6_c00475{left:75.938700px;}
.x16_c00475{left:76.990200px;}
.x4_c00475{left:78.490200px;}
.xd_c00475{left:93.563700px;}
.x1_c00475{left:99.340200px;}
.xf_c00475{left:103.990200px;}
.x12_c00475{left:105.115200px;}
.x7_c00475{left:106.165200px;}
.x14_c00475{left:107.290200px;}
.x5_c00475{left:108.340200px;}
.x2_c00475{left:126.715200px;}
.xc_c00475{left:178.165200px;}
.x3_c00475{left:303.790200px;}
.xb_c00475{left:340.540200px;}
.x8_c00475{left:431.288700px;}
.x15_c00475{left:480.940200px;}
.x10_c00475{left:550.090200px;}
.x9_c00475{left:574.540200px;}
.x11_c00475{left:577.090200px;}
.x13_c00475{left:690.790200px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls0_c00475{letter-spacing:0.000000pt;}
.ws0_c00475{word-spacing:0.000000pt;}
.fs0_c00475{font-size:53.333333pt;}
.fs1_c00475{font-size:64.000000pt;}
.fs4_c00475{font-size:69.333333pt;}
.fs2_c00475{font-size:74.666667pt;}
.fs3_c00475{font-size:80.000000pt;}
.y0_c00475{bottom:0.000000pt;}
.y30_c00475{bottom:48.798667pt;}
.y2f_c00475{bottom:67.000000pt;}
.y2e_c00475{bottom:69.598667pt;}
.y2d_c00475{bottom:87.865333pt;}
.y2c_c00475{bottom:107.333333pt;}
.y2b_c00475{bottom:126.865333pt;}
.y2a_c00475{bottom:146.398667pt;}
.y29_c00475{bottom:165.932000pt;}
.y28_c00475{bottom:185.732000pt;}
.y27_c00475{bottom:205.000000pt;}
.y26_c00475{bottom:205.333333pt;}
.y25_c00475{bottom:225.133333pt;}
.y24_c00475{bottom:244.932000pt;}
.y23_c00475{bottom:264.198667pt;}
.y22_c00475{bottom:284.265333pt;}
.y21_c00475{bottom:303.800000pt;}
.y20_c00475{bottom:323.333333pt;}
.y1f_c00475{bottom:342.865333pt;}
.y1e_c00475{bottom:343.198667pt;}
.y1d_c00475{bottom:343.532000pt;}
.y1c_c00475{bottom:363.333333pt;}
.y1b_c00475{bottom:382.865333pt;}
.y1a_c00475{bottom:402.732000pt;}
.y19_c00475{bottom:422.198667pt;}
.y18_c00475{bottom:442.065333pt;}
.y17_c00475{bottom:461.598667pt;}
.y16_c00475{bottom:481.132000pt;}
.y15_c00475{bottom:522.732000pt;}
.y14_c00475{bottom:538.732000pt;}
.y13_c00475{bottom:577.798667pt;}
.y11_c00475{bottom:597.265333pt;}
.y12_c00475{bottom:599.532000pt;}
.yf_c00475{bottom:735.800000pt;}
.y10_c00475{bottom:737.466667pt;}
.ye_c00475{bottom:756.666667pt;}
.yb_c00475{bottom:775.532000pt;}
.yc_c00475{bottom:776.800000pt;}
.yd_c00475{bottom:777.398667pt;}
.ya_c00475{bottom:793.800000pt;}
.y9_c00475{bottom:815.198667pt;}
.y8_c00475{bottom:834.732000pt;}
.y7_c00475{bottom:854.198667pt;}
.y6_c00475{bottom:867.732000pt;}
.y5_c00475{bottom:892.000000pt;}
.y4_c00475{bottom:909.933333pt;}
.y1_c00475{bottom:953.466667pt;}
.y3_c00475{bottom:962.398667pt;}
.y2_c00475{bottom:967.398667pt;}
.h1_c00475{height:52.343750pt;}
.h2_c00475{height:62.812500pt;}
.h5_c00475{height:69.875000pt;}
.h3_c00475{height:73.244792pt;}
.h4_c00475{height:78.476562pt;}
.h0_c00475{height:1044.000000pt;}
.w0_c00475{width:650.646400pt;}
.w1_c00475{width:650.666667pt;}
.x0_c00475{left:0.000000pt;}
.xe_c00475{left:63.635733pt;}
.xa_c00475{left:65.569067pt;}
.x6_c00475{left:67.501067pt;}
.x16_c00475{left:68.435733pt;}
.x4_c00475{left:69.769067pt;}
.xd_c00475{left:83.167733pt;}
.x1_c00475{left:88.302400pt;}
.xf_c00475{left:92.435733pt;}
.x12_c00475{left:93.435733pt;}
.x7_c00475{left:94.369067pt;}
.x14_c00475{left:95.369067pt;}
.x5_c00475{left:96.302400pt;}
.x2_c00475{left:112.635733pt;}
.xc_c00475{left:158.369067pt;}
.x3_c00475{left:270.035733pt;}
.xb_c00475{left:302.702400pt;}
.x8_c00475{left:383.367733pt;}
.x15_c00475{left:427.502400pt;}
.x10_c00475{left:488.969067pt;}
.x9_c00475{left:510.702400pt;}
.x11_c00475{left:512.969067pt;}
.x13_c00475{left:614.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ecbd4c12eeaf6644e951bc9b.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00476;src:url('chunks/assets/font_4b4051279244c0ad77c2a24e.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00476;src:url('chunks/assets/font_07a58c848e728d45c6cc0919.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00476{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m13_c00476{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,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);}
.m2_c00476{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c00476{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00476{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c00476{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00476{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c00476{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00476{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c00476{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00476{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00476{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00476{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00476{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00476{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00476{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00476{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00476{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1_c00476{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00476{word-spacing:0.000000px;}
.fc0_c00476{color:transparent;}
.fs3_c00476{font-size:60.000000px;}
.fs1_c00476{font-size:72.000000px;}
.fs2_c00476{font-size:78.000000px;}
.fs0_c00476{font-size:84.000000px;}
.y0_c00476{bottom:0.000000px;}
.y2d_c00476{bottom:47.323500px;}
.y2c_c00476{bottom:70.723500px;}
.y2b_c00476{bottom:92.323500px;}
.y2a_c00476{bottom:114.298500px;}
.y29_c00476{bottom:136.273500px;}
.y28_c00476{bottom:157.125000px;}
.y27_c00476{bottom:178.723500px;}
.y26_c00476{bottom:200.323500px;}
.y25_c00476{bottom:221.548500px;}
.y24_c00476{bottom:242.098500px;}
.y23_c00476{bottom:263.323500px;}
.y22_c00476{bottom:285.298500px;}
.y21_c00476{bottom:307.275000px;}
.y20_c00476{bottom:329.250000px;}
.y1f_c00476{bottom:351.525000px;}
.y1e_c00476{bottom:396.525000px;}
.y1d_c00476{bottom:414.223500px;}
.y1c_c00476{bottom:463.875000px;}
.y1b_c00476{bottom:594.148500px;}
.y1a_c00476{bottom:615.448500px;}
.y19_c00476{bottom:616.875000px;}
.y18_c00476{bottom:617.173500px;}
.y17_c00476{bottom:617.250000px;}
.y16_c00476{bottom:638.473500px;}
.y15_c00476{bottom:661.125000px;}
.y14_c00476{bottom:683.098500px;}
.y13_c00476{bottom:706.500000px;}
.y12_c00476{bottom:728.098500px;}
.y11_c00476{bottom:749.700000px;}
.y10_c00476{bottom:772.723500px;}
.yf_c00476{bottom:797.175000px;}
.ye_c00476{bottom:815.925000px;}
.yd_c00476{bottom:838.650000px;}
.yc_c00476{bottom:861.300000px;}
.yb_c00476{bottom:882.900000px;}
.ya_c00476{bottom:908.473500px;}
.y9_c00476{bottom:931.500000px;}
.y8_c00476{bottom:949.500000px;}
.y7_c00476{bottom:972.150000px;}
.y6_c00476{bottom:993.000000px;}
.y5_c00476{bottom:1016.098500px;}
.y4_c00476{bottom:1038.375000px;}
.y3_c00476{bottom:1093.125000px;}
.y2_c00476{bottom:1097.098500px;}
.y1_c00476{bottom:1099.198500px;}
.h4_c00476{height:58.886719px;}
.h2_c00476{height:70.664062px;}
.h5_c00476{height:76.514648px;}
.h3_c00476{height:76.552734px;}
.h1_c00476{height:84.656250px;}
.h0_c00476{height:1174.500000px;}
.w0_c00476{width:731.977200px;}
.w1_c00476{width:732.000000px;}
.x0_c00476{left:0.000000px;}
.x8_c00476{left:69.790200px;}
.x4_c00476{left:71.965200px;}
.x5_c00476{left:73.390200px;}
.xc_c00476{left:76.313700px;}
.xf_c00476{left:78.115200px;}
.x10_c00476{left:79.165200px;}
.x11_c00476{left:80.590200px;}
.x12_c00476{left:82.090200px;}
.x13_c00476{left:83.515200px;}
.x14_c00476{left:85.688700px;}
.x15_c00476{left:88.165200px;}
.xd_c00476{left:94.315200px;}
.x7_c00476{left:105.115200px;}
.x6_c00476{left:106.540200px;}
.xe_c00476{left:111.565200px;}
.x9_c00476{left:152.290200px;}
.xa_c00476{left:162.340200px;}
.xb_c00476{left:219.565200px;}
.x1_c00476{left:321.790200px;}
.x2_c00476{left:493.915200px;}
.x16_c00476{left:629.290200px;}
.x3_c00476{left:657.340200px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls0_c00476{letter-spacing:0.000000pt;}
.ws0_c00476{word-spacing:0.000000pt;}
.fs3_c00476{font-size:53.333333pt;}
.fs1_c00476{font-size:64.000000pt;}
.fs2_c00476{font-size:69.333333pt;}
.fs0_c00476{font-size:74.666667pt;}
.y0_c00476{bottom:0.000000pt;}
.y2d_c00476{bottom:42.065333pt;}
.y2c_c00476{bottom:62.865333pt;}
.y2b_c00476{bottom:82.065333pt;}
.y2a_c00476{bottom:101.598667pt;}
.y29_c00476{bottom:121.132000pt;}
.y28_c00476{bottom:139.666667pt;}
.y27_c00476{bottom:158.865333pt;}
.y26_c00476{bottom:178.065333pt;}
.y25_c00476{bottom:196.932000pt;}
.y24_c00476{bottom:215.198667pt;}
.y23_c00476{bottom:234.065333pt;}
.y22_c00476{bottom:253.598667pt;}
.y21_c00476{bottom:273.133333pt;}
.y20_c00476{bottom:292.666667pt;}
.y1f_c00476{bottom:312.466667pt;}
.y1e_c00476{bottom:352.466667pt;}
.y1d_c00476{bottom:368.198667pt;}
.y1c_c00476{bottom:412.333333pt;}
.y1b_c00476{bottom:528.132000pt;}
.y1a_c00476{bottom:547.065333pt;}
.y19_c00476{bottom:548.333333pt;}
.y18_c00476{bottom:548.598667pt;}
.y17_c00476{bottom:548.666667pt;}
.y16_c00476{bottom:567.532000pt;}
.y15_c00476{bottom:587.666667pt;}
.y14_c00476{bottom:607.198667pt;}
.y13_c00476{bottom:628.000000pt;}
.y12_c00476{bottom:647.198667pt;}
.y11_c00476{bottom:666.400000pt;}
.y10_c00476{bottom:686.865333pt;}
.yf_c00476{bottom:708.600000pt;}
.ye_c00476{bottom:725.266667pt;}
.yd_c00476{bottom:745.466667pt;}
.yc_c00476{bottom:765.600000pt;}
.yb_c00476{bottom:784.800000pt;}
.ya_c00476{bottom:807.532000pt;}
.y9_c00476{bottom:828.000000pt;}
.y8_c00476{bottom:844.000000pt;}
.y7_c00476{bottom:864.133333pt;}
.y6_c00476{bottom:882.666667pt;}
.y5_c00476{bottom:903.198667pt;}
.y4_c00476{bottom:923.000000pt;}
.y3_c00476{bottom:971.666667pt;}
.y2_c00476{bottom:975.198667pt;}
.y1_c00476{bottom:977.065333pt;}
.h4_c00476{height:52.343750pt;}
.h2_c00476{height:62.812500pt;}
.h5_c00476{height:68.013021pt;}
.h3_c00476{height:68.046875pt;}
.h1_c00476{height:75.250000pt;}
.h0_c00476{height:1044.000000pt;}
.w0_c00476{width:650.646400pt;}
.w1_c00476{width:650.666667pt;}
.x0_c00476{left:0.000000pt;}
.x8_c00476{left:62.035733pt;}
.x4_c00476{left:63.969067pt;}
.x5_c00476{left:65.235733pt;}
.xc_c00476{left:67.834400pt;}
.xf_c00476{left:69.435733pt;}
.x10_c00476{left:70.369067pt;}
.x11_c00476{left:71.635733pt;}
.x12_c00476{left:72.969067pt;}
.x13_c00476{left:74.235733pt;}
.x14_c00476{left:76.167733pt;}
.x15_c00476{left:78.369067pt;}
.xd_c00476{left:83.835733pt;}
.x7_c00476{left:93.435733pt;}
.x6_c00476{left:94.702400pt;}
.xe_c00476{left:99.169067pt;}
.x9_c00476{left:135.369067pt;}
.xa_c00476{left:144.302400pt;}
.xb_c00476{left:195.169067pt;}
.x1_c00476{left:286.035733pt;}
.x2_c00476{left:439.035733pt;}
.x16_c00476{left:559.369067pt;}
.x3_c00476{left:584.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e7d640e25a24dcf7a5ac8e1.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00477;src:url('chunks/assets/font_1e2bc86372fee0236e959607.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00477;src:url('chunks/assets/font_1649584abbdc304c56659550.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00477;src:url('chunks/assets/font_644112de188fab35140ac341.woff2')format("woff");}.ff4_c00477{font-family:ff4_c00477;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c00477{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb_c00477{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m0_c00477{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m9_c00477{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf_c00477{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00477{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00477{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00477{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00477{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00477{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00477{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c00477{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00477{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00477{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00477{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00477{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c00477{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m20_c00477{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00477{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00477{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00477{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00477{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00477{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c00477{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m13_c00477{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m17_c00477{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m16_c00477{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00477{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00477{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m11_c00477{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m14_c00477{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.ma_c00477{transform:matrix(4.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.135000,0.000000,0.000000,0.250000,0,0);}
.m1_c00477{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
}
.ws0_c00477{word-spacing:0.000000px;}
.fc0_c00477{color:transparent;}
.fs1_c00477{font-size:60.000000px;}
.fs2_c00477{font-size:72.000000px;}
.fs0_c00477{font-size:78.000000px;}
.y0_c00477{bottom:0.000000px;}
.y35_c00477{bottom:68.250000px;}
.y34_c00477{bottom:90.148500px;}
.y33_c00477{bottom:111.750000px;}
.y32_c00477{bottom:133.723500px;}
.y31_c00477{bottom:155.398500px;}
.y30_c00477{bottom:183.073500px;}
.y2f_c00477{bottom:199.948500px;}
.y2e_c00477{bottom:222.298500px;}
.y2a_c00477{bottom:242.473500px;}
.y2b_c00477{bottom:242.773500px;}
.y2c_c00477{bottom:243.148500px;}
.y2d_c00477{bottom:243.523500px;}
.y29_c00477{bottom:245.323500px;}
.y28_c00477{bottom:266.548500px;}
.y27_c00477{bottom:288.525000px;}
.y26_c00477{bottom:310.500000px;}
.y25_c00477{bottom:334.275000px;}
.y24_c00477{bottom:354.375000px;}
.y23_c00477{bottom:376.723500px;}
.y22_c00477{bottom:399.073500px;}
.y21_c00477{bottom:422.098500px;}
.y20_c00477{bottom:443.323500px;}
.y1e_c00477{bottom:444.000000px;}
.y1f_c00477{bottom:444.073500px;}
.y1d_c00477{bottom:465.673500px;}
.y1b_c00477{bottom:465.973500px;}
.y1c_c00477{bottom:466.048500px;}
.y1a_c00477{bottom:487.948500px;}
.y19_c00477{bottom:509.923500px;}
.y18_c00477{bottom:531.898500px;}
.y17_c00477{bottom:553.500000px;}
.y15_c00477{bottom:553.875000px;}
.y16_c00477{bottom:554.173500px;}
.y14_c00477{bottom:576.523500px;}
.y13_c00477{bottom:598.125000px;}
.y12_c00477{bottom:619.348500px;}
.y11_c00477{bottom:642.750000px;}
.y10_c00477{bottom:665.473500px;}
.yf_c00477{bottom:711.598500px;}
.ye_c00477{bottom:772.050000px;}
.ya_c00477{bottom:901.948500px;}
.yb_c00477{bottom:904.500000px;}
.yc_c00477{bottom:906.300000px;}
.yd_c00477{bottom:907.050000px;}
.y9_c00477{bottom:928.948500px;}
.y8_c00477{bottom:951.300000px;}
.y7_c00477{bottom:973.275000px;}
.y6_c00477{bottom:994.500000px;}
.y5_c00477{bottom:1015.800000px;}
.y4_c00477{bottom:1037.025000px;}
.y1_c00477{bottom:1084.125000px;}
.y3_c00477{bottom:1094.250000px;}
.y2_c00477{bottom:1099.800000px;}
.h2_c00477{height:58.886719px;}
.h3_c00477{height:70.664062px;}
.h4_c00477{height:76.514648px;}
.h1_c00477{height:78.609375px;}
.h0_c00477{height:1174.500000px;}
.w0_c00477{width:731.977200px;}
.w1_c00477{width:732.000000px;}
.x0_c00477{left:0.000000px;}
.x24_c00477{left:51.790200px;}
.x23_c00477{left:52.915200px;}
.x1e_c00477{left:53.965200px;}
.x1d_c00477{left:55.390200px;}
.x1b_c00477{left:56.890200px;}
.x17_c00477{left:58.315200px;}
.x10_c00477{left:59.365200px;}
.xe_c00477{left:60.490200px;}
.x13_c00477{left:61.540200px;}
.x7_c00477{left:67.690200px;}
.x6_c00477{left:69.790200px;}
.x5_c00477{left:72.340200px;}
.x4_c00477{left:73.765200px;}
.x1c_c00477{left:76.688700px;}
.xf_c00477{left:79.540200px;}
.x14_c00477{left:80.590200px;}
.xc_c00477{left:91.090200px;}
.xd_c00477{left:93.563700px;}
.x1_c00477{left:95.740200px;}
.x8_c00477{left:102.565200px;}
.x2_c00477{left:123.490200px;}
.x15_c00477{left:125.965200px;}
.x16_c00477{left:167.365200px;}
.x18_c00477{left:202.990200px;}
.xb_c00477{left:229.990200px;}
.x19_c00477{left:258.115200px;}
.x3_c00477{left:297.715200px;}
.x9_c00477{left:350.290200px;}
.xa_c00477{left:378.340200px;}
.x1a_c00477{left:433.090200px;}
.x1f_c00477{left:502.165200px;}
.x11_c00477{left:537.115200px;}
.x20_c00477{left:543.565200px;}
.x12_c00477{left:571.690200px;}
.x21_c00477{left:638.290200px;}
.x22_c00477{left:644.740200px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ws0_c00477{word-spacing:0.000000pt;}
.fs1_c00477{font-size:53.333333pt;}
.fs2_c00477{font-size:64.000000pt;}
.fs0_c00477{font-size:69.333333pt;}
.y0_c00477{bottom:0.000000pt;}
.y35_c00477{bottom:60.666667pt;}
.y34_c00477{bottom:80.132000pt;}
.y33_c00477{bottom:99.333333pt;}
.y32_c00477{bottom:118.865333pt;}
.y31_c00477{bottom:138.132000pt;}
.y30_c00477{bottom:162.732000pt;}
.y2f_c00477{bottom:177.732000pt;}
.y2e_c00477{bottom:197.598667pt;}
.y2a_c00477{bottom:215.532000pt;}
.y2b_c00477{bottom:215.798667pt;}
.y2c_c00477{bottom:216.132000pt;}
.y2d_c00477{bottom:216.465333pt;}
.y29_c00477{bottom:218.065333pt;}
.y28_c00477{bottom:236.932000pt;}
.y27_c00477{bottom:256.466667pt;}
.y26_c00477{bottom:276.000000pt;}
.y25_c00477{bottom:297.133333pt;}
.y24_c00477{bottom:315.000000pt;}
.y23_c00477{bottom:334.865333pt;}
.y22_c00477{bottom:354.732000pt;}
.y21_c00477{bottom:375.198667pt;}
.y20_c00477{bottom:394.065333pt;}
.y1e_c00477{bottom:394.666667pt;}
.y1f_c00477{bottom:394.732000pt;}
.y1d_c00477{bottom:413.932000pt;}
.y1b_c00477{bottom:414.198667pt;}
.y1c_c00477{bottom:414.265333pt;}
.y1a_c00477{bottom:433.732000pt;}
.y19_c00477{bottom:453.265333pt;}
.y18_c00477{bottom:472.798667pt;}
.y17_c00477{bottom:492.000000pt;}
.y15_c00477{bottom:492.333333pt;}
.y16_c00477{bottom:492.598667pt;}
.y14_c00477{bottom:512.465333pt;}
.y13_c00477{bottom:531.666667pt;}
.y12_c00477{bottom:550.532000pt;}
.y11_c00477{bottom:571.333333pt;}
.y10_c00477{bottom:591.532000pt;}
.yf_c00477{bottom:632.532000pt;}
.ye_c00477{bottom:686.266667pt;}
.ya_c00477{bottom:801.732000pt;}
.yb_c00477{bottom:804.000000pt;}
.yc_c00477{bottom:805.600000pt;}
.yd_c00477{bottom:806.266667pt;}
.y9_c00477{bottom:825.732000pt;}
.y8_c00477{bottom:845.600000pt;}
.y7_c00477{bottom:865.133333pt;}
.y6_c00477{bottom:884.000000pt;}
.y5_c00477{bottom:902.933333pt;}
.y4_c00477{bottom:921.800000pt;}
.y1_c00477{bottom:963.666667pt;}
.y3_c00477{bottom:972.666667pt;}
.y2_c00477{bottom:977.600000pt;}
.h2_c00477{height:52.343750pt;}
.h3_c00477{height:62.812500pt;}
.h4_c00477{height:68.013021pt;}
.h1_c00477{height:69.875000pt;}
.h0_c00477{height:1044.000000pt;}
.w0_c00477{width:650.646400pt;}
.w1_c00477{width:650.666667pt;}
.x0_c00477{left:0.000000pt;}
.x24_c00477{left:46.035733pt;}
.x23_c00477{left:47.035733pt;}
.x1e_c00477{left:47.969067pt;}
.x1d_c00477{left:49.235733pt;}
.x1b_c00477{left:50.569067pt;}
.x17_c00477{left:51.835733pt;}
.x10_c00477{left:52.769067pt;}
.xe_c00477{left:53.769067pt;}
.x13_c00477{left:54.702400pt;}
.x7_c00477{left:60.169067pt;}
.x6_c00477{left:62.035733pt;}
.x5_c00477{left:64.302400pt;}
.x4_c00477{left:65.569067pt;}
.x1c_c00477{left:68.167733pt;}
.xf_c00477{left:70.702400pt;}
.x14_c00477{left:71.635733pt;}
.xc_c00477{left:80.969067pt;}
.xd_c00477{left:83.167733pt;}
.x1_c00477{left:85.102400pt;}
.x8_c00477{left:91.169067pt;}
.x2_c00477{left:109.769067pt;}
.x15_c00477{left:111.969067pt;}
.x16_c00477{left:148.769067pt;}
.x18_c00477{left:180.435733pt;}
.xb_c00477{left:204.435733pt;}
.x19_c00477{left:229.435733pt;}
.x3_c00477{left:264.635733pt;}
.x9_c00477{left:311.369067pt;}
.xa_c00477{left:336.302400pt;}
.x1a_c00477{left:384.969067pt;}
.x1f_c00477{left:446.369067pt;}
.x11_c00477{left:477.435733pt;}
.x20_c00477{left:483.169067pt;}
.x12_c00477{left:508.169067pt;}
.x21_c00477{left:567.369067pt;}
.x22_c00477{left:573.102400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4080adccbc693aea5d1c1623.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00478;src:url('chunks/assets/font_4da58015fe40db28938ab15b.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00478;src:url('chunks/assets/font_852c2e75cc613536d57d7110.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00478;src:url('chunks/assets/font_45fa5363703eebe6b0f4ba5d.woff2')format("woff");}.ff4_c00478{font-family:ff4_c00478;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00478{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.ma_c00478{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mb_c00478{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00478{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me_c00478{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00478{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c00478{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1_c00478{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00478{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c00478{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00478{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00478{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00478{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00478{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00478{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00478{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00478{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00478{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m3_c00478{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.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;}
}
.ws0_c00478{word-spacing:0.000000px;}
.fc0_c00478{color:transparent;}
.fs0_c00478{font-size:54.000000px;}
.fs1_c00478{font-size:66.000000px;}
.fs2_c00478{font-size:72.000000px;}
.fs4_c00478{font-size:78.000000px;}
.fs3_c00478{font-size:84.000000px;}
.y0_c00478{bottom:0.000000px;}
.y2c_c00478{bottom:61.348500px;}
.y2b_c00478{bottom:92.023500px;}
.y2a_c00478{bottom:113.625000px;}
.y29_c00478{bottom:129.750000px;}
.y28_c00478{bottom:156.000000px;}
.y27_c00478{bottom:177.673500px;}
.y26_c00478{bottom:198.898500px;}
.y25_c00478{bottom:219.823500px;}
.y24_c00478{bottom:240.673500px;}
.y23_c00478{bottom:260.473500px;}
.y22_c00478{bottom:283.500000px;}
.y21_c00478{bottom:304.723500px;}
.y20_c00478{bottom:327.448500px;}
.y1f_c00478{bottom:349.348500px;}
.y1e_c00478{bottom:371.323500px;}
.y1d_c00478{bottom:393.298500px;}
.y1c_c00478{bottom:414.898500px;}
.y1b_c00478{bottom:436.500000px;}
.y1a_c00478{bottom:458.473500px;}
.y19_c00478{bottom:480.823500px;}
.y18_c00478{bottom:502.723500px;}
.y17_c00478{bottom:525.375000px;}
.y16_c00478{bottom:547.723500px;}
.y15_c00478{bottom:570.073500px;}
.y14_c00478{bottom:592.348500px;}
.y13_c00478{bottom:613.948500px;}
.y12_c00478{bottom:662.923500px;}
.y11_c00478{bottom:706.125000px;}
.y10_c00478{bottom:720.523500px;}
.yf_c00478{bottom:778.500000px;}
.ye_c00478{bottom:779.550000px;}
.yd_c00478{bottom:780.300000px;}
.yc_c00478{bottom:781.050000px;}
.yb_c00478{bottom:927.525000px;}
.ya_c00478{bottom:955.198500px;}
.y9_c00478{bottom:969.300000px;}
.y8_c00478{bottom:991.948500px;}
.y7_c00478{bottom:1013.925000px;}
.y6_c00478{bottom:1035.900000px;}
.y5_c00478{bottom:1087.050000px;}
.y3_c00478{bottom:1096.348500px;}
.y2_c00478{bottom:1099.573500px;}
.y1_c00478{bottom:1100.323500px;}
.y4_c00478{bottom:1103.098500px;}
.h6_c00478{height:52.998047px;}
.h1_c00478{height:54.421875px;}
.h2_c00478{height:64.775391px;}
.h3_c00478{height:70.664062px;}
.h5_c00478{height:76.514648px;}
.h4_c00478{height:82.400391px;}
.h0_c00478{height:1174.500000px;}
.w0_c00478{width:731.977200px;}
.w1_c00478{width:732.000000px;}
.x0_c00478{left:0.000000px;}
.x14_c00478{left:65.515200px;}
.x13_c00478{left:66.565200px;}
.xf_c00478{left:68.740200px;}
.x9_c00478{left:70.540200px;}
.x8_c00478{left:71.590200px;}
.x7_c00478{left:72.715200px;}
.x6_c00478{left:73.765200px;}
.x10_c00478{left:85.990200px;}
.x15_c00478{left:99.340200px;}
.x12_c00478{left:101.515200px;}
.xa_c00478{left:105.490200px;}
.xb_c00478{left:289.390200px;}
.x1_c00478{left:297.340200px;}
.x2_c00478{left:323.590200px;}
.x11_c00478{left:343.765200px;}
.x3_c00478{left:357.490200px;}
.xc_c00478{left:366.115200px;}
.xd_c00478{left:394.538700px;}
.xe_c00478{left:453.940200px;}
.x4_c00478{left:494.965200px;}
.x5_c00478{left:659.140200px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls0_c00478{letter-spacing:0.000000pt;}
.ws0_c00478{word-spacing:0.000000pt;}
.fs0_c00478{font-size:48.000000pt;}
.fs1_c00478{font-size:58.666667pt;}
.fs2_c00478{font-size:64.000000pt;}
.fs4_c00478{font-size:69.333333pt;}
.fs3_c00478{font-size:74.666667pt;}
.y0_c00478{bottom:0.000000pt;}
.y2c_c00478{bottom:54.532000pt;}
.y2b_c00478{bottom:81.798667pt;}
.y2a_c00478{bottom:101.000000pt;}
.y29_c00478{bottom:115.333333pt;}
.y28_c00478{bottom:138.666667pt;}
.y27_c00478{bottom:157.932000pt;}
.y26_c00478{bottom:176.798667pt;}
.y25_c00478{bottom:195.398667pt;}
.y24_c00478{bottom:213.932000pt;}
.y23_c00478{bottom:231.532000pt;}
.y22_c00478{bottom:252.000000pt;}
.y21_c00478{bottom:270.865333pt;}
.y20_c00478{bottom:291.065333pt;}
.y1f_c00478{bottom:310.532000pt;}
.y1e_c00478{bottom:330.065333pt;}
.y1d_c00478{bottom:349.598667pt;}
.y1c_c00478{bottom:368.798667pt;}
.y1b_c00478{bottom:388.000000pt;}
.y1a_c00478{bottom:407.532000pt;}
.y19_c00478{bottom:427.398667pt;}
.y18_c00478{bottom:446.865333pt;}
.y17_c00478{bottom:467.000000pt;}
.y16_c00478{bottom:486.865333pt;}
.y15_c00478{bottom:506.732000pt;}
.y14_c00478{bottom:526.532000pt;}
.y13_c00478{bottom:545.732000pt;}
.y12_c00478{bottom:589.265333pt;}
.y11_c00478{bottom:627.666667pt;}
.y10_c00478{bottom:640.465333pt;}
.yf_c00478{bottom:692.000000pt;}
.ye_c00478{bottom:692.933333pt;}
.yd_c00478{bottom:693.600000pt;}
.yc_c00478{bottom:694.266667pt;}
.yb_c00478{bottom:824.466667pt;}
.ya_c00478{bottom:849.065333pt;}
.y9_c00478{bottom:861.600000pt;}
.y8_c00478{bottom:881.732000pt;}
.y7_c00478{bottom:901.266667pt;}
.y6_c00478{bottom:920.800000pt;}
.y5_c00478{bottom:966.266667pt;}
.y3_c00478{bottom:974.532000pt;}
.y2_c00478{bottom:977.398667pt;}
.y1_c00478{bottom:978.065333pt;}
.y4_c00478{bottom:980.532000pt;}
.h6_c00478{height:47.109375pt;}
.h1_c00478{height:48.375000pt;}
.h2_c00478{height:57.578125pt;}
.h3_c00478{height:62.812500pt;}
.h5_c00478{height:68.013021pt;}
.h4_c00478{height:73.244792pt;}
.h0_c00478{height:1044.000000pt;}
.w0_c00478{width:650.646400pt;}
.w1_c00478{width:650.666667pt;}
.x0_c00478{left:0.000000pt;}
.x14_c00478{left:58.235733pt;}
.x13_c00478{left:59.169067pt;}
.xf_c00478{left:61.102400pt;}
.x9_c00478{left:62.702400pt;}
.x8_c00478{left:63.635733pt;}
.x7_c00478{left:64.635733pt;}
.x6_c00478{left:65.569067pt;}
.x10_c00478{left:76.435733pt;}
.x15_c00478{left:88.302400pt;}
.x12_c00478{left:90.235733pt;}
.xa_c00478{left:93.769067pt;}
.xb_c00478{left:257.235733pt;}
.x1_c00478{left:264.302400pt;}
.x2_c00478{left:287.635733pt;}
.x11_c00478{left:305.569067pt;}
.x3_c00478{left:317.769067pt;}
.xc_c00478{left:325.435733pt;}
.xd_c00478{left:350.701067pt;}
.xe_c00478{left:403.502400pt;}
.x4_c00478{left:439.969067pt;}
.x5_c00478{left:585.902400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d40d0d8f32f7a0b15062fc77.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00479;src:url('chunks/assets/font_9d94165a21f90c0300c12643.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.402354;font-style: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.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1_c00479{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me_c00479{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00479{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00479{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00479{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00479{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00479{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00479{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00479{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00479{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00479{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00479{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00479{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m10_c00479{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00479{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf_c00479{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.v0_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:0.000000px;}
.fc0_c00479{color:transparent;}
.fs1_c00479{font-size:60.000000px;}
.fs2_c00479{font-size:66.000000px;}
.fs0_c00479{font-size:72.000000px;}
.y0_c00479{bottom:0.000000px;}
.y2c_c00479{bottom:56.323500px;}
.y2b_c00479{bottom:78.298500px;}
.y2a_c00479{bottom:99.148500px;}
.y29_c00479{bottom:107.398500px;}
.y28_c00479{bottom:108.148500px;}
.y27_c00479{bottom:122.250000px;}
.y26_c00479{bottom:142.798500px;}
.y25_c00479{bottom:169.048500px;}
.y24_c00479{bottom:187.723500px;}
.y23_c00479{bottom:210.375000px;}
.y22_c00479{bottom:232.348500px;}
.y21_c00479{bottom:254.323500px;}
.y20_c00479{bottom:276.673500px;}
.y1f_c00479{bottom:298.948500px;}
.y1e_c00479{bottom:320.548500px;}
.y1d_c00479{bottom:342.900000px;}
.y1c_c00479{bottom:364.875000px;}
.y1b_c00479{bottom:387.525000px;}
.y1a_c00479{bottom:409.798500px;}
.y19_c00479{bottom:432.523500px;}
.y18_c00479{bottom:454.125000px;}
.y17_c00479{bottom:476.473500px;}
.y16_c00479{bottom:498.375000px;}
.y15_c00479{bottom:520.348500px;}
.y14_c00479{bottom:542.323500px;}
.y13_c00479{bottom:564.673500px;}
.y12_c00479{bottom:585.898500px;}
.y11_c00479{bottom:609.298500px;}
.y10_c00479{bottom:631.648500px;}
.yf_c00479{bottom:653.923500px;}
.ye_c00479{bottom:675.898500px;}
.yd_c00479{bottom:698.250000px;}
.yc_c00479{bottom:719.473500px;}
.yb_c00479{bottom:742.125000px;}
.ya_c00479{bottom:764.473500px;}
.y9_c00479{bottom:786.750000px;}
.y8_c00479{bottom:808.723500px;}
.y7_c00479{bottom:830.323500px;}
.y6_c00479{bottom:852.300000px;}
.y5_c00479{bottom:871.723500px;}
.y4_c00479{bottom:895.875000px;}
.y3_c00479{bottom:951.973500px;}
.y1_c00479{bottom:1072.573500px;}
.y2_c00479{bottom:1081.948500px;}
.h2_c00479{height:61.670545px;}
.h3_c00479{height:64.775391px;}
.h1_c00479{height:70.664062px;}
.h0_c00479{height:1174.500000px;}
.w0_c00479{width:731.977200px;}
.w1_c00479{width:732.000000px;}
.x0_c00479{left:0.000000px;}
.xe_c00479{left:63.340200px;}
.xd_c00479{left:64.390200px;}
.xc_c00479{left:65.515200px;}
.xa_c00479{left:66.565200px;}
.x8_c00479{left:67.990200px;}
.x7_c00479{left:69.115200px;}
.x5_c00479{left:70.915200px;}
.xf_c00479{left:85.688700px;}
.xb_c00479{left:87.115200px;}
.x9_c00479{left:89.290200px;}
.x6_c00479{left:91.765200px;}
.x1_c00479{left:96.115200px;}
.x4_c00479{left:102.190200px;}
.x10_c00479{left:153.715200px;}
.x2_c00479{left:298.390200px;}
.x3_c00479{left:328.990200px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls0_c00479{letter-spacing:0.000000pt;}
.ws0_c00479{word-spacing:0.000000pt;}
.fs1_c00479{font-size:53.333333pt;}
.fs2_c00479{font-size:58.666667pt;}
.fs0_c00479{font-size:64.000000pt;}
.y0_c00479{bottom:0.000000pt;}
.y2c_c00479{bottom:50.065333pt;}
.y2b_c00479{bottom:69.598667pt;}
.y2a_c00479{bottom:88.132000pt;}
.y29_c00479{bottom:95.465333pt;}
.y28_c00479{bottom:96.132000pt;}
.y27_c00479{bottom:108.666667pt;}
.y26_c00479{bottom:126.932000pt;}
.y25_c00479{bottom:150.265333pt;}
.y24_c00479{bottom:166.865333pt;}
.y23_c00479{bottom:187.000000pt;}
.y22_c00479{bottom:206.532000pt;}
.y21_c00479{bottom:226.065333pt;}
.y20_c00479{bottom:245.932000pt;}
.y1f_c00479{bottom:265.732000pt;}
.y1e_c00479{bottom:284.932000pt;}
.y1d_c00479{bottom:304.800000pt;}
.y1c_c00479{bottom:324.333333pt;}
.y1b_c00479{bottom:344.466667pt;}
.y1a_c00479{bottom:364.265333pt;}
.y19_c00479{bottom:384.465333pt;}
.y18_c00479{bottom:403.666667pt;}
.y17_c00479{bottom:423.532000pt;}
.y16_c00479{bottom:443.000000pt;}
.y15_c00479{bottom:462.532000pt;}
.y14_c00479{bottom:482.065333pt;}
.y13_c00479{bottom:501.932000pt;}
.y12_c00479{bottom:520.798667pt;}
.y11_c00479{bottom:541.598667pt;}
.y10_c00479{bottom:561.465333pt;}
.yf_c00479{bottom:581.265333pt;}
.ye_c00479{bottom:600.798667pt;}
.yd_c00479{bottom:620.666667pt;}
.yc_c00479{bottom:639.532000pt;}
.yb_c00479{bottom:659.666667pt;}
.ya_c00479{bottom:679.532000pt;}
.y9_c00479{bottom:699.333333pt;}
.y8_c00479{bottom:718.865333pt;}
.y7_c00479{bottom:738.065333pt;}
.y6_c00479{bottom:757.600000pt;}
.y5_c00479{bottom:774.865333pt;}
.y4_c00479{bottom:796.333333pt;}
.y3_c00479{bottom:846.198667pt;}
.y1_c00479{bottom:953.398667pt;}
.y2_c00479{bottom:961.732000pt;}
.h2_c00479{height:54.818262pt;}
.h3_c00479{height:57.578125pt;}
.h1_c00479{height:62.812500pt;}
.h0_c00479{height:1044.000000pt;}
.w0_c00479{width:650.646400pt;}
.w1_c00479{width:650.666667pt;}
.x0_c00479{left:0.000000pt;}
.xe_c00479{left:56.302400pt;}
.xd_c00479{left:57.235733pt;}
.xc_c00479{left:58.235733pt;}
.xa_c00479{left:59.169067pt;}
.x8_c00479{left:60.435733pt;}
.x7_c00479{left:61.435733pt;}
.x5_c00479{left:63.035733pt;}
.xf_c00479{left:76.167733pt;}
.xb_c00479{left:77.435733pt;}
.x9_c00479{left:79.369067pt;}
.x6_c00479{left:81.569067pt;}
.x1_c00479{left:85.435733pt;}
.x4_c00479{left:90.835733pt;}
.x10_c00479{left:136.635733pt;}
.x2_c00479{left:265.235733pt;}
.x3_c00479{left:292.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_682e21dc56ab02a2cd012052.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00480;src:url('chunks/assets/font_3a8a92dc621564abdd44a54d.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00480;src:url('chunks/assets/font_86d9ca34deff389320a0c892.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00480;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1a_c00480{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.mf_c00480{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c00480{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00480{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c00480{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00480{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00480{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c00480{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m18_c00480{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00480{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00480{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00480{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00480{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00480{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00480{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00480{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00480{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00480{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c00480{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m15_c00480{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c00480{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c00480{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3_c00480{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c00480{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m11_c00480{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c00480{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1_c00480{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls0_c00480{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00480{color:transparent;}
.fs4_c00480{font-size:18.000000px;}
.fs0_c00480{font-size:60.000000px;}
.fs3_c00480{font-size:66.000000px;}
.fs1_c00480{font-size:72.000000px;}
.fs2_c00480{font-size:84.000000px;}
.y0_c00480{bottom:0.000000px;}
.y35_c00480{bottom:81.898500px;}
.y34_c00480{bottom:103.198500px;}
.y33_c00480{bottom:124.423500px;}
.y32_c00480{bottom:145.948500px;}
.y31_c00480{bottom:167.625000px;}
.y2f_c00480{bottom:188.773500px;}
.y30_c00480{bottom:194.625000px;}
.y2d_c00480{bottom:207.523500px;}
.y2e_c00480{bottom:213.298500px;}
.y2a_c00480{bottom:229.500000px;}
.y2b_c00480{bottom:232.048500px;}
.y2c_c00480{bottom:234.898500px;}
.y27_c00480{bottom:247.875000px;}
.y28_c00480{bottom:249.673500px;}
.y29_c00480{bottom:253.275000px;}
.y25_c00480{bottom:274.125000px;}
.y26_c00480{bottom:279.223500px;}
.y24_c00480{bottom:317.323500px;}
.y23_c00480{bottom:337.125000px;}
.y22_c00480{bottom:355.500000px;}
.y21_c00480{bottom:408.823500px;}
.y1f_c00480{bottom:536.548500px;}
.y20_c00480{bottom:536.923500px;}
.y1e_c00480{bottom:559.573500px;}
.y1d_c00480{bottom:581.923500px;}
.y1c_c00480{bottom:604.273500px;}
.y1b_c00480{bottom:626.548500px;}
.y1a_c00480{bottom:648.898500px;}
.y19_c00480{bottom:670.875000px;}
.y18_c00480{bottom:692.773500px;}
.y17_c00480{bottom:715.125000px;}
.y16_c00480{bottom:737.098500px;}
.y15_c00480{bottom:759.375000px;}
.y14_c00480{bottom:778.875000px;}
.y13_c00480{bottom:780.300000px;}
.y12_c00480{bottom:782.848500px;}
.y11_c00480{bottom:803.698500px;}
.y10_c00480{bottom:826.050000px;}
.yf_c00480{bottom:852.300000px;}
.ye_c00480{bottom:871.050000px;}
.yd_c00480{bottom:893.400000px;}
.yc_c00480{bottom:915.300000px;}
.yb_c00480{bottom:936.900000px;}
.ya_c00480{bottom:964.948500px;}
.y9_c00480{bottom:981.525000px;}
.y8_c00480{bottom:1003.500000px;}
.y7_c00480{bottom:1031.925000px;}
.y6_c00480{bottom:1039.875000px;}
.y5_c00480{bottom:1048.500000px;}
.y4_c00480{bottom:1055.698500px;}
.y36_c00480{bottom:1100.698500px;}
.y3_c00480{bottom:1102.500000px;}
.y1_c00480{bottom:1110.073500px;}
.y2_c00480{bottom:1117.425000px;}
.h7_c00480{height:17.666016px;}
.h8_c00480{height:19.206000px;}
.h1_c00480{height:60.468750px;}
.h5_c00480{height:64.775391px;}
.h3_c00480{height:70.664062px;}
.h2_c00480{height:72.562500px;}
.h6_c00480{height:82.400391px;}
.h4_c00480{height:82.441406px;}
.h0_c00480{height:1174.500000px;}
.w0_c00480{width:731.977200px;}
.w1_c00480{width:732.000000px;}
.x0_c00480{left:0.000000px;}
.x15_c00480{left:67.990200px;}
.xe_c00480{left:69.115200px;}
.xa_c00480{left:70.165200px;}
.x9_c00480{left:71.290200px;}
.x4_c00480{left:73.390200px;}
.x6_c00480{left:74.515200px;}
.x1a_c00480{left:78.115200px;}
.x1b_c00480{left:80.590200px;}
.x12_c00480{left:85.990200px;}
.xb_c00480{left:92.515200px;}
.x8_c00480{left:94.315200px;}
.x7_c00480{left:96.490200px;}
.x5_c00480{left:100.765200px;}
.xf_c00480{left:103.690200px;}
.x10_c00480{left:133.165200px;}
.x11_c00480{left:209.890200px;}
.x14_c00480{left:237.190200px;}
.x1_c00480{left:292.315200px;}
.x16_c00480{left:393.788700px;}
.x18_c00480{left:421.913700px;}
.x2_c00480{left:493.165200px;}
.xc_c00480{left:494.290200px;}
.x17_c00480{left:513.340200px;}
.xd_c00480{left:521.590200px;}
.x19_c00480{left:638.590200px;}
.x3_c00480{left:661.315200px;}
.x13_c00480{left:676.090200px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls0_c00480{letter-spacing:0.000000pt;}
.ws0_c00480{word-spacing:0.000000pt;}
.fs4_c00480{font-size:16.000000pt;}
.fs0_c00480{font-size:53.333333pt;}
.fs3_c00480{font-size:58.666667pt;}
.fs1_c00480{font-size:64.000000pt;}
.fs2_c00480{font-size:74.666667pt;}
.y0_c00480{bottom:0.000000pt;}
.y35_c00480{bottom:72.798667pt;}
.y34_c00480{bottom:91.732000pt;}
.y33_c00480{bottom:110.598667pt;}
.y32_c00480{bottom:129.732000pt;}
.y31_c00480{bottom:149.000000pt;}
.y2f_c00480{bottom:167.798667pt;}
.y30_c00480{bottom:173.000000pt;}
.y2d_c00480{bottom:184.465333pt;}
.y2e_c00480{bottom:189.598667pt;}
.y2a_c00480{bottom:204.000000pt;}
.y2b_c00480{bottom:206.265333pt;}
.y2c_c00480{bottom:208.798667pt;}
.y27_c00480{bottom:220.333333pt;}
.y28_c00480{bottom:221.932000pt;}
.y29_c00480{bottom:225.133333pt;}
.y25_c00480{bottom:243.666667pt;}
.y26_c00480{bottom:248.198667pt;}
.y24_c00480{bottom:282.065333pt;}
.y23_c00480{bottom:299.666667pt;}
.y22_c00480{bottom:316.000000pt;}
.y21_c00480{bottom:363.398667pt;}
.y1f_c00480{bottom:476.932000pt;}
.y20_c00480{bottom:477.265333pt;}
.y1e_c00480{bottom:497.398667pt;}
.y1d_c00480{bottom:517.265333pt;}
.y1c_c00480{bottom:537.132000pt;}
.y1b_c00480{bottom:556.932000pt;}
.y1a_c00480{bottom:576.798667pt;}
.y19_c00480{bottom:596.333333pt;}
.y18_c00480{bottom:615.798667pt;}
.y17_c00480{bottom:635.666667pt;}
.y16_c00480{bottom:655.198667pt;}
.y15_c00480{bottom:675.000000pt;}
.y14_c00480{bottom:692.333333pt;}
.y13_c00480{bottom:693.600000pt;}
.y12_c00480{bottom:695.865333pt;}
.y11_c00480{bottom:714.398667pt;}
.y10_c00480{bottom:734.266667pt;}
.yf_c00480{bottom:757.600000pt;}
.ye_c00480{bottom:774.266667pt;}
.yd_c00480{bottom:794.133333pt;}
.yc_c00480{bottom:813.600000pt;}
.yb_c00480{bottom:832.800000pt;}
.ya_c00480{bottom:857.732000pt;}
.y9_c00480{bottom:872.466667pt;}
.y8_c00480{bottom:892.000000pt;}
.y7_c00480{bottom:917.266667pt;}
.y6_c00480{bottom:924.333333pt;}
.y5_c00480{bottom:932.000000pt;}
.y4_c00480{bottom:938.398667pt;}
.y36_c00480{bottom:978.398667pt;}
.y3_c00480{bottom:980.000000pt;}
.y1_c00480{bottom:986.732000pt;}
.y2_c00480{bottom:993.266667pt;}
.h7_c00480{height:15.703125pt;}
.h8_c00480{height:17.072000pt;}
.h1_c00480{height:53.750000pt;}
.h5_c00480{height:57.578125pt;}
.h3_c00480{height:62.812500pt;}
.h2_c00480{height:64.500000pt;}
.h6_c00480{height:73.244792pt;}
.h4_c00480{height:73.281250pt;}
.h0_c00480{height:1044.000000pt;}
.w0_c00480{width:650.646400pt;}
.w1_c00480{width:650.666667pt;}
.x0_c00480{left:0.000000pt;}
.x15_c00480{left:60.435733pt;}
.xe_c00480{left:61.435733pt;}
.xa_c00480{left:62.369067pt;}
.x9_c00480{left:63.369067pt;}
.x4_c00480{left:65.235733pt;}
.x6_c00480{left:66.235733pt;}
.x1a_c00480{left:69.435733pt;}
.x1b_c00480{left:71.635733pt;}
.x12_c00480{left:76.435733pt;}
.xb_c00480{left:82.235733pt;}
.x8_c00480{left:83.835733pt;}
.x7_c00480{left:85.769067pt;}
.x5_c00480{left:89.569067pt;}
.xf_c00480{left:92.169067pt;}
.x10_c00480{left:118.369067pt;}
.x11_c00480{left:186.569067pt;}
.x14_c00480{left:210.835733pt;}
.x1_c00480{left:259.835733pt;}
.x16_c00480{left:350.034400pt;}
.x18_c00480{left:375.034400pt;}
.x2_c00480{left:438.369067pt;}
.xc_c00480{left:439.369067pt;}
.x17_c00480{left:456.302400pt;}
.xd_c00480{left:463.635733pt;}
.x19_c00480{left:567.635733pt;}
.x3_c00480{left:587.835733pt;}
.x13_c00480{left:600.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_decc9247f683d8e206ff1422.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00481;src:url('chunks/assets/font_0f35993f928024e352c17659.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00481;src:url('chunks/assets/font_c0bf486cdf06e3af21b7e0e9.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00481{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m0_c00481{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m13_c00481{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00481{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00481{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4_c00481{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00481{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me_c00481{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00481{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00481{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00481{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c00481{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00481{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00481{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00481{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c00481{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00481{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00481{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m11_c00481{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00481{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00481{color:transparent;}
.fs1_c00481{font-size:60.000000px;}
.fs2_c00481{font-size:72.000000px;}
.fs0_c00481{font-size:78.000000px;}
.fs3_c00481{font-size:84.000000px;}
.y0_c00481{bottom:0.000000px;}
.y32_c00481{bottom:79.723500px;}
.y31_c00481{bottom:101.323500px;}
.y30_c00481{bottom:117.148500px;}
.y2f_c00481{bottom:144.523500px;}
.y2e_c00481{bottom:161.398500px;}
.y2d_c00481{bottom:184.125000px;}
.y2c_c00481{bottom:204.298500px;}
.y2b_c00481{bottom:211.875000px;}
.y2a_c00481{bottom:212.250000px;}
.y29_c00481{bottom:230.250000px;}
.y28_c00481{bottom:250.423500px;}
.y27_c00481{bottom:271.948500px;}
.y26_c00481{bottom:294.673500px;}
.y25_c00481{bottom:316.650000px;}
.y24_c00481{bottom:338.548500px;}
.y23_c00481{bottom:360.150000px;}
.y22_c00481{bottom:384.298500px;}
.y21_c00481{bottom:405.223500px;}
.y20_c00481{bottom:427.500000px;}
.y1f_c00481{bottom:449.098500px;}
.y1e_c00481{bottom:472.125000px;}
.y1d_c00481{bottom:493.423500px;}
.y1c_c00481{bottom:515.698500px;}
.y1b_c00481{bottom:538.048500px;}
.y1a_c00481{bottom:560.323500px;}
.y19_c00481{bottom:581.548500px;}
.y18_c00481{bottom:644.173500px;}
.y17_c00481{bottom:714.750000px;}
.y16_c00481{bottom:737.473500px;}
.y15_c00481{bottom:759.375000px;}
.y14_c00481{bottom:781.723500px;}
.y13_c00481{bottom:803.323500px;}
.y12_c00481{bottom:825.300000px;}
.yf_c00481{bottom:843.000000px;}
.y10_c00481{bottom:844.723500px;}
.y11_c00481{bottom:847.275000px;}
.ye_c00481{bottom:868.500000px;}
.yd_c00481{bottom:890.473500px;}
.yc_c00481{bottom:912.375000px;}
.yb_c00481{bottom:934.050000px;}
.ya_c00481{bottom:956.698500px;}
.y9_c00481{bottom:968.250000px;}
.y8_c00481{bottom:999.525000px;}
.y7_c00481{bottom:1020.823500px;}
.y4_c00481{bottom:1034.098500px;}
.y5_c00481{bottom:1039.875000px;}
.y6_c00481{bottom:1043.775000px;}
.y1_c00481{bottom:1088.098500px;}
.y3_c00481{bottom:1099.275000px;}
.y2_c00481{bottom:1104.000000px;}
.h2_c00481{height:58.886719px;}
.h3_c00481{height:70.664062px;}
.h1_c00481{height:78.609375px;}
.h4_c00481{height:82.400391px;}
.h0_c00481{height:1174.500000px;}
.w0_c00481{width:731.977200px;}
.w1_c00481{width:732.000000px;}
.x0_c00481{left:0.000000px;}
.x9_c00481{left:62.590200px;}
.x8_c00481{left:63.715200px;}
.x4_c00481{left:64.765200px;}
.xe_c00481{left:65.890200px;}
.xf_c00481{left:66.940200px;}
.x10_c00481{left:69.115200px;}
.x14_c00481{left:70.540200px;}
.x1_c00481{left:84.938700px;}
.xd_c00481{left:87.490200px;}
.x11_c00481{left:89.965200px;}
.x15_c00481{left:91.390200px;}
.x7_c00481{left:94.990200px;}
.xc_c00481{left:96.115200px;}
.x16_c00481{left:104.365200px;}
.x2_c00481{left:112.990200px;}
.x12_c00481{left:151.915200px;}
.x13_c00481{left:157.690200px;}
.xa_c00481{left:197.290200px;}
.xb_c00481{left:215.965200px;}
.x3_c00481{left:289.765200px;}
.x5_c00481{left:295.915200px;}
.x6_c00481{left:303.115200px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ws0_c00481{word-spacing:0.000000pt;}
.fs1_c00481{font-size:53.333333pt;}
.fs2_c00481{font-size:64.000000pt;}
.fs0_c00481{font-size:69.333333pt;}
.fs3_c00481{font-size:74.666667pt;}
.y0_c00481{bottom:0.000000pt;}
.y32_c00481{bottom:70.865333pt;}
.y31_c00481{bottom:90.065333pt;}
.y30_c00481{bottom:104.132000pt;}
.y2f_c00481{bottom:128.465333pt;}
.y2e_c00481{bottom:143.465333pt;}
.y2d_c00481{bottom:163.666667pt;}
.y2c_c00481{bottom:181.598667pt;}
.y2b_c00481{bottom:188.333333pt;}
.y2a_c00481{bottom:188.666667pt;}
.y29_c00481{bottom:204.666667pt;}
.y28_c00481{bottom:222.598667pt;}
.y27_c00481{bottom:241.732000pt;}
.y26_c00481{bottom:261.932000pt;}
.y25_c00481{bottom:281.466667pt;}
.y24_c00481{bottom:300.932000pt;}
.y23_c00481{bottom:320.133333pt;}
.y22_c00481{bottom:341.598667pt;}
.y21_c00481{bottom:360.198667pt;}
.y20_c00481{bottom:380.000000pt;}
.y1f_c00481{bottom:399.198667pt;}
.y1e_c00481{bottom:419.666667pt;}
.y1d_c00481{bottom:438.598667pt;}
.y1c_c00481{bottom:458.398667pt;}
.y1b_c00481{bottom:478.265333pt;}
.y1a_c00481{bottom:498.065333pt;}
.y19_c00481{bottom:516.932000pt;}
.y18_c00481{bottom:572.598667pt;}
.y17_c00481{bottom:635.333333pt;}
.y16_c00481{bottom:655.532000pt;}
.y15_c00481{bottom:675.000000pt;}
.y14_c00481{bottom:694.865333pt;}
.y13_c00481{bottom:714.065333pt;}
.y12_c00481{bottom:733.600000pt;}
.yf_c00481{bottom:749.333333pt;}
.y10_c00481{bottom:750.865333pt;}
.y11_c00481{bottom:753.133333pt;}
.ye_c00481{bottom:772.000000pt;}
.yd_c00481{bottom:791.532000pt;}
.yc_c00481{bottom:811.000000pt;}
.yb_c00481{bottom:830.266667pt;}
.ya_c00481{bottom:850.398667pt;}
.y9_c00481{bottom:860.666667pt;}
.y8_c00481{bottom:888.466667pt;}
.y7_c00481{bottom:907.398667pt;}
.y4_c00481{bottom:919.198667pt;}
.y5_c00481{bottom:924.333333pt;}
.y6_c00481{bottom:927.800000pt;}
.y1_c00481{bottom:967.198667pt;}
.y3_c00481{bottom:977.133333pt;}
.y2_c00481{bottom:981.333333pt;}
.h2_c00481{height:52.343750pt;}
.h3_c00481{height:62.812500pt;}
.h1_c00481{height:69.875000pt;}
.h4_c00481{height:73.244792pt;}
.h0_c00481{height:1044.000000pt;}
.w0_c00481{width:650.646400pt;}
.w1_c00481{width:650.666667pt;}
.x0_c00481{left:0.000000pt;}
.x9_c00481{left:55.635733pt;}
.x8_c00481{left:56.635733pt;}
.x4_c00481{left:57.569067pt;}
.xe_c00481{left:58.569067pt;}
.xf_c00481{left:59.502400pt;}
.x10_c00481{left:61.435733pt;}
.x14_c00481{left:62.702400pt;}
.x1_c00481{left:75.501067pt;}
.xd_c00481{left:77.769067pt;}
.x11_c00481{left:79.969067pt;}
.x15_c00481{left:81.235733pt;}
.x7_c00481{left:84.435733pt;}
.xc_c00481{left:85.435733pt;}
.x16_c00481{left:92.769067pt;}
.x2_c00481{left:100.435733pt;}
.x12_c00481{left:135.035733pt;}
.x13_c00481{left:140.169067pt;}
.xa_c00481{left:175.369067pt;}
.xb_c00481{left:191.969067pt;}
.x3_c00481{left:257.569067pt;}
.x5_c00481{left:263.035733pt;}
.x6_c00481{left:269.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_20fa2f114882abef4b08a97f.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00482;src:url('chunks/assets/font_37fec88f097761d5f912b2b8.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00482;src:url('chunks/assets/font_477d42f495c2ab2aa77bc18d.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00482;src:url('chunks/assets/font_c24dc407f51d89590661ce6d.woff2')format("woff");}.ff4_c00482{font-family:ff4_c00482;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00482{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m11_c00482{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c00482{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8_c00482{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c00482{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00482{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c00482{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c00482{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c00482{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c00482{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00482{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16_c00482{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00482{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c00482{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m14_c00482{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md_c00482{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00482{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00482{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c00482{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00482{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00482{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00482{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,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:0.000000px;}
.fc0_c00482{color:transparent;}
.fs1_c00482{font-size:60.000000px;}
.fs0_c00482{font-size:66.000000px;}
.fs4_c00482{font-size:72.000000px;}
.fs3_c00482{font-size:78.000000px;}
.fs2_c00482{font-size:84.000000px;}
.y0_c00482{bottom:0.000000px;}
.y2b_c00482{bottom:75.000000px;}
.y2a_c00482{bottom:97.348500px;}
.y29_c00482{bottom:114.673500px;}
.y28_c00482{bottom:140.173500px;}
.y27_c00482{bottom:161.848500px;}
.y26_c00482{bottom:183.073500px;}
.y25_c00482{bottom:204.598500px;}
.y22_c00482{bottom:225.148500px;}
.y23_c00482{bottom:229.125000px;}
.y24_c00482{bottom:229.500000px;}
.y21_c00482{bottom:246.448500px;}
.y20_c00482{bottom:267.673500px;}
.y1f_c00482{bottom:289.573500px;}
.y1e_c00482{bottom:310.125000px;}
.y1d_c00482{bottom:333.150000px;}
.y1c_c00482{bottom:355.125000px;}
.y1b_c00482{bottom:377.098500px;}
.y1a_c00482{bottom:398.698500px;}
.y19_c00482{bottom:420.673500px;}
.y18_c00482{bottom:442.273500px;}
.y17_c00482{bottom:491.173500px;}
.y16_c00482{bottom:544.798500px;}
.y15_c00482{bottom:563.250000px;}
.y14_c00482{bottom:566.098500px;}
.y13_c00482{bottom:588.750000px;}
.y12_c00482{bottom:610.723500px;}
.y11_c00482{bottom:631.573500px;}
.y10_c00482{bottom:633.448500px;}
.yf_c00482{bottom:634.500000px;}
.ye_c00482{bottom:654.973500px;}
.yd_c00482{bottom:677.323500px;}
.yc_c00482{bottom:699.298500px;}
.yb_c00482{bottom:721.575000px;}
.ya_c00482{bottom:742.500000px;}
.y9_c00482{bottom:747.148500px;}
.y8_c00482{bottom:797.250000px;}
.y7_c00482{bottom:828.900000px;}
.y6_c00482{bottom:832.800000px;}
.y5_c00482{bottom:836.098500px;}
.y4_c00482{bottom:931.125000px;}
.y3_c00482{bottom:935.098500px;}
.y2_c00482{bottom:1100.323500px;}
.y1_c00482{bottom:1104.000000px;}
.h5_c00482{height:58.886719px;}
.h2_c00482{height:60.468750px;}
.h1_c00482{height:66.515625px;}
.h6_c00482{height:70.664062px;}
.h4_c00482{height:76.552734px;}
.h7_c00482{height:82.400391px;}
.h3_c00482{height:82.441406px;}
.h8_c00482{height:84.656250px;}
.h0_c00482{height:1174.500000px;}
.w0_c00482{width:731.977200px;}
.w1_c00482{width:732.000000px;}
.x0_c00482{left:0.000000px;}
.x15_c00482{left:74.515200px;}
.x14_c00482{left:76.313700px;}
.x9_c00482{left:81.340200px;}
.xd_c00482{left:99.340200px;}
.x10_c00482{left:100.765200px;}
.xc_c00482{left:102.190200px;}
.xb_c00482{left:103.690200px;}
.x16_c00482{left:108.715200px;}
.x13_c00482{left:110.140200px;}
.x5_c00482{left:146.515200px;}
.x3_c00482{left:258.115200px;}
.xa_c00482{left:263.515200px;}
.x8_c00482{left:294.490200px;}
.x1_c00482{left:310.690200px;}
.xe_c00482{left:322.165200px;}
.x6_c00482{left:332.290200px;}
.x2_c00482{left:340.165200px;}
.xf_c00482{left:341.965200px;}
.x12_c00482{left:351.715200px;}
.x7_c00482{left:408.940200px;}
.x4_c00482{left:454.315200px;}
.x17_c00482{left:647.590200px;}
.x11_c00482{left:665.965200px;}
.x18_c00482{left:673.165200px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ws0_c00482{word-spacing:0.000000pt;}
.fs1_c00482{font-size:53.333333pt;}
.fs0_c00482{font-size:58.666667pt;}
.fs4_c00482{font-size:64.000000pt;}
.fs3_c00482{font-size:69.333333pt;}
.fs2_c00482{font-size:74.666667pt;}
.y0_c00482{bottom:0.000000pt;}
.y2b_c00482{bottom:66.666667pt;}
.y2a_c00482{bottom:86.532000pt;}
.y29_c00482{bottom:101.932000pt;}
.y28_c00482{bottom:124.598667pt;}
.y27_c00482{bottom:143.865333pt;}
.y26_c00482{bottom:162.732000pt;}
.y25_c00482{bottom:181.865333pt;}
.y22_c00482{bottom:200.132000pt;}
.y23_c00482{bottom:203.666667pt;}
.y24_c00482{bottom:204.000000pt;}
.y21_c00482{bottom:219.065333pt;}
.y20_c00482{bottom:237.932000pt;}
.y1f_c00482{bottom:257.398667pt;}
.y1e_c00482{bottom:275.666667pt;}
.y1d_c00482{bottom:296.133333pt;}
.y1c_c00482{bottom:315.666667pt;}
.y1b_c00482{bottom:335.198667pt;}
.y1a_c00482{bottom:354.398667pt;}
.y19_c00482{bottom:373.932000pt;}
.y18_c00482{bottom:393.132000pt;}
.y17_c00482{bottom:436.598667pt;}
.y16_c00482{bottom:484.265333pt;}
.y15_c00482{bottom:500.666667pt;}
.y14_c00482{bottom:503.198667pt;}
.y13_c00482{bottom:523.333333pt;}
.y12_c00482{bottom:542.865333pt;}
.y11_c00482{bottom:561.398667pt;}
.y10_c00482{bottom:563.065333pt;}
.yf_c00482{bottom:564.000000pt;}
.ye_c00482{bottom:582.198667pt;}
.yd_c00482{bottom:602.065333pt;}
.yc_c00482{bottom:621.598667pt;}
.yb_c00482{bottom:641.400000pt;}
.ya_c00482{bottom:660.000000pt;}
.y9_c00482{bottom:664.132000pt;}
.y8_c00482{bottom:708.666667pt;}
.y7_c00482{bottom:736.800000pt;}
.y6_c00482{bottom:740.266667pt;}
.y5_c00482{bottom:743.198667pt;}
.y4_c00482{bottom:827.666667pt;}
.y3_c00482{bottom:831.198667pt;}
.y2_c00482{bottom:978.065333pt;}
.y1_c00482{bottom:981.333333pt;}
.h5_c00482{height:52.343750pt;}
.h2_c00482{height:53.750000pt;}
.h1_c00482{height:59.125000pt;}
.h6_c00482{height:62.812500pt;}
.h4_c00482{height:68.046875pt;}
.h7_c00482{height:73.244792pt;}
.h3_c00482{height:73.281250pt;}
.h8_c00482{height:75.250000pt;}
.h0_c00482{height:1044.000000pt;}
.w0_c00482{width:650.646400pt;}
.w1_c00482{width:650.666667pt;}
.x0_c00482{left:0.000000pt;}
.x15_c00482{left:66.235733pt;}
.x14_c00482{left:67.834400pt;}
.x9_c00482{left:72.302400pt;}
.xd_c00482{left:88.302400pt;}
.x10_c00482{left:89.569067pt;}
.xc_c00482{left:90.835733pt;}
.xb_c00482{left:92.169067pt;}
.x16_c00482{left:96.635733pt;}
.x13_c00482{left:97.902400pt;}
.x5_c00482{left:130.235733pt;}
.x3_c00482{left:229.435733pt;}
.xa_c00482{left:234.235733pt;}
.x8_c00482{left:261.769067pt;}
.x1_c00482{left:276.169067pt;}
.xe_c00482{left:286.369067pt;}
.x6_c00482{left:295.369067pt;}
.x2_c00482{left:302.369067pt;}
.xf_c00482{left:303.969067pt;}
.x12_c00482{left:312.635733pt;}
.x7_c00482{left:363.502400pt;}
.x4_c00482{left:403.835733pt;}
.x17_c00482{left:575.635733pt;}
.x11_c00482{left:591.969067pt;}
.x18_c00482{left:598.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3eaece18ecd85e922e7bb3ea.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00483;src:url('chunks/assets/font_db829b8b3fd9285c8027d958.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00483{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00483{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c00483{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m0_c00483{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00483{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00483{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00483{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00483{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00483{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00483{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00483{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00483{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00483{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00483{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00483{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00483{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.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;}
}
.ws0_c00483{word-spacing:0.000000px;}
.fc0_c00483{color:transparent;}
.fs0_c00483{font-size:60.000000px;}
.fs2_c00483{font-size:66.000000px;}
.fs1_c00483{font-size:72.000000px;}
.y0_c00483{bottom:0.000000px;}
.y30_c00483{bottom:75.000000px;}
.y2f_c00483{bottom:97.798500px;}
.y2e_c00483{bottom:118.948500px;}
.y2d_c00483{bottom:141.973500px;}
.y2c_c00483{bottom:163.273500px;}
.y2b_c00483{bottom:184.875000px;}
.y2a_c00483{bottom:206.473500px;}
.y29_c00483{bottom:226.648500px;}
.y28_c00483{bottom:229.500000px;}
.y27_c00483{bottom:251.098500px;}
.y26_c00483{bottom:273.448500px;}
.y25_c00483{bottom:295.348500px;}
.y24_c00483{bottom:316.948500px;}
.y23_c00483{bottom:338.923500px;}
.y22_c00483{bottom:360.900000px;}
.y21_c00483{bottom:383.173500px;}
.y20_c00483{bottom:405.900000px;}
.y1f_c00483{bottom:427.500000px;}
.y1e_c00483{bottom:450.523500px;}
.y1d_c00483{bottom:471.750000px;}
.y1c_c00483{bottom:494.098500px;}
.y1b_c00483{bottom:515.323500px;}
.y1a_c00483{bottom:537.598500px;}
.y19_c00483{bottom:559.648500px;}
.y18_c00483{bottom:581.548500px;}
.y17_c00483{bottom:603.523500px;}
.y16_c00483{bottom:625.875000px;}
.y15_c00483{bottom:648.148500px;}
.y14_c00483{bottom:670.125000px;}
.y13_c00483{bottom:692.098500px;}
.y12_c00483{bottom:714.450000px;}
.y11_c00483{bottom:736.348500px;}
.y10_c00483{bottom:758.700000px;}
.yf_c00483{bottom:780.675000px;}
.ye_c00483{bottom:802.650000px;}
.yd_c00483{bottom:824.250000px;}
.yc_c00483{bottom:845.848500px;}
.yb_c00483{bottom:867.073500px;}
.ya_c00483{bottom:889.348500px;}
.y9_c00483{bottom:910.948500px;}
.y8_c00483{bottom:933.300000px;}
.y7_c00483{bottom:954.525000px;}
.y6_c00483{bottom:976.500000px;}
.y5_c00483{bottom:997.723500px;}
.y4_c00483{bottom:1019.025000px;}
.y3_c00483{bottom:1040.250000px;}
.y1_c00483{bottom:1086.300000px;}
.y2_c00483{bottom:1097.848500px;}
.h1_c00483{height:58.886719px;}
.h3_c00483{height:66.515625px;}
.h2_c00483{height:70.664062px;}
.h0_c00483{height:1174.500000px;}
.w0_c00483{width:731.977200px;}
.w1_c00483{width:732.000000px;}
.x0_c00483{left:0.000000px;}
.x8_c00483{left:47.890200px;}
.x7_c00483{left:48.940200px;}
.x6_c00483{left:49.990200px;}
.x5_c00483{left:51.115200px;}
.x4_c00483{left:52.165200px;}
.x3_c00483{left:53.590200px;}
.x1_c00483{left:73.765200px;}
.x9_c00483{left:80.290200px;}
.xb_c00483{left:82.765200px;}
.x2_c00483{left:275.740200px;}
.xa_c00483{left:649.090200px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ws0_c00483{word-spacing:0.000000pt;}
.fs0_c00483{font-size:53.333333pt;}
.fs2_c00483{font-size:58.666667pt;}
.fs1_c00483{font-size:64.000000pt;}
.y0_c00483{bottom:0.000000pt;}
.y30_c00483{bottom:66.666667pt;}
.y2f_c00483{bottom:86.932000pt;}
.y2e_c00483{bottom:105.732000pt;}
.y2d_c00483{bottom:126.198667pt;}
.y2c_c00483{bottom:145.132000pt;}
.y2b_c00483{bottom:164.333333pt;}
.y2a_c00483{bottom:183.532000pt;}
.y29_c00483{bottom:201.465333pt;}
.y28_c00483{bottom:204.000000pt;}
.y27_c00483{bottom:223.198667pt;}
.y26_c00483{bottom:243.065333pt;}
.y25_c00483{bottom:262.532000pt;}
.y24_c00483{bottom:281.732000pt;}
.y23_c00483{bottom:301.265333pt;}
.y22_c00483{bottom:320.800000pt;}
.y21_c00483{bottom:340.598667pt;}
.y20_c00483{bottom:360.800000pt;}
.y1f_c00483{bottom:380.000000pt;}
.y1e_c00483{bottom:400.465333pt;}
.y1d_c00483{bottom:419.333333pt;}
.y1c_c00483{bottom:439.198667pt;}
.y1b_c00483{bottom:458.065333pt;}
.y1a_c00483{bottom:477.865333pt;}
.y19_c00483{bottom:497.465333pt;}
.y18_c00483{bottom:516.932000pt;}
.y17_c00483{bottom:536.465333pt;}
.y16_c00483{bottom:556.333333pt;}
.y15_c00483{bottom:576.132000pt;}
.y14_c00483{bottom:595.666667pt;}
.y13_c00483{bottom:615.198667pt;}
.y12_c00483{bottom:635.066667pt;}
.y11_c00483{bottom:654.532000pt;}
.y10_c00483{bottom:674.400000pt;}
.yf_c00483{bottom:693.933333pt;}
.ye_c00483{bottom:713.466667pt;}
.yd_c00483{bottom:732.666667pt;}
.yc_c00483{bottom:751.865333pt;}
.yb_c00483{bottom:770.732000pt;}
.ya_c00483{bottom:790.532000pt;}
.y9_c00483{bottom:809.732000pt;}
.y8_c00483{bottom:829.600000pt;}
.y7_c00483{bottom:848.466667pt;}
.y6_c00483{bottom:868.000000pt;}
.y5_c00483{bottom:886.865333pt;}
.y4_c00483{bottom:905.800000pt;}
.y3_c00483{bottom:924.666667pt;}
.y1_c00483{bottom:965.600000pt;}
.y2_c00483{bottom:975.865333pt;}
.h1_c00483{height:52.343750pt;}
.h3_c00483{height:59.125000pt;}
.h2_c00483{height:62.812500pt;}
.h0_c00483{height:1044.000000pt;}
.w0_c00483{width:650.646400pt;}
.w1_c00483{width:650.666667pt;}
.x0_c00483{left:0.000000pt;}
.x8_c00483{left:42.569067pt;}
.x7_c00483{left:43.502400pt;}
.x6_c00483{left:44.435733pt;}
.x5_c00483{left:45.435733pt;}
.x4_c00483{left:46.369067pt;}
.x3_c00483{left:47.635733pt;}
.x1_c00483{left:65.569067pt;}
.x9_c00483{left:71.369067pt;}
.xb_c00483{left:73.569067pt;}
.x2_c00483{left:245.102400pt;}
.xa_c00483{left:576.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd5875a5635acdcf0e9106c8.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00484;src:url('chunks/assets/font_e9c7aca2776ec4960657f58f.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00484;src:url('chunks/assets/font_2bc901b8ccdfe070d15684b0.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00484;src:url('chunks/assets/font_4a6406ec0acc368c44d6c637.woff2')format("woff");}.ff4_c00484{font-family:ff4_c00484;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00484{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.ma_c00484{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m0_c00484{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m2_c00484{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4_c00484{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3_c00484{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00484{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00484{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00484{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00484{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00484{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00484{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00484{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00484{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00484{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00484{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00484{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00484{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00484{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c00484{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.v1_c00484{vertical-align:23.100000px;}
.ls0_c00484{letter-spacing:0.000000px;}
.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:-16.500000px;}
.ws1_c00484{word-spacing:0.000000px;}
._0_c00484{margin-left:-1.926848px;}
.fc0_c00484{color:transparent;}
.fs1_c00484{font-size:18.000000px;}
.fs2_c00484{font-size:24.000000px;}
.fs0_c00484{font-size:30.000000px;}
.fs3_c00484{font-size:60.000000px;}
.fs6_c00484{font-size:66.000000px;}
.fs4_c00484{font-size:72.000000px;}
.fs5_c00484{font-size:78.000000px;}
.y0_c00484{bottom:0.000000px;}
.y37_c00484{bottom:60.298500px;}
.y38_c00484{bottom:62.848500px;}
.y39_c00484{bottom:67.125000px;}
.y36_c00484{bottom:87.298500px;}
.y35_c00484{bottom:109.648500px;}
.y34_c00484{bottom:123.673500px;}
.y33_c00484{bottom:152.098500px;}
.y32_c00484{bottom:173.323500px;}
.y31_c00484{bottom:194.548500px;}
.y30_c00484{bottom:215.098500px;}
.y2f_c00484{bottom:236.698500px;}
.y2e_c00484{bottom:258.298500px;}
.y2d_c00484{bottom:279.900000px;}
.y2c_c00484{bottom:301.500000px;}
.y2b_c00484{bottom:323.473500px;}
.y2a_c00484{bottom:345.448500px;}
.y29_c00484{bottom:367.348500px;}
.y28_c00484{bottom:389.323500px;}
.y27_c00484{bottom:408.448500px;}
.y26_c00484{bottom:432.898500px;}
.y25_c00484{bottom:454.875000px;}
.y24_c00484{bottom:477.148500px;}
.y23_c00484{bottom:499.500000px;}
.y22_c00484{bottom:521.848500px;}
.y21_c00484{bottom:544.125000px;}
.y20_c00484{bottom:566.098500px;}
.y1f_c00484{bottom:588.073500px;}
.y1e_c00484{bottom:610.423500px;}
.y1d_c00484{bottom:632.323500px;}
.y1c_c00484{bottom:655.048500px;}
.y1b_c00484{bottom:677.398500px;}
.y1a_c00484{bottom:699.298500px;}
.y19_c00484{bottom:721.273500px;}
.y18_c00484{bottom:743.625000px;}
.y17_c00484{bottom:765.898500px;}
.y16_c00484{bottom:787.500000px;}
.y15_c00484{bottom:810.150000px;}
.y14_c00484{bottom:834.300000px;}
.y13_c00484{bottom:855.900000px;}
.y12_c00484{bottom:878.250000px;}
.y11_c00484{bottom:900.150000px;}
.y10_c00484{bottom:921.375000px;}
.yf_c00484{bottom:944.098500px;}
.ye_c00484{bottom:966.375000px;}
.yd_c00484{bottom:987.675000px;}
.yc_c00484{bottom:1005.000000px;}
.yb_c00484{bottom:1006.723500px;}
.ya_c00484{bottom:1012.500000px;}
.y9_c00484{bottom:1017.900000px;}
.y8_c00484{bottom:1018.650000px;}
.y7_c00484{bottom:1027.275000px;}
.y6_c00484{bottom:1036.948500px;}
.y5_c00484{bottom:1047.073500px;}
.y4_c00484{bottom:1094.550000px;}
.y1_c00484{bottom:1116.525000px;}
.y2_c00484{bottom:1116.900000px;}
.y3_c00484{bottom:1171.573500px;}
.h2_c00484{height:18.773438px;}
.h3_c00484{height:25.031250px;}
.h5_c00484{height:29.428711px;}
.h1_c00484{height:31.289062px;}
.h4_c00484{height:60.468750px;}
.ha_c00484{height:70.628906px;}
.h6_c00484{height:70.664062px;}
.h7_c00484{height:72.562500px;}
.h8_c00484{height:76.514648px;}
.h9_c00484{height:93.764063px;}
.h0_c00484{height:1174.500000px;}
.w0_c00484{width:731.977200px;}
.w1_c00484{width:732.000000px;}
.x0_c00484{left:0.000000px;}
.xf_c00484{left:61.165200px;}
.xe_c00484{left:62.290200px;}
.xc_c00484{left:63.340200px;}
.x6_c00484{left:64.390200px;}
.x10_c00484{left:94.990200px;}
.xd_c00484{left:96.490200px;}
.x11_c00484{left:97.540200px;}
.x8_c00484{left:105.490200px;}
.x9_c00484{left:143.290200px;}
.x12_c00484{left:235.765200px;}
.x13_c00484{left:255.190200px;}
.x1_c00484{left:297.715200px;}
.x2_c00484{left:300.940200px;}
.x4_c00484{left:313.915200px;}
.x3_c00484{left:434.515200px;}
.x7_c00484{left:454.690200px;}
.xa_c00484{left:512.290200px;}
.xb_c00484{left:514.090200px;}
.x5_c00484{left:609.790200px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.v1_c00484{vertical-align:20.533333pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ws0_c00484{word-spacing:-14.666667pt;}
.ws1_c00484{word-spacing:0.000000pt;}
._0_c00484{margin-left:-1.712754pt;}
.fs1_c00484{font-size:16.000000pt;}
.fs2_c00484{font-size:21.333333pt;}
.fs0_c00484{font-size:26.666667pt;}
.fs3_c00484{font-size:53.333333pt;}
.fs6_c00484{font-size:58.666667pt;}
.fs4_c00484{font-size:64.000000pt;}
.fs5_c00484{font-size:69.333333pt;}
.y0_c00484{bottom:0.000000pt;}
.y37_c00484{bottom:53.598667pt;}
.y38_c00484{bottom:55.865333pt;}
.y39_c00484{bottom:59.666667pt;}
.y36_c00484{bottom:77.598667pt;}
.y35_c00484{bottom:97.465333pt;}
.y34_c00484{bottom:109.932000pt;}
.y33_c00484{bottom:135.198667pt;}
.y32_c00484{bottom:154.065333pt;}
.y31_c00484{bottom:172.932000pt;}
.y30_c00484{bottom:191.198667pt;}
.y2f_c00484{bottom:210.398667pt;}
.y2e_c00484{bottom:229.598667pt;}
.y2d_c00484{bottom:248.800000pt;}
.y2c_c00484{bottom:268.000000pt;}
.y2b_c00484{bottom:287.532000pt;}
.y2a_c00484{bottom:307.065333pt;}
.y29_c00484{bottom:326.532000pt;}
.y28_c00484{bottom:346.065333pt;}
.y27_c00484{bottom:363.065333pt;}
.y26_c00484{bottom:384.798667pt;}
.y25_c00484{bottom:404.333333pt;}
.y24_c00484{bottom:424.132000pt;}
.y23_c00484{bottom:444.000000pt;}
.y22_c00484{bottom:463.865333pt;}
.y21_c00484{bottom:483.666667pt;}
.y20_c00484{bottom:503.198667pt;}
.y1f_c00484{bottom:522.732000pt;}
.y1e_c00484{bottom:542.598667pt;}
.y1d_c00484{bottom:562.065333pt;}
.y1c_c00484{bottom:582.265333pt;}
.y1b_c00484{bottom:602.132000pt;}
.y1a_c00484{bottom:621.598667pt;}
.y19_c00484{bottom:641.132000pt;}
.y18_c00484{bottom:661.000000pt;}
.y17_c00484{bottom:680.798667pt;}
.y16_c00484{bottom:700.000000pt;}
.y15_c00484{bottom:720.133333pt;}
.y14_c00484{bottom:741.600000pt;}
.y13_c00484{bottom:760.800000pt;}
.y12_c00484{bottom:780.666667pt;}
.y11_c00484{bottom:800.133333pt;}
.y10_c00484{bottom:819.000000pt;}
.yf_c00484{bottom:839.198667pt;}
.ye_c00484{bottom:859.000000pt;}
.yd_c00484{bottom:877.933333pt;}
.yc_c00484{bottom:893.333333pt;}
.yb_c00484{bottom:894.865333pt;}
.ya_c00484{bottom:900.000000pt;}
.y9_c00484{bottom:904.800000pt;}
.y8_c00484{bottom:905.466667pt;}
.y7_c00484{bottom:913.133333pt;}
.y6_c00484{bottom:921.732000pt;}
.y5_c00484{bottom:930.732000pt;}
.y4_c00484{bottom:972.933333pt;}
.y1_c00484{bottom:992.466667pt;}
.y2_c00484{bottom:992.800000pt;}
.y3_c00484{bottom:1041.398667pt;}
.h2_c00484{height:16.687500pt;}
.h3_c00484{height:22.250000pt;}
.h5_c00484{height:26.158854pt;}
.h1_c00484{height:27.812500pt;}
.h4_c00484{height:53.750000pt;}
.ha_c00484{height:62.781250pt;}
.h6_c00484{height:62.812500pt;}
.h7_c00484{height:64.500000pt;}
.h8_c00484{height:68.013021pt;}
.h9_c00484{height:83.345833pt;}
.h0_c00484{height:1044.000000pt;}
.w0_c00484{width:650.646400pt;}
.w1_c00484{width:650.666667pt;}
.x0_c00484{left:0.000000pt;}
.xf_c00484{left:54.369067pt;}
.xe_c00484{left:55.369067pt;}
.xc_c00484{left:56.302400pt;}
.x6_c00484{left:57.235733pt;}
.x10_c00484{left:84.435733pt;}
.xd_c00484{left:85.769067pt;}
.x11_c00484{left:86.702400pt;}
.x8_c00484{left:93.769067pt;}
.x9_c00484{left:127.369067pt;}
.x12_c00484{left:209.569067pt;}
.x13_c00484{left:226.835733pt;}
.x1_c00484{left:264.635733pt;}
.x2_c00484{left:267.502400pt;}
.x4_c00484{left:279.035733pt;}
.x3_c00484{left:386.235733pt;}
.x7_c00484{left:404.169067pt;}
.xa_c00484{left:455.369067pt;}
.xb_c00484{left:456.969067pt;}
.x5_c00484{left:542.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_919240934fd96c5d1b485955.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00485;src:url('chunks/assets/font_1d825ad516fc97374fca16f4.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00485{transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);}
.m0_c00485{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8_c00485{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00485{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7_c00485{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00485{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c00485{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00485{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma_c00485{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00485{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00485{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00485{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00485{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00485{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c00485{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3_c00485{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11_c00485{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00485{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00485{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00485{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00485{color:transparent;}
.fs1_c00485{font-size:60.000000px;}
.fs0_c00485{font-size:66.000000px;}
.fs2_c00485{font-size:72.000000px;}
.y0_c00485{bottom:0.000000px;}
.y30_c00485{bottom:151.048500px;}
.y2f_c00485{bottom:167.548500px;}
.y2e_c00485{bottom:189.523500px;}
.y2d_c00485{bottom:218.698500px;}
.y2c_c00485{bottom:234.898500px;}
.y2b_c00485{bottom:256.500000px;}
.y2a_c00485{bottom:278.848500px;}
.y29_c00485{bottom:284.548500px;}
.y28_c00485{bottom:299.323500px;}
.y27_c00485{bottom:301.125000px;}
.y26_c00485{bottom:322.723500px;}
.y25_c00485{bottom:345.073500px;}
.y24_c00485{bottom:367.048500px;}
.y23_c00485{bottom:389.323500px;}
.y22_c00485{bottom:411.673500px;}
.y21_c00485{bottom:433.648500px;}
.y20_c00485{bottom:455.923500px;}
.y1f_c00485{bottom:478.273500px;}
.y1e_c00485{bottom:499.875000px;}
.y1d_c00485{bottom:522.148500px;}
.y1c_c00485{bottom:544.198500px;}
.y1b_c00485{bottom:566.473500px;}
.y1a_c00485{bottom:588.750000px;}
.y19_c00485{bottom:611.098500px;}
.y18_c00485{bottom:632.698500px;}
.y17_c00485{bottom:655.348500px;}
.y16_c00485{bottom:677.323500px;}
.y15_c00485{bottom:699.298500px;}
.y14_c00485{bottom:721.648500px;}
.y13_c00485{bottom:743.923500px;}
.y12_c00485{bottom:765.898500px;}
.y11_c00485{bottom:787.875000px;}
.y10_c00485{bottom:809.848500px;}
.yf_c00485{bottom:831.448500px;}
.ye_c00485{bottom:852.300000px;}
.yd_c00485{bottom:874.275000px;}
.yc_c00485{bottom:896.925000px;}
.y9_c00485{bottom:913.500000px;}
.ya_c00485{bottom:914.175000px;}
.yb_c00485{bottom:919.275000px;}
.y8_c00485{bottom:934.425000px;}
.y7_c00485{bottom:962.098500px;}
.y6_c00485{bottom:983.323500px;}
.y5_c00485{bottom:1005.300000px;}
.y4_c00485{bottom:1026.900000px;}
.y1_c00485{bottom:1074.448500px;}
.y3_c00485{bottom:1084.198500px;}
.y2_c00485{bottom:1089.900000px;}
.h2_c00485{height:58.886719px;}
.h4_c00485{height:64.775391px;}
.h1_c00485{height:68.835938px;}
.h3_c00485{height:70.664062px;}
.h0_c00485{height:1174.500000px;}
.w0_c00485{width:731.977200px;}
.w1_c00485{width:732.000000px;}
.x0_c00485{left:0.000000px;}
.xd_c00485{left:63.340200px;}
.xb_c00485{left:64.390200px;}
.x9_c00485{left:65.890200px;}
.xa_c00485{left:66.940200px;}
.x5_c00485{left:67.990200px;}
.x4_c00485{left:69.490200px;}
.x1_c00485{left:89.965200px;}
.xc_c00485{left:95.365200px;}
.x6_c00485{left:97.165200px;}
.xf_c00485{left:103.315200px;}
.x2_c00485{left:117.340200px;}
.x7_c00485{left:124.165200px;}
.x8_c00485{left:125.590200px;}
.x3_c00485{left:295.915200px;}
.xe_c00485{left:663.115200px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls0_c00485{letter-spacing:0.000000pt;}
.ws0_c00485{word-spacing:0.000000pt;}
.fs1_c00485{font-size:53.333333pt;}
.fs0_c00485{font-size:58.666667pt;}
.fs2_c00485{font-size:64.000000pt;}
.y0_c00485{bottom:0.000000pt;}
.y30_c00485{bottom:134.265333pt;}
.y2f_c00485{bottom:148.932000pt;}
.y2e_c00485{bottom:168.465333pt;}
.y2d_c00485{bottom:194.398667pt;}
.y2c_c00485{bottom:208.798667pt;}
.y2b_c00485{bottom:228.000000pt;}
.y2a_c00485{bottom:247.865333pt;}
.y29_c00485{bottom:252.932000pt;}
.y28_c00485{bottom:266.065333pt;}
.y27_c00485{bottom:267.666667pt;}
.y26_c00485{bottom:286.865333pt;}
.y25_c00485{bottom:306.732000pt;}
.y24_c00485{bottom:326.265333pt;}
.y23_c00485{bottom:346.065333pt;}
.y22_c00485{bottom:365.932000pt;}
.y21_c00485{bottom:385.465333pt;}
.y20_c00485{bottom:405.265333pt;}
.y1f_c00485{bottom:425.132000pt;}
.y1e_c00485{bottom:444.333333pt;}
.y1d_c00485{bottom:464.132000pt;}
.y1c_c00485{bottom:483.732000pt;}
.y1b_c00485{bottom:503.532000pt;}
.y1a_c00485{bottom:523.333333pt;}
.y19_c00485{bottom:543.198667pt;}
.y18_c00485{bottom:562.398667pt;}
.y17_c00485{bottom:582.532000pt;}
.y16_c00485{bottom:602.065333pt;}
.y15_c00485{bottom:621.598667pt;}
.y14_c00485{bottom:641.465333pt;}
.y13_c00485{bottom:661.265333pt;}
.y12_c00485{bottom:680.798667pt;}
.y11_c00485{bottom:700.333333pt;}
.y10_c00485{bottom:719.865333pt;}
.yf_c00485{bottom:739.065333pt;}
.ye_c00485{bottom:757.600000pt;}
.yd_c00485{bottom:777.133333pt;}
.yc_c00485{bottom:797.266667pt;}
.y9_c00485{bottom:812.000000pt;}
.ya_c00485{bottom:812.600000pt;}
.yb_c00485{bottom:817.133333pt;}
.y8_c00485{bottom:830.600000pt;}
.y7_c00485{bottom:855.198667pt;}
.y6_c00485{bottom:874.065333pt;}
.y5_c00485{bottom:893.600000pt;}
.y4_c00485{bottom:912.800000pt;}
.y1_c00485{bottom:955.065333pt;}
.y3_c00485{bottom:963.732000pt;}
.y2_c00485{bottom:968.800000pt;}
.h2_c00485{height:52.343750pt;}
.h4_c00485{height:57.578125pt;}
.h1_c00485{height:61.187500pt;}
.h3_c00485{height:62.812500pt;}
.h0_c00485{height:1044.000000pt;}
.w0_c00485{width:650.646400pt;}
.w1_c00485{width:650.666667pt;}
.x0_c00485{left:0.000000pt;}
.xd_c00485{left:56.302400pt;}
.xb_c00485{left:57.235733pt;}
.x9_c00485{left:58.569067pt;}
.xa_c00485{left:59.502400pt;}
.x5_c00485{left:60.435733pt;}
.x4_c00485{left:61.769067pt;}
.x1_c00485{left:79.969067pt;}
.xc_c00485{left:84.769067pt;}
.x6_c00485{left:86.369067pt;}
.xf_c00485{left:91.835733pt;}
.x2_c00485{left:104.302400pt;}
.x7_c00485{left:110.369067pt;}
.x8_c00485{left:111.635733pt;}
.x3_c00485{left:263.035733pt;}
.xe_c00485{left:589.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fee5e3ad4fd9fd6017da014f.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00486;src:url('chunks/assets/font_7d49e24164aa76d69567171b.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00486{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00486{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00486{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c00486{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00486{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00486{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00486{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00486{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c00486{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c00486{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00486{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c00486{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00486{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m8_c00486{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00486{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00486{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.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;}
}
.ws0_c00486{word-spacing:0.000000px;}
.fc0_c00486{color:transparent;}
.fs0_c00486{font-size:60.000000px;}
.fs1_c00486{font-size:72.000000px;}
.y0_c00486{bottom:0.000000px;}
.y2c_c00486{bottom:51.673500px;}
.y2b_c00486{bottom:73.948500px;}
.y2a_c00486{bottom:95.923500px;}
.y29_c00486{bottom:117.148500px;}
.y28_c00486{bottom:138.448500px;}
.y27_c00486{bottom:159.673500px;}
.y26_c00486{bottom:181.648500px;}
.y25_c00486{bottom:202.500000px;}
.y24_c00486{bottom:223.423500px;}
.y23_c00486{bottom:244.648500px;}
.y22_c00486{bottom:265.875000px;}
.y21_c00486{bottom:287.098500px;}
.y20_c00486{bottom:309.073500px;}
.y1f_c00486{bottom:331.048500px;}
.y1e_c00486{bottom:352.948500px;}
.y1d_c00486{bottom:374.548500px;}
.y1c_c00486{bottom:396.598500px;}
.y1b_c00486{bottom:418.500000px;}
.y1a_c00486{bottom:440.098500px;}
.y19_c00486{bottom:462.448500px;}
.y18_c00486{bottom:484.723500px;}
.y17_c00486{bottom:506.698500px;}
.y16_c00486{bottom:528.673500px;}
.y15_c00486{bottom:550.648500px;}
.y14_c00486{bottom:574.723500px;}
.y13_c00486{bottom:594.898500px;}
.y12_c00486{bottom:617.173500px;}
.y11_c00486{bottom:639.523500px;}
.y10_c00486{bottom:661.500000px;}
.yf_c00486{bottom:684.148500px;}
.ye_c00486{bottom:705.448500px;}
.yd_c00486{bottom:730.648500px;}
.yc_c00486{bottom:750.750000px;}
.yb_c00486{bottom:772.348500px;}
.ya_c00486{bottom:797.925000px;}
.y9_c00486{bottom:822.375000px;}
.y8_c00486{bottom:838.948500px;}
.y7_c00486{bottom:861.300000px;}
.y5_c00486{bottom:864.900000px;}
.y6_c00486{bottom:883.275000px;}
.y4_c00486{bottom:945.525000px;}
.y3_c00486{bottom:1089.525000px;}
.y1_c00486{bottom:1100.323500px;}
.y2_c00486{bottom:1105.573500px;}
.h1_c00486{height:60.468750px;}
.h2_c00486{height:70.664062px;}
.h0_c00486{height:1174.500000px;}
.w0_c00486{width:731.977200px;}
.w1_c00486{width:732.000000px;}
.x0_c00486{left:0.000000px;}
.xc_c00486{left:67.315200px;}
.xb_c00486{left:68.365200px;}
.x5_c00486{left:69.490200px;}
.x8_c00486{left:71.290200px;}
.xa_c00486{left:90.715200px;}
.x9_c00486{left:93.940200px;}
.x6_c00486{left:105.790200px;}
.x7_c00486{left:112.315200px;}
.x1_c00486{left:296.590200px;}
.x4_c00486{left:307.390200px;}
.x2_c00486{left:496.765200px;}
.x3_c00486{left:661.990200px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls0_c00486{letter-spacing:0.000000pt;}
.ws0_c00486{word-spacing:0.000000pt;}
.fs0_c00486{font-size:53.333333pt;}
.fs1_c00486{font-size:64.000000pt;}
.y0_c00486{bottom:0.000000pt;}
.y2c_c00486{bottom:45.932000pt;}
.y2b_c00486{bottom:65.732000pt;}
.y2a_c00486{bottom:85.265333pt;}
.y29_c00486{bottom:104.132000pt;}
.y28_c00486{bottom:123.065333pt;}
.y27_c00486{bottom:141.932000pt;}
.y26_c00486{bottom:161.465333pt;}
.y25_c00486{bottom:180.000000pt;}
.y24_c00486{bottom:198.598667pt;}
.y23_c00486{bottom:217.465333pt;}
.y22_c00486{bottom:236.333333pt;}
.y21_c00486{bottom:255.198667pt;}
.y20_c00486{bottom:274.732000pt;}
.y1f_c00486{bottom:294.265333pt;}
.y1e_c00486{bottom:313.732000pt;}
.y1d_c00486{bottom:332.932000pt;}
.y1c_c00486{bottom:352.532000pt;}
.y1b_c00486{bottom:372.000000pt;}
.y1a_c00486{bottom:391.198667pt;}
.y19_c00486{bottom:411.065333pt;}
.y18_c00486{bottom:430.865333pt;}
.y17_c00486{bottom:450.398667pt;}
.y16_c00486{bottom:469.932000pt;}
.y15_c00486{bottom:489.465333pt;}
.y14_c00486{bottom:510.865333pt;}
.y13_c00486{bottom:528.798667pt;}
.y12_c00486{bottom:548.598667pt;}
.y11_c00486{bottom:568.465333pt;}
.y10_c00486{bottom:588.000000pt;}
.yf_c00486{bottom:608.132000pt;}
.ye_c00486{bottom:627.065333pt;}
.yd_c00486{bottom:649.465333pt;}
.yc_c00486{bottom:667.333333pt;}
.yb_c00486{bottom:686.532000pt;}
.ya_c00486{bottom:709.266667pt;}
.y9_c00486{bottom:731.000000pt;}
.y8_c00486{bottom:745.732000pt;}
.y7_c00486{bottom:765.600000pt;}
.y5_c00486{bottom:768.800000pt;}
.y6_c00486{bottom:785.133333pt;}
.y4_c00486{bottom:840.466667pt;}
.y3_c00486{bottom:968.466667pt;}
.y1_c00486{bottom:978.065333pt;}
.y2_c00486{bottom:982.732000pt;}
.h1_c00486{height:53.750000pt;}
.h2_c00486{height:62.812500pt;}
.h0_c00486{height:1044.000000pt;}
.w0_c00486{width:650.646400pt;}
.w1_c00486{width:650.666667pt;}
.x0_c00486{left:0.000000pt;}
.xc_c00486{left:59.835733pt;}
.xb_c00486{left:60.769067pt;}
.x5_c00486{left:61.769067pt;}
.x8_c00486{left:63.369067pt;}
.xa_c00486{left:80.635733pt;}
.x9_c00486{left:83.502400pt;}
.x6_c00486{left:94.035733pt;}
.x7_c00486{left:99.835733pt;}
.x1_c00486{left:263.635733pt;}
.x4_c00486{left:273.235733pt;}
.x2_c00486{left:441.569067pt;}
.x3_c00486{left:588.435733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0c4f3c98add25b9d48daf500.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00487;src:url('chunks/assets/font_8823173ccf0104a5ec78d5ee.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00487{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c00487{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c00487{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m14_c00487{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c00487{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c00487{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00487{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00487{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c00487{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00487{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9_c00487{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00487{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00487{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c00487{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00487{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c00487{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c00487{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c00487{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c00487{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c00487{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m12_c00487{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me_c00487{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.ls0_c00487{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00487{color:transparent;}
.fs1_c00487{font-size:60.000000px;}
.fs2_c00487{font-size:66.000000px;}
.fs0_c00487{font-size:72.000000px;}
.y0_c00487{bottom:0.000000px;}
.y34_c00487{bottom:71.098500px;}
.y33_c00487{bottom:93.073500px;}
.y31_c00487{bottom:113.923500px;}
.y32_c00487{bottom:114.673500px;}
.y30_c00487{bottom:116.098500px;}
.y2f_c00487{bottom:137.323500px;}
.y2e_c00487{bottom:158.548500px;}
.y2d_c00487{bottom:187.723500px;}
.y2c_c00487{bottom:203.250000px;}
.y2b_c00487{bottom:225.523500px;}
.y2a_c00487{bottom:247.875000px;}
.y29_c00487{bottom:270.150000px;}
.y28_c00487{bottom:296.473500px;}
.y27_c00487{bottom:314.473500px;}
.y26_c00487{bottom:336.448500px;}
.y25_c00487{bottom:358.348500px;}
.y23_c00487{bottom:380.323500px;}
.y24_c00487{bottom:380.698500px;}
.y22_c00487{bottom:381.750000px;}
.y21_c00487{bottom:402.973500px;}
.y20_c00487{bottom:426.375000px;}
.y1f_c00487{bottom:447.298500px;}
.y1e_c00487{bottom:469.648500px;}
.y1d_c00487{bottom:491.923500px;}
.y1c_c00487{bottom:492.298500px;}
.y1b_c00487{bottom:493.723500px;}
.y1a_c00487{bottom:514.198500px;}
.y19_c00487{bottom:536.250000px;}
.y18_c00487{bottom:558.223500px;}
.y17_c00487{bottom:580.875000px;}
.y16_c00487{bottom:602.848500px;}
.y15_c00487{bottom:625.125000px;}
.y14_c00487{bottom:646.423500px;}
.y13_c00487{bottom:669.750000px;}
.y12_c00487{bottom:692.098500px;}
.y11_c00487{bottom:714.075000px;}
.y10_c00487{bottom:736.348500px;}
.yf_c00487{bottom:758.398500px;}
.ye_c00487{bottom:780.973500px;}
.yd_c00487{bottom:799.050000px;}
.yc_c00487{bottom:824.250000px;}
.yb_c00487{bottom:846.223500px;}
.ya_c00487{bottom:867.823500px;}
.y9_c00487{bottom:889.723500px;}
.y8_c00487{bottom:911.698500px;}
.y7_c00487{bottom:934.050000px;}
.y6_c00487{bottom:955.650000px;}
.y5_c00487{bottom:977.250000px;}
.y4_c00487{bottom:999.223500px;}
.y3_c00487{bottom:1019.323500px;}
.y2_c00487{bottom:1041.300000px;}
.y1_c00487{bottom:1088.775000px;}
.y35_c00487{bottom:1099.275000px;}
.h2_c00487{height:58.886719px;}
.h3_c00487{height:66.515625px;}
.h1_c00487{height:70.664062px;}
.h4_c00487{height:72.562500px;}
.h0_c00487{height:1174.500000px;}
.w0_c00487{width:731.977200px;}
.w1_c00487{width:732.000000px;}
.x0_c00487{left:0.000000px;}
.x12_c00487{left:48.565200px;}
.xb_c00487{left:49.690200px;}
.x9_c00487{left:51.115200px;}
.x7_c00487{left:52.540200px;}
.x6_c00487{left:53.590200px;}
.x5_c00487{left:55.090200px;}
.x4_c00487{left:56.140200px;}
.x3_c00487{left:57.190200px;}
.x2_c00487{left:58.315200px;}
.xa_c00487{left:70.540200px;}
.x11_c00487{left:71.965200px;}
.x8_c00487{left:73.090200px;}
.x1_c00487{left:78.490200px;}
.xc_c00487{left:108.340200px;}
.x15_c00487{left:284.365200px;}
.xd_c00487{left:359.290200px;}
.xe_c00487{left:421.538700px;}
.xf_c00487{left:462.940200px;}
.x10_c00487{left:519.790200px;}
.x13_c00487{left:587.515200px;}
.x14_c00487{left:653.740200px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls0_c00487{letter-spacing:0.000000pt;}
.ws0_c00487{word-spacing:0.000000pt;}
.fs1_c00487{font-size:53.333333pt;}
.fs2_c00487{font-size:58.666667pt;}
.fs0_c00487{font-size:64.000000pt;}
.y0_c00487{bottom:0.000000pt;}
.y34_c00487{bottom:63.198667pt;}
.y33_c00487{bottom:82.732000pt;}
.y31_c00487{bottom:101.265333pt;}
.y32_c00487{bottom:101.932000pt;}
.y30_c00487{bottom:103.198667pt;}
.y2f_c00487{bottom:122.065333pt;}
.y2e_c00487{bottom:140.932000pt;}
.y2d_c00487{bottom:166.865333pt;}
.y2c_c00487{bottom:180.666667pt;}
.y2b_c00487{bottom:200.465333pt;}
.y2a_c00487{bottom:220.333333pt;}
.y29_c00487{bottom:240.133333pt;}
.y28_c00487{bottom:263.532000pt;}
.y27_c00487{bottom:279.532000pt;}
.y26_c00487{bottom:299.065333pt;}
.y25_c00487{bottom:318.532000pt;}
.y23_c00487{bottom:338.065333pt;}
.y24_c00487{bottom:338.398667pt;}
.y22_c00487{bottom:339.333333pt;}
.y21_c00487{bottom:358.198667pt;}
.y20_c00487{bottom:379.000000pt;}
.y1f_c00487{bottom:397.598667pt;}
.y1e_c00487{bottom:417.465333pt;}
.y1d_c00487{bottom:437.265333pt;}
.y1c_c00487{bottom:437.598667pt;}
.y1b_c00487{bottom:438.865333pt;}
.y1a_c00487{bottom:457.065333pt;}
.y19_c00487{bottom:476.666667pt;}
.y18_c00487{bottom:496.198667pt;}
.y17_c00487{bottom:516.333333pt;}
.y16_c00487{bottom:535.865333pt;}
.y15_c00487{bottom:555.666667pt;}
.y14_c00487{bottom:574.598667pt;}
.y13_c00487{bottom:595.333333pt;}
.y12_c00487{bottom:615.198667pt;}
.y11_c00487{bottom:634.733333pt;}
.y10_c00487{bottom:654.532000pt;}
.yf_c00487{bottom:674.132000pt;}
.ye_c00487{bottom:694.198667pt;}
.yd_c00487{bottom:710.266667pt;}
.yc_c00487{bottom:732.666667pt;}
.yb_c00487{bottom:752.198667pt;}
.ya_c00487{bottom:771.398667pt;}
.y9_c00487{bottom:790.865333pt;}
.y8_c00487{bottom:810.398667pt;}
.y7_c00487{bottom:830.266667pt;}
.y6_c00487{bottom:849.466667pt;}
.y5_c00487{bottom:868.666667pt;}
.y4_c00487{bottom:888.198667pt;}
.y3_c00487{bottom:906.065333pt;}
.y2_c00487{bottom:925.600000pt;}
.y1_c00487{bottom:967.800000pt;}
.y35_c00487{bottom:977.133333pt;}
.h2_c00487{height:52.343750pt;}
.h3_c00487{height:59.125000pt;}
.h1_c00487{height:62.812500pt;}
.h4_c00487{height:64.500000pt;}
.h0_c00487{height:1044.000000pt;}
.w0_c00487{width:650.646400pt;}
.w1_c00487{width:650.666667pt;}
.x0_c00487{left:0.000000pt;}
.x12_c00487{left:43.169067pt;}
.xb_c00487{left:44.169067pt;}
.x9_c00487{left:45.435733pt;}
.x7_c00487{left:46.702400pt;}
.x6_c00487{left:47.635733pt;}
.x5_c00487{left:48.969067pt;}
.x4_c00487{left:49.902400pt;}
.x3_c00487{left:50.835733pt;}
.x2_c00487{left:51.835733pt;}
.xa_c00487{left:62.702400pt;}
.x11_c00487{left:63.969067pt;}
.x8_c00487{left:64.969067pt;}
.x1_c00487{left:69.769067pt;}
.xc_c00487{left:96.302400pt;}
.x15_c00487{left:252.769067pt;}
.xd_c00487{left:319.369067pt;}
.xe_c00487{left:374.701067pt;}
.xf_c00487{left:411.502400pt;}
.x10_c00487{left:462.035733pt;}
.x13_c00487{left:522.235733pt;}
.x14_c00487{left:581.102400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b062a9e64fe5b9b52f797e03.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00488;src:url('chunks/assets/font_eefc1146ae4ba06fcb435cfa.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me_c00488{transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);}
.m11_c00488{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00488{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00488{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c00488{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c00488{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00488{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00488{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00488{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00488{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00488{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00488{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00488{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m10_c00488{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00488{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00488{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mc_c00488{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1_c00488{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00488{color:transparent;}
.fs0_c00488{font-size:60.000000px;}
.fs1_c00488{font-size:66.000000px;}
.fs2_c00488{font-size:72.000000px;}
.fs3_c00488{font-size:84.000000px;}
.y0_c00488{bottom:0.000000px;}
.y27_c00488{bottom:337.875000px;}
.y26_c00488{bottom:358.048500px;}
.y25_c00488{bottom:384.298500px;}
.y24_c00488{bottom:406.275000px;}
.y23_c00488{bottom:423.898500px;}
.y21_c00488{bottom:449.473500px;}
.y22_c00488{bottom:453.750000px;}
.y20_c00488{bottom:472.125000px;}
.y1f_c00488{bottom:494.098500px;}
.y1e_c00488{bottom:516.750000px;}
.y1d_c00488{bottom:538.348500px;}
.y1c_c00488{bottom:561.448500px;}
.y1b_c00488{bottom:583.048500px;}
.y1a_c00488{bottom:605.698500px;}
.y19_c00488{bottom:627.973500px;}
.y18_c00488{bottom:649.573500px;}
.y17_c00488{bottom:671.923500px;}
.y16_c00488{bottom:693.898500px;}
.y15_c00488{bottom:716.548500px;}
.y14_c00488{bottom:738.523500px;}
.y13_c00488{bottom:761.250000px;}
.y12_c00488{bottom:783.523500px;}
.y11_c00488{bottom:802.948500px;}
.y10_c00488{bottom:804.375000px;}
.yf_c00488{bottom:806.550000px;}
.ye_c00488{bottom:828.150000px;}
.yd_c00488{bottom:849.448500px;}
.yc_c00488{bottom:852.300000px;}
.yb_c00488{bottom:874.948500px;}
.ya_c00488{bottom:895.125000px;}
.y9_c00488{bottom:917.098500px;}
.y8_c00488{bottom:939.448500px;}
.y7_c00488{bottom:961.348500px;}
.y6_c00488{bottom:983.698500px;}
.y5_c00488{bottom:1008.150000px;}
.y4_c00488{bottom:1027.948500px;}
.y3_c00488{bottom:1081.948500px;}
.y1_c00488{bottom:1089.525000px;}
.y2_c00488{bottom:1093.500000px;}
.h1_c00488{height:58.886719px;}
.h2_c00488{height:64.775391px;}
.h3_c00488{height:70.664062px;}
.h4_c00488{height:82.400391px;}
.h0_c00488{height:1174.500000px;}
.w0_c00488{width:731.977200px;}
.w1_c00488{width:732.000000px;}
.x0_c00488{left:0.000000px;}
.x4_c00488{left:71.965200px;}
.x6_c00488{left:73.390200px;}
.xc_c00488{left:74.515200px;}
.xe_c00488{left:75.563700px;}
.x11_c00488{left:76.990200px;}
.x5_c00488{left:93.940200px;}
.x7_c00488{left:94.990200px;}
.xd_c00488{left:96.490200px;}
.x10_c00488{left:109.765200px;}
.x12_c00488{left:111.190200px;}
.x8_c00488{left:144.715200px;}
.x9_c00488{left:192.940200px;}
.x1_c00488{left:320.740200px;}
.x2_c00488{left:493.540200px;}
.xa_c00488{left:542.515200px;}
.xb_c00488{left:543.940200px;}
.x3_c00488{left:658.765200px;}
.xf_c00488{left:696.190200px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls0_c00488{letter-spacing:0.000000pt;}
.ws0_c00488{word-spacing:0.000000pt;}
.fs0_c00488{font-size:53.333333pt;}
.fs1_c00488{font-size:58.666667pt;}
.fs2_c00488{font-size:64.000000pt;}
.fs3_c00488{font-size:74.666667pt;}
.y0_c00488{bottom:0.000000pt;}
.y27_c00488{bottom:300.333333pt;}
.y26_c00488{bottom:318.265333pt;}
.y25_c00488{bottom:341.598667pt;}
.y24_c00488{bottom:361.133333pt;}
.y23_c00488{bottom:376.798667pt;}
.y21_c00488{bottom:399.532000pt;}
.y22_c00488{bottom:403.333333pt;}
.y20_c00488{bottom:419.666667pt;}
.y1f_c00488{bottom:439.198667pt;}
.y1e_c00488{bottom:459.333333pt;}
.y1d_c00488{bottom:478.532000pt;}
.y1c_c00488{bottom:499.065333pt;}
.y1b_c00488{bottom:518.265333pt;}
.y1a_c00488{bottom:538.398667pt;}
.y19_c00488{bottom:558.198667pt;}
.y18_c00488{bottom:577.398667pt;}
.y17_c00488{bottom:597.265333pt;}
.y16_c00488{bottom:616.798667pt;}
.y15_c00488{bottom:636.932000pt;}
.y14_c00488{bottom:656.465333pt;}
.y13_c00488{bottom:676.666667pt;}
.y12_c00488{bottom:696.465333pt;}
.y11_c00488{bottom:713.732000pt;}
.y10_c00488{bottom:715.000000pt;}
.yf_c00488{bottom:716.933333pt;}
.ye_c00488{bottom:736.133333pt;}
.yd_c00488{bottom:755.065333pt;}
.yc_c00488{bottom:757.600000pt;}
.yb_c00488{bottom:777.732000pt;}
.ya_c00488{bottom:795.666667pt;}
.y9_c00488{bottom:815.198667pt;}
.y8_c00488{bottom:835.065333pt;}
.y7_c00488{bottom:854.532000pt;}
.y6_c00488{bottom:874.398667pt;}
.y5_c00488{bottom:896.133333pt;}
.y4_c00488{bottom:913.732000pt;}
.y3_c00488{bottom:961.732000pt;}
.y1_c00488{bottom:968.466667pt;}
.y2_c00488{bottom:972.000000pt;}
.h1_c00488{height:52.343750pt;}
.h2_c00488{height:57.578125pt;}
.h3_c00488{height:62.812500pt;}
.h4_c00488{height:73.244792pt;}
.h0_c00488{height:1044.000000pt;}
.w0_c00488{width:650.646400pt;}
.w1_c00488{width:650.666667pt;}
.x0_c00488{left:0.000000pt;}
.x4_c00488{left:63.969067pt;}
.x6_c00488{left:65.235733pt;}
.xc_c00488{left:66.235733pt;}
.xe_c00488{left:67.167733pt;}
.x11_c00488{left:68.435733pt;}
.x5_c00488{left:83.502400pt;}
.x7_c00488{left:84.435733pt;}
.xd_c00488{left:85.769067pt;}
.x10_c00488{left:97.569067pt;}
.x12_c00488{left:98.835733pt;}
.x8_c00488{left:128.635733pt;}
.x9_c00488{left:171.502400pt;}
.x1_c00488{left:285.102400pt;}
.x2_c00488{left:438.702400pt;}
.xa_c00488{left:482.235733pt;}
.xb_c00488{left:483.502400pt;}
.x3_c00488{left:585.569067pt;}
.xf_c00488{left:618.835733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27cc1aa31ac84af86a5d7154.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00489;src:url('chunks/assets/font_901653c5b084ed1fcb1f88e3.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00489;src:url('chunks/assets/font_88cac5b46f641bba16561c09.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c00489{transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);}
.m10_c00489{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m18_c00489{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3_c00489{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c00489{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c00489{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c00489{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00489{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf_c00489{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c00489{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2_c00489{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c00489{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c00489{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00489{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m13_c00489{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c00489{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00489{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00489{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c00489{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00489{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00489{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00489{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00489{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00489{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00489{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.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;}
}
.ws0_c00489{word-spacing:0.000000px;}
.fc0_c00489{color:transparent;}
.fs0_c00489{font-size:60.000000px;}
.fs1_c00489{font-size:72.000000px;}
.fs2_c00489{font-size:84.000000px;}
.y0_c00489{bottom:0.000000px;}
.y29_c00489{bottom:64.648500px;}
.y28_c00489{bottom:80.848500px;}
.y27_c00489{bottom:97.723500px;}
.y26_c00489{bottom:115.723500px;}
.y25_c00489{bottom:132.673500px;}
.y24_c00489{bottom:150.298500px;}
.y23_c00489{bottom:168.000000px;}
.y22_c00489{bottom:185.625000px;}
.y21_c00489{bottom:203.250000px;}
.y20_c00489{bottom:221.250000px;}
.y1f_c00489{bottom:238.875000px;}
.y1e_c00489{bottom:256.125000px;}
.y1d_c00489{bottom:259.048500px;}
.y1c_c00489{bottom:274.125000px;}
.y1b_c00489{bottom:291.448500px;}
.y1a_c00489{bottom:309.073500px;}
.y19_c00489{bottom:327.073500px;}
.y18_c00489{bottom:344.698500px;}
.y17_c00489{bottom:345.375000px;}
.y16_c00489{bottom:424.948500px;}
.y15_c00489{bottom:446.923500px;}
.y14_c00489{bottom:468.898500px;}
.y13_c00489{bottom:491.250000px;}
.y12_c00489{bottom:512.473500px;}
.y11_c00489{bottom:535.500000px;}
.y10_c00489{bottom:557.473500px;}
.yf_c00489{bottom:579.750000px;}
.ye_c00489{bottom:602.098500px;}
.yd_c00489{bottom:624.073500px;}
.yc_c00489{bottom:643.875000px;}
.yb_c00489{bottom:669.375000px;}
.ya_c00489{bottom:688.500000px;}
.y9_c00489{bottom:713.398500px;}
.y8_c00489{bottom:735.673500px;}
.y7_c00489{bottom:757.648500px;}
.y6_c00489{bottom:779.925000px;}
.y5_c00489{bottom:802.275000px;}
.y3_c00489{bottom:861.675000px;}
.y4_c00489{bottom:862.348500px;}
.y2_c00489{bottom:915.300000px;}
.y2a_c00489{bottom:1079.848500px;}
.y1_c00489{bottom:1092.000000px;}
.h1_c00489{height:58.886719px;}
.h2_c00489{height:70.664062px;}
.h3_c00489{height:82.400391px;}
.h0_c00489{height:1174.500000px;}
.w0_c00489{width:731.977200px;}
.w1_c00489{width:732.000000px;}
.x0_c00489{left:0.000000px;}
.xa_c00489{left:50.740200px;}
.x7_c00489{left:51.790200px;}
.x8_c00489{left:52.915200px;}
.x6_c00489{left:53.965200px;}
.xc_c00489{left:69.115200px;}
.xb_c00489{left:72.340200px;}
.x5_c00489{left:73.390200px;}
.x10_c00489{left:79.915200px;}
.x9_c00489{left:83.140200px;}
.xd_c00489{left:104.740200px;}
.x2_c00489{left:166.990200px;}
.x3_c00489{left:271.765200px;}
.x1_c00489{left:284.365200px;}
.x4_c00489{left:302.740200px;}
.xe_c00489{left:655.915200px;}
.xf_c00489{left:675.340200px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls0_c00489{letter-spacing:0.000000pt;}
.ws0_c00489{word-spacing:0.000000pt;}
.fs0_c00489{font-size:53.333333pt;}
.fs1_c00489{font-size:64.000000pt;}
.fs2_c00489{font-size:74.666667pt;}
.y0_c00489{bottom:0.000000pt;}
.y29_c00489{bottom:57.465333pt;}
.y28_c00489{bottom:71.865333pt;}
.y27_c00489{bottom:86.865333pt;}
.y26_c00489{bottom:102.865333pt;}
.y25_c00489{bottom:117.932000pt;}
.y24_c00489{bottom:133.598667pt;}
.y23_c00489{bottom:149.333333pt;}
.y22_c00489{bottom:165.000000pt;}
.y21_c00489{bottom:180.666667pt;}
.y20_c00489{bottom:196.666667pt;}
.y1f_c00489{bottom:212.333333pt;}
.y1e_c00489{bottom:227.666667pt;}
.y1d_c00489{bottom:230.265333pt;}
.y1c_c00489{bottom:243.666667pt;}
.y1b_c00489{bottom:259.065333pt;}
.y1a_c00489{bottom:274.732000pt;}
.y19_c00489{bottom:290.732000pt;}
.y18_c00489{bottom:306.398667pt;}
.y17_c00489{bottom:307.000000pt;}
.y16_c00489{bottom:377.732000pt;}
.y15_c00489{bottom:397.265333pt;}
.y14_c00489{bottom:416.798667pt;}
.y13_c00489{bottom:436.666667pt;}
.y12_c00489{bottom:455.532000pt;}
.y11_c00489{bottom:476.000000pt;}
.y10_c00489{bottom:495.532000pt;}
.yf_c00489{bottom:515.333333pt;}
.ye_c00489{bottom:535.198667pt;}
.yd_c00489{bottom:554.732000pt;}
.yc_c00489{bottom:572.333333pt;}
.yb_c00489{bottom:595.000000pt;}
.ya_c00489{bottom:612.000000pt;}
.y9_c00489{bottom:634.132000pt;}
.y8_c00489{bottom:653.932000pt;}
.y7_c00489{bottom:673.465333pt;}
.y6_c00489{bottom:693.266667pt;}
.y5_c00489{bottom:713.133333pt;}
.y3_c00489{bottom:765.933333pt;}
.y4_c00489{bottom:766.532000pt;}
.y2_c00489{bottom:813.600000pt;}
.y2a_c00489{bottom:959.865333pt;}
.y1_c00489{bottom:970.666667pt;}
.h1_c00489{height:52.343750pt;}
.h2_c00489{height:62.812500pt;}
.h3_c00489{height:73.244792pt;}
.h0_c00489{height:1044.000000pt;}
.w0_c00489{width:650.646400pt;}
.w1_c00489{width:650.666667pt;}
.x0_c00489{left:0.000000pt;}
.xa_c00489{left:45.102400pt;}
.x7_c00489{left:46.035733pt;}
.x8_c00489{left:47.035733pt;}
.x6_c00489{left:47.969067pt;}
.xc_c00489{left:61.435733pt;}
.xb_c00489{left:64.302400pt;}
.x5_c00489{left:65.235733pt;}
.x10_c00489{left:71.035733pt;}
.x9_c00489{left:73.902400pt;}
.xd_c00489{left:93.102400pt;}
.x2_c00489{left:148.435733pt;}
.x3_c00489{left:241.569067pt;}
.x1_c00489{left:252.769067pt;}
.x4_c00489{left:269.102400pt;}
.xe_c00489{left:583.035733pt;}
.xf_c00489{left:600.302400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4ed89a4cc11113fce8956d9.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00490;src:url('chunks/assets/font_531a17d099874442e1c353ca.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00490;src:url('chunks/assets/font_49db3bb3afcdf806dd6fa141.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00490{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m1_c00490{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m0_c00490{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4_c00490{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c00490{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00490{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00490{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00490{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00490{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00490{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00490{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00490{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,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;}
}
.ws0_c00490{word-spacing:0.000000px;}
.fc0_c00490{color:transparent;}
.fs0_c00490{font-size:24.000000px;}
.fs3_c00490{font-size:66.000000px;}
.fs2_c00490{font-size:72.000000px;}
.fs1_c00490{font-size:180.000000px;}
.y0_c00490{bottom:0.000000px;}
.y14_c00490{bottom:179.473500px;}
.y13_c00490{bottom:289.275000px;}
.y12_c00490{bottom:312.298500px;}
.y11_c00490{bottom:331.348500px;}
.ye_c00490{bottom:461.323500px;}
.yf_c00490{bottom:461.698500px;}
.y10_c00490{bottom:462.073500px;}
.yb_c00490{bottom:482.923500px;}
.yc_c00490{bottom:484.723500px;}
.yd_c00490{bottom:485.473500px;}
.ya_c00490{bottom:616.500000px;}
.y9_c00490{bottom:747.898500px;}
.y8_c00490{bottom:768.750000px;}
.y7_c00490{bottom:879.300000px;}
.y6_c00490{bottom:889.723500px;}
.y5_c00490{bottom:891.525000px;}
.y4_c00490{bottom:896.250000px;}
.y3_c00490{bottom:960.300000px;}
.y2_c00490{bottom:1083.073500px;}
.y1_c00490{bottom:1167.300000px;}
.h1_c00490{height:23.554688px;}
.h4_c00490{height:64.775391px;}
.h3_c00490{height:70.628906px;}
.h2_c00490{height:187.734375px;}
.h0_c00490{height:1174.500000px;}
.w0_c00490{width:731.977200px;}
.w1_c00490{width:732.000000px;}
.x0_c00490{left:0.000000px;}
.x1_c00490{left:42.790200px;}
.x4_c00490{left:61.165200px;}
.xd_c00490{left:65.140200px;}
.x8_c00490{left:80.965200px;}
.x7_c00490{left:82.090200px;}
.x3_c00490{left:161.590200px;}
.xb_c00490{left:205.540200px;}
.xc_c00490{left:234.340200px;}
.x2_c00490{left:254.140200px;}
.x5_c00490{left:546.490200px;}
.x6_c00490{left:561.190200px;}
.x9_c00490{left:587.890200px;}
.xa_c00490{left:605.890200px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls0_c00490{letter-spacing:0.000000pt;}
.ws0_c00490{word-spacing:0.000000pt;}
.fs0_c00490{font-size:21.333333pt;}
.fs3_c00490{font-size:58.666667pt;}
.fs2_c00490{font-size:64.000000pt;}
.fs1_c00490{font-size:160.000000pt;}
.y0_c00490{bottom:0.000000pt;}
.y14_c00490{bottom:159.532000pt;}
.y13_c00490{bottom:257.133333pt;}
.y12_c00490{bottom:277.598667pt;}
.y11_c00490{bottom:294.532000pt;}
.ye_c00490{bottom:410.065333pt;}
.yf_c00490{bottom:410.398667pt;}
.y10_c00490{bottom:410.732000pt;}
.yb_c00490{bottom:429.265333pt;}
.yc_c00490{bottom:430.865333pt;}
.yd_c00490{bottom:431.532000pt;}
.ya_c00490{bottom:548.000000pt;}
.y9_c00490{bottom:664.798667pt;}
.y8_c00490{bottom:683.333333pt;}
.y7_c00490{bottom:781.600000pt;}
.y6_c00490{bottom:790.865333pt;}
.y5_c00490{bottom:792.466667pt;}
.y4_c00490{bottom:796.666667pt;}
.y3_c00490{bottom:853.600000pt;}
.y2_c00490{bottom:962.732000pt;}
.y1_c00490{bottom:1037.600000pt;}
.h1_c00490{height:20.937500pt;}
.h4_c00490{height:57.578125pt;}
.h3_c00490{height:62.781250pt;}
.h2_c00490{height:166.875000pt;}
.h0_c00490{height:1044.000000pt;}
.w0_c00490{width:650.646400pt;}
.w1_c00490{width:650.666667pt;}
.x0_c00490{left:0.000000pt;}
.x1_c00490{left:38.035733pt;}
.x4_c00490{left:54.369067pt;}
.xd_c00490{left:57.902400pt;}
.x8_c00490{left:71.969067pt;}
.x7_c00490{left:72.969067pt;}
.x3_c00490{left:143.635733pt;}
.xb_c00490{left:182.702400pt;}
.xc_c00490{left:208.302400pt;}
.x2_c00490{left:225.902400pt;}
.x5_c00490{left:485.769067pt;}
.x6_c00490{left:498.835733pt;}
.x9_c00490{left:522.569067pt;}
.xa_c00490{left:538.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_90d6d2382d12f87252e29757.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00491;src:url('chunks/assets/font_8745a683aa1a3c6e0f2a865f.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00491;src:url('chunks/assets/font_edba6a59f3dc220c70a48098.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00491{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m17_c00491{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m19_c00491{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.md_c00491{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m10_c00491{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m16_c00491{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mf_c00491{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00491{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m0_c00491{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c00491{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1_c00491{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c00491{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00491{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c00491{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m14_c00491{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00491{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00491{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00491{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c00491{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00491{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00491{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00491{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c00491{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00491{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c00491{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c00491{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.me_c00491{transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.307500,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;}
}
.ws0_c00491{word-spacing:0.000000px;}
.fc0_c00491{color:transparent;}
.fs0_c00491{font-size:60.000000px;}
.fs3_c00491{font-size:66.000000px;}
.fs2_c00491{font-size:72.000000px;}
.fs4_c00491{font-size:84.000000px;}
.fs1_c00491{font-size:96.000000px;}
.y0_c00491{bottom:0.000000px;}
.y2e_c00491{bottom:65.023500px;}
.y2d_c00491{bottom:66.750000px;}
.y2c_c00491{bottom:88.348500px;}
.y2b_c00491{bottom:110.698500px;}
.y2a_c00491{bottom:131.923500px;}
.y29_c00491{bottom:138.750000px;}
.y28_c00491{bottom:139.125000px;}
.y27_c00491{bottom:154.273500px;}
.y26_c00491{bottom:176.173500px;}
.y25_c00491{bottom:180.523500px;}
.y24_c00491{bottom:201.375000px;}
.y23_c00491{bottom:221.173500px;}
.y21_c00491{bottom:241.723500px;}
.y22_c00491{bottom:242.098500px;}
.y20_c00491{bottom:243.523500px;}
.y1f_c00491{bottom:265.125000px;}
.y1e_c00491{bottom:286.048500px;}
.y1d_c00491{bottom:287.473500px;}
.y1c_c00491{bottom:291.073500px;}
.y1b_c00491{bottom:309.823500px;}
.y1a_c00491{bottom:331.348500px;}
.y19_c00491{bottom:333.900000px;}
.y18_c00491{bottom:355.125000px;}
.y17_c00491{bottom:376.048500px;}
.y15_c00491{bottom:377.400000px;}
.y16_c00491{bottom:377.473500px;}
.y14_c00491{bottom:399.375000px;}
.y13_c00491{bottom:421.348500px;}
.y12_c00491{bottom:443.023500px;}
.y11_c00491{bottom:465.298500px;}
.y10_c00491{bottom:487.573500px;}
.yf_c00491{bottom:509.548500px;}
.ye_c00491{bottom:531.598500px;}
.yd_c00491{bottom:553.798500px;}
.yc_c00491{bottom:576.148500px;}
.yb_c00491{bottom:598.500000px;}
.y8_c00491{bottom:618.673500px;}
.y9_c00491{bottom:619.048500px;}
.ya_c00491{bottom:621.148500px;}
.y7_c00491{bottom:643.500000px;}
.y6_c00491{bottom:665.773500px;}
.y5_c00491{bottom:688.125000px;}
.y4_c00491{bottom:735.298500px;}
.y3_c00491{bottom:794.025000px;}
.y2_c00491{bottom:899.098500px;}
.y2f_c00491{bottom:1083.073500px;}
.y1_c00491{bottom:1095.675000px;}
.h1_c00491{height:60.468750px;}
.h4_c00491{height:64.775391px;}
.h7_c00491{height:66.515625px;}
.h3_c00491{height:70.628906px;}
.h5_c00491{height:70.664062px;}
.h8_c00491{height:72.562500px;}
.h6_c00491{height:82.441406px;}
.h2_c00491{height:94.218750px;}
.h0_c00491{height:1174.500000px;}
.w0_c00491{width:731.977200px;}
.w1_c00491{width:732.000000px;}
.x0_c00491{left:0.000000px;}
.x7_c00491{left:60.790200px;}
.x6_c00491{left:61.915200px;}
.x8_c00491{left:62.965200px;}
.x13_c00491{left:64.090200px;}
.x19_c00491{left:65.890200px;}
.x1d_c00491{left:67.690200px;}
.xb_c00491{left:83.515200px;}
.xe_c00491{left:85.313700px;}
.x1a_c00491{left:86.740200px;}
.x16_c00491{left:87.790200px;}
.x5_c00491{left:93.940200px;}
.xc_c00491{left:98.590200px;}
.x17_c00491{left:101.515200px;}
.x1b_c00491{left:102.565200px;}
.xd_c00491{left:105.115200px;}
.xf_c00491{left:106.165200px;}
.x18_c00491{left:107.590200px;}
.x1c_c00491{left:108.715200px;}
.x9_c00491{left:126.715200px;}
.x10_c00491{left:129.565200px;}
.xa_c00491{left:153.715200px;}
.x2_c00491{left:174.940200px;}
.x4_c00491{left:187.915200px;}
.x3_c00491{left:211.315200px;}
.x1_c00491{left:289.390200px;}
.x11_c00491{left:564.490200px;}
.x12_c00491{left:569.515200px;}
.x14_c00491{left:593.965200px;}
.x1e_c00491{left:601.915200px;}
.x15_c00491{left:622.090200px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ws0_c00491{word-spacing:0.000000pt;}
.fs0_c00491{font-size:53.333333pt;}
.fs3_c00491{font-size:58.666667pt;}
.fs2_c00491{font-size:64.000000pt;}
.fs4_c00491{font-size:74.666667pt;}
.fs1_c00491{font-size:85.333333pt;}
.y0_c00491{bottom:0.000000pt;}
.y2e_c00491{bottom:57.798667pt;}
.y2d_c00491{bottom:59.333333pt;}
.y2c_c00491{bottom:78.532000pt;}
.y2b_c00491{bottom:98.398667pt;}
.y2a_c00491{bottom:117.265333pt;}
.y29_c00491{bottom:123.333333pt;}
.y28_c00491{bottom:123.666667pt;}
.y27_c00491{bottom:137.132000pt;}
.y26_c00491{bottom:156.598667pt;}
.y25_c00491{bottom:160.465333pt;}
.y24_c00491{bottom:179.000000pt;}
.y23_c00491{bottom:196.598667pt;}
.y21_c00491{bottom:214.865333pt;}
.y22_c00491{bottom:215.198667pt;}
.y20_c00491{bottom:216.465333pt;}
.y1f_c00491{bottom:235.666667pt;}
.y1e_c00491{bottom:254.265333pt;}
.y1d_c00491{bottom:255.532000pt;}
.y1c_c00491{bottom:258.732000pt;}
.y1b_c00491{bottom:275.398667pt;}
.y1a_c00491{bottom:294.532000pt;}
.y19_c00491{bottom:296.800000pt;}
.y18_c00491{bottom:315.666667pt;}
.y17_c00491{bottom:334.265333pt;}
.y15_c00491{bottom:335.466667pt;}
.y16_c00491{bottom:335.532000pt;}
.y14_c00491{bottom:355.000000pt;}
.y13_c00491{bottom:374.532000pt;}
.y12_c00491{bottom:393.798667pt;}
.y11_c00491{bottom:413.598667pt;}
.y10_c00491{bottom:433.398667pt;}
.yf_c00491{bottom:452.932000pt;}
.ye_c00491{bottom:472.532000pt;}
.yd_c00491{bottom:492.265333pt;}
.yc_c00491{bottom:512.132000pt;}
.yb_c00491{bottom:532.000000pt;}
.y8_c00491{bottom:549.932000pt;}
.y9_c00491{bottom:550.265333pt;}
.ya_c00491{bottom:552.132000pt;}
.y7_c00491{bottom:572.000000pt;}
.y6_c00491{bottom:591.798667pt;}
.y5_c00491{bottom:611.666667pt;}
.y4_c00491{bottom:653.598667pt;}
.y3_c00491{bottom:705.800000pt;}
.y2_c00491{bottom:799.198667pt;}
.y2f_c00491{bottom:962.732000pt;}
.y1_c00491{bottom:973.933333pt;}
.h1_c00491{height:53.750000pt;}
.h4_c00491{height:57.578125pt;}
.h7_c00491{height:59.125000pt;}
.h3_c00491{height:62.781250pt;}
.h5_c00491{height:62.812500pt;}
.h8_c00491{height:64.500000pt;}
.h6_c00491{height:73.281250pt;}
.h2_c00491{height:83.750000pt;}
.h0_c00491{height:1044.000000pt;}
.w0_c00491{width:650.646400pt;}
.w1_c00491{width:650.666667pt;}
.x0_c00491{left:0.000000pt;}
.x7_c00491{left:54.035733pt;}
.x6_c00491{left:55.035733pt;}
.x8_c00491{left:55.969067pt;}
.x13_c00491{left:56.969067pt;}
.x19_c00491{left:58.569067pt;}
.x1d_c00491{left:60.169067pt;}
.xb_c00491{left:74.235733pt;}
.xe_c00491{left:75.834400pt;}
.x1a_c00491{left:77.102400pt;}
.x16_c00491{left:78.035733pt;}
.x5_c00491{left:83.502400pt;}
.xc_c00491{left:87.635733pt;}
.x17_c00491{left:90.235733pt;}
.x1b_c00491{left:91.169067pt;}
.xd_c00491{left:93.435733pt;}
.xf_c00491{left:94.369067pt;}
.x18_c00491{left:95.635733pt;}
.x1c_c00491{left:96.635733pt;}
.x9_c00491{left:112.635733pt;}
.x10_c00491{left:115.169067pt;}
.xa_c00491{left:136.635733pt;}
.x2_c00491{left:155.502400pt;}
.x4_c00491{left:167.035733pt;}
.x3_c00491{left:187.835733pt;}
.x1_c00491{left:257.235733pt;}
.x11_c00491{left:501.769067pt;}
.x12_c00491{left:506.235733pt;}
.x14_c00491{left:527.969067pt;}
.x1e_c00491{left:535.035733pt;}
.x15_c00491{left:552.969067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_357d32144f3b33dff6974448.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00492;src:url('chunks/assets/font_99870d88fc88f9a64866cb4b.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00492;src:url('chunks/assets/font_0a04138615a74cdabf413a1a.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00492{transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);}
.m14_c00492{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m1_c00492{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.m0_c00492{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m16_c00492{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m19_c00492{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00492{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c00492{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m18_c00492{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00492{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00492{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00492{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00492{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00492{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00492{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00492{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00492{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00492{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00492{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c00492{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00492{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13_c00492{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00492{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m12_c00492{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mf_c00492{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls0_c00492{letter-spacing:0.000000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00492{word-spacing:0.000000px;}
.fc0_c00492{color:transparent;}
.fs2_c00492{font-size:60.000000px;}
.fs0_c00492{font-size:66.000000px;}
.fs1_c00492{font-size:72.000000px;}
.fs3_c00492{font-size:126.000000px;}
.y0_c00492{bottom:0.000000px;}
.y38_c00492{bottom:37.948500px;}
.y36_c00492{bottom:58.500000px;}
.y37_c00492{bottom:65.323500px;}
.y35_c00492{bottom:84.073500px;}
.y34_c00492{bottom:127.648500px;}
.y32_c00492{bottom:139.125000px;}
.y33_c00492{bottom:147.823500px;}
.y31_c00492{bottom:197.473500px;}
.y2d_c00492{bottom:291.073500px;}
.y2f_c00492{bottom:291.375000px;}
.y2e_c00492{bottom:291.448500px;}
.y30_c00492{bottom:293.923500px;}
.y2a_c00492{bottom:316.198500px;}
.y2b_c00492{bottom:319.875000px;}
.y2c_c00492{bottom:321.973500px;}
.y28_c00492{bottom:336.073500px;}
.y29_c00492{bottom:341.098500px;}
.y27_c00492{bottom:359.400000px;}
.y26_c00492{bottom:383.923500px;}
.y22_c00492{bottom:402.298500px;}
.y23_c00492{bottom:403.348500px;}
.y24_c00492{bottom:404.400000px;}
.y25_c00492{bottom:407.323500px;}
.y21_c00492{bottom:424.648500px;}
.y20_c00492{bottom:450.148500px;}
.y1f_c00492{bottom:471.750000px;}
.y1e_c00492{bottom:494.473500px;}
.y1b_c00492{bottom:515.698500px;}
.y1c_c00492{bottom:516.375000px;}
.y1d_c00492{bottom:517.125000px;}
.y1a_c00492{bottom:539.098500px;}
.y18_c00492{bottom:559.948500px;}
.y19_c00492{bottom:561.000000px;}
.y17_c00492{bottom:582.973500px;}
.y16_c00492{bottom:605.323500px;}
.y15_c00492{bottom:627.973500px;}
.y14_c00492{bottom:649.948500px;}
.y13_c00492{bottom:672.298500px;}
.y12_c00492{bottom:694.573500px;}
.y11_c00492{bottom:716.548500px;}
.y10_c00492{bottom:738.598500px;}
.yf_c00492{bottom:763.723500px;}
.ye_c00492{bottom:783.223500px;}
.yd_c00492{bottom:805.500000px;}
.yc_c00492{bottom:828.900000px;}
.yb_c00492{bottom:850.198500px;}
.ya_c00492{bottom:873.150000px;}
.y9_c00492{bottom:895.500000px;}
.y8_c00492{bottom:917.098500px;}
.y7_c00492{bottom:938.698500px;}
.y6_c00492{bottom:962.098500px;}
.y5_c00492{bottom:983.698500px;}
.y4_c00492{bottom:1007.848500px;}
.y3_c00492{bottom:1028.323500px;}
.y2_c00492{bottom:1080.900000px;}
.y1_c00492{bottom:1088.848500px;}
.h3_c00492{height:58.886719px;}
.h1_c00492{height:64.775391px;}
.h5_c00492{height:70.628906px;}
.h2_c00492{height:70.664062px;}
.h4_c00492{height:123.600586px;}
.h0_c00492{height:1174.500000px;}
.w0_c00492{width:731.977200px;}
.w1_c00492{width:732.000000px;}
.x0_c00492{left:0.000000px;}
.x3_c00492{left:63.715200px;}
.x5_c00492{left:64.765200px;}
.x7_c00492{left:66.190200px;}
.x9_c00492{left:67.315200px;}
.x10_c00492{left:68.365200px;}
.x11_c00492{left:70.165200px;}
.x1c_c00492{left:75.188700px;}
.x1f_c00492{left:76.990200px;}
.x4_c00492{left:85.688700px;}
.x6_c00492{left:88.915200px;}
.x8_c00492{left:90.340200px;}
.xd_c00492{left:92.140200px;}
.x12_c00492{left:93.940200px;}
.x16_c00492{left:104.740200px;}
.x17_c00492{left:112.315200px;}
.x18_c00492{left:115.540200px;}
.x19_c00492{left:125.590200px;}
.x1a_c00492{left:135.715200px;}
.xa_c00492{left:139.990200px;}
.x13_c00492{left:142.540200px;}
.x1b_c00492{left:227.890200px;}
.xe_c00492{left:264.190200px;}
.xf_c00492{left:296.290200px;}
.x1_c00492{left:314.290200px;}
.x1e_c00492{left:315.715200px;}
.x1d_c00492{left:322.915200px;}
.xb_c00492{left:358.915200px;}
.xc_c00492{left:393.490200px;}
.x14_c00492{left:465.115200px;}
.x15_c00492{left:492.790200px;}
.x20_c00492{left:555.790200px;}
.x21_c00492{left:621.715200px;}
.x2_c00492{left:650.515200px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls0_c00492{letter-spacing:0.000000pt;}
.ws0_c00492{word-spacing:0.000000pt;}
.fs2_c00492{font-size:53.333333pt;}
.fs0_c00492{font-size:58.666667pt;}
.fs1_c00492{font-size:64.000000pt;}
.fs3_c00492{font-size:112.000000pt;}
.y0_c00492{bottom:0.000000pt;}
.y38_c00492{bottom:33.732000pt;}
.y36_c00492{bottom:52.000000pt;}
.y37_c00492{bottom:58.065333pt;}
.y35_c00492{bottom:74.732000pt;}
.y34_c00492{bottom:113.465333pt;}
.y32_c00492{bottom:123.666667pt;}
.y33_c00492{bottom:131.398667pt;}
.y31_c00492{bottom:175.532000pt;}
.y2d_c00492{bottom:258.732000pt;}
.y2f_c00492{bottom:259.000000pt;}
.y2e_c00492{bottom:259.065333pt;}
.y30_c00492{bottom:261.265333pt;}
.y2a_c00492{bottom:281.065333pt;}
.y2b_c00492{bottom:284.333333pt;}
.y2c_c00492{bottom:286.198667pt;}
.y28_c00492{bottom:298.732000pt;}
.y29_c00492{bottom:303.198667pt;}
.y27_c00492{bottom:319.466667pt;}
.y26_c00492{bottom:341.265333pt;}
.y22_c00492{bottom:357.598667pt;}
.y23_c00492{bottom:358.532000pt;}
.y24_c00492{bottom:359.466667pt;}
.y25_c00492{bottom:362.065333pt;}
.y21_c00492{bottom:377.465333pt;}
.y20_c00492{bottom:400.132000pt;}
.y1f_c00492{bottom:419.333333pt;}
.y1e_c00492{bottom:439.532000pt;}
.y1b_c00492{bottom:458.398667pt;}
.y1c_c00492{bottom:459.000000pt;}
.y1d_c00492{bottom:459.666667pt;}
.y1a_c00492{bottom:479.198667pt;}
.y18_c00492{bottom:497.732000pt;}
.y19_c00492{bottom:498.666667pt;}
.y17_c00492{bottom:518.198667pt;}
.y16_c00492{bottom:538.065333pt;}
.y15_c00492{bottom:558.198667pt;}
.y14_c00492{bottom:577.732000pt;}
.y13_c00492{bottom:597.598667pt;}
.y12_c00492{bottom:617.398667pt;}
.y11_c00492{bottom:636.932000pt;}
.y10_c00492{bottom:656.532000pt;}
.yf_c00492{bottom:678.865333pt;}
.ye_c00492{bottom:696.198667pt;}
.yd_c00492{bottom:716.000000pt;}
.yc_c00492{bottom:736.800000pt;}
.yb_c00492{bottom:755.732000pt;}
.ya_c00492{bottom:776.133333pt;}
.y9_c00492{bottom:796.000000pt;}
.y8_c00492{bottom:815.198667pt;}
.y7_c00492{bottom:834.398667pt;}
.y6_c00492{bottom:855.198667pt;}
.y5_c00492{bottom:874.398667pt;}
.y4_c00492{bottom:895.865333pt;}
.y3_c00492{bottom:914.065333pt;}
.y2_c00492{bottom:960.800000pt;}
.y1_c00492{bottom:967.865333pt;}
.h3_c00492{height:52.343750pt;}
.h1_c00492{height:57.578125pt;}
.h5_c00492{height:62.781250pt;}
.h2_c00492{height:62.812500pt;}
.h4_c00492{height:109.867188pt;}
.h0_c00492{height:1044.000000pt;}
.w0_c00492{width:650.646400pt;}
.w1_c00492{width:650.666667pt;}
.x0_c00492{left:0.000000pt;}
.x3_c00492{left:56.635733pt;}
.x5_c00492{left:57.569067pt;}
.x7_c00492{left:58.835733pt;}
.x9_c00492{left:59.835733pt;}
.x10_c00492{left:60.769067pt;}
.x11_c00492{left:62.369067pt;}
.x1c_c00492{left:66.834400pt;}
.x1f_c00492{left:68.435733pt;}
.x4_c00492{left:76.167733pt;}
.x6_c00492{left:79.035733pt;}
.x8_c00492{left:80.302400pt;}
.xd_c00492{left:81.902400pt;}
.x12_c00492{left:83.502400pt;}
.x16_c00492{left:93.102400pt;}
.x17_c00492{left:99.835733pt;}
.x18_c00492{left:102.702400pt;}
.x19_c00492{left:111.635733pt;}
.x1a_c00492{left:120.635733pt;}
.xa_c00492{left:124.435733pt;}
.x13_c00492{left:126.702400pt;}
.x1b_c00492{left:202.569067pt;}
.xe_c00492{left:234.835733pt;}
.xf_c00492{left:263.369067pt;}
.x1_c00492{left:279.369067pt;}
.x1e_c00492{left:280.635733pt;}
.x1d_c00492{left:287.035733pt;}
.xb_c00492{left:319.035733pt;}
.xc_c00492{left:349.769067pt;}
.x14_c00492{left:413.435733pt;}
.x15_c00492{left:438.035733pt;}
.x20_c00492{left:494.035733pt;}
.x21_c00492{left:552.635733pt;}
.x2_c00492{left:578.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73356260f02931e2ebd062d1.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.284668;font-style:normal;font-weight:normal;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_352dfadea211138b856e198c.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00493;src:url('chunks/assets/font_27094d5586a03883386a0723.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m18_c00493{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m21_c00493{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb_c00493{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m17_c00493{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m11_c00493{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma_c00493{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00493{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00493{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00493{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m20_c00493{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00493{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m0_c00493{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00493{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2_c00493{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me_c00493{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c00493{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c00493{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00493{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00493{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00493{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c00493{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c00493{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00493{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00493{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00493{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00493{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00493{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c00493{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m6_c00493{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m19_c00493{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00493{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m23_c00493{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00493{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m22_c00493{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mf_c00493{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1_c00493{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.ls0_c00493{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00493{color:transparent;}
.fs1_c00493{font-size:54.000000px;}
.fs0_c00493{font-size:60.000000px;}
.fs3_c00493{font-size:66.000000px;}
.fs2_c00493{font-size:72.000000px;}
.fs4_c00493{font-size:78.000000px;}
.y0_c00493{bottom:0.000000px;}
.y3f_c00493{bottom:64.273500px;}
.y3d_c00493{bottom:64.573500px;}
.y3e_c00493{bottom:64.648500px;}
.y40_c00493{bottom:65.323500px;}
.y3c_c00493{bottom:70.348500px;}
.y3b_c00493{bottom:88.723500px;}
.y3a_c00493{bottom:110.323500px;}
.y39_c00493{bottom:132.298500px;}
.y38_c00493{bottom:153.148500px;}
.y37_c00493{bottom:159.673500px;}
.y36_c00493{bottom:199.948500px;}
.y35_c00493{bottom:202.500000px;}
.y34_c00493{bottom:254.323500px;}
.y33_c00493{bottom:375.973500px;}
.y32_c00493{bottom:398.323500px;}
.y31_c00493{bottom:419.250000px;}
.y30_c00493{bottom:440.773500px;}
.y2f_c00493{bottom:443.323500px;}
.y2e_c00493{bottom:443.698500px;}
.y2d_c00493{bottom:463.875000px;}
.y2c_c00493{bottom:486.148500px;}
.y2b_c00493{bottom:508.125000px;}
.y2a_c00493{bottom:529.723500px;}
.y29_c00493{bottom:530.098500px;}
.y28_c00493{bottom:530.473500px;}
.y27_c00493{bottom:530.773500px;}
.y26_c00493{bottom:531.148500px;}
.y25_c00493{bottom:552.073500px;}
.y24_c00493{bottom:575.098500px;}
.y23_c00493{bottom:575.773500px;}
.y22_c00493{bottom:597.448500px;}
.y21_c00493{bottom:619.723500px;}
.y20_c00493{bottom:620.098500px;}
.y1f_c00493{bottom:642.073500px;}
.y1e_c00493{bottom:664.048500px;}
.y1d_c00493{bottom:686.323500px;}
.y1b_c00493{bottom:707.548500px;}
.y1c_c00493{bottom:708.673500px;}
.y1a_c00493{bottom:730.273500px;}
.y19_c00493{bottom:752.923500px;}
.y17_c00493{bottom:774.148500px;}
.y18_c00493{bottom:775.648500px;}
.y16_c00493{bottom:794.698500px;}
.y13_c00493{bottom:817.723500px;}
.y14_c00493{bottom:818.698500px;}
.y15_c00493{bottom:819.525000px;}
.y12_c00493{bottom:841.500000px;}
.y11_c00493{bottom:862.800000px;}
.y10_c00493{bottom:885.073500px;}
.yf_c00493{bottom:907.348500px;}
.yc_c00493{bottom:924.300000px;}
.yd_c00493{bottom:925.050000px;}
.ye_c00493{bottom:929.698500px;}
.y9_c00493{bottom:946.275000px;}
.ya_c00493{bottom:948.375000px;}
.yb_c00493{bottom:950.925000px;}
.y8_c00493{bottom:972.525000px;}
.y7_c00493{bottom:972.900000px;}
.y6_c00493{bottom:994.125000px;}
.y5_c00493{bottom:1015.348500px;}
.y4_c00493{bottom:1037.323500px;}
.y1_c00493{bottom:1085.925000px;}
.y3_c00493{bottom:1095.000000px;}
.y2_c00493{bottom:1101.448500px;}
.h2_c00493{height:54.421875px;}
.h1_c00493{height:58.886719px;}
.h5_c00493{height:60.468750px;}
.h4_c00493{height:64.775391px;}
.h7_c00493{height:66.515625px;}
.h3_c00493{height:70.664062px;}
.h6_c00493{height:76.514648px;}
.h0_c00493{height:1174.500000px;}
.w0_c00493{width:731.977200px;}
.w1_c00493{width:732.000000px;}
.x0_c00493{left:0.000000px;}
.x24_c00493{left:67.315200px;}
.x25_c00493{left:68.365200px;}
.x17_c00493{left:69.490200px;}
.x15_c00493{left:71.290200px;}
.x10_c00493{left:72.340200px;}
.xf_c00493{left:74.515200px;}
.xe_c00493{left:75.563700px;}
.x5_c00493{left:78.115200px;}
.x4_c00493{left:79.540200px;}
.x16_c00493{left:92.140200px;}
.x13_c00493{left:93.940200px;}
.xd_c00493{left:96.490200px;}
.xa_c00493{left:98.290200px;}
.x22_c00493{left:99.340200px;}
.x1_c00493{left:100.765200px;}
.xb_c00493{left:112.690200px;}
.xc_c00493{left:118.390200px;}
.x18_c00493{left:121.315200px;}
.x2_c00493{left:127.390200px;}
.x19_c00493{left:129.565200px;}
.x8_c00493{left:131.365200px;}
.x14_c00493{left:136.390200px;}
.x1a_c00493{left:141.115200px;}
.x1b_c00493{left:156.940200px;}
.x1c_c00493{left:171.340200px;}
.x1f_c00493{left:196.540200px;}
.x23_c00493{left:204.490200px;}
.x9_c00493{left:218.890200px;}
.x11_c00493{left:219.940200px;}
.x12_c00493{left:227.515200px;}
.x1d_c00493{left:232.540200px;}
.x20_c00493{left:252.340200px;}
.x1e_c00493{left:260.290200px;}
.x3_c00493{left:303.790200px;}
.x21_c00493{left:336.565200px;}
.x26_c00493{left:418.315200px;}
.x27_c00493{left:434.140200px;}
.x28_c00493{left:442.390200px;}
.x29_c00493{left:454.690200px;}
.x2a_c00493{left:591.115200px;}
.x2b_c00493{left:618.490200px;}
.x6_c00493{left:655.915200px;}
.x7_c00493{left:686.890200px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls0_c00493{letter-spacing:0.000000pt;}
.ws0_c00493{word-spacing:0.000000pt;}
.fs1_c00493{font-size:48.000000pt;}
.fs0_c00493{font-size:53.333333pt;}
.fs3_c00493{font-size:58.666667pt;}
.fs2_c00493{font-size:64.000000pt;}
.fs4_c00493{font-size:69.333333pt;}
.y0_c00493{bottom:0.000000pt;}
.y3f_c00493{bottom:57.132000pt;}
.y3d_c00493{bottom:57.398667pt;}
.y3e_c00493{bottom:57.465333pt;}
.y40_c00493{bottom:58.065333pt;}
.y3c_c00493{bottom:62.532000pt;}
.y3b_c00493{bottom:78.865333pt;}
.y3a_c00493{bottom:98.065333pt;}
.y39_c00493{bottom:117.598667pt;}
.y38_c00493{bottom:136.132000pt;}
.y37_c00493{bottom:141.932000pt;}
.y36_c00493{bottom:177.732000pt;}
.y35_c00493{bottom:180.000000pt;}
.y34_c00493{bottom:226.065333pt;}
.y33_c00493{bottom:334.198667pt;}
.y32_c00493{bottom:354.065333pt;}
.y31_c00493{bottom:372.666667pt;}
.y30_c00493{bottom:391.798667pt;}
.y2f_c00493{bottom:394.065333pt;}
.y2e_c00493{bottom:394.398667pt;}
.y2d_c00493{bottom:412.333333pt;}
.y2c_c00493{bottom:432.132000pt;}
.y2b_c00493{bottom:451.666667pt;}
.y2a_c00493{bottom:470.865333pt;}
.y29_c00493{bottom:471.198667pt;}
.y28_c00493{bottom:471.532000pt;}
.y27_c00493{bottom:471.798667pt;}
.y26_c00493{bottom:472.132000pt;}
.y25_c00493{bottom:490.732000pt;}
.y24_c00493{bottom:511.198667pt;}
.y23_c00493{bottom:511.798667pt;}
.y22_c00493{bottom:531.065333pt;}
.y21_c00493{bottom:550.865333pt;}
.y20_c00493{bottom:551.198667pt;}
.y1f_c00493{bottom:570.732000pt;}
.y1e_c00493{bottom:590.265333pt;}
.y1d_c00493{bottom:610.065333pt;}
.y1b_c00493{bottom:628.932000pt;}
.y1c_c00493{bottom:629.932000pt;}
.y1a_c00493{bottom:649.132000pt;}
.y19_c00493{bottom:669.265333pt;}
.y17_c00493{bottom:688.132000pt;}
.y18_c00493{bottom:689.465333pt;}
.y16_c00493{bottom:706.398667pt;}
.y13_c00493{bottom:726.865333pt;}
.y14_c00493{bottom:727.732000pt;}
.y15_c00493{bottom:728.466667pt;}
.y12_c00493{bottom:748.000000pt;}
.y11_c00493{bottom:766.933333pt;}
.y10_c00493{bottom:786.732000pt;}
.yf_c00493{bottom:806.532000pt;}
.yc_c00493{bottom:821.600000pt;}
.yd_c00493{bottom:822.266667pt;}
.ye_c00493{bottom:826.398667pt;}
.y9_c00493{bottom:841.133333pt;}
.ya_c00493{bottom:843.000000pt;}
.yb_c00493{bottom:845.266667pt;}
.y8_c00493{bottom:864.466667pt;}
.y7_c00493{bottom:864.800000pt;}
.y6_c00493{bottom:883.666667pt;}
.y5_c00493{bottom:902.532000pt;}
.y4_c00493{bottom:922.065333pt;}
.y1_c00493{bottom:965.266667pt;}
.y3_c00493{bottom:973.333333pt;}
.y2_c00493{bottom:979.065333pt;}
.h2_c00493{height:48.375000pt;}
.h1_c00493{height:52.343750pt;}
.h5_c00493{height:53.750000pt;}
.h4_c00493{height:57.578125pt;}
.h7_c00493{height:59.125000pt;}
.h3_c00493{height:62.812500pt;}
.h6_c00493{height:68.013021pt;}
.h0_c00493{height:1044.000000pt;}
.w0_c00493{width:650.646400pt;}
.w1_c00493{width:650.666667pt;}
.x0_c00493{left:0.000000pt;}
.x24_c00493{left:59.835733pt;}
.x25_c00493{left:60.769067pt;}
.x17_c00493{left:61.769067pt;}
.x15_c00493{left:63.369067pt;}
.x10_c00493{left:64.302400pt;}
.xf_c00493{left:66.235733pt;}
.xe_c00493{left:67.167733pt;}
.x5_c00493{left:69.435733pt;}
.x4_c00493{left:70.702400pt;}
.x16_c00493{left:81.902400pt;}
.x13_c00493{left:83.502400pt;}
.xd_c00493{left:85.769067pt;}
.xa_c00493{left:87.369067pt;}
.x22_c00493{left:88.302400pt;}
.x1_c00493{left:89.569067pt;}
.xb_c00493{left:100.169067pt;}
.xc_c00493{left:105.235733pt;}
.x18_c00493{left:107.835733pt;}
.x2_c00493{left:113.235733pt;}
.x19_c00493{left:115.169067pt;}
.x8_c00493{left:116.769067pt;}
.x14_c00493{left:121.235733pt;}
.x1a_c00493{left:125.435733pt;}
.x1b_c00493{left:139.502400pt;}
.x1c_c00493{left:152.302400pt;}
.x1f_c00493{left:174.702400pt;}
.x23_c00493{left:181.769067pt;}
.x9_c00493{left:194.569067pt;}
.x11_c00493{left:195.502400pt;}
.x12_c00493{left:202.235733pt;}
.x1d_c00493{left:206.702400pt;}
.x20_c00493{left:224.302400pt;}
.x1e_c00493{left:231.369067pt;}
.x3_c00493{left:270.035733pt;}
.x21_c00493{left:299.169067pt;}
.x26_c00493{left:371.835733pt;}
.x27_c00493{left:385.902400pt;}
.x28_c00493{left:393.235733pt;}
.x29_c00493{left:404.169067pt;}
.x2a_c00493{left:525.435733pt;}
.x2b_c00493{left:549.769067pt;}
.x6_c00493{left:583.035733pt;}
.x7_c00493{left:610.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4f7a9c4e010b5c8d5e1bcf22.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00494;src:url('chunks/assets/font_e31df1f0c64d8b873d93904f.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00494;src:url('chunks/assets/font_3d96f7c8696c8277ab224fa1.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00494{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m14_c00494{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c00494{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m13_c00494{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m0_c00494{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c00494{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00494{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00494{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00494{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00494{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00494{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00494{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3_c00494{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c00494{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00494{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00494{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00494{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c00494{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m8_c00494{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m16_c00494{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.me_c00494{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m18_c00494{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m17_c00494{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m15_c00494{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1_c00494{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.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;}
}
.ws0_c00494{word-spacing:0.000000px;}
.fc0_c00494{color:transparent;}
.fs0_c00494{font-size:60.000000px;}
.fs3_c00494{font-size:66.000000px;}
.fs1_c00494{font-size:72.000000px;}
.fs2_c00494{font-size:78.000000px;}
.y0_c00494{bottom:0.000000px;}
.y2d_c00494{bottom:62.773500px;}
.y2e_c00494{bottom:65.323500px;}
.y2f_c00494{bottom:72.598500px;}
.y29_c00494{bottom:91.573500px;}
.y2a_c00494{bottom:97.048500px;}
.y2b_c00494{bottom:97.348500px;}
.y2c_c00494{bottom:98.098500px;}
.y27_c00494{bottom:136.273500px;}
.y28_c00494{bottom:140.625000px;}
.y26_c00494{bottom:154.273500px;}
.y25_c00494{bottom:207.223500px;}
.y24_c00494{bottom:301.500000px;}
.y22_c00494{bottom:327.073500px;}
.y23_c00494{bottom:331.723500px;}
.y20_c00494{bottom:343.948500px;}
.y21_c00494{bottom:347.548500px;}
.y1f_c00494{bottom:371.698500px;}
.y1c_c00494{bottom:391.125000px;}
.y1d_c00494{bottom:395.098500px;}
.y1e_c00494{bottom:396.150000px;}
.y19_c00494{bottom:410.923500px;}
.y1a_c00494{bottom:411.673500px;}
.y1b_c00494{bottom:415.648500px;}
.y18_c00494{bottom:436.875000px;}
.y17_c00494{bottom:458.848500px;}
.y16_c00494{bottom:481.875000px;}
.y15_c00494{bottom:528.298500px;}
.y14_c00494{bottom:580.500000px;}
.y13_c00494{bottom:702.523500px;}
.y12_c00494{bottom:724.875000px;}
.y11_c00494{bottom:747.148500px;}
.y10_c00494{bottom:769.125000px;}
.yf_c00494{bottom:792.150000px;}
.ye_c00494{bottom:813.750000px;}
.yd_c00494{bottom:836.098500px;}
.yc_c00494{bottom:858.073500px;}
.yb_c00494{bottom:880.723500px;}
.ya_c00494{bottom:902.698500px;}
.y9_c00494{bottom:925.348500px;}
.y8_c00494{bottom:946.650000px;}
.y7_c00494{bottom:968.550000px;}
.y6_c00494{bottom:991.275000px;}
.y5_c00494{bottom:1013.550000px;}
.y4_c00494{bottom:1036.275000px;}
.y3_c00494{bottom:1087.348500px;}
.y1_c00494{bottom:1095.675000px;}
.y2_c00494{bottom:1102.723500px;}
.h1_c00494{height:60.468750px;}
.h4_c00494{height:64.775391px;}
.h2_c00494{height:70.664062px;}
.h3_c00494{height:76.514648px;}
.h0_c00494{height:1174.500000px;}
.w0_c00494{width:731.977200px;}
.w1_c00494{width:732.000000px;}
.x0_c00494{left:0.000000px;}
.x4_c00494{left:53.290200px;}
.x5_c00494{left:54.340200px;}
.x6_c00494{left:55.390200px;}
.x7_c00494{left:56.890200px;}
.x8_c00494{left:57.940200px;}
.xc_c00494{left:60.115200px;}
.xe_c00494{left:62.290200px;}
.x11_c00494{left:64.090200px;}
.x1e_c00494{left:75.188700px;}
.x12_c00494{left:92.890200px;}
.xb_c00494{left:93.940200px;}
.x13_c00494{left:95.740200px;}
.x16_c00494{left:101.515200px;}
.x19_c00494{left:107.590200px;}
.xa_c00494{left:152.290200px;}
.xd_c00494{left:169.165200px;}
.x17_c00494{left:201.190200px;}
.x9_c00494{left:213.790200px;}
.x1f_c00494{left:225.715200px;}
.x20_c00494{left:242.590200px;}
.x15_c00494{left:264.190200px;}
.x1_c00494{left:272.140200px;}
.xf_c00494{left:461.515200px;}
.x2_c00494{left:474.490200px;}
.x10_c00494{left:487.090200px;}
.x18_c00494{left:491.740200px;}
.x1a_c00494{left:584.965200px;}
.x14_c00494{left:590.365200px;}
.x1b_c00494{left:615.940200px;}
.x3_c00494{left:638.590200px;}
.x1c_c00494{left:648.715200px;}
.x1d_c00494{left:675.715200px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls0_c00494{letter-spacing:0.000000pt;}
.ws0_c00494{word-spacing:0.000000pt;}
.fs0_c00494{font-size:53.333333pt;}
.fs3_c00494{font-size:58.666667pt;}
.fs1_c00494{font-size:64.000000pt;}
.fs2_c00494{font-size:69.333333pt;}
.y0_c00494{bottom:0.000000pt;}
.y2d_c00494{bottom:55.798667pt;}
.y2e_c00494{bottom:58.065333pt;}
.y2f_c00494{bottom:64.532000pt;}
.y29_c00494{bottom:81.398667pt;}
.y2a_c00494{bottom:86.265333pt;}
.y2b_c00494{bottom:86.532000pt;}
.y2c_c00494{bottom:87.198667pt;}
.y27_c00494{bottom:121.132000pt;}
.y28_c00494{bottom:125.000000pt;}
.y26_c00494{bottom:137.132000pt;}
.y25_c00494{bottom:184.198667pt;}
.y24_c00494{bottom:268.000000pt;}
.y22_c00494{bottom:290.732000pt;}
.y23_c00494{bottom:294.865333pt;}
.y20_c00494{bottom:305.732000pt;}
.y21_c00494{bottom:308.932000pt;}
.y1f_c00494{bottom:330.398667pt;}
.y1c_c00494{bottom:347.666667pt;}
.y1d_c00494{bottom:351.198667pt;}
.y1e_c00494{bottom:352.133333pt;}
.y19_c00494{bottom:365.265333pt;}
.y1a_c00494{bottom:365.932000pt;}
.y1b_c00494{bottom:369.465333pt;}
.y18_c00494{bottom:388.333333pt;}
.y17_c00494{bottom:407.865333pt;}
.y16_c00494{bottom:428.333333pt;}
.y15_c00494{bottom:469.598667pt;}
.y14_c00494{bottom:516.000000pt;}
.y13_c00494{bottom:624.465333pt;}
.y12_c00494{bottom:644.333333pt;}
.y11_c00494{bottom:664.132000pt;}
.y10_c00494{bottom:683.666667pt;}
.yf_c00494{bottom:704.133333pt;}
.ye_c00494{bottom:723.333333pt;}
.yd_c00494{bottom:743.198667pt;}
.yc_c00494{bottom:762.732000pt;}
.yb_c00494{bottom:782.865333pt;}
.ya_c00494{bottom:802.398667pt;}
.y9_c00494{bottom:822.532000pt;}
.y8_c00494{bottom:841.466667pt;}
.y7_c00494{bottom:860.933333pt;}
.y6_c00494{bottom:881.133333pt;}
.y5_c00494{bottom:900.933333pt;}
.y4_c00494{bottom:921.133333pt;}
.y3_c00494{bottom:966.532000pt;}
.y1_c00494{bottom:973.933333pt;}
.y2_c00494{bottom:980.198667pt;}
.h1_c00494{height:53.750000pt;}
.h4_c00494{height:57.578125pt;}
.h2_c00494{height:62.812500pt;}
.h3_c00494{height:68.013021pt;}
.h0_c00494{height:1044.000000pt;}
.w0_c00494{width:650.646400pt;}
.w1_c00494{width:650.666667pt;}
.x0_c00494{left:0.000000pt;}
.x4_c00494{left:47.369067pt;}
.x5_c00494{left:48.302400pt;}
.x6_c00494{left:49.235733pt;}
.x7_c00494{left:50.569067pt;}
.x8_c00494{left:51.502400pt;}
.xc_c00494{left:53.435733pt;}
.xe_c00494{left:55.369067pt;}
.x11_c00494{left:56.969067pt;}
.x1e_c00494{left:66.834400pt;}
.x12_c00494{left:82.569067pt;}
.xb_c00494{left:83.502400pt;}
.x13_c00494{left:85.102400pt;}
.x16_c00494{left:90.235733pt;}
.x19_c00494{left:95.635733pt;}
.xa_c00494{left:135.369067pt;}
.xd_c00494{left:150.369067pt;}
.x17_c00494{left:178.835733pt;}
.x9_c00494{left:190.035733pt;}
.x1f_c00494{left:200.635733pt;}
.x20_c00494{left:215.635733pt;}
.x15_c00494{left:234.835733pt;}
.x1_c00494{left:241.902400pt;}
.xf_c00494{left:410.235733pt;}
.x2_c00494{left:421.769067pt;}
.x10_c00494{left:432.969067pt;}
.x18_c00494{left:437.102400pt;}
.x1a_c00494{left:519.969067pt;}
.x14_c00494{left:524.769067pt;}
.x1b_c00494{left:547.502400pt;}
.x3_c00494{left:567.635733pt;}
.x1c_c00494{left:576.635733pt;}
.x1d_c00494{left:600.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_904b38e9ff08ccbfd17494e7.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00495;src:url('chunks/assets/font_bbe8c744ab6be88fb1c32874.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00495;src:url('chunks/assets/font_490f1c42639d97ce7f9f77ba.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00495{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m0_c00495{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m19_c00495{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf_c00495{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00495{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00495{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00495{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00495{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c00495{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00495{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c00495{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c00495{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c00495{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c00495{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c00495{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m15_c00495{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00495{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c00495{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00495{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00495{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c00495{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c00495{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m17_c00495{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00495{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.md_c00495{transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);}
.m1_c00495{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls0_c00495{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00495{color:transparent;}
.fs1_c00495{font-size:54.000000px;}
.fs0_c00495{font-size:66.000000px;}
.fs2_c00495{font-size:72.000000px;}
.fs3_c00495{font-size:84.000000px;}
.y0_c00495{bottom:0.000000px;}
.y2e_c00495{bottom:63.898500px;}
.y2d_c00495{bottom:73.273500px;}
.y2c_c00495{bottom:90.523500px;}
.y2b_c00495{bottom:95.923500px;}
.y2a_c00495{bottom:107.473500px;}
.y29_c00495{bottom:129.448500px;}
.y28_c00495{bottom:150.298500px;}
.y27_c00495{bottom:173.323500px;}
.y26_c00495{bottom:195.673500px;}
.y25_c00495{bottom:217.948500px;}
.y24_c00495{bottom:240.298500px;}
.y23_c00495{bottom:261.900000px;}
.y22_c00495{bottom:284.173500px;}
.y21_c00495{bottom:310.500000px;}
.y20_c00495{bottom:328.500000px;}
.y1f_c00495{bottom:350.473500px;}
.y1e_c00495{bottom:373.125000px;}
.y1d_c00495{bottom:396.525000px;}
.y1c_c00495{bottom:417.750000px;}
.y1b_c00495{bottom:441.148500px;}
.y1a_c00495{bottom:462.073500px;}
.y19_c00495{bottom:484.348500px;}
.y18_c00495{bottom:506.698500px;}
.y17_c00495{bottom:528.673500px;}
.y16_c00495{bottom:660.823500px;}
.y15_c00495{bottom:684.898500px;}
.y14_c00495{bottom:707.250000px;}
.y13_c00495{bottom:729.523500px;}
.y12_c00495{bottom:751.798500px;}
.y11_c00495{bottom:773.848500px;}
.y10_c00495{bottom:796.125000px;}
.ye_c00495{bottom:814.500000px;}
.yf_c00495{bottom:819.150000px;}
.y8_c00495{bottom:836.098500px;}
.y9_c00495{bottom:837.150000px;}
.ya_c00495{bottom:838.198500px;}
.yb_c00495{bottom:838.948500px;}
.yc_c00495{bottom:839.323500px;}
.yd_c00495{bottom:840.750000px;}
.y7_c00495{bottom:970.348500px;}
.y6_c00495{bottom:989.473500px;}
.y5_c00495{bottom:1015.723500px;}
.y4_c00495{bottom:1035.900000px;}
.y1_c00495{bottom:1082.698500px;}
.y3_c00495{bottom:1094.550000px;}
.y2_c00495{bottom:1098.900000px;}
.h4_c00495{height:52.998047px;}
.h2_c00495{height:54.421875px;}
.h1_c00495{height:64.775391px;}
.h3_c00495{height:70.664062px;}
.h5_c00495{height:82.400391px;}
.h6_c00495{height:82.441406px;}
.h0_c00495{height:1174.500000px;}
.w0_c00495{width:731.977200px;}
.w1_c00495{width:732.000000px;}
.x0_c00495{left:0.000000px;}
.x18_c00495{left:71.590200px;}
.x17_c00495{left:73.390200px;}
.x15_c00495{left:74.515200px;}
.x13_c00495{left:75.938700px;}
.x12_c00495{left:76.990200px;}
.x11_c00495{left:78.115200px;}
.xf_c00495{left:79.540200px;}
.x4_c00495{left:85.688700px;}
.x5_c00495{left:86.740200px;}
.x19_c00495{left:92.515200px;}
.x14_c00495{left:105.490200px;}
.x16_c00495{left:106.915200px;}
.x1_c00495{left:107.965200px;}
.x7_c00495{left:112.315200px;}
.x6_c00495{left:115.540200px;}
.x1a_c00495{left:119.515200px;}
.x2_c00495{left:135.340200px;}
.x8_c00495{left:219.565200px;}
.x9_c00495{left:241.915200px;}
.x10_c00495{left:273.940200px;}
.x3_c00495{left:313.540200px;}
.xa_c00495{left:317.515200px;}
.xb_c00495{left:325.390200px;}
.xc_c00495{left:334.090200px;}
.xd_c00495{left:359.290200px;}
.xe_c00495{left:371.890200px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls0_c00495{letter-spacing:0.000000pt;}
.ws0_c00495{word-spacing:0.000000pt;}
.fs1_c00495{font-size:48.000000pt;}
.fs0_c00495{font-size:58.666667pt;}
.fs2_c00495{font-size:64.000000pt;}
.fs3_c00495{font-size:74.666667pt;}
.y0_c00495{bottom:0.000000pt;}
.y2e_c00495{bottom:56.798667pt;}
.y2d_c00495{bottom:65.132000pt;}
.y2c_c00495{bottom:80.465333pt;}
.y2b_c00495{bottom:85.265333pt;}
.y2a_c00495{bottom:95.532000pt;}
.y29_c00495{bottom:115.065333pt;}
.y28_c00495{bottom:133.598667pt;}
.y27_c00495{bottom:154.065333pt;}
.y26_c00495{bottom:173.932000pt;}
.y25_c00495{bottom:193.732000pt;}
.y24_c00495{bottom:213.598667pt;}
.y23_c00495{bottom:232.800000pt;}
.y22_c00495{bottom:252.598667pt;}
.y21_c00495{bottom:276.000000pt;}
.y20_c00495{bottom:292.000000pt;}
.y1f_c00495{bottom:311.532000pt;}
.y1e_c00495{bottom:331.666667pt;}
.y1d_c00495{bottom:352.466667pt;}
.y1c_c00495{bottom:371.333333pt;}
.y1b_c00495{bottom:392.132000pt;}
.y1a_c00495{bottom:410.732000pt;}
.y19_c00495{bottom:430.532000pt;}
.y18_c00495{bottom:450.398667pt;}
.y17_c00495{bottom:469.932000pt;}
.y16_c00495{bottom:587.398667pt;}
.y15_c00495{bottom:608.798667pt;}
.y14_c00495{bottom:628.666667pt;}
.y13_c00495{bottom:648.465333pt;}
.y12_c00495{bottom:668.265333pt;}
.y11_c00495{bottom:687.865333pt;}
.y10_c00495{bottom:707.666667pt;}
.ye_c00495{bottom:724.000000pt;}
.yf_c00495{bottom:728.133333pt;}
.y8_c00495{bottom:743.198667pt;}
.y9_c00495{bottom:744.133333pt;}
.ya_c00495{bottom:745.065333pt;}
.yb_c00495{bottom:745.732000pt;}
.yc_c00495{bottom:746.065333pt;}
.yd_c00495{bottom:747.333333pt;}
.y7_c00495{bottom:862.532000pt;}
.y6_c00495{bottom:879.532000pt;}
.y5_c00495{bottom:902.865333pt;}
.y4_c00495{bottom:920.800000pt;}
.y1_c00495{bottom:962.398667pt;}
.y3_c00495{bottom:972.933333pt;}
.y2_c00495{bottom:976.800000pt;}
.h4_c00495{height:47.109375pt;}
.h2_c00495{height:48.375000pt;}
.h1_c00495{height:57.578125pt;}
.h3_c00495{height:62.812500pt;}
.h5_c00495{height:73.244792pt;}
.h6_c00495{height:73.281250pt;}
.h0_c00495{height:1044.000000pt;}
.w0_c00495{width:650.646400pt;}
.w1_c00495{width:650.666667pt;}
.x0_c00495{left:0.000000pt;}
.x18_c00495{left:63.635733pt;}
.x17_c00495{left:65.235733pt;}
.x15_c00495{left:66.235733pt;}
.x13_c00495{left:67.501067pt;}
.x12_c00495{left:68.435733pt;}
.x11_c00495{left:69.435733pt;}
.xf_c00495{left:70.702400pt;}
.x4_c00495{left:76.167733pt;}
.x5_c00495{left:77.102400pt;}
.x19_c00495{left:82.235733pt;}
.x14_c00495{left:93.769067pt;}
.x16_c00495{left:95.035733pt;}
.x1_c00495{left:95.969067pt;}
.x7_c00495{left:99.835733pt;}
.x6_c00495{left:102.702400pt;}
.x1a_c00495{left:106.235733pt;}
.x2_c00495{left:120.302400pt;}
.x8_c00495{left:195.169067pt;}
.x9_c00495{left:215.035733pt;}
.x10_c00495{left:243.502400pt;}
.x3_c00495{left:278.702400pt;}
.xa_c00495{left:282.235733pt;}
.xb_c00495{left:289.235733pt;}
.xc_c00495{left:296.969067pt;}
.xd_c00495{left:319.369067pt;}
.xe_c00495{left:330.569067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fae2db1cf36428338df9c2c7.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00496;src:url('chunks/assets/font_146bf89a4737a70fafa987c3.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00496;src:url('chunks/assets/font_4370fefb88b6b0ac64683f19.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00496;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff4_c00496{font-family:ff4_c00496;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00496{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2_c00496{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0_c00496{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m11_c00496{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c00496{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00496{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c00496{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m12_c00496{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00496{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00496{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00496{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00496{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00496{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00496{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c00496{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00496{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00496{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c00496{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m13_c00496{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c00496{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.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;}
}
.ws0_c00496{word-spacing:0.000000px;}
.fc0_c00496{color:transparent;}
.fs2_c00496{font-size:36.000000px;}
.fs0_c00496{font-size:60.000000px;}
.fs4_c00496{font-size:66.000000px;}
.fs3_c00496{font-size:72.000000px;}
.fs1_c00496{font-size:78.000000px;}
.y0_c00496{bottom:0.000000px;}
.y34_c00496{bottom:66.375000px;}
.y35_c00496{bottom:69.598500px;}
.y36_c00496{bottom:74.698500px;}
.y37_c00496{bottom:79.798500px;}
.y33_c00496{bottom:97.048500px;}
.y32_c00496{bottom:118.648500px;}
.y31_c00496{bottom:140.250000px;}
.y30_c00496{bottom:160.723500px;}
.y2f_c00496{bottom:183.000000px;}
.y2e_c00496{bottom:196.723500px;}
.y2d_c00496{bottom:224.098500px;}
.y2c_c00496{bottom:245.698500px;}
.y2b_c00496{bottom:266.923500px;}
.y2a_c00496{bottom:289.650000px;}
.y29_c00496{bottom:307.948500px;}
.y28_c00496{bottom:331.423500px;}
.y27_c00496{bottom:354.073500px;}
.y26_c00496{bottom:376.048500px;}
.y25_c00496{bottom:397.650000px;}
.y22_c00496{bottom:418.125000px;}
.y23_c00496{bottom:421.048500px;}
.y24_c00496{bottom:421.723500px;}
.y21_c00496{bottom:440.848500px;}
.y20_c00496{bottom:463.125000px;}
.y1f_c00496{bottom:483.673500px;}
.y1e_c00496{bottom:507.073500px;}
.y1d_c00496{bottom:529.423500px;}
.y1c_c00496{bottom:550.948500px;}
.y1b_c00496{bottom:573.298500px;}
.y1a_c00496{bottom:595.648500px;}
.y19_c00496{bottom:617.548500px;}
.y18_c00496{bottom:639.898500px;}
.y17_c00496{bottom:662.548500px;}
.y16_c00496{bottom:684.148500px;}
.y15_c00496{bottom:706.125000px;}
.y14_c00496{bottom:728.098500px;}
.y13_c00496{bottom:750.450000px;}
.y12_c00496{bottom:772.425000px;}
.y11_c00496{bottom:794.698500px;}
.y10_c00496{bottom:816.973500px;}
.yf_c00496{bottom:838.573500px;}
.ye_c00496{bottom:843.675000px;}
.yd_c00496{bottom:861.300000px;}
.yc_c00496{bottom:889.050000px;}
.yb_c00496{bottom:906.300000px;}
.ya_c00496{bottom:928.275000px;}
.y9_c00496{bottom:950.550000px;}
.y8_c00496{bottom:972.900000px;}
.y4_c00496{bottom:993.448500px;}
.y7_c00496{bottom:995.250000px;}
.y6_c00496{bottom:1016.775000px;}
.y5_c00496{bottom:1039.800000px;}
.y3_c00496{bottom:1091.025000px;}
.y1_c00496{bottom:1100.698500px;}
.y2_c00496{bottom:1107.375000px;}
.h3_c00496{height:37.546875px;}
.h1_c00496{height:60.468750px;}
.h7_c00496{height:64.775391px;}
.h5_c00496{height:66.515625px;}
.h4_c00496{height:70.664062px;}
.h6_c00496{height:76.514648px;}
.h2_c00496{height:78.609375px;}
.h0_c00496{height:1174.500000px;}
.w0_c00496{width:731.977200px;}
.w1_c00496{width:732.000000px;}
.x4_c00496{left:-8.659800px;}
.x0_c00496{left:0.000000px;}
.x14_c00496{left:60.790200px;}
.x10_c00496{left:61.915200px;}
.xe_c00496{left:62.965200px;}
.xd_c00496{left:64.090200px;}
.xb_c00496{left:65.515200px;}
.x7_c00496{left:66.565200px;}
.x6_c00496{left:68.365200px;}
.x5_c00496{left:69.490200px;}
.x15_c00496{left:84.188700px;}
.x11_c00496{left:85.990200px;}
.xf_c00496{left:96.790200px;}
.xc_c00496{left:98.290200px;}
.x8_c00496{left:100.765200px;}
.x9_c00496{left:104.740200px;}
.x16_c00496{left:105.790200px;}
.xa_c00496{left:135.715200px;}
.x1_c00496{left:292.690200px;}
.x17_c00496{left:302.740200px;}
.x18_c00496{left:409.990200px;}
.x2_c00496{left:490.690200px;}
.x12_c00496{left:513.340200px;}
.x13_c00496{left:532.765200px;}
.x3_c00496{left:656.290200px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls0_c00496{letter-spacing:0.000000pt;}
.ws0_c00496{word-spacing:0.000000pt;}
.fs2_c00496{font-size:32.000000pt;}
.fs0_c00496{font-size:53.333333pt;}
.fs4_c00496{font-size:58.666667pt;}
.fs3_c00496{font-size:64.000000pt;}
.fs1_c00496{font-size:69.333333pt;}
.y0_c00496{bottom:0.000000pt;}
.y34_c00496{bottom:59.000000pt;}
.y35_c00496{bottom:61.865333pt;}
.y36_c00496{bottom:66.398667pt;}
.y37_c00496{bottom:70.932000pt;}
.y33_c00496{bottom:86.265333pt;}
.y32_c00496{bottom:105.465333pt;}
.y31_c00496{bottom:124.666667pt;}
.y30_c00496{bottom:142.865333pt;}
.y2f_c00496{bottom:162.666667pt;}
.y2e_c00496{bottom:174.865333pt;}
.y2d_c00496{bottom:199.198667pt;}
.y2c_c00496{bottom:218.398667pt;}
.y2b_c00496{bottom:237.265333pt;}
.y2a_c00496{bottom:257.466667pt;}
.y29_c00496{bottom:273.732000pt;}
.y28_c00496{bottom:294.598667pt;}
.y27_c00496{bottom:314.732000pt;}
.y26_c00496{bottom:334.265333pt;}
.y25_c00496{bottom:353.466667pt;}
.y22_c00496{bottom:371.666667pt;}
.y23_c00496{bottom:374.265333pt;}
.y24_c00496{bottom:374.865333pt;}
.y21_c00496{bottom:391.865333pt;}
.y20_c00496{bottom:411.666667pt;}
.y1f_c00496{bottom:429.932000pt;}
.y1e_c00496{bottom:450.732000pt;}
.y1d_c00496{bottom:470.598667pt;}
.y1c_c00496{bottom:489.732000pt;}
.y1b_c00496{bottom:509.598667pt;}
.y1a_c00496{bottom:529.465333pt;}
.y19_c00496{bottom:548.932000pt;}
.y18_c00496{bottom:568.798667pt;}
.y17_c00496{bottom:588.932000pt;}
.y16_c00496{bottom:608.132000pt;}
.y15_c00496{bottom:627.666667pt;}
.y14_c00496{bottom:647.198667pt;}
.y13_c00496{bottom:667.066667pt;}
.y12_c00496{bottom:686.600000pt;}
.y11_c00496{bottom:706.398667pt;}
.y10_c00496{bottom:726.198667pt;}
.yf_c00496{bottom:745.398667pt;}
.ye_c00496{bottom:749.933333pt;}
.yd_c00496{bottom:765.600000pt;}
.yc_c00496{bottom:790.266667pt;}
.yb_c00496{bottom:805.600000pt;}
.ya_c00496{bottom:825.133333pt;}
.y9_c00496{bottom:844.933333pt;}
.y8_c00496{bottom:864.800000pt;}
.y4_c00496{bottom:883.065333pt;}
.y7_c00496{bottom:884.666667pt;}
.y6_c00496{bottom:903.800000pt;}
.y5_c00496{bottom:924.266667pt;}
.y3_c00496{bottom:969.800000pt;}
.y1_c00496{bottom:978.398667pt;}
.y2_c00496{bottom:984.333333pt;}
.h3_c00496{height:33.375000pt;}
.h1_c00496{height:53.750000pt;}
.h7_c00496{height:57.578125pt;}
.h5_c00496{height:59.125000pt;}
.h4_c00496{height:62.812500pt;}
.h6_c00496{height:68.013021pt;}
.h2_c00496{height:69.875000pt;}
.h0_c00496{height:1044.000000pt;}
.w0_c00496{width:650.646400pt;}
.w1_c00496{width:650.666667pt;}
.x4_c00496{left:-7.697600pt;}
.x0_c00496{left:0.000000pt;}
.x14_c00496{left:54.035733pt;}
.x10_c00496{left:55.035733pt;}
.xe_c00496{left:55.969067pt;}
.xd_c00496{left:56.969067pt;}
.xb_c00496{left:58.235733pt;}
.x7_c00496{left:59.169067pt;}
.x6_c00496{left:60.769067pt;}
.x5_c00496{left:61.769067pt;}
.x15_c00496{left:74.834400pt;}
.x11_c00496{left:76.435733pt;}
.xf_c00496{left:86.035733pt;}
.xc_c00496{left:87.369067pt;}
.x8_c00496{left:89.569067pt;}
.x9_c00496{left:93.102400pt;}
.x16_c00496{left:94.035733pt;}
.xa_c00496{left:120.635733pt;}
.x1_c00496{left:260.169067pt;}
.x17_c00496{left:269.102400pt;}
.x18_c00496{left:364.435733pt;}
.x2_c00496{left:436.169067pt;}
.x12_c00496{left:456.302400pt;}
.x13_c00496{left:473.569067pt;}
.x3_c00496{left:583.369067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8093a020dacd89d696c23681.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00497;src:url('chunks/assets/font_20ad419bd6d1d2806001cc04.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00497;src:url('chunks/assets/font_9a27c801e980a28941e41cf3.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1b_c00497{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m11_c00497{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00497{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00497{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c00497{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00497{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c00497{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00497{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c00497{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c00497{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m19_c00497{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00497{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00497{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00497{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00497{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00497{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00497{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00497{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00497{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c00497{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m17_c00497{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c00497{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c00497{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10_c00497{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m14_c00497{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m16_c00497{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mc_c00497{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00497{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m15_c00497{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m1_c00497{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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:0.000000px;}
.fc0_c00497{color:transparent;}
.fs0_c00497{font-size:60.000000px;}
.fs3_c00497{font-size:66.000000px;}
.fs1_c00497{font-size:72.000000px;}
.fs2_c00497{font-size:78.000000px;}
.y0_c00497{bottom:0.000000px;}
.y30_c00497{bottom:72.898500px;}
.y2f_c00497{bottom:81.898500px;}
.y2d_c00497{bottom:90.223500px;}
.y2c_c00497{bottom:90.523500px;}
.y2b_c00497{bottom:91.198500px;}
.y2e_c00497{bottom:91.573500px;}
.y2a_c00497{bottom:95.923500px;}
.y29_c00497{bottom:102.448500px;}
.y28_c00497{bottom:105.973500px;}
.y27_c00497{bottom:318.823500px;}
.y26_c00497{bottom:320.625000px;}
.y25_c00497{bottom:323.400000px;}
.y24_c00497{bottom:341.098500px;}
.y23_c00497{bottom:343.573500px;}
.y22_c00497{bottom:345.823500px;}
.y21_c00497{bottom:368.775000px;}
.y20_c00497{bottom:386.400000px;}
.y1f_c00497{bottom:386.473500px;}
.y1e_c00497{bottom:388.573500px;}
.y1d_c00497{bottom:390.073500px;}
.y1c_c00497{bottom:390.750000px;}
.y1b_c00497{bottom:411.973500px;}
.y1a_c00497{bottom:431.848500px;}
.y19_c00497{bottom:434.323500px;}
.y18_c00497{bottom:453.750000px;}
.y17_c00497{bottom:455.923500px;}
.y16_c00497{bottom:478.948500px;}
.y15_c00497{bottom:500.173500px;}
.y14_c00497{bottom:522.223500px;}
.y13_c00497{bottom:544.875000px;}
.y12_c00497{bottom:593.398500px;}
.y11_c00497{bottom:676.573500px;}
.y10_c00497{bottom:811.275000px;}
.yf_c00497{bottom:833.175000px;}
.ye_c00497{bottom:855.525000px;}
.yd_c00497{bottom:875.698500px;}
.yc_c00497{bottom:899.400000px;}
.ya_c00497{bottom:916.348500px;}
.yb_c00497{bottom:921.448500px;}
.y9_c00497{bottom:943.348500px;}
.y8_c00497{bottom:965.323500px;}
.y7_c00497{bottom:986.925000px;}
.y6_c00497{bottom:999.900000px;}
.y5_c00497{bottom:1029.448500px;}
.y4_c00497{bottom:1050.300000px;}
.y1_c00497{bottom:1098.150000px;}
.y3_c00497{bottom:1107.525000px;}
.y2_c00497{bottom:1113.300000px;}
.h2_c00497{height:58.886719px;}
.h1_c00497{height:60.468750px;}
.h6_c00497{height:64.775391px;}
.h3_c00497{height:70.664062px;}
.h5_c00497{height:76.514648px;}
.h4_c00497{height:76.552734px;}
.h0_c00497{height:1174.500000px;}
.w0_c00497{width:731.977200px;}
.w1_c00497{width:732.000000px;}
.x0_c00497{left:0.000000px;}
.x8_c00497{left:74.890200px;}
.x6_c00497{left:76.688700px;}
.x4_c00497{left:78.115200px;}
.x7_c00497{left:94.990200px;}
.x9_c00497{left:96.790200px;}
.x5_c00497{left:98.590200px;}
.x1_c00497{left:100.390200px;}
.xa_c00497{left:106.915200px;}
.x2_c00497{left:128.515200px;}
.x18_c00497{left:131.365200px;}
.xf_c00497{left:142.915200px;}
.x10_c00497{left:200.888700px;}
.x13_c00497{left:214.915200px;}
.x15_c00497{left:246.190200px;}
.xb_c00497{left:292.315200px;}
.x1d_c00497{left:297.340200px;}
.x3_c00497{left:303.790200px;}
.xc_c00497{left:314.965200px;}
.xe_c00497{left:349.915200px;}
.x16_c00497{left:378.340200px;}
.x19_c00497{left:420.788700px;}
.x1a_c00497{left:435.940200px;}
.x1b_c00497{left:472.690200px;}
.x14_c00497{left:475.540200px;}
.x11_c00497{left:526.690200px;}
.x12_c00497{left:590.740200px;}
.x1c_c00497{left:657.340200px;}
.xd_c00497{left:678.940200px;}
.x17_c00497{left:746.590200px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls0_c00497{letter-spacing:0.000000pt;}
.ws0_c00497{word-spacing:0.000000pt;}
.fs0_c00497{font-size:53.333333pt;}
.fs3_c00497{font-size:58.666667pt;}
.fs1_c00497{font-size:64.000000pt;}
.fs2_c00497{font-size:69.333333pt;}
.y0_c00497{bottom:0.000000pt;}
.y30_c00497{bottom:64.798667pt;}
.y2f_c00497{bottom:72.798667pt;}
.y2d_c00497{bottom:80.198667pt;}
.y2c_c00497{bottom:80.465333pt;}
.y2b_c00497{bottom:81.065333pt;}
.y2e_c00497{bottom:81.398667pt;}
.y2a_c00497{bottom:85.265333pt;}
.y29_c00497{bottom:91.065333pt;}
.y28_c00497{bottom:94.198667pt;}
.y27_c00497{bottom:283.398667pt;}
.y26_c00497{bottom:285.000000pt;}
.y25_c00497{bottom:287.466667pt;}
.y24_c00497{bottom:303.198667pt;}
.y23_c00497{bottom:305.398667pt;}
.y22_c00497{bottom:307.398667pt;}
.y21_c00497{bottom:327.800000pt;}
.y20_c00497{bottom:343.466667pt;}
.y1f_c00497{bottom:343.532000pt;}
.y1e_c00497{bottom:345.398667pt;}
.y1d_c00497{bottom:346.732000pt;}
.y1c_c00497{bottom:347.333333pt;}
.y1b_c00497{bottom:366.198667pt;}
.y1a_c00497{bottom:383.865333pt;}
.y19_c00497{bottom:386.065333pt;}
.y18_c00497{bottom:403.333333pt;}
.y17_c00497{bottom:405.265333pt;}
.y16_c00497{bottom:425.732000pt;}
.y15_c00497{bottom:444.598667pt;}
.y14_c00497{bottom:464.198667pt;}
.y13_c00497{bottom:484.333333pt;}
.y12_c00497{bottom:527.465333pt;}
.y11_c00497{bottom:601.398667pt;}
.y10_c00497{bottom:721.133333pt;}
.yf_c00497{bottom:740.600000pt;}
.ye_c00497{bottom:760.466667pt;}
.yd_c00497{bottom:778.398667pt;}
.yc_c00497{bottom:799.466667pt;}
.ya_c00497{bottom:814.532000pt;}
.yb_c00497{bottom:819.065333pt;}
.y9_c00497{bottom:838.532000pt;}
.y8_c00497{bottom:858.065333pt;}
.y7_c00497{bottom:877.266667pt;}
.y6_c00497{bottom:888.800000pt;}
.y5_c00497{bottom:915.065333pt;}
.y4_c00497{bottom:933.600000pt;}
.y1_c00497{bottom:976.133333pt;}
.y3_c00497{bottom:984.466667pt;}
.y2_c00497{bottom:989.600000pt;}
.h2_c00497{height:52.343750pt;}
.h1_c00497{height:53.750000pt;}
.h6_c00497{height:57.578125pt;}
.h3_c00497{height:62.812500pt;}
.h5_c00497{height:68.013021pt;}
.h4_c00497{height:68.046875pt;}
.h0_c00497{height:1044.000000pt;}
.w0_c00497{width:650.646400pt;}
.w1_c00497{width:650.666667pt;}
.x0_c00497{left:0.000000pt;}
.x8_c00497{left:66.569067pt;}
.x6_c00497{left:68.167733pt;}
.x4_c00497{left:69.435733pt;}
.x7_c00497{left:84.435733pt;}
.x9_c00497{left:86.035733pt;}
.x5_c00497{left:87.635733pt;}
.x1_c00497{left:89.235733pt;}
.xa_c00497{left:95.035733pt;}
.x2_c00497{left:114.235733pt;}
.x18_c00497{left:116.769067pt;}
.xf_c00497{left:127.035733pt;}
.x10_c00497{left:178.567733pt;}
.x13_c00497{left:191.035733pt;}
.x15_c00497{left:218.835733pt;}
.xb_c00497{left:259.835733pt;}
.x1d_c00497{left:264.302400pt;}
.x3_c00497{left:270.035733pt;}
.xc_c00497{left:279.969067pt;}
.xe_c00497{left:311.035733pt;}
.x16_c00497{left:336.302400pt;}
.x19_c00497{left:374.034400pt;}
.x1a_c00497{left:387.502400pt;}
.x1b_c00497{left:420.169067pt;}
.x14_c00497{left:422.702400pt;}
.x11_c00497{left:468.169067pt;}
.x12_c00497{left:525.102400pt;}
.x1c_c00497{left:584.302400pt;}
.xd_c00497{left:603.502400pt;}
.x17_c00497{left:663.635733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5307ef5920d3a55cc8be96cb.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00498{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.ls0_c00498{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00498{color:transparent;}
.fs0_c00498{font-size:174.000000px;}
.y0_c00498{bottom:0.000000px;}
.y1_c00498{bottom:660.750000px;}
.h1_c00498{height:170.771484px;}
.h0_c00498{height:1174.500000px;}
.w0_c00498{width:731.977200px;}
.w1_c00498{width:732.000000px;}
.x0_c00498{left:0.000000px;}
.x1_c00498{left:223.915200px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls0_c00498{letter-spacing:0.000000pt;}
.ws0_c00498{word-spacing:0.000000pt;}
.fs0_c00498{font-size:154.666667pt;}
.y0_c00498{bottom:0.000000pt;}
.y1_c00498{bottom:587.333333pt;}
.h1_c00498{height:151.796875pt;}
.h0_c00498{height:1044.000000pt;}
.w0_c00498{width:650.646400pt;}
.w1_c00498{width:650.666667pt;}
.x0_c00498{left:0.000000pt;}
.x1_c00498{left:199.035733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e9f1bf5bf08db448e4f68d92.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00499{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls0_c00499{letter-spacing:0.000000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00499{word-spacing:0.000000px;}
.fc0_c00499{color:transparent;}
.fs0_c00499{font-size:60.000000px;}
.y0_c00499{bottom:0.000000px;}
.y1_c00499{bottom:404.775000px;}
.h1_c00499{height:61.670545px;}
.h0_c00499{height:1174.500000px;}
.w0_c00499{width:731.977200px;}
.w1_c00499{width:732.000000px;}
.x0_c00499{left:0.000000px;}
.x1_c00499{left:613.390200px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls0_c00499{letter-spacing:0.000000pt;}
.ws0_c00499{word-spacing:0.000000pt;}
.fs0_c00499{font-size:53.333333pt;}
.y0_c00499{bottom:0.000000pt;}
.y1_c00499{bottom:359.800000pt;}
.h1_c00499{height:54.818262pt;}
.h0_c00499{height:1044.000000pt;}
.w0_c00499{width:650.646400pt;}
.w1_c00499{width:650.666667pt;}
.x0_c00499{left:0.000000pt;}
.x1_c00499{left:545.235733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b12db4e00b069a9ca1c6814f.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00001;src:url('chunks/assets/font_06fbe1852712fa24c19eb60d.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.575000;font-style:normal;font-weight:normal;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_0e23d5e33ec2f5fd77eff187.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00001;src:url('chunks/assets/font_3210333e17f8e92f96f00715.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00001;src:url('chunks/assets/font_aaa237e5757fcb9457990141.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00001;src:url('chunks/assets/font_b25fd884e9ab555c49a8650d.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00001;src:url('chunks/assets/font_4e506956b05675b347f3ca5f.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6b_c00001{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m66_c00001{transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);}
.m65_c00001{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00001{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m56_c00001{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m47_c00001{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00001{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00001{transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00001{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m36_c00001{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m55_c00001{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00001{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m11_c00001{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m87_c00001{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m37_c00001{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m79_c00001{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m82_c00001{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m67_c00001{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00001{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00001{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00001{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m23_c00001{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00001{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m57_c00001{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m73_c00001{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00001{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m51_c00001{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00001{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00001{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00001{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m31_c00001{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m69_c00001{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m75_c00001{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m53_c00001{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00001{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m50_c00001{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m74_c00001{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00001{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00001{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m39_c00001{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00001{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00001{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m71_c00001{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00001{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m18_c00001{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m45_c00001{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3b_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);}
.m27_c00001{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00001{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m21_c00001{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00001{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m28_c00001{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m24_c00001{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c00001{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00001{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m54_c00001{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00001{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m26_c00001{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00001{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00001{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m19_c00001{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m29_c00001{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m49_c00001{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m32_c00001{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m20_c00001{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00001{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c00001{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf_c00001{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00001{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00001{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00001{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00001{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00001{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00001{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00001{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c00001{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c00001{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m43_c00001{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m14_c00001{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c00001{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m35_c00001{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c00001{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00001{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m48_c00001{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m59_c00001{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c00001{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m61_c00001{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00001{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00001{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m78_c00001{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00001{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m41_c00001{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m64_c00001{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m84_c00001{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m85_c00001{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m34_c00001{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m33_c00001{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m68_c00001{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00001{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m58_c00001{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00001{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m40_c00001{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.md_c00001{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m44_c00001{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00001{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m81_c00001{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m22_c00001{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00001{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m72_c00001{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m88_c00001{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m30_c00001{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m63_c00001{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m83_c00001{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00001{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00001{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m86_c00001{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m16_c00001{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m62_c00001{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m60_c00001{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m76_c00001{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00001{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m25_c00001{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00001{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00001{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00001{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m42_c00001{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00001{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00001{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00001{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m46_c00001{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m10_c00001{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00001{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m89_c00001{transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);}
.m91_c00001{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00001{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00001{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00001{transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);}
.m77_c00001{transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);}
.m38_c00001{transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);}
.m52_c00001{transform:matrix(1.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.180000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00001{transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);}
.m80_c00001{transform:matrix(1.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.477500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00001{transform:matrix(2.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.572500,0.000000,0.000000,0.250000,0,0);}
.m92_c00001{transform:matrix(2.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.635000,0.000000,0.000000,0.250000,0,0);}
.m90_c00001{transform:matrix(2.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.680000,0.000000,0.000000,0.250000,0,0);}
.m70_c00001{transform:matrix(4.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.797500,0.000000,0.000000,0.250000,0,0);}
.m2_c00001{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v1_c00001{vertical-align:-18.606000px;}
.v5_c00001{vertical-align:-3.000000px;}
.v2_c00001{vertical-align:-1.500000px;}
.v0_c00001{vertical-align:0.000000px;}
.v3_c00001{vertical-align:2.706000px;}
.v4_c00001{vertical-align:15.594000px;}
.v6_c00001{vertical-align:79.500000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.ls2_c00001{letter-spacing:0.414015px;}
.ls4_c00001{letter-spacing:0.468000px;}
.ls3_c00001{letter-spacing:0.842250px;}
.ls1_c00001{letter-spacing:1.134966px;}
.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;}
}
.ws1_c00001{word-spacing:-18.000000px;}
.ws2_c00001{word-spacing:-16.500000px;}
.ws3_c00001{word-spacing:-15.000000px;}
.ws0_c00001{word-spacing:0.000000px;}
._4_c00001{margin-left:-39.061001px;}
._0_c00001{margin-left:-10.061237px;}
._2_c00001{width:1.641750px;}
._1_c00001{width:2.934000px;}
._3_c00001{width:8.100000px;}
.fc0_c00001{color:transparent;}
.fs5_c00001{font-size:18.000000px;}
.fsc_c00001{font-size:24.000000px;}
.fs14_c00001{font-size:42.000000px;}
.fs13_c00001{font-size:48.000000px;}
.fs0_c00001{font-size:54.000000px;}
.fs1_c00001{font-size:60.000000px;}
.fs3_c00001{font-size:66.000000px;}
.fs2_c00001{font-size:72.000000px;}
.fs7_c00001{font-size:78.000000px;}
.fs6_c00001{font-size:84.000000px;}
.fs4_c00001{font-size:90.000000px;}
.fse_c00001{font-size:96.000000px;}
.fsf_c00001{font-size:102.000000px;}
.fs8_c00001{font-size:108.000000px;}
.fs12_c00001{font-size:120.000000px;}
.fs10_c00001{font-size:126.000000px;}
.fs11_c00001{font-size:132.000000px;}
.fsb_c00001{font-size:138.000000px;}
.fsd_c00001{font-size:144.000000px;}
.fs9_c00001{font-size:150.000000px;}
.fsa_c00001{font-size:174.000000px;}
.y0_c00001{bottom:0.000000px;}
.y57a_c00001{bottom:32.548500px;}
.y424_c00001{bottom:33.973500px;}
.y425_c00001{bottom:34.048500px;}
.y1ce_c00001{bottom:42.298500px;}
.y524_c00001{bottom:44.098500px;}
.y525_c00001{bottom:51.673500px;}
.y19e_c00001{bottom:55.273500px;}
.y217_c00001{bottom:55.573500px;}
.y26d_c00001{bottom:59.250000px;}
.y578_c00001{bottom:59.548500px;}
.y579_c00001{bottom:59.625000px;}
.y218_c00001{bottom:60.673500px;}
.yf3_c00001{bottom:61.723500px;}
.y577_c00001{bottom:61.798500px;}
.y576_c00001{bottom:62.098500px;}
.y8f_c00001{bottom:62.473500px;}
.y423_c00001{bottom:62.848500px;}
.y526_c00001{bottom:63.223500px;}
.y166_c00001{bottom:65.023500px;}
.y575_c00001{bottom:65.698500px;}
.y23e_c00001{bottom:66.000000px;}
.y26e_c00001{bottom:66.073500px;}
.y3c6_c00001{bottom:66.823500px;}
.y19d_c00001{bottom:67.500000px;}
.yf4_c00001{bottom:67.798500px;}
.y19c_c00001{bottom:67.875000px;}
.y573_c00001{bottom:68.173500px;}
.y574_c00001{bottom:68.250000px;}
.y523_c00001{bottom:68.548500px;}
.ycb_c00001{bottom:68.923500px;}
.yf5_c00001{bottom:69.298500px;}
.y26f_c00001{bottom:69.673500px;}
.yf6_c00001{bottom:71.098500px;}
.y134_c00001{bottom:71.473500px;}
.y1f4_c00001{bottom:71.848500px;}
.y450_c00001{bottom:72.148500px;}
.y2b_c00001{bottom:73.948500px;}
.y46f_c00001{bottom:74.023500px;}
.y3c7_c00001{bottom:74.698500px;}
.y572_c00001{bottom:75.073500px;}
.y5e_c00001{bottom:75.750000px;}
.y1cd_c00001{bottom:76.500000px;}
.y23d_c00001{bottom:76.875000px;}
.y3fe_c00001{bottom:77.923500px;}
.y51f_c00001{bottom:80.098500px;}
.y3fd_c00001{bottom:80.398500px;}
.y3c8_c00001{bottom:80.473500px;}
.y347_c00001{bottom:80.848500px;}
.y522_c00001{bottom:81.523500px;}
.y298_c00001{bottom:81.898500px;}
.y5d_c00001{bottom:82.648500px;}
.y521_c00001{bottom:83.023500px;}
.y397_c00001{bottom:83.323500px;}
.y346_c00001{bottom:83.698500px;}
.y165_c00001{bottom:84.448500px;}
.y133_c00001{bottom:85.125000px;}
.y5c_c00001{bottom:85.500000px;}
.y2ea_c00001{bottom:86.923500px;}
.y8e_c00001{bottom:87.298500px;}
.y23c_c00001{bottom:87.673500px;}
.y1f3_c00001{bottom:89.098500px;}
.y19b_c00001{bottom:89.773500px;}
.y420_c00001{bottom:90.223500px;}
.y345_c00001{bottom:90.898500px;}
.y26c_c00001{bottom:91.198500px;}
.yca_c00001{bottom:91.273500px;}
.y46e_c00001{bottom:91.648500px;}
.y1f2_c00001{bottom:92.398500px;}
.y3c3_c00001{bottom:95.250000px;}
.y2a_c00001{bottom:95.923500px;}
.y1f1_c00001{bottom:96.298500px;}
.y571_c00001{bottom:96.973500px;}
.y44f_c00001{bottom:97.348500px;}
.y51e_c00001{bottom:97.798500px;}
.y19a_c00001{bottom:98.473500px;}
.y421_c00001{bottom:98.773500px;}
.y2bd_c00001{bottom:98.848500px;}
.y51d_c00001{bottom:99.523500px;}
.y44e_c00001{bottom:99.898500px;}
.y3c4_c00001{bottom:100.273500px;}
.y5b_c00001{bottom:101.323500px;}
.y297_c00001{bottom:101.698500px;}
.y422_c00001{bottom:102.073500px;}
.y4cd_c00001{bottom:102.448500px;}
.y570_c00001{bottom:102.750000px;}
.y216_c00001{bottom:103.875000px;}
.yf1_c00001{bottom:106.423500px;}
.y132_c00001{bottom:106.723500px;}
.y199_c00001{bottom:107.473500px;}
.y56f_c00001{bottom:107.773500px;}
.y1cc_c00001{bottom:107.848500px;}
.y164_c00001{bottom:108.148500px;}
.y296_c00001{bottom:108.523500px;}
.y8d_c00001{bottom:108.898500px;}
.y3c5_c00001{bottom:109.273500px;}
.y4cc_c00001{bottom:109.573500px;}
.y396_c00001{bottom:110.323500px;}
.y3fc_c00001{bottom:111.000000px;}
.y1f0_c00001{bottom:111.375000px;}
.y26b_c00001{bottom:111.750000px;}
.y36c_c00001{bottom:112.500000px;}
.y344_c00001{bottom:112.875000px;}
.y56e_c00001{bottom:113.250000px;}
.yc9_c00001{bottom:113.548500px;}
.y1ef_c00001{bottom:114.298500px;}
.yf2_c00001{bottom:114.673500px;}
.y51b_c00001{bottom:115.423500px;}
.y56d_c00001{bottom:116.098500px;}
.y41e_c00001{bottom:116.773500px;}
.y1ee_c00001{bottom:116.848500px;}
.y29_c00001{bottom:117.523500px;}
.y131_c00001{bottom:118.648500px;}
.y2bc_c00001{bottom:119.698500px;}
.y326_c00001{bottom:120.073500px;}
.y2e9_c00001{bottom:120.375000px;}
.y1cb_c00001{bottom:120.448500px;}
.y343_c00001{bottom:120.823500px;}
.y51c_c00001{bottom:121.875000px;}
.y198_c00001{bottom:122.548500px;}
.y41f_c00001{bottom:123.673500px;}
.yc8_c00001{bottom:124.348500px;}
.y5a_c00001{bottom:125.098500px;}
.y3c0_c00001{bottom:126.898500px;}
.y130_c00001{bottom:128.698500px;}
.y8c_c00001{bottom:129.375000px;}
.y44d_c00001{bottom:130.125000px;}
.y295_c00001{bottom:130.500000px;}
.y51a_c00001{bottom:131.548500px;}
.y269_c00001{bottom:131.923500px;}
.y197_c00001{bottom:132.298500px;}
.y196_c00001{bottom:132.673500px;}
.y4cb_c00001{bottom:133.048500px;}
.y56c_c00001{bottom:133.348500px;}
.y1ed_c00001{bottom:133.723500px;}
.y56b_c00001{bottom:134.098500px;}
.y4ca_c00001{bottom:135.148500px;}
.yc7_c00001{bottom:135.523500px;}
.y3c1_c00001{bottom:135.898500px;}
.y23b_c00001{bottom:136.273500px;}
.y28_c00001{bottom:138.073500px;}
.y56a_c00001{bottom:138.823500px;}
.y3fb_c00001{bottom:139.125000px;}
.y569_c00001{bottom:139.875000px;}
.y2bb_c00001{bottom:140.250000px;}
.y36b_c00001{bottom:141.298500px;}
.y3c2_c00001{bottom:141.673500px;}
.y2e8_c00001{bottom:142.048500px;}
.y59_c00001{bottom:143.473500px;}
.y195_c00001{bottom:144.523500px;}
.y342_c00001{bottom:144.898500px;}
.y26a_c00001{bottom:145.273500px;}
.y341_c00001{bottom:145.573500px;}
.y268_c00001{bottom:146.698500px;}
.y267_c00001{bottom:147.000000px;}
.y325_c00001{bottom:147.750000px;}
.y488_c00001{bottom:148.125000px;}
.y518_c00001{bottom:149.923500px;}
.y1ca_c00001{bottom:150.298500px;}
.y8b_c00001{bottom:150.673500px;}
.y3fa_c00001{bottom:151.048500px;}
.y41d_c00001{bottom:153.223500px;}
.y519_c00001{bottom:153.898500px;}
.y12f_c00001{bottom:154.573500px;}
.yf0_c00001{bottom:155.398500px;}
.y568_c00001{bottom:157.500000px;}
.yc6_c00001{bottom:157.875000px;}
.y1ec_c00001{bottom:158.923500px;}
.y27_c00001{bottom:159.673500px;}
.y44c_c00001{bottom:161.473500px;}
.y46d_c00001{bottom:161.848500px;}
.y2ba_c00001{bottom:162.523500px;}
.y214_c00001{bottom:162.898500px;}
.y44b_c00001{bottom:163.273500px;}
.y4c7_c00001{bottom:163.648500px;}
.y4c8_c00001{bottom:163.948500px;}
.y4c9_c00001{bottom:164.023500px;}
.y2e7_c00001{bottom:164.323500px;}
.y3bf_c00001{bottom:164.698500px;}
.y194_c00001{bottom:166.198500px;}
.y44a_c00001{bottom:166.500000px;}
.y566_c00001{bottom:167.173500px;}
.y567_c00001{bottom:167.250000px;}
.y516_c00001{bottom:167.923500px;}
.y565_c00001{bottom:168.298500px;}
.y4c6_c00001{bottom:168.673500px;}
.y163_c00001{bottom:169.348500px;}
.y36a_c00001{bottom:171.223500px;}
.y58_c00001{bottom:171.898500px;}
.y8a_c00001{bottom:172.198500px;}
.y564_c00001{bottom:172.273500px;}
.y294_c00001{bottom:172.573500px;}
.y395_c00001{bottom:172.648500px;}
.y12e_c00001{bottom:172.948500px;}
.y323_c00001{bottom:174.448500px;}
.y340_c00001{bottom:175.500000px;}
.y2b9_c00001{bottom:175.875000px;}
.yef_c00001{bottom:176.548500px;}
.y1eb_c00001{bottom:176.923500px;}
.y1ea_c00001{bottom:178.723500px;}
.y517_c00001{bottom:178.798500px;}
.y324_c00001{bottom:179.098500px;}
.yc5_c00001{bottom:179.473500px;}
.y26_c00001{bottom:180.523500px;}
.y4a5_c00001{bottom:181.573500px;}
.y213_c00001{bottom:182.323500px;}
.y41c_c00001{bottom:183.448500px;}
.y515_c00001{bottom:184.500000px;}
.y514_c00001{bottom:185.250000px;}
.y563_c00001{bottom:186.298500px;}
.y57_c00001{bottom:186.673500px;}
.y56_c00001{bottom:188.098500px;}
.y293_c00001{bottom:189.898500px;}
.y55_c00001{bottom:190.573500px;}
.y46c_c00001{bottom:191.323500px;}
.y23a_c00001{bottom:191.698500px;}
.y449_c00001{bottom:192.073500px;}
.y162_c00001{bottom:193.125000px;}
.y89_c00001{bottom:193.500000px;}
.y193_c00001{bottom:194.250000px;}
.y3be_c00001{bottom:194.923500px;}
.y12d_c00001{bottom:195.298500px;}
.y4c5_c00001{bottom:196.048500px;}
.y448_c00001{bottom:196.423500px;}
.y1e9_c00001{bottom:199.948500px;}
.y513_c00001{bottom:201.448500px;}
.y25_c00001{bottom:201.823500px;}
.y369_c00001{bottom:202.125000px;}
.y3f9_c00001{bottom:202.500000px;}
.y212_c00001{bottom:202.875000px;}
.y394_c00001{bottom:203.250000px;}
.y4a3_c00001{bottom:203.548500px;}
.y2b8_c00001{bottom:204.298500px;}
.y4a4_c00001{bottom:205.048500px;}
.y33f_c00001{bottom:206.473500px;}
.yc4_c00001{bottom:206.773500px;}
.y562_c00001{bottom:207.523500px;}
.y322_c00001{bottom:208.273500px;}
.y2e6_c00001{bottom:208.573500px;}
.y3f8_c00001{bottom:210.073500px;}
.y192_c00001{bottom:210.823500px;}
.y487_c00001{bottom:211.125000px;}
.y292_c00001{bottom:212.173500px;}
.y41b_c00001{bottom:212.625000px;}
.y88_c00001{bottom:214.348500px;}
.y1c9_c00001{bottom:214.423500px;}
.y161_c00001{bottom:214.723500px;}
.y511_c00001{bottom:215.848500px;}
.y512_c00001{bottom:216.523500px;}
.y12c_c00001{bottom:217.948500px;}
.y265_c00001{bottom:219.073500px;}
.y46b_c00001{bottom:222.673500px;}
.y561_c00001{bottom:222.973500px;}
.y24_c00001{bottom:223.048500px;}
.y3bd_c00001{bottom:223.348500px;}
.y1e8_c00001{bottom:223.723500px;}
.y447_c00001{bottom:223.798500px;}
.yc3_c00001{bottom:224.398500px;}
.y560_c00001{bottom:225.523500px;}
.y2b7_c00001{bottom:226.273500px;}
.y446_c00001{bottom:227.323500px;}
.y4c4_c00001{bottom:227.398500px;}
.y211_c00001{bottom:227.698500px;}
.y5b3_c00001{bottom:228.375000px;}
.y368_c00001{bottom:229.125000px;}
.y266_c00001{bottom:230.250000px;}
.y2e5_c00001{bottom:230.625000px;}
.y3f7_c00001{bottom:233.398500px;}
.y3f6_c00001{bottom:233.773500px;}
.y191_c00001{bottom:233.848500px;}
.y160_c00001{bottom:234.148500px;}
.y393_c00001{bottom:234.898500px;}
.y1c8_c00001{bottom:235.273500px;}
.y87_c00001{bottom:235.648500px;}
.yee_c00001{bottom:235.948500px;}
.y54_c00001{bottom:236.323500px;}
.y3f5_c00001{bottom:236.698500px;}
.y321_c00001{bottom:238.125000px;}
.y291_c00001{bottom:239.250000px;}
.y55f_c00001{bottom:239.548500px;}
.y12b_c00001{bottom:239.923500px;}
.y4a2_c00001{bottom:240.298500px;}
.y510_c00001{bottom:241.723500px;}
.y486_c00001{bottom:242.098500px;}
.y41a_c00001{bottom:242.473500px;}
.y2b6_c00001{bottom:242.848500px;}
.y23_c00001{bottom:243.898500px;}
.y1e7_c00001{bottom:244.573500px;}
.y55e_c00001{bottom:245.323500px;}
.y5b2_c00001{bottom:246.448500px;}
.y55d_c00001{bottom:246.750000px;}
.yc2_c00001{bottom:247.198500px;}
.y5b4_c00001{bottom:248.250000px;}
.y210_c00001{bottom:249.298500px;}
.y46a_c00001{bottom:252.523500px;}
.y3bc_c00001{bottom:253.275000px;}
.y445_c00001{bottom:254.025000px;}
.y15f_c00001{bottom:256.125000px;}
.y190_c00001{bottom:256.500000px;}
.y86_c00001{bottom:257.173500px;}
.y50f_c00001{bottom:257.923500px;}
.y2e4_c00001{bottom:258.298500px;}
.y55c_c00001{bottom:258.598500px;}
.y2e3_c00001{bottom:260.098500px;}
.y367_c00001{bottom:260.473500px;}
.y4c3_c00001{bottom:261.150000px;}
.y12a_c00001{bottom:262.650000px;}
.y392_c00001{bottom:264.073500px;}
.y20_c00001{bottom:264.448500px;}
.y5af_c00001{bottom:264.750000px;}
.y264_c00001{bottom:265.125000px;}
.y3f4_c00001{bottom:265.500000px;}
.y21_c00001{bottom:265.875000px;}
.y239_c00001{bottom:266.173500px;}
.y3f3_c00001{bottom:266.250000px;}
.y5b0_c00001{bottom:266.548500px;}
.y22_c00001{bottom:267.298500px;}
.y391_c00001{bottom:268.423500px;}
.y2b5_c00001{bottom:268.723500px;}
.y1e6_c00001{bottom:269.473500px;}
.yc1_c00001{bottom:269.775000px;}
.y20f_c00001{bottom:269.848500px;}
.y5b1_c00001{bottom:270.150000px;}
.y3f2_c00001{bottom:270.525000px;}
.y4a1_c00001{bottom:270.900000px;}
.y320_c00001{bottom:271.275000px;}
.y15c_c00001{bottom:273.073500px;}
.y419_c00001{bottom:273.375000px;}
.y1c6_c00001{bottom:273.750000px;}
.y15d_c00001{bottom:274.125000px;}
.y1c7_c00001{bottom:274.198500px;}
.y2e1_c00001{bottom:275.173500px;}
.y2e2_c00001{bottom:275.250000px;}
.y55b_c00001{bottom:276.673500px;}
.y18f_c00001{bottom:278.473500px;}
.y85_c00001{bottom:279.150000px;}
.y15e_c00001{bottom:279.900000px;}
.y5ad_c00001{bottom:281.698500px;}
.y5ae_c00001{bottom:282.823500px;}
.y469_c00001{bottom:283.125000px;}
.y3bb_c00001{bottom:283.875000px;}
.y129_c00001{bottom:284.923500px;}
.y50e_c00001{bottom:286.348500px;}
.y1f_c00001{bottom:286.423500px;}
.y238_c00001{bottom:287.400000px;}
.y444_c00001{bottom:288.223500px;}
.y1e5_c00001{bottom:288.900000px;}
.yc0_c00001{bottom:289.650000px;}
.y2b4_c00001{bottom:289.948500px;}
.ybf_c00001{bottom:290.698500px;}
.y20e_c00001{bottom:291.448500px;}
.y4c2_c00001{bottom:291.823500px;}
.ybe_c00001{bottom:293.173500px;}
.y50d_c00001{bottom:293.923500px;}
.y55a_c00001{bottom:294.673500px;}
.y390_c00001{bottom:295.048500px;}
.y1c5_c00001{bottom:296.400000px;}
.y38f_c00001{bottom:296.848500px;}
.y3f1_c00001{bottom:298.275000px;}
.y31e_c00001{bottom:298.573500px;}
.y38e_c00001{bottom:299.400000px;}
.y15b_c00001{bottom:299.698500px;}
.y84_c00001{bottom:300.073500px;}
.y290_c00001{bottom:300.375000px;}
.y5ab_c00001{bottom:300.750000px;}
.y18e_c00001{bottom:300.823500px;}
.y4a0_c00001{bottom:301.500000px;}
.y2e0_c00001{bottom:302.173500px;}
.y418_c00001{bottom:304.048500px;}
.y31f_c00001{bottom:304.723500px;}
.y485_c00001{bottom:305.848500px;}
.y1e_c00001{bottom:307.948500px;}
.y237_c00001{bottom:308.698500px;}
.y5ac_c00001{bottom:310.500000px;}
.y128_c00001{bottom:310.875000px;}
.y53_c00001{bottom:311.250000px;}
.y236_c00001{bottom:311.548500px;}
.y559_c00001{bottom:312.298500px;}
.y235_c00001{bottom:312.598500px;}
.ybd_c00001{bottom:312.973500px;}
.y2b3_c00001{bottom:313.048500px;}
.y3ba_c00001{bottom:313.348500px;}
.y468_c00001{bottom:313.723500px;}
.y4e6_c00001{bottom:314.098500px;}
.y20d_c00001{bottom:315.525000px;}
.y4e7_c00001{bottom:316.650000px;}
.y5aa_c00001{bottom:317.025000px;}
.yeb_c00001{bottom:317.323500px;}
.y5a8_c00001{bottom:318.073500px;}
.y2df_c00001{bottom:319.500000px;}
.yec_c00001{bottom:319.875000px;}
.y4c1_c00001{bottom:321.298500px;}
.y5a9_c00001{bottom:322.048500px;}
.y83_c00001{bottom:322.348500px;}
.y18d_c00001{bottom:322.723500px;}
.y4c0_c00001{bottom:323.848500px;}
.yed_c00001{bottom:325.573500px;}
.y38d_c00001{bottom:326.323500px;}
.y263_c00001{bottom:326.698500px;}
.y50b_c00001{bottom:328.125000px;}
.y31d_c00001{bottom:328.198500px;}
.y38c_c00001{bottom:328.500000px;}
.y3f0_c00001{bottom:329.250000px;}
.y127_c00001{bottom:329.548500px;}
.y2b2_c00001{bottom:329.923500px;}
.y1d_c00001{bottom:330.298500px;}
.y38b_c00001{bottom:330.598500px;}
.y558_c00001{bottom:330.673500px;}
.y33e_c00001{bottom:331.423500px;}
.y49f_c00001{bottom:331.723500px;}
.y1e3_c00001{bottom:332.775000px;}
.y1e4_c00001{bottom:333.150000px;}
.y5a7_c00001{bottom:333.598500px;}
.y50c_c00001{bottom:334.275000px;}
.y417_c00001{bottom:334.948500px;}
.ybc_c00001{bottom:335.323500px;}
.y5a5_c00001{bottom:335.698500px;}
.y5a6_c00001{bottom:337.125000px;}
.y20c_c00001{bottom:337.500000px;}
.y15a_c00001{bottom:341.098500px;}
.y2de_c00001{bottom:342.150000px;}
.y52_c00001{bottom:343.948500px;}
.y51_c00001{bottom:344.025000px;}
.y3b9_c00001{bottom:344.323500px;}
.y82_c00001{bottom:344.698500px;}
.y467_c00001{bottom:345.823500px;}
.y508_c00001{bottom:346.500000px;}
.y557_c00001{bottom:348.298500px;}
.y18c_c00001{bottom:349.723500px;}
.y443_c00001{bottom:349.798500px;}
.y556_c00001{bottom:350.400000px;}
.y5a3_c00001{bottom:350.775000px;}
.y5a4_c00001{bottom:350.848500px;}
.y1c_c00001{bottom:351.525000px;}
.y509_c00001{bottom:352.275000px;}
.y126_c00001{bottom:352.573500px;}
.y50a_c00001{bottom:352.948500px;}
.y366_c00001{bottom:353.323500px;}
.y4bf_c00001{bottom:354.073500px;}
.y1e2_c00001{bottom:355.875000px;}
.y2b1_c00001{bottom:356.548500px;}
.y38a_c00001{bottom:357.000000px;}
.ybb_c00001{bottom:357.673500px;}
.y20b_c00001{bottom:358.348500px;}
.y31c_c00001{bottom:359.473500px;}
.y389_c00001{bottom:359.848500px;}
.y3ee_c00001{bottom:360.900000px;}
.y3ef_c00001{bottom:361.650000px;}
.y157_c00001{bottom:362.323500px;}
.y416_c00001{bottom:362.698500px;}
.y158_c00001{bottom:363.073500px;}
.y2dd_c00001{bottom:364.125000px;}
.y49e_c00001{bottom:364.875000px;}
.y81_c00001{bottom:366.298500px;}
.y1c4_c00001{bottom:366.673500px;}
.yea_c00001{bottom:366.973500px;}
.y28f_c00001{bottom:367.048500px;}
.y159_c00001{bottom:367.348500px;}
.y18b_c00001{bottom:367.723500px;}
.y484_c00001{bottom:368.473500px;}
.y28e_c00001{bottom:368.775000px;}
.y28d_c00001{bottom:369.525000px;}
.y308_c00001{bottom:371.323500px;}
.y5a2_c00001{bottom:373.125000px;}
.y1b_c00001{bottom:373.500000px;}
.y50_c00001{bottom:374.625000px;}
.y4e4_c00001{bottom:375.298500px;}
.y466_c00001{bottom:375.673500px;}
.y125_c00001{bottom:376.723500px;}
.y1e1_c00001{bottom:377.775000px;}
.y2b0_c00001{bottom:378.525000px;}
.y365_c00001{bottom:378.900000px;}
.y4e5_c00001{bottom:380.323500px;}
.y507_c00001{bottom:380.698500px;}
.y20a_c00001{bottom:381.750000px;}
.yba_c00001{bottom:382.875000px;}
.y442_c00001{bottom:383.173500px;}
.y555_c00001{bottom:384.673500px;}
.y4be_c00001{bottom:385.723500px;}
.ye9_c00001{bottom:386.473500px;}
.y262_c00001{bottom:387.223500px;}
.y80_c00001{bottom:387.900000px;}
.y1c3_c00001{bottom:388.275000px;}
.y18a_c00001{bottom:390.375000px;}
.y28c_c00001{bottom:391.125000px;}
.y3ec_c00001{bottom:391.500000px;}
.y388_c00001{bottom:391.875000px;}
.y3eb_c00001{bottom:392.173500px;}
.y387_c00001{bottom:392.250000px;}
.y3ea_c00001{bottom:393.298500px;}
.y3ed_c00001{bottom:393.673500px;}
.y49d_c00001{bottom:394.048500px;}
.y3e9_c00001{bottom:394.348500px;}
.y1a_c00001{bottom:395.098500px;}
.y414_c00001{bottom:395.775000px;}
.y2af_c00001{bottom:396.150000px;}
.y305_c00001{bottom:396.525000px;}
.y33d_c00001{bottom:396.598500px;}
.y124_c00001{bottom:397.275000px;}
.y1e0_c00001{bottom:399.750000px;}
.y415_c00001{bottom:399.823500px;}
.y506_c00001{bottom:400.500000px;}
.y306_c00001{bottom:400.875000px;}
.yb8_c00001{bottom:401.923500px;}
.yb9_c00001{bottom:402.298500px;}
.yb7_c00001{bottom:402.598500px;}
.y554_c00001{bottom:402.673500px;}
.y209_c00001{bottom:403.348500px;}
.y553_c00001{bottom:403.423500px;}
.y3b8_c00001{bottom:405.223500px;}
.y465_c00001{bottom:406.275000px;}
.y7f_c00001{bottom:408.073500px;}
.y307_c00001{bottom:408.375000px;}
.ye8_c00001{bottom:409.125000px;}
.y156_c00001{bottom:409.500000px;}
.y1c2_c00001{bottom:409.875000px;}
.y4f_c00001{bottom:410.625000px;}
.y2dc_c00001{bottom:411.673500px;}
.y28b_c00001{bottom:411.973500px;}
.y4e_c00001{bottom:412.048500px;}
.y4d_c00001{bottom:412.348500px;}
.y364_c00001{bottom:412.798500px;}
.y261_c00001{bottom:413.848500px;}
.y189_c00001{bottom:414.148500px;}
.y5a1_c00001{bottom:414.523500px;}
.y441_c00001{bottom:414.898500px;}
.y19_c00001{bottom:416.698500px;}
.y503_c00001{bottom:417.073500px;}
.y304_c00001{bottom:417.750000px;}
.y504_c00001{bottom:418.125000px;}
.y505_c00001{bottom:419.923500px;}
.y4e3_c00001{bottom:420.298500px;}
.y386_c00001{bottom:420.673500px;}
.y123_c00001{bottom:420.973500px;}
.y31b_c00001{bottom:421.048500px;}
.y2ae_c00001{bottom:421.723500px;}
.y1df_c00001{bottom:421.798500px;}
.y234_c00001{bottom:422.098500px;}
.y385_c00001{bottom:423.148500px;}
.y384_c00001{bottom:423.223500px;}
.y3e8_c00001{bottom:423.898500px;}
.y49c_c00001{bottom:424.648500px;}
.yb6_c00001{bottom:424.948500px;}
.y208_c00001{bottom:425.323500px;}
.y33c_c00001{bottom:425.698500px;}
.y33b_c00001{bottom:426.073500px;}
.y413_c00001{bottom:429.298500px;}
.y7e_c00001{bottom:430.723500px;}
.ye7_c00001{bottom:431.098500px;}
.y155_c00001{bottom:431.848500px;}
.y483_c00001{bottom:432.223500px;}
.y28a_c00001{bottom:434.323500px;}
.y4c_c00001{bottom:434.698500px;}
.y188_c00001{bottom:435.448500px;}
.y260_c00001{bottom:436.125000px;}
.y464_c00001{bottom:436.875000px;}
.y501_c00001{bottom:437.173500px;}
.y3b6_c00001{bottom:437.250000px;}
.y3b7_c00001{bottom:437.625000px;}
.y18_c00001{bottom:438.298500px;}
.y552_c00001{bottom:438.673500px;}
.y502_c00001{bottom:439.423500px;}
.y551_c00001{bottom:439.723500px;}
.y122_c00001{bottom:441.898500px;}
.y1dd_c00001{bottom:443.698500px;}
.y303_c00001{bottom:444.375000px;}
.y1de_c00001{bottom:444.448500px;}
.y440_c00001{bottom:446.548500px;}
.yb5_c00001{bottom:447.298500px;}
.y207_c00001{bottom:447.598500px;}
.y4bd_c00001{bottom:448.723500px;}
.y4bc_c00001{bottom:450.148500px;}
.y4bb_c00001{bottom:450.223500px;}
.y31a_c00001{bottom:451.648500px;}
.y7d_c00001{bottom:453.073500px;}
.y500_c00001{bottom:453.448500px;}
.y154_c00001{bottom:453.750000px;}
.y1c1_c00001{bottom:454.125000px;}
.y2db_c00001{bottom:454.500000px;}
.y4b_c00001{bottom:455.173500px;}
.y3e7_c00001{bottom:455.923500px;}
.y25f_c00001{bottom:456.298500px;}
.y289_c00001{bottom:456.973500px;}
.y33a_c00001{bottom:457.348500px;}
.y187_c00001{bottom:458.398500px;}
.y412_c00001{bottom:459.898500px;}
.y17_c00001{bottom:460.273500px;}
.y16_c00001{bottom:460.573500px;}
.y5d5_c00001{bottom:462.375000px;}
.y5a0_c00001{bottom:462.823500px;}
.y482_c00001{bottom:463.500000px;}
.y121_c00001{bottom:464.548500px;}
.y233_c00001{bottom:465.673500px;}
.y1db_c00001{bottom:466.348500px;}
.y1dc_c00001{bottom:467.098500px;}
.y5d6_c00001{bottom:468.523500px;}
.y2ad_c00001{bottom:469.273500px;}
.yb4_c00001{bottom:469.948500px;}
.y4fe_c00001{bottom:470.698500px;}
.y4ff_c00001{bottom:471.750000px;}
.y153_c00001{bottom:474.598500px;}
.y363_c00001{bottom:474.673500px;}
.y7c_c00001{bottom:474.973500px;}
.y4e2_c00001{bottom:475.348500px;}
.y550_c00001{bottom:475.723500px;}
.y1c0_c00001{bottom:476.098500px;}
.y2da_c00001{bottom:476.473500px;}
.y4a_c00001{bottom:477.523500px;}
.y43f_c00001{bottom:477.898500px;}
.y43e_c00001{bottom:478.273500px;}
.ye6_c00001{bottom:478.573500px;}
.y288_c00001{bottom:478.948500px;}
.y287_c00001{bottom:479.698500px;}
.y286_c00001{bottom:480.073500px;}
.y25e_c00001{bottom:480.375000px;}
.y4ba_c00001{bottom:481.500000px;}
.y319_c00001{bottom:482.250000px;}
.y15_c00001{bottom:482.548500px;}
.y186_c00001{bottom:482.923500px;}
.y5d4_c00001{bottom:483.298500px;}
.y383_c00001{bottom:484.423500px;}
.y302_c00001{bottom:484.723500px;}
.y3e6_c00001{bottom:486.148500px;}
.y120_c00001{bottom:487.273500px;}
.y3e5_c00001{bottom:487.573500px;}
.y232_c00001{bottom:487.948500px;}
.y339_c00001{bottom:488.323500px;}
.y1da_c00001{bottom:489.073500px;}
.y4fd_c00001{bottom:489.375000px;}
.y411_c00001{bottom:490.875000px;}
.yb3_c00001{bottom:491.548500px;}
.y54f_c00001{bottom:493.723500px;}
.y481_c00001{bottom:495.148500px;}
.y3b4_c00001{bottom:496.273500px;}
.y3b5_c00001{bottom:496.573500px;}
.y7b_c00001{bottom:497.323500px;}
.y152_c00001{bottom:498.000000px;}
.y1bf_c00001{bottom:498.448500px;}
.y5d1_c00001{bottom:498.750000px;}
.y2d9_c00001{bottom:499.500000px;}
.y463_c00001{bottom:500.250000px;}
.y49_c00001{bottom:500.548500px;}
.y59f_c00001{bottom:500.625000px;}
.y5d2_c00001{bottom:500.923500px;}
.y285_c00001{bottom:501.298500px;}
.y185_c00001{bottom:502.723500px;}
.y4e1_c00001{bottom:504.148500px;}
.y14_c00001{bottom:504.523500px;}
.y5d3_c00001{bottom:504.898500px;}
.y362_c00001{bottom:506.023500px;}
.y4fc_c00001{bottom:507.448500px;}
.y11f_c00001{bottom:508.500000px;}
.y43d_c00001{bottom:509.548500px;}
.y43c_c00001{bottom:509.923500px;}
.y231_c00001{bottom:510.298500px;}
.y301_c00001{bottom:510.673500px;}
.y1d9_c00001{bottom:511.348500px;}
.y318_c00001{bottom:511.798500px;}
.y4b9_c00001{bottom:512.473500px;}
.y317_c00001{bottom:512.773500px;}
.yb2_c00001{bottom:513.523500px;}
.y316_c00001{bottom:514.948500px;}
.y5cf_c00001{bottom:516.750000px;}
.y3e4_c00001{bottom:517.125000px;}
.y59d_c00001{bottom:517.500000px;}
.y49b_c00001{bottom:517.875000px;}
.y206_c00001{bottom:518.173500px;}
.y59e_c00001{bottom:518.923500px;}
.y7a_c00001{bottom:519.673500px;}
.y151_c00001{bottom:520.048500px;}
.y1be_c00001{bottom:520.348500px;}
.y2d8_c00001{bottom:520.723500px;}
.y48_c00001{bottom:522.148500px;}
.y410_c00001{bottom:522.223500px;}
.y25d_c00001{bottom:522.523500px;}
.y5d0_c00001{bottom:522.898500px;}
.y284_c00001{bottom:523.273500px;}
.y5b6_c00001{bottom:523.648500px;}
.y480_c00001{bottom:525.073500px;}
.y184_c00001{bottom:525.375000px;}
.y4fb_c00001{bottom:525.750000px;}
.y47f_c00001{bottom:526.125000px;}
.y13_c00001{bottom:526.500000px;}
.y3b3_c00001{bottom:527.548500px;}
.y54e_c00001{bottom:529.348500px;}
.y11e_c00001{bottom:530.773500px;}
.y462_c00001{bottom:530.848500px;}
.y230_c00001{bottom:532.573500px;}
.y1d8_c00001{bottom:533.323500px;}
.y300_c00001{bottom:533.698500px;}
.yb1_c00001{bottom:535.875000px;}
.y361_c00001{bottom:536.923500px;}
.y4e0_c00001{bottom:537.598500px;}
.y43b_c00001{bottom:540.898500px;}
.y14e_c00001{bottom:541.573500px;}
.ye5_c00001{bottom:541.648500px;}
.y14f_c00001{bottom:541.948500px;}
.y79_c00001{bottom:542.023500px;}
.y150_c00001{bottom:542.323500px;}
.y1bd_c00001{bottom:542.698500px;}
.y2d7_c00001{bottom:543.073500px;}
.y4b8_c00001{bottom:543.750000px;}
.y315_c00001{bottom:543.823500px;}
.y47_c00001{bottom:544.500000px;}
.y382_c00001{bottom:544.798500px;}
.y283_c00001{bottom:545.250000px;}
.y25c_c00001{bottom:546.298500px;}
.y54d_c00001{bottom:547.348500px;}
.y183_c00001{bottom:547.723500px;}
.y3e3_c00001{bottom:548.773500px;}
.y12_c00001{bottom:548.848500px;}
.y338_c00001{bottom:551.323500px;}
.y2ff_c00001{bottom:552.073500px;}
.y11d_c00001{bottom:553.125000px;}
.y59c_c00001{bottom:553.875000px;}
.y22f_c00001{bottom:554.923500px;}
.y47e_c00001{bottom:557.098500px;}
.yb0_c00001{bottom:557.398500px;}
.yaf_c00001{bottom:558.148500px;}
.y5b5_c00001{bottom:558.223500px;}
.y461_c00001{bottom:561.750000px;}
.y4fa_c00001{bottom:563.250000px;}
.y14d_c00001{bottom:563.625000px;}
.y78_c00001{bottom:564.298500px;}
.y1bc_c00001{bottom:564.598500px;}
.y54c_c00001{bottom:565.348500px;}
.y2d6_c00001{bottom:565.723500px;}
.y46_c00001{bottom:566.773500px;}
.y45_c00001{bottom:566.848500px;}
.y282_c00001{bottom:567.523500px;}
.y44_c00001{bottom:567.898500px;}
.y4df_c00001{bottom:568.198500px;}
.y25b_c00001{bottom:568.573500px;}
.y11_c00001{bottom:570.750000px;}
.y182_c00001{bottom:571.875000px;}
.y43a_c00001{bottom:572.548500px;}
.y59b_c00001{bottom:572.923500px;}
.y314_c00001{bottom:574.423500px;}
.y11c_c00001{bottom:575.098500px;}
.y381_c00001{bottom:576.148500px;}
.y2fe_c00001{bottom:577.273500px;}
.y380_c00001{bottom:577.573500px;}
.y22e_c00001{bottom:577.948500px;}
.y3e1_c00001{bottom:579.750000px;}
.y3e2_c00001{bottom:580.125000px;}
.yae_c00001{bottom:580.500000px;}
.y205_c00001{bottom:581.173500px;}
.y204_c00001{bottom:581.625000px;}
.y337_c00001{bottom:582.673500px;}
.y54b_c00001{bottom:583.423500px;}
.y40f_c00001{bottom:584.098500px;}
.y77_c00001{bottom:586.273500px;}
.y1bb_c00001{bottom:586.573500px;}
.y2d5_c00001{bottom:588.073500px;}
.y47d_c00001{bottom:588.448500px;}
.y43_c00001{bottom:589.125000px;}
.y3b2_c00001{bottom:589.500000px;}
.y25a_c00001{bottom:589.875000px;}
.y281_c00001{bottom:590.173500px;}
.y599_c00001{bottom:590.625000px;}
.y59a_c00001{bottom:590.923500px;}
.y10_c00001{bottom:592.723500px;}
.y460_c00001{bottom:592.798500px;}
.y181_c00001{bottom:593.098500px;}
.y11b_c00001{bottom:597.375000px;}
.y2ac_c00001{bottom:597.750000px;}
.y2fd_c00001{bottom:598.125000px;}
.y360_c00001{bottom:598.875000px;}
.y4dc_c00001{bottom:599.250000px;}
.y22d_c00001{bottom:599.625000px;}
.y4dd_c00001{bottom:600.598500px;}
.y4de_c00001{bottom:600.673500px;}
.y549_c00001{bottom:601.723500px;}
.y54a_c00001{bottom:602.098500px;}
.yad_c00001{bottom:602.473500px;}
.yac_c00001{bottom:602.773500px;}
.y203_c00001{bottom:603.148500px;}
.y439_c00001{bottom:604.273500px;}
.y313_c00001{bottom:604.648500px;}
.y4b5_c00001{bottom:606.073500px;}
.y4b7_c00001{bottom:606.375000px;}
.y4b6_c00001{bottom:606.448500px;}
.ye3_c00001{bottom:607.798500px;}
.ye4_c00001{bottom:607.875000px;}
.y76_c00001{bottom:608.250000px;}
.y1ba_c00001{bottom:608.923500px;}
.y312_c00001{bottom:609.000000px;}
.y14c_c00001{bottom:609.298500px;}
.y1b9_c00001{bottom:609.673500px;}
.y2d4_c00001{bottom:610.723500px;}
.y42_c00001{bottom:611.473500px;}
.y3e0_c00001{bottom:611.773500px;}
.y49a_c00001{bottom:611.848500px;}
.y52a_c00001{bottom:612.148500px;}
.y280_c00001{bottom:612.523500px;}
.y259_c00001{bottom:612.898500px;}
.y336_c00001{bottom:614.323500px;}
.y40e_c00001{bottom:614.698500px;}
.y180_c00001{bottom:615.750000px;}
.yf_c00001{bottom:616.500000px;}
.y548_c00001{bottom:619.423500px;}
.y11a_c00001{bottom:619.723500px;}
.y119_c00001{bottom:620.098500px;}
.y47c_c00001{bottom:620.398500px;}
.y3b1_c00001{bottom:620.473500px;}
.y2fc_c00001{bottom:621.523500px;}
.y22c_c00001{bottom:622.273500px;}
.y45f_c00001{bottom:624.073500px;}
.yab_c00001{bottom:624.750000px;}
.y202_c00001{bottom:626.548500px;}
.y598_c00001{bottom:627.298500px;}
.y35f_c00001{bottom:629.848500px;}
.y75_c00001{bottom:630.148500px;}
.y14b_c00001{bottom:630.898500px;}
.y1b8_c00001{bottom:631.273500px;}
.y2d3_c00001{bottom:632.698500px;}
.y311_c00001{bottom:633.073500px;}
.y41_c00001{bottom:634.125000px;}
.y258_c00001{bottom:634.875000px;}
.y27f_c00001{bottom:635.250000px;}
.y438_c00001{bottom:636.673500px;}
.ye_c00001{bottom:637.348500px;}
.y4b4_c00001{bottom:637.723500px;}
.y547_c00001{bottom:638.098500px;}
.y4b3_c00001{bottom:638.398500px;}
.y17f_c00001{bottom:638.773500px;}
.ye2_c00001{bottom:639.148500px;}
.y310_c00001{bottom:640.573500px;}
.y499_c00001{bottom:640.648500px;}
.y498_c00001{bottom:642.073500px;}
.y2ab_c00001{bottom:642.375000px;}
.y118_c00001{bottom:642.750000px;}
.y3df_c00001{bottom:643.125000px;}
.y22b_c00001{bottom:644.923500px;}
.y597_c00001{bottom:645.298500px;}
.y596_c00001{bottom:645.598500px;}
.y335_c00001{bottom:645.673500px;}
.y40d_c00001{bottom:646.048500px;}
.yaa_c00001{bottom:647.098500px;}
.y201_c00001{bottom:648.148500px;}
.y1d7_c00001{bottom:648.523500px;}
.y3b0_c00001{bottom:651.448500px;}
.y4f9_c00001{bottom:651.750000px;}
.y74_c00001{bottom:652.125000px;}
.y1b7_c00001{bottom:652.875000px;}
.y1b5_c00001{bottom:653.923500px;}
.y1b6_c00001{bottom:654.000000px;}
.y14a_c00001{bottom:654.298500px;}
.y2d2_c00001{bottom:655.348500px;}
.y45e_c00001{bottom:656.098500px;}
.y40_c00001{bottom:656.473500px;}
.y27e_c00001{bottom:656.773500px;}
.y257_c00001{bottom:657.148500px;}
.yd_c00001{bottom:659.323500px;}
.y35e_c00001{bottom:660.448500px;}
.y17e_c00001{bottom:660.750000px;}
.y4db_c00001{bottom:661.500000px;}
.y30f_c00001{bottom:662.250000px;}
.y2aa_c00001{bottom:664.348500px;}
.y30e_c00001{bottom:664.723500px;}
.y117_c00001{bottom:665.098500px;}
.y2fb_c00001{bottom:665.473500px;}
.y22a_c00001{bottom:667.273500px;}
.y437_c00001{bottom:668.323500px;}
.y4f8_c00001{bottom:669.073500px;}
.ya9_c00001{bottom:669.375000px;}
.y200_c00001{bottom:670.125000px;}
.y37e_c00001{bottom:671.250000px;}
.y37f_c00001{bottom:672.298500px;}
.y3de_c00001{bottom:673.048500px;}
.y545_c00001{bottom:673.723500px;}
.y497_c00001{bottom:673.798500px;}
.y73_c00001{bottom:675.148500px;}
.y546_c00001{bottom:675.223500px;}
.y149_c00001{bottom:675.523500px;}
.y1b4_c00001{bottom:676.573500px;}
.y334_c00001{bottom:676.948500px;}
.y2d1_c00001{bottom:678.000000px;}
.y40c_c00001{bottom:678.073500px;}
.y3f_c00001{bottom:678.750000px;}
.y256_c00001{bottom:679.125000px;}
.y27d_c00001{bottom:680.173500px;}
.y3af_c00001{bottom:681.298500px;}
.yc_c00001{bottom:681.598500px;}
.y3ae_c00001{bottom:682.423500px;}
.y17d_c00001{bottom:683.098500px;}
.y3ad_c00001{bottom:683.398500px;}
.y4f7_c00001{bottom:683.473500px;}
.y4f6_c00001{bottom:684.148500px;}
.y2a9_c00001{bottom:686.323500px;}
.y45d_c00001{bottom:687.375000px;}
.y116_c00001{bottom:687.750000px;}
.y35d_c00001{bottom:688.798500px;}
.y229_c00001{bottom:689.923500px;}
.ya8_c00001{bottom:691.723500px;}
.y35c_c00001{bottom:692.098500px;}
.y57b_c00001{bottom:692.473500px;}
.y4f5_c00001{bottom:692.848500px;}
.y4da_c00001{bottom:693.148500px;}
.y30d_c00001{bottom:694.273500px;}
.y1ff_c00001{bottom:694.573500px;}
.y1b3_c00001{bottom:697.125000px;}
.y72_c00001{bottom:697.500000px;}
.y148_c00001{bottom:697.875000px;}
.y30c_c00001{bottom:698.923500px;}
.y2d0_c00001{bottom:699.298500px;}
.y435_c00001{bottom:700.048500px;}
.y436_c00001{bottom:700.348500px;}
.y4b1_c00001{bottom:700.723500px;}
.y3e_c00001{bottom:701.098500px;}
.y255_c00001{bottom:702.148500px;}
.y4b2_c00001{bottom:702.523500px;}
.y27c_c00001{bottom:702.898500px;}
.y37d_c00001{bottom:703.273500px;}
.y496_c00001{bottom:703.573500px;}
.y5ce_c00001{bottom:704.323500px;}
.y495_c00001{bottom:705.375000px;}
.y17c_c00001{bottom:705.448500px;}
.y3dc_c00001{bottom:706.125000px;}
.y3dd_c00001{bottom:706.500000px;}
.y5cd_c00001{bottom:706.875000px;}
.yb_c00001{bottom:707.923500px;}
.y40b_c00001{bottom:708.673500px;}
.y115_c00001{bottom:709.348500px;}
.y544_c00001{bottom:710.473500px;}
.y2a8_c00001{bottom:710.773500px;}
.y3ac_c00001{bottom:713.698500px;}
.ya7_c00001{bottom:714.075000px;}
.y2fa_c00001{bottom:714.375000px;}
.y1fe_c00001{bottom:715.125000px;}
.y1fd_c00001{bottom:718.048500px;}
.y147_c00001{bottom:719.773500px;}
.y1b2_c00001{bottom:720.148500px;}
.y45c_c00001{bottom:720.223500px;}
.y71_c00001{bottom:720.523500px;}
.y5cc_c00001{bottom:721.648500px;}
.y4f4_c00001{bottom:721.950000px;}
.y2cf_c00001{bottom:722.700000px;}
.y3d_c00001{bottom:723.075000px;}
.y254_c00001{bottom:723.750000px;}
.y5cb_c00001{bottom:723.825000px;}
.y4d9_c00001{bottom:724.125000px;}
.y27b_c00001{bottom:725.173500px;}
.y5c9_c00001{bottom:725.625000px;}
.ya_c00001{bottom:725.923500px;}
.y5ca_c00001{bottom:726.598500px;}
.y542_c00001{bottom:727.048500px;}
.y4f3_c00001{bottom:727.348500px;}
.y17b_c00001{bottom:728.098500px;}
.y543_c00001{bottom:728.473500px;}
.y4f2_c00001{bottom:728.773500px;}
.ye1_c00001{bottom:729.148500px;}
.y112_c00001{bottom:729.523500px;}
.y113_c00001{bottom:729.598500px;}
.y2a7_c00001{bottom:731.023500px;}
.y433_c00001{bottom:731.325000px;}
.y114_c00001{bottom:731.700000px;}
.y434_c00001{bottom:732.075000px;}
.y1fc_c00001{bottom:733.500000px;}
.y228_c00001{bottom:734.548500px;}
.y1fb_c00001{bottom:734.923500px;}
.y30b_c00001{bottom:735.673500px;}
.y595_c00001{bottom:735.973500px;}
.ya6_c00001{bottom:736.723500px;}
.y494_c00001{bottom:737.098500px;}
.y594_c00001{bottom:737.398500px;}
.y1fa_c00001{bottom:738.523500px;}
.y333_c00001{bottom:738.898500px;}
.y40a_c00001{bottom:739.950000px;}
.y5c8_c00001{bottom:740.325000px;}
.y70_c00001{bottom:741.075000px;}
.y4f1_c00001{bottom:741.375000px;}
.y1b1_c00001{bottom:741.750000px;}
.y5c5_c00001{bottom:743.173500px;}
.y2ce_c00001{bottom:743.250000px;}
.y146_c00001{bottom:744.298500px;}
.y5bf_c00001{bottom:744.673500px;}
.y3c_c00001{bottom:745.348500px;}
.y253_c00001{bottom:745.798500px;}
.y541_c00001{bottom:746.773500px;}
.y47b_c00001{bottom:747.148500px;}
.y4f0_c00001{bottom:747.523500px;}
.y27a_c00001{bottom:747.898500px;}
.y9_c00001{bottom:748.273500px;}
.y17a_c00001{bottom:749.700000px;}
.y45b_c00001{bottom:750.075000px;}
.y10f_c00001{bottom:751.798500px;}
.y110_c00001{bottom:751.875000px;}
.y2a6_c00001{bottom:753.673500px;}
.y111_c00001{bottom:754.348500px;}
.y4d8_c00001{bottom:755.773500px;}
.y35b_c00001{bottom:756.148500px;}
.y227_c00001{bottom:756.898500px;}
.y4ef_c00001{bottom:757.648500px;}
.y35a_c00001{bottom:758.023500px;}
.ya5_c00001{bottom:758.325000px;}
.y30a_c00001{bottom:759.375000px;}
.y5c4_c00001{bottom:760.798500px;}
.y493_c00001{bottom:761.923500px;}
.ye0_c00001{bottom:762.298500px;}
.y5bb_c00001{bottom:762.598500px;}
.y6f_c00001{bottom:762.673500px;}
.y1b0_c00001{bottom:763.348500px;}
.y5be_c00001{bottom:763.423500px;}
.y432_c00001{bottom:763.723500px;}
.y145_c00001{bottom:764.098500px;}
.y37c_c00001{bottom:764.773500px;}
.y540_c00001{bottom:764.848500px;}
.y4ee_c00001{bottom:765.223500px;}
.y37a_c00001{bottom:765.898500px;}
.y37b_c00001{bottom:766.575000px;}
.y2cd_c00001{bottom:766.648500px;}
.y3b_c00001{bottom:766.950000px;}
.y1af_c00001{bottom:767.325000px;}
.y1ae_c00001{bottom:767.398500px;}
.y252_c00001{bottom:768.073500px;}
.y529_c00001{bottom:768.375000px;}
.y225_c00001{bottom:769.125000px;}
.y8_c00001{bottom:770.250000px;}
.y332_c00001{bottom:770.625000px;}
.y409_c00001{bottom:771.300000px;}
.y593_c00001{bottom:772.723500px;}
.y179_c00001{bottom:773.098500px;}
.y2f9_c00001{bottom:773.848500px;}
.y1d6_c00001{bottom:774.223500px;}
.y5c7_c00001{bottom:775.273500px;}
.y3ab_c00001{bottom:775.573500px;}
.y2a5_c00001{bottom:775.648500px;}
.y10e_c00001{bottom:776.323500px;}
.y47a_c00001{bottom:778.125000px;}
.y5c3_c00001{bottom:778.875000px;}
.y226_c00001{bottom:779.550000px;}
.y5ba_c00001{bottom:780.973500px;}
.ya4_c00001{bottom:781.050000px;}
.y5bd_c00001{bottom:781.348500px;}
.y45a_c00001{bottom:782.098500px;}
.y53f_c00001{bottom:782.473500px;}
.y4ed_c00001{bottom:784.273500px;}
.y359_c00001{bottom:785.323500px;}
.y6e_c00001{bottom:785.698500px;}
.y528_c00001{bottom:786.073500px;}
.y1ad_c00001{bottom:786.448500px;}
.y4d7_c00001{bottom:786.823500px;}
.y144_c00001{bottom:787.125000px;}
.y278_c00001{bottom:787.500000px;}
.y2cc_c00001{bottom:789.300000px;}
.y3a_c00001{bottom:790.348500px;}
.y251_c00001{bottom:790.723500px;}
.y279_c00001{bottom:792.525000px;}
.y7_c00001{bottom:792.900000px;}
.y5c6_c00001{bottom:793.275000px;}
.y178_c00001{bottom:793.948500px;}
.y431_c00001{bottom:795.448500px;}
.y10d_c00001{bottom:796.500000px;}
.y379_c00001{bottom:796.875000px;}
.y5c2_c00001{bottom:797.550000px;}
.y2a4_c00001{bottom:798.300000px;}
.y492_c00001{bottom:799.348500px;}
.y3db_c00001{bottom:800.473500px;}
.y53e_c00001{bottom:800.775000px;}
.ydf_c00001{bottom:801.525000px;}
.y224_c00001{bottom:801.900000px;}
.y4ec_c00001{bottom:802.573500px;}
.y331_c00001{bottom:802.650000px;}
.y408_c00001{bottom:803.025000px;}
.ya3_c00001{bottom:803.323500px;}
.y6d_c00001{bottom:805.500000px;}
.y3aa_c00001{bottom:806.250000px;}
.y1ac_c00001{bottom:807.973500px;}
.y6c_c00001{bottom:808.348500px;}
.y143_c00001{bottom:808.723500px;}
.y479_c00001{bottom:809.098500px;}
.y6b_c00001{bottom:810.900000px;}
.y2cb_c00001{bottom:811.275000px;}
.y39_c00001{bottom:811.948500px;}
.y1ab_c00001{bottom:812.698500px;}
.y459_c00001{bottom:813.073500px;}
.y6_c00001{bottom:814.500000px;}
.y277_c00001{bottom:814.800000px;}
.y358_c00001{bottom:814.875000px;}
.y5c1_c00001{bottom:816.300000px;}
.y109_c00001{bottom:816.598500px;}
.y108_c00001{bottom:816.675000px;}
.y10b_c00001{bottom:816.973500px;}
.y10a_c00001{bottom:817.050000px;}
.y177_c00001{bottom:817.723500px;}
.y5bc_c00001{bottom:818.098500px;}
.y4d6_c00001{bottom:818.473500px;}
.y53d_c00001{bottom:820.573500px;}
.y10c_c00001{bottom:820.948500px;}
.y357_c00001{bottom:821.323500px;}
.y377_c00001{bottom:823.125000px;}
.y223_c00001{bottom:823.198500px;}
.y592_c00001{bottom:823.500000px;}
.y2a3_c00001{bottom:824.250000px;}
.ya2_c00001{bottom:824.925000px;}
.y430_c00001{bottom:826.723500px;}
.y4b0_c00001{bottom:827.775000px;}
.y378_c00001{bottom:828.525000px;}
.y591_c00001{bottom:828.598500px;}
.y491_c00001{bottom:829.198500px;}
.y6a_c00001{bottom:829.573500px;}
.y590_c00001{bottom:829.948500px;}
.y1aa_c00001{bottom:831.375000px;}
.y142_c00001{bottom:831.448500px;}
.y2ca_c00001{bottom:831.750000px;}
.y53c_c00001{bottom:832.125000px;}
.y330_c00001{bottom:833.550000px;}
.y407_c00001{bottom:833.925000px;}
.y250_c00001{bottom:834.300000px;}
.y38_c00001{bottom:834.598500px;}
.y5c0_c00001{bottom:834.973500px;}
.y490_c00001{bottom:835.425000px;}
.y48f_c00001{bottom:835.723500px;}
.y5b9_c00001{bottom:836.098500px;}
.y276_c00001{bottom:836.473500px;}
.y107_c00001{bottom:837.525000px;}
.y527_c00001{bottom:838.650000px;}
.y24e_c00001{bottom:839.025000px;}
.y24f_c00001{bottom:839.323500px;}
.y176_c00001{bottom:839.698500px;}
.y356_c00001{bottom:840.073500px;}
.y478_c00001{bottom:840.375000px;}
.y4eb_c00001{bottom:840.750000px;}
.y4ea_c00001{bottom:840.823500px;}
.y2a2_c00001{bottom:843.300000px;}
.y458_c00001{bottom:844.723500px;}
.y4e9_c00001{bottom:845.098500px;}
.y1f9_c00001{bottom:845.775000px;}
.y222_c00001{bottom:846.150000px;}
.ya1_c00001{bottom:846.900000px;}
.y355_c00001{bottom:847.948500px;}
.y58e_c00001{bottom:848.323500px;}
.y58f_c00001{bottom:848.698500px;}
.y4d5_c00001{bottom:850.500000px;}
.y538_c00001{bottom:851.625000px;}
.y1d5_c00001{bottom:852.598500px;}
.y1a8_c00001{bottom:852.675000px;}
.yde_c00001{bottom:852.973500px;}
.y309_c00001{bottom:853.050000px;}
.y69_c00001{bottom:853.348500px;}
.y539_c00001{bottom:853.723500px;}
.y53a_c00001{bottom:854.098500px;}
.y141_c00001{bottom:854.473500px;}
.ydd_c00001{bottom:855.223500px;}
.y2c9_c00001{bottom:855.525000px;}
.y37_c00001{bottom:856.198500px;}
.y53b_c00001{bottom:856.275000px;}
.ydc_c00001{bottom:856.573500px;}
.y376_c00001{bottom:857.698500px;}
.y42f_c00001{bottom:858.073500px;}
.y375_c00001{bottom:858.823500px;}
.y275_c00001{bottom:859.125000px;}
.y4af_c00001{bottom:859.800000px;}
.y175_c00001{bottom:860.175000px;}
.y2f8_c00001{bottom:861.300000px;}
.y24d_c00001{bottom:861.675000px;}
.y3da_c00001{bottom:863.098500px;}
.y48e_c00001{bottom:863.473500px;}
.y32f_c00001{bottom:864.150000px;}
.y106_c00001{bottom:864.525000px;}
.ya0_c00001{bottom:864.900000px;}
.y406_c00001{bottom:865.573500px;}
.y221_c00001{bottom:867.073500px;}
.y3a9_c00001{bottom:868.198500px;}
.y477_c00001{bottom:871.723500px;}
.y537_c00001{bottom:872.473500px;}
.y3a8_c00001{bottom:873.598500px;}
.y68_c00001{bottom:874.650000px;}
.y1a9_c00001{bottom:875.698500px;}
.y140_c00001{bottom:876.823500px;}
.y36_c00001{bottom:877.875000px;}
.y2c8_c00001{bottom:878.175000px;}
.ydb_c00001{bottom:879.973500px;}
.y457_c00001{bottom:880.348500px;}
.y456_c00001{bottom:880.723500px;}
.y4d4_c00001{bottom:881.775000px;}
.y58d_c00001{bottom:882.223500px;}
.y105_c00001{bottom:882.900000px;}
.y2f7_c00001{bottom:883.275000px;}
.y174_c00001{bottom:883.573500px;}
.y3d6_c00001{bottom:886.500000px;}
.y42e_c00001{bottom:889.348500px;}
.y374_c00001{bottom:889.425000px;}
.y536_c00001{bottom:889.723500px;}
.y9f_c00001{bottom:890.098500px;}
.y5b8_c00001{bottom:890.775000px;}
.y3d7_c00001{bottom:890.848500px;}
.y4ae_c00001{bottom:891.150000px;}
.y58c_c00001{bottom:892.275000px;}
.y2a1_c00001{bottom:892.948500px;}
.y48d_c00001{bottom:893.323500px;}
.y3d8_c00001{bottom:893.698500px;}
.y5b7_c00001{bottom:894.448500px;}
.y3d9_c00001{bottom:894.823500px;}
.y32e_c00001{bottom:895.125000px;}
.y67_c00001{bottom:895.800000px;}
.y405_c00001{bottom:897.000000px;}
.y58b_c00001{bottom:897.300000px;}
.yda_c00001{bottom:897.675000px;}
.y1a7_c00001{bottom:898.050000px;}
.y1d2_c00001{bottom:899.848500px;}
.y35_c00001{bottom:900.150000px;}
.y1d3_c00001{bottom:901.573500px;}
.y24c_c00001{bottom:901.948500px;}
.y476_c00001{bottom:902.698500px;}
.y1d4_c00001{bottom:903.750000px;}
.y5_c00001{bottom:903.823500px;}
.y58a_c00001{bottom:904.125000px;}
.y2f6_c00001{bottom:905.175000px;}
.y173_c00001{bottom:906.300000px;}
.y589_c00001{bottom:906.675000px;}
.y535_c00001{bottom:907.348500px;}
.y220_c00001{bottom:908.098500px;}
.y588_c00001{bottom:908.400000px;}
.y104_c00001{bottom:908.473500px;}
.y2a0_c00001{bottom:909.900000px;}
.y9d_c00001{bottom:911.323500px;}
.y1f8_c00001{bottom:912.448500px;}
.y4d3_c00001{bottom:913.125000px;}
.y2c6_c00001{bottom:913.500000px;}
.y4ad_c00001{bottom:913.800000px;}
.y9e_c00001{bottom:914.550000px;}
.y274_c00001{bottom:915.675000px;}
.y354_c00001{bottom:916.050000px;}
.y66_c00001{bottom:918.150000px;}
.y534_c00001{bottom:919.275000px;}
.y1a6_c00001{bottom:919.573500px;}
.yd9_c00001{bottom:919.650000px;}
.y42d_c00001{bottom:920.323500px;}
.y373_c00001{bottom:920.400000px;}
.y2c7_c00001{bottom:921.073500px;}
.y13f_c00001{bottom:921.375000px;}
.y34_c00001{bottom:922.500000px;}
.y3d4_c00001{bottom:924.300000px;}
.y24b_c00001{bottom:924.675000px;}
.y3d5_c00001{bottom:925.348500px;}
.y32d_c00001{bottom:926.098500px;}
.y1a4_c00001{bottom:927.150000px;}
.y1a5_c00001{bottom:927.223500px;}
.y172_c00001{bottom:927.900000px;}
.y103_c00001{bottom:928.275000px;}
.y3a7_c00001{bottom:928.573500px;}
.y2f5_c00001{bottom:929.323500px;}
.y587_c00001{bottom:929.698500px;}
.y29f_c00001{bottom:932.175000px;}
.y475_c00001{bottom:934.348500px;}
.y9c_c00001{bottom:934.723500px;}
.y586_c00001{bottom:935.848500px;}
.y3a6_c00001{bottom:937.275000px;}
.y455_c00001{bottom:939.073500px;}
.y585_c00001{bottom:939.375000px;}
.y65_c00001{bottom:940.500000px;}
.yd8_c00001{bottom:940.875000px;}
.y584_c00001{bottom:941.175000px;}
.y171_c00001{bottom:942.000000px;}
.y13e_c00001{bottom:942.300000px;}
.y4d2_c00001{bottom:943.050000px;}
.y2c5_c00001{bottom:943.348500px;}
.y533_c00001{bottom:943.723500px;}
.y33_c00001{bottom:944.775000px;}
.y24a_c00001{bottom:945.150000px;}
.y1a3_c00001{bottom:947.323500px;}
.y21f_c00001{bottom:948.073500px;}
.y2f4_c00001{bottom:949.500000px;}
.y102_c00001{bottom:950.925000px;}
.y372_c00001{bottom:951.300000px;}
.y3a5_c00001{bottom:952.348500px;}
.y583_c00001{bottom:953.473500px;}
.y29e_c00001{bottom:954.150000px;}
.y4ac_c00001{bottom:954.223500px;}
.y582_c00001{bottom:954.598500px;}
.y3d3_c00001{bottom:955.275000px;}
.y48c_c00001{bottom:955.948500px;}
.y13d_c00001{bottom:956.400000px;}
.y9b_c00001{bottom:956.698500px;}
.y32c_c00001{bottom:957.000000px;}
.y532_c00001{bottom:957.375000px;}
.y13c_c00001{bottom:958.500000px;}
.y404_c00001{bottom:960.000000px;}
.y16c_c00001{bottom:960.300000px;}
.y353_c00001{bottom:960.675000px;}
.y16d_c00001{bottom:962.098500px;}
.y64_c00001{bottom:962.848500px;}
.y352_c00001{bottom:963.525000px;}
.y16e_c00001{bottom:963.823500px;}
.y16f_c00001{bottom:964.573500px;}
.y474_c00001{bottom:964.948500px;}
.y2c4_c00001{bottom:966.000000px;}
.y32_c00001{bottom:966.750000px;}
.y4e8_c00001{bottom:967.198500px;}
.y13b_c00001{bottom:967.500000px;}
.yff_c00001{bottom:968.550000px;}
.y3a4_c00001{bottom:969.000000px;}
.y454_c00001{bottom:969.675000px;}
.y249_c00001{bottom:969.973500px;}
.yd7_c00001{bottom:970.348500px;}
.y581_c00001{bottom:970.425000px;}
.y2f3_c00001{bottom:971.098500px;}
.y170_c00001{bottom:972.223500px;}
.y351_c00001{bottom:972.900000px;}
.y100_c00001{bottom:973.948500px;}
.y34d_c00001{bottom:974.323500px;}
.y101_c00001{bottom:975.750000px;}
.y248_c00001{bottom:976.125000px;}
.y57f_c00001{bottom:976.500000px;}
.y21e_c00001{bottom:977.550000px;}
.y580_c00001{bottom:977.925000px;}
.y9a_c00001{bottom:978.300000px;}
.y2c3_c00001{bottom:979.348500px;}
.yd6_c00001{bottom:979.723500px;}
.y4d1_c00001{bottom:980.775000px;}
.y42b_c00001{bottom:980.848500px;}
.y371_c00001{bottom:981.223500px;}
.yd5_c00001{bottom:981.525000px;}
.y169_c00001{bottom:981.900000px;}
.y16a_c00001{bottom:982.275000px;}
.y42c_c00001{bottom:982.650000px;}
.y63_c00001{bottom:984.750000px;}
.yfd_c00001{bottom:985.125000px;}
.y4ab_c00001{bottom:985.500000px;}
.y1f7_c00001{bottom:985.875000px;}
.y1a2_c00001{bottom:986.550000px;}
.y32b_c00001{bottom:987.300000px;}
.y13a_c00001{bottom:987.675000px;}
.yd4_c00001{bottom:988.348500px;}
.y531_c00001{bottom:988.425000px;}
.y31_c00001{bottom:988.800000px;}
.y273_c00001{bottom:989.473500px;}
.y530_c00001{bottom:990.900000px;}
.y98_c00001{bottom:991.275000px;}
.y403_c00001{bottom:991.573500px;}
.y52f_c00001{bottom:992.698500px;}
.y2f2_c00001{bottom:993.375000px;}
.y16b_c00001{bottom:993.448500px;}
.y2f1_c00001{bottom:993.750000px;}
.y247_c00001{bottom:993.823500px;}
.y350_c00001{bottom:994.125000px;}
.y473_c00001{bottom:995.550000px;}
.yfe_c00001{bottom:995.925000px;}
.y246_c00001{bottom:997.050000px;}
.y2f0_c00001{bottom:997.723500px;}
.y29d_c00001{bottom:998.473500px;}
.y21d_c00001{bottom:999.525000px;}
.y34f_c00001{bottom:1000.275000px;}
.y3a3_c00001{bottom:1000.573500px;}
.y3a2_c00001{bottom:1000.948500px;}
.y99_c00001{bottom:1001.323500px;}
.y57e_c00001{bottom:1003.125000px;}
.y4aa_c00001{bottom:1004.250000px;}
.y3d0_c00001{bottom:1006.425000px;}
.y4d0_c00001{bottom:1006.800000px;}
.y62_c00001{bottom:1007.098500px;}
.y34e_c00001{bottom:1007.473500px;}
.yfa_c00001{bottom:1008.525000px;}
.yd3_c00001{bottom:1008.900000px;}
.y2c2_c00001{bottom:1009.275000px;}
.y57d_c00001{bottom:1010.025000px;}
.y139_c00001{bottom:1010.323500px;}
.y30_c00001{bottom:1010.698500px;}
.y52e_c00001{bottom:1011.073500px;}
.y370_c00001{bottom:1011.375000px;}
.y93_c00001{bottom:1011.750000px;}
.y42a_c00001{bottom:1012.500000px;}
.yfb_c00001{bottom:1013.925000px;}
.y168_c00001{bottom:1014.300000px;}
.y3d1_c00001{bottom:1014.675000px;}
.y2ef_c00001{bottom:1016.098500px;}
.y245_c00001{bottom:1016.473500px;}
.y48b_c00001{bottom:1016.775000px;}
.yfc_c00001{bottom:1016.848500px;}
.y95_c00001{bottom:1017.223500px;}
.y32a_c00001{bottom:1017.525000px;}
.y3d2_c00001{bottom:1017.900000px;}
.y244_c00001{bottom:1020.375000px;}
.y243_c00001{bottom:1020.750000px;}
.y21c_c00001{bottom:1021.125000px;}
.y3a1_c00001{bottom:1021.500000px;}
.y402_c00001{bottom:1022.175000px;}
.y39f_c00001{bottom:1022.250000px;}
.y39e_c00001{bottom:1022.550000px;}
.y97_c00001{bottom:1023.000000px;}
.y96_c00001{bottom:1023.973500px;}
.y39d_c00001{bottom:1024.348500px;}
.y34c_c00001{bottom:1024.425000px;}
.y29c_c00001{bottom:1025.848500px;}
.y3a0_c00001{bottom:1026.223500px;}
.y48a_c00001{bottom:1026.900000px;}
.y39c_c00001{bottom:1027.948500px;}
.y2c1_c00001{bottom:1028.698500px;}
.y61_c00001{bottom:1029.750000px;}
.y39b_c00001{bottom:1029.823500px;}
.y1a1_c00001{bottom:1030.125000px;}
.y52d_c00001{bottom:1030.500000px;}
.y2f_c00001{bottom:1030.875000px;}
.y138_c00001{bottom:1031.925000px;}
.y39a_c00001{bottom:1032.300000px;}
.y453_c00001{bottom:1032.973500px;}
.y242_c00001{bottom:1033.348500px;}
.y2ee_c00001{bottom:1033.425000px;}
.y3cc_c00001{bottom:1035.150000px;}
.y428_c00001{bottom:1035.525000px;}
.y167_c00001{bottom:1036.275000px;}
.yf8_c00001{bottom:1036.948500px;}
.y57c_c00001{bottom:1038.823500px;}
.y4a7_c00001{bottom:1039.125000px;}
.yf9_c00001{bottom:1039.500000px;}
.y3cd_c00001{bottom:1039.875000px;}
.y2ed_c00001{bottom:1041.300000px;}
.y36f_c00001{bottom:1041.973500px;}
.y21b_c00001{bottom:1042.050000px;}
.y92_c00001{bottom:1042.348500px;}
.y34b_c00001{bottom:1042.425000px;}
.y29b_c00001{bottom:1042.723500px;}
.y2ec_c00001{bottom:1043.473500px;}
.y429_c00001{bottom:1044.900000px;}
.y94_c00001{bottom:1045.198500px;}
.y3ce_c00001{bottom:1045.650000px;}
.y329_c00001{bottom:1046.025000px;}
.y3cf_c00001{bottom:1048.500000px;}
.y4a9_c00001{bottom:1048.875000px;}
.y4a8_c00001{bottom:1050.000000px;}
.y2c0_c00001{bottom:1051.425000px;}
.y2e_c00001{bottom:1054.275000px;}
.y472_c00001{bottom:1056.073500px;}
.y4cf_c00001{bottom:1061.400000px;}
.y489_c00001{bottom:1069.050000px;}
.y4ce_c00001{bottom:1072.650000px;}
.y2eb_c00001{bottom:1074.750000px;}
.y401_c00001{bottom:1075.500000px;}
.y399_c00001{bottom:1078.050000px;}
.y52c_c00001{bottom:1081.948500px;}
.y90_c00001{bottom:1082.025000px;}
.y1cf_c00001{bottom:1082.323500px;}
.yd2_c00001{bottom:1083.073500px;}
.y215_c00001{bottom:1083.448500px;}
.y137_c00001{bottom:1083.750000px;}
.y241_c00001{bottom:1085.550000px;}
.y452_c00001{bottom:1085.925000px;}
.y19f_c00001{bottom:1086.300000px;}
.y34a_c00001{bottom:1086.675000px;}
.y3ff_c00001{bottom:1087.723500px;}
.y91_c00001{bottom:1088.473500px;}
.y60_c00001{bottom:1088.775000px;}
.ycc_c00001{bottom:1088.848500px;}
.y398_c00001{bottom:1089.223500px;}
.y36d_c00001{bottom:1089.598500px;}
.y1f6_c00001{bottom:1089.900000px;}
.yd1_c00001{bottom:1090.650000px;}
.y4_c00001{bottom:1091.025000px;}
.y5f_c00001{bottom:1091.323500px;}
.y1f5_c00001{bottom:1092.073500px;}
.yd0_c00001{bottom:1092.448500px;}
.y400_c00001{bottom:1092.823500px;}
.y327_c00001{bottom:1093.125000px;}
.y135_c00001{bottom:1093.500000px;}
.ycf_c00001{bottom:1093.875000px;}
.y3c9_c00001{bottom:1094.175000px;}
.y23f_c00001{bottom:1094.625000px;}
.yf7_c00001{bottom:1095.000000px;}
.y1a0_c00001{bottom:1095.300000px;}
.y1d1_c00001{bottom:1096.723500px;}
.y270_c00001{bottom:1097.775000px;}
.y451_c00001{bottom:1098.150000px;}
.y348_c00001{bottom:1098.223500px;}
.y1d0_c00001{bottom:1099.125000px;}
.y3_c00001{bottom:1099.275000px;}
.y136_c00001{bottom:1099.500000px;}
.yce_c00001{bottom:1099.650000px;}
.y21a_c00001{bottom:1100.025000px;}
.y240_c00001{bottom:1100.550000px;}
.y2_c00001{bottom:1101.750000px;}
.y36e_c00001{bottom:1102.125000px;}
.y349_c00001{bottom:1102.875000px;}
.y470_c00001{bottom:1103.550000px;}
.y427_c00001{bottom:1103.925000px;}
.y219_c00001{bottom:1104.150000px;}
.ycd_c00001{bottom:1105.573500px;}
.y1_c00001{bottom:1105.723500px;}
.y299_c00001{bottom:1105.800000px;}
.y328_c00001{bottom:1106.473500px;}
.y3cb_c00001{bottom:1107.525000px;}
.y2bf_c00001{bottom:1108.948500px;}
.y426_c00001{bottom:1109.025000px;}
.y4a6_c00001{bottom:1109.400000px;}
.y29a_c00001{bottom:1109.550000px;}
.y272_c00001{bottom:1111.125000px;}
.y3ca_c00001{bottom:1111.650000px;}
.y52b_c00001{bottom:1111.875000px;}
.y2c_c00001{bottom:1112.550000px;}
.y271_c00001{bottom:1114.348500px;}
.y2d_c00001{bottom:1115.848500px;}
.y471_c00001{bottom:1116.900000px;}
.y2be_c00001{bottom:1138.875000px;}
.y520_c00001{bottom:1174.500000px;}
.h8_c00001{height:17.666016px;}
.h9_c00001{height:19.206000px;}
.h1a_c00001{height:23.554688px;}
.h2e_c00001{height:41.220703px;}
.h2b_c00001{height:47.109375px;}
.h5_c00001{height:52.998047px;}
.h1_c00001{height:54.421875px;}
.h7_c00001{height:58.886719px;}
.h2_c00001{height:60.468750px;}
.h12_c00001{height:62.578125px;}
.hc_c00001{height:64.743164px;}
.h4_c00001{height:64.775391px;}
.he_c00001{height:66.515625px;}
.h18_c00001{height:68.835938px;}
.hf_c00001{height:70.628906px;}
.h3_c00001{height:70.664062px;}
.h15_c00001{height:72.562500px;}
.h2c_c00001{height:73.370062px;}
.h20_c00001{height:75.093750px;}
.h16_c00001{height:76.514648px;}
.hd_c00001{height:76.552734px;}
.hb_c00001{height:78.609375px;}
.ha_c00001{height:82.400391px;}
.h22_c00001{height:82.441406px;}
.h10_c00001{height:84.656250px;}
.h2d_c00001{height:86.258063px;}
.h1e_c00001{height:88.286133px;}
.h6_c00001{height:88.330078px;}
.h1b_c00001{height:90.703125px;}
.h27_c00001{height:93.867188px;}
.h21_c00001{height:94.171875px;}
.h1d_c00001{height:94.218750px;}
.h23_c00001{height:96.750000px;}
.h28_c00001{height:100.057617px;}
.h24_c00001{height:100.107422px;}
.h11_c00001{height:105.996094px;}
.h17_c00001{height:108.843750px;}
.h2a_c00001{height:117.773438px;}
.h25_c00001{height:123.600586px;}
.h26_c00001{height:129.486328px;}
.h1f_c00001{height:135.372070px;}
.h29_c00001{height:135.675199px;}
.h19_c00001{height:139.078125px;}
.h2f_c00001{height:144.275391px;}
.h1c_c00001{height:145.125000px;}
.h13_c00001{height:147.216797px;}
.h14_c00001{height:170.771484px;}
.h0_c00001{height:1174.500000px;}
.w0_c00001{width:731.977200px;}
.w1_c00001{width:732.000000px;}
.x147_c00001{left:-21.259800px;}
.x0_c00001{left:0.000000px;}
.x71_c00001{left:20.140200px;}
.x6e_c00001{left:21.940200px;}
.x6d_c00001{left:23.365200px;}
.xd7_c00001{left:24.490200px;}
.x6a_c00001{left:25.915200px;}
.x65_c00001{left:27.338700px;}
.x63_c00001{left:28.390200px;}
.x93_c00001{left:29.890200px;}
.x92_c00001{left:30.940200px;}
.x91_c00001{left:32.365200px;}
.x90_c00001{left:33.490200px;}
.x8f_c00001{left:34.540200px;}
.x9f_c00001{left:35.588700px;}
.x68_c00001{left:36.715200px;}
.xa1_c00001{left:37.765200px;}
.x8e_c00001{left:38.890200px;}
.x103_c00001{left:39.940200px;}
.x3b_c00001{left:40.990200px;}
.x3d_c00001{left:42.490200px;}
.x38_c00001{left:43.540200px;}
.x37_c00001{left:44.965200px;}
.x33_c00001{left:46.390200px;}
.x74_c00001{left:48.190200px;}
.xa9_c00001{left:49.315200px;}
.x73_c00001{left:50.365200px;}
.x17_c00001{left:51.490200px;}
.x15_c00001{left:53.290200px;}
.x13_c00001{left:54.340200px;}
.x6c_c00001{left:55.390200px;}
.x6f_c00001{left:56.890200px;}
.x31_c00001{left:57.940200px;}
.xc0_c00001{left:59.740200px;}
.x8c_c00001{left:60.790200px;}
.x3e_c00001{left:61.915200px;}
.x70_c00001{left:62.965200px;}
.x3c_c00001{left:64.390200px;}
.x8a_c00001{left:65.515200px;}
.xa0_c00001{left:66.940200px;}
.x30_c00001{left:67.990200px;}
.x89_c00001{left:69.115200px;}
.x7c_c00001{left:70.915200px;}
.x79_c00001{left:72.715200px;}
.x7f_c00001{left:73.765200px;}
.x80_c00001{left:74.890200px;}
.xf_c00001{left:76.688700px;}
.x85_c00001{left:78.490200px;}
.xb_c00001{left:79.540200px;}
.x8_c00001{left:80.965200px;}
.x7_c00001{left:82.390200px;}
.x26_c00001{left:83.515200px;}
.x1a_c00001{left:84.563700px;}
.x16_c00001{left:85.688700px;}
.x14_c00001{left:87.115200px;}
.x5e_c00001{left:88.540200px;}
.x8b_c00001{left:89.965200px;}
.x98_c00001{left:91.390200px;}
.x69_c00001{left:92.515200px;}
.x78_c00001{left:94.315200px;}
.x46_c00001{left:95.740200px;}
.x95_c00001{left:97.165200px;}
.x99_c00001{left:98.590200px;}
.x82_c00001{left:99.715200px;}
.x11c_c00001{left:101.140200px;}
.x87_c00001{left:102.190200px;}
.xca_c00001{left:103.690200px;}
.x2a_c00001{left:105.490200px;}
.x27_c00001{left:107.290200px;}
.xc7_c00001{left:108.715200px;}
.x5c_c00001{left:110.140200px;}
.x86_c00001{left:111.565200px;}
.xe_c00001{left:113.740200px;}
.x6_c00001{left:115.540200px;}
.x2b_c00001{left:116.965200px;}
.xae_c00001{left:118.765200px;}
.x13a_c00001{left:120.190200px;}
.xee_c00001{left:121.315200px;}
.x9a_c00001{left:122.740200px;}
.x15a_c00001{left:123.790200px;}
.xa2_c00001{left:125.290200px;}
.x9b_c00001{left:126.715200px;}
.x120_c00001{left:129.190200px;}
.x4f_c00001{left:130.315200px;}
.xbf_c00001{left:131.740200px;}
.xe0_c00001{left:134.290200px;}
.x162_c00001{left:135.340200px;}
.x10_c00001{left:136.390200px;}
.x15d_c00001{left:137.890200px;}
.x11_c00001{left:139.315200px;}
.x36_c00001{left:140.365200px;}
.x7d_c00001{left:143.290200px;}
.x15e_c00001{left:145.390200px;}
.x83_c00001{left:147.940200px;}
.x101_c00001{left:148.990200px;}
.x8d_c00001{left:150.490200px;}
.x142_c00001{left:152.590200px;}
.x3f_c00001{left:154.090200px;}
.x125_c00001{left:155.515200px;}
.x1b_c00001{left:156.940200px;}
.x133_c00001{left:157.990200px;}
.x23_c00001{left:159.790200px;}
.x173_c00001{left:162.340200px;}
.xb2_c00001{left:164.890200px;}
.xbb_c00001{left:165.940200px;}
.x144_c00001{left:166.990200px;}
.x150_c00001{left:168.115200px;}
.xaf_c00001{left:169.540200px;}
.xf2_c00001{left:171.340200px;}
.xe6_c00001{left:174.190200px;}
.x5a_c00001{left:175.990200px;}
.x139_c00001{left:179.590200px;}
.xcf_c00001{left:182.138700px;}
.x169_c00001{left:183.190200px;}
.x1c_c00001{left:185.740200px;}
.x12d_c00001{left:186.790200px;}
.x11e_c00001{left:189.340200px;}
.x7e_c00001{left:190.763700px;}
.x9d_c00001{left:192.565200px;}
.xd1_c00001{left:193.990200px;}
.x84_c00001{left:196.165200px;}
.x138_c00001{left:197.290200px;}
.xd4_c00001{left:198.340200px;}
.x15b_c00001{left:199.763700px;}
.x24_c00001{left:202.990200px;}
.x50_c00001{left:205.540200px;}
.xa6_c00001{left:206.965200px;}
.xe4_c00001{left:208.388700px;}
.xf8_c00001{left:210.190200px;}
.x119_c00001{left:212.740200px;}
.x171_c00001{left:217.390200px;}
.xcb_c00001{left:219.565200px;}
.x81_c00001{left:222.790200px;}
.x117_c00001{left:223.915200px;}
.x175_c00001{left:226.090200px;}
.x146_c00001{left:227.140200px;}
.x66_c00001{left:228.190200px;}
.xf9_c00001{left:229.690200px;}
.x58_c00001{left:233.290200px;}
.xd9_c00001{left:234.340200px;}
.x170_c00001{left:235.390200px;}
.x129_c00001{left:237.565200px;}
.xec_c00001{left:238.690200px;}
.x67_c00001{left:241.540200px;}
.x94_c00001{left:244.765200px;}
.x128_c00001{left:246.190200px;}
.xe3_c00001{left:247.315200px;}
.x62_c00001{left:250.165200px;}
.x11a_c00001{left:253.390200px;}
.x115_c00001{left:259.165200px;}
.x123_c00001{left:260.290200px;}
.x161_c00001{left:261.340200px;}
.x56_c00001{left:263.515200px;}
.xb5_c00001{left:264.940200px;}
.xc6_c00001{left:265.990200px;}
.x88_c00001{left:267.115200px;}
.x107_c00001{left:269.965200px;}
.xb1_c00001{left:271.090200px;}
.x47_c00001{left:272.140200px;}
.xa3_c00001{left:273.565200px;}
.x96_c00001{left:276.115200px;}
.x21_c00001{left:277.915200px;}
.xbc_c00001{left:280.090200px;}
.x155_c00001{left:281.140200px;}
.x20_c00001{left:282.190200px;}
.xb9_c00001{left:284.365200px;}
.x110_c00001{left:286.165200px;}
.xac_c00001{left:287.590200px;}
.x13c_c00001{left:289.090200px;}
.x176_c00001{left:290.515200px;}
.x4c_c00001{left:291.565200px;}
.x12_c00001{left:292.990200px;}
.x153_c00001{left:295.540200px;}
.x75_c00001{left:296.965200px;}
.xc9_c00001{left:299.140200px;}
.x9e_c00001{left:300.565200px;}
.x22_c00001{left:301.690200px;}
.xaa_c00001{left:303.115200px;}
.xf3_c00001{left:304.165200px;}
.x97_c00001{left:305.590200px;}
.x1_c00001{left:306.715200px;}
.xa4_c00001{left:307.765200px;}
.xa7_c00001{left:309.940200px;}
.x16e_c00001{left:312.790200px;}
.xba_c00001{left:314.590200px;}
.x13d_c00001{left:316.765200px;}
.xe7_c00001{left:317.890200px;}
.x11b_c00001{left:319.315200px;}
.x4d_c00001{left:320.365200px;}
.x100_c00001{left:321.490200px;}
.x10d_c00001{left:323.965200px;}
.x16a_c00001{left:325.765200px;}
.x18_c00001{left:327.940200px;}
.x154_c00001{left:328.990200px;}
.x158_c00001{left:330.790200px;}
.x57_c00001{left:331.915200px;}
.x48_c00001{left:333.340200px;}
.x2_c00001{left:334.390200px;}
.xc5_c00001{left:335.890200px;}
.x143_c00001{left:336.940200px;}
.x121_c00001{left:338.740200px;}
.x5_c00001{left:340.915200px;}
.x16c_c00001{left:344.140200px;}
.x28_c00001{left:345.190200px;}
.x19_c00001{left:347.740200px;}
.xcd_c00001{left:349.165200px;}
.xdb_c00001{left:351.340200px;}
.x15f_c00001{left:352.390200px;}
.xf0_c00001{left:353.515200px;}
.x164_c00001{left:354.940200px;}
.xdd_c00001{left:356.365200px;}
.x5b_c00001{left:358.165200px;}
.x118_c00001{left:359.590200px;}
.x159_c00001{left:362.140200px;}
.xf4_c00001{left:363.940200px;}
.xbe_c00001{left:366.788700px;}
.x40_c00001{left:370.765200px;}
.x29_c00001{left:371.890200px;}
.xda_c00001{left:372.940200px;}
.x127_c00001{left:375.115200px;}
.x51_c00001{left:377.288700px;}
.xfa_c00001{left:378.340200px;}
.x13e_c00001{left:379.390200px;}
.x160_c00001{left:381.190200px;}
.x52_c00001{left:382.990200px;}
.x102_c00001{left:384.490200px;}
.xf7_c00001{left:386.965200px;}
.x41_c00001{left:388.390200px;}
.x13b_c00001{left:390.190200px;}
.x59_c00001{left:394.163700px;}
.x34_c00001{left:399.940200px;}
.xff_c00001{left:403.538700px;}
.xc3_c00001{left:404.590200px;}
.x166_c00001{left:406.090200px;}
.x108_c00001{left:407.890200px;}
.x53_c00001{left:410.365200px;}
.xcc_c00001{left:412.538700px;}
.xc2_c00001{left:413.590200px;}
.x1f_c00001{left:416.140200px;}
.x54_c00001{left:418.315200px;}
.xb0_c00001{left:421.163700px;}
.xa5_c00001{left:422.965200px;}
.x55_c00001{left:424.090200px;}
.x152_c00001{left:425.890200px;}
.xf5_c00001{left:426.940200px;}
.xea_c00001{left:429.788700px;}
.xef_c00001{left:431.590200px;}
.xf1_c00001{left:434.890200px;}
.x25_c00001{left:435.940200px;}
.xfe_c00001{left:437.365200px;}
.x12f_c00001{left:440.965200px;}
.x49_c00001{left:442.390200px;}
.x12a_c00001{left:447.490200px;}
.x5f_c00001{left:448.540200px;}
.xdc_c00001{left:450.715200px;}
.x6b_c00001{left:453.940200px;}
.x1d_c00001{left:455.740200px;}
.xf6_c00001{left:459.340200px;}
.x45_c00001{left:461.140200px;}
.x105_c00001{left:462.190200px;}
.xd0_c00001{left:463.990200px;}
.x4e_c00001{left:469.390200px;}
.x16d_c00001{left:471.565200px;}
.x177_c00001{left:472.690200px;}
.x9_c00001{left:474.115200px;}
.x60_c00001{left:476.965200px;}
.xb3_c00001{left:478.765200px;}
.xbd_c00001{left:480.940200px;}
.x15c_c00001{left:483.490200px;}
.x12e_c00001{left:485.590200px;}
.xc_c00001{left:487.390200px;}
.xed_c00001{left:493.915200px;}
.x1e_c00001{left:494.965200px;}
.x72_c00001{left:496.390200px;}
.x76_c00001{left:499.315200px;}
.xd5_c00001{left:501.790200px;}
.xd2_c00001{left:503.965200px;}
.x3_c00001{left:506.140200px;}
.xa_c00001{left:507.940200px;}
.x126_c00001{left:509.740200px;}
.x135_c00001{left:510.790200px;}
.x168_c00001{left:511.915200px;}
.xd_c00001{left:515.515200px;}
.x163_c00001{left:517.690200px;}
.x12b_c00001{left:519.490200px;}
.xd6_c00001{left:521.590200px;}
.x157_c00001{left:523.090200px;}
.x5d_c00001{left:528.490200px;}
.x136_c00001{left:533.890200px;}
.x149_c00001{left:536.740200px;}
.x116_c00001{left:538.540200px;}
.xdf_c00001{left:541.090200px;}
.x106_c00001{left:542.140200px;}
.x16b_c00001{left:543.565200px;}
.x4a_c00001{left:546.790200px;}
.x132_c00001{left:547.915200px;}
.x148_c00001{left:549.340200px;}
.x124_c00001{left:551.890200px;}
.x137_c00001{left:553.315200px;}
.xad_c00001{left:555.790200px;}
.xde_c00001{left:559.390200px;}
.x113_c00001{left:562.690200px;}
.x156_c00001{left:563.740200px;}
.x4b_c00001{left:567.340200px;}
.xe1_c00001{left:568.765200px;}
.x10e_c00001{left:570.190200px;}
.x10b_c00001{left:571.315200px;}
.x14a_c00001{left:572.740200px;}
.x39_c00001{left:574.165200px;}
.x13f_c00001{left:575.590200px;}
.x35_c00001{left:577.090200px;}
.xc8_c00001{left:578.515200px;}
.x61_c00001{left:580.315200px;}
.x122_c00001{left:581.740200px;}
.xc4_c00001{left:583.540200px;}
.x104_c00001{left:584.590200px;}
.x7a_c00001{left:587.515200px;}
.x165_c00001{left:588.565200px;}
.x7b_c00001{left:589.990200px;}
.x10a_c00001{left:593.965200px;}
.x64_c00001{left:595.090200px;}
.x42_c00001{left:598.315200px;}
.xfd_c00001{left:600.790200px;}
.xfc_c00001{left:602.590200px;}
.x130_c00001{left:605.140200px;}
.x43_c00001{left:606.565200px;}
.x32_c00001{left:608.365200px;}
.x9c_c00001{left:610.540200px;}
.x131_c00001{left:612.715200px;}
.x12c_c00001{left:613.765200px;}
.x10f_c00001{left:615.565200px;}
.xa8_c00001{left:616.990200px;}
.x141_c00001{left:618.490200px;}
.xe5_c00001{left:619.540200px;}
.x112_c00001{left:621.340200px;}
.x2d_c00001{left:623.140200px;}
.x11d_c00001{left:624.565200px;}
.x11f_c00001{left:626.365200px;}
.x111_c00001{left:628.165200px;}
.x151_c00001{left:629.290200px;}
.xeb_c00001{left:630.340200px;}
.xd3_c00001{left:631.390200px;}
.xe9_c00001{left:633.565200px;}
.x167_c00001{left:636.490200px;}
.xd8_c00001{left:637.915200px;}
.x44_c00001{left:639.340200px;}
.xce_c00001{left:643.690200px;}
.xb4_c00001{left:646.540200px;}
.x2e_c00001{left:647.965200px;}
.xab_c00001{left:649.090200px;}
.x2f_c00001{left:650.515200px;}
.x134_c00001{left:651.565200px;}
.x3a_c00001{left:652.690200px;}
.xe8_c00001{left:654.115200px;}
.x172_c00001{left:655.915200px;}
.x77_c00001{left:657.715200px;}
.x14f_c00001{left:660.190200px;}
.x10c_c00001{left:661.315200px;}
.xb8_c00001{left:662.740200px;}
.xb6_c00001{left:664.165200px;}
.x109_c00001{left:665.290200px;}
.x4_c00001{left:666.715200px;}
.x2c_c00001{left:669.940200px;}
.x145_c00001{left:670.990200px;}
.xb7_c00001{left:672.115200px;}
.xc1_c00001{left:673.540200px;}
.x16f_c00001{left:676.090200px;}
.x140_c00001{left:677.515200px;}
.x114_c00001{left:678.940200px;}
.xfb_c00001{left:679.990200px;}
.x174_c00001{left:681.115200px;}
.x14e_c00001{left:685.390200px;}
.xe2_c00001{left:686.515200px;}
.x14d_c00001{left:690.490200px;}
.x14c_c00001{left:692.965200px;}
.x14b_c00001{left:700.540200px;}
@media print{
.v1_c00001{vertical-align:-16.538667pt;}
.v5_c00001{vertical-align:-2.666667pt;}
.v2_c00001{vertical-align:-1.333333pt;}
.v0_c00001{vertical-align:0.000000pt;}
.v3_c00001{vertical-align:2.405333pt;}
.v4_c00001{vertical-align:13.861333pt;}
.v6_c00001{vertical-align:70.666667pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ls2_c00001{letter-spacing:0.368013pt;}
.ls4_c00001{letter-spacing:0.416000pt;}
.ls3_c00001{letter-spacing:0.748667pt;}
.ls1_c00001{letter-spacing:1.008859pt;}
.ws1_c00001{word-spacing:-16.000000pt;}
.ws2_c00001{word-spacing:-14.666667pt;}
.ws3_c00001{word-spacing:-13.333333pt;}
.ws0_c00001{word-spacing:0.000000pt;}
._4_c00001{margin-left:-34.720890pt;}
._0_c00001{margin-left:-8.943321pt;}
._2_c00001{width:1.459333pt;}
._1_c00001{width:2.608000pt;}
._3_c00001{width:7.200000pt;}
.fs5_c00001{font-size:16.000000pt;}
.fsc_c00001{font-size:21.333333pt;}
.fs14_c00001{font-size:37.333333pt;}
.fs13_c00001{font-size:42.666667pt;}
.fs0_c00001{font-size:48.000000pt;}
.fs1_c00001{font-size:53.333333pt;}
.fs3_c00001{font-size:58.666667pt;}
.fs2_c00001{font-size:64.000000pt;}
.fs7_c00001{font-size:69.333333pt;}
.fs6_c00001{font-size:74.666667pt;}
.fs4_c00001{font-size:80.000000pt;}
.fse_c00001{font-size:85.333333pt;}
.fsf_c00001{font-size:90.666667pt;}
.fs8_c00001{font-size:96.000000pt;}
.fs12_c00001{font-size:106.666667pt;}
.fs10_c00001{font-size:112.000000pt;}
.fs11_c00001{font-size:117.333333pt;}
.fsb_c00001{font-size:122.666667pt;}
.fsd_c00001{font-size:128.000000pt;}
.fs9_c00001{font-size:133.333333pt;}
.fsa_c00001{font-size:154.666667pt;}
.y0_c00001{bottom:0.000000pt;}
.y57a_c00001{bottom:28.932000pt;}
.y424_c00001{bottom:30.198667pt;}
.y425_c00001{bottom:30.265333pt;}
.y1ce_c00001{bottom:37.598667pt;}
.y524_c00001{bottom:39.198667pt;}
.y525_c00001{bottom:45.932000pt;}
.y19e_c00001{bottom:49.132000pt;}
.y217_c00001{bottom:49.398667pt;}
.y26d_c00001{bottom:52.666667pt;}
.y578_c00001{bottom:52.932000pt;}
.y579_c00001{bottom:53.000000pt;}
.y218_c00001{bottom:53.932000pt;}
.yf3_c00001{bottom:54.865333pt;}
.y577_c00001{bottom:54.932000pt;}
.y576_c00001{bottom:55.198667pt;}
.y8f_c00001{bottom:55.532000pt;}
.y423_c00001{bottom:55.865333pt;}
.y526_c00001{bottom:56.198667pt;}
.y166_c00001{bottom:57.798667pt;}
.y575_c00001{bottom:58.398667pt;}
.y23e_c00001{bottom:58.666667pt;}
.y26e_c00001{bottom:58.732000pt;}
.y3c6_c00001{bottom:59.398667pt;}
.y19d_c00001{bottom:60.000000pt;}
.yf4_c00001{bottom:60.265333pt;}
.y19c_c00001{bottom:60.333333pt;}
.y573_c00001{bottom:60.598667pt;}
.y574_c00001{bottom:60.666667pt;}
.y523_c00001{bottom:60.932000pt;}
.ycb_c00001{bottom:61.265333pt;}
.yf5_c00001{bottom:61.598667pt;}
.y26f_c00001{bottom:61.932000pt;}
.yf6_c00001{bottom:63.198667pt;}
.y134_c00001{bottom:63.532000pt;}
.y1f4_c00001{bottom:63.865333pt;}
.y450_c00001{bottom:64.132000pt;}
.y2b_c00001{bottom:65.732000pt;}
.y46f_c00001{bottom:65.798667pt;}
.y3c7_c00001{bottom:66.398667pt;}
.y572_c00001{bottom:66.732000pt;}
.y5e_c00001{bottom:67.333333pt;}
.y1cd_c00001{bottom:68.000000pt;}
.y23d_c00001{bottom:68.333333pt;}
.y3fe_c00001{bottom:69.265333pt;}
.y51f_c00001{bottom:71.198667pt;}
.y3fd_c00001{bottom:71.465333pt;}
.y3c8_c00001{bottom:71.532000pt;}
.y347_c00001{bottom:71.865333pt;}
.y522_c00001{bottom:72.465333pt;}
.y298_c00001{bottom:72.798667pt;}
.y5d_c00001{bottom:73.465333pt;}
.y521_c00001{bottom:73.798667pt;}
.y397_c00001{bottom:74.065333pt;}
.y346_c00001{bottom:74.398667pt;}
.y165_c00001{bottom:75.065333pt;}
.y133_c00001{bottom:75.666667pt;}
.y5c_c00001{bottom:76.000000pt;}
.y2ea_c00001{bottom:77.265333pt;}
.y8e_c00001{bottom:77.598667pt;}
.y23c_c00001{bottom:77.932000pt;}
.y1f3_c00001{bottom:79.198667pt;}
.y19b_c00001{bottom:79.798667pt;}
.y420_c00001{bottom:80.198667pt;}
.y345_c00001{bottom:80.798667pt;}
.y26c_c00001{bottom:81.065333pt;}
.yca_c00001{bottom:81.132000pt;}
.y46e_c00001{bottom:81.465333pt;}
.y1f2_c00001{bottom:82.132000pt;}
.y3c3_c00001{bottom:84.666667pt;}
.y2a_c00001{bottom:85.265333pt;}
.y1f1_c00001{bottom:85.598667pt;}
.y571_c00001{bottom:86.198667pt;}
.y44f_c00001{bottom:86.532000pt;}
.y51e_c00001{bottom:86.932000pt;}
.y19a_c00001{bottom:87.532000pt;}
.y421_c00001{bottom:87.798667pt;}
.y2bd_c00001{bottom:87.865333pt;}
.y51d_c00001{bottom:88.465333pt;}
.y44e_c00001{bottom:88.798667pt;}
.y3c4_c00001{bottom:89.132000pt;}
.y5b_c00001{bottom:90.065333pt;}
.y297_c00001{bottom:90.398667pt;}
.y422_c00001{bottom:90.732000pt;}
.y4cd_c00001{bottom:91.065333pt;}
.y570_c00001{bottom:91.333333pt;}
.y216_c00001{bottom:92.333333pt;}
.yf1_c00001{bottom:94.598667pt;}
.y132_c00001{bottom:94.865333pt;}
.y199_c00001{bottom:95.532000pt;}
.y56f_c00001{bottom:95.798667pt;}
.y1cc_c00001{bottom:95.865333pt;}
.y164_c00001{bottom:96.132000pt;}
.y296_c00001{bottom:96.465333pt;}
.y8d_c00001{bottom:96.798667pt;}
.y3c5_c00001{bottom:97.132000pt;}
.y4cc_c00001{bottom:97.398667pt;}
.y396_c00001{bottom:98.065333pt;}
.y3fc_c00001{bottom:98.666667pt;}
.y1f0_c00001{bottom:99.000000pt;}
.y26b_c00001{bottom:99.333333pt;}
.y36c_c00001{bottom:100.000000pt;}
.y344_c00001{bottom:100.333333pt;}
.y56e_c00001{bottom:100.666667pt;}
.yc9_c00001{bottom:100.932000pt;}
.y1ef_c00001{bottom:101.598667pt;}
.yf2_c00001{bottom:101.932000pt;}
.y51b_c00001{bottom:102.598667pt;}
.y56d_c00001{bottom:103.198667pt;}
.y41e_c00001{bottom:103.798667pt;}
.y1ee_c00001{bottom:103.865333pt;}
.y29_c00001{bottom:104.465333pt;}
.y131_c00001{bottom:105.465333pt;}
.y2bc_c00001{bottom:106.398667pt;}
.y326_c00001{bottom:106.732000pt;}
.y2e9_c00001{bottom:107.000000pt;}
.y1cb_c00001{bottom:107.065333pt;}
.y343_c00001{bottom:107.398667pt;}
.y51c_c00001{bottom:108.333333pt;}
.y198_c00001{bottom:108.932000pt;}
.y41f_c00001{bottom:109.932000pt;}
.yc8_c00001{bottom:110.532000pt;}
.y5a_c00001{bottom:111.198667pt;}
.y3c0_c00001{bottom:112.798667pt;}
.y130_c00001{bottom:114.398667pt;}
.y8c_c00001{bottom:115.000000pt;}
.y44d_c00001{bottom:115.666667pt;}
.y295_c00001{bottom:116.000000pt;}
.y51a_c00001{bottom:116.932000pt;}
.y269_c00001{bottom:117.265333pt;}
.y197_c00001{bottom:117.598667pt;}
.y196_c00001{bottom:117.932000pt;}
.y4cb_c00001{bottom:118.265333pt;}
.y56c_c00001{bottom:118.532000pt;}
.y1ed_c00001{bottom:118.865333pt;}
.y56b_c00001{bottom:119.198667pt;}
.y4ca_c00001{bottom:120.132000pt;}
.yc7_c00001{bottom:120.465333pt;}
.y3c1_c00001{bottom:120.798667pt;}
.y23b_c00001{bottom:121.132000pt;}
.y28_c00001{bottom:122.732000pt;}
.y56a_c00001{bottom:123.398667pt;}
.y3fb_c00001{bottom:123.666667pt;}
.y569_c00001{bottom:124.333333pt;}
.y2bb_c00001{bottom:124.666667pt;}
.y36b_c00001{bottom:125.598667pt;}
.y3c2_c00001{bottom:125.932000pt;}
.y2e8_c00001{bottom:126.265333pt;}
.y59_c00001{bottom:127.532000pt;}
.y195_c00001{bottom:128.465333pt;}
.y342_c00001{bottom:128.798667pt;}
.y26a_c00001{bottom:129.132000pt;}
.y341_c00001{bottom:129.398667pt;}
.y268_c00001{bottom:130.398667pt;}
.y267_c00001{bottom:130.666667pt;}
.y325_c00001{bottom:131.333333pt;}
.y488_c00001{bottom:131.666667pt;}
.y518_c00001{bottom:133.265333pt;}
.y1ca_c00001{bottom:133.598667pt;}
.y8b_c00001{bottom:133.932000pt;}
.y3fa_c00001{bottom:134.265333pt;}
.y41d_c00001{bottom:136.198667pt;}
.y519_c00001{bottom:136.798667pt;}
.y12f_c00001{bottom:137.398667pt;}
.yf0_c00001{bottom:138.132000pt;}
.y568_c00001{bottom:140.000000pt;}
.yc6_c00001{bottom:140.333333pt;}
.y1ec_c00001{bottom:141.265333pt;}
.y27_c00001{bottom:141.932000pt;}
.y44c_c00001{bottom:143.532000pt;}
.y46d_c00001{bottom:143.865333pt;}
.y2ba_c00001{bottom:144.465333pt;}
.y214_c00001{bottom:144.798667pt;}
.y44b_c00001{bottom:145.132000pt;}
.y4c7_c00001{bottom:145.465333pt;}
.y4c8_c00001{bottom:145.732000pt;}
.y4c9_c00001{bottom:145.798667pt;}
.y2e7_c00001{bottom:146.065333pt;}
.y3bf_c00001{bottom:146.398667pt;}
.y194_c00001{bottom:147.732000pt;}
.y44a_c00001{bottom:148.000000pt;}
.y566_c00001{bottom:148.598667pt;}
.y567_c00001{bottom:148.666667pt;}
.y516_c00001{bottom:149.265333pt;}
.y565_c00001{bottom:149.598667pt;}
.y4c6_c00001{bottom:149.932000pt;}
.y163_c00001{bottom:150.532000pt;}
.y36a_c00001{bottom:152.198667pt;}
.y58_c00001{bottom:152.798667pt;}
.y8a_c00001{bottom:153.065333pt;}
.y564_c00001{bottom:153.132000pt;}
.y294_c00001{bottom:153.398667pt;}
.y395_c00001{bottom:153.465333pt;}
.y12e_c00001{bottom:153.732000pt;}
.y323_c00001{bottom:155.065333pt;}
.y340_c00001{bottom:156.000000pt;}
.y2b9_c00001{bottom:156.333333pt;}
.yef_c00001{bottom:156.932000pt;}
.y1eb_c00001{bottom:157.265333pt;}
.y1ea_c00001{bottom:158.865333pt;}
.y517_c00001{bottom:158.932000pt;}
.y324_c00001{bottom:159.198667pt;}
.yc5_c00001{bottom:159.532000pt;}
.y26_c00001{bottom:160.465333pt;}
.y4a5_c00001{bottom:161.398667pt;}
.y213_c00001{bottom:162.065333pt;}
.y41c_c00001{bottom:163.065333pt;}
.y515_c00001{bottom:164.000000pt;}
.y514_c00001{bottom:164.666667pt;}
.y563_c00001{bottom:165.598667pt;}
.y57_c00001{bottom:165.932000pt;}
.y56_c00001{bottom:167.198667pt;}
.y293_c00001{bottom:168.798667pt;}
.y55_c00001{bottom:169.398667pt;}
.y46c_c00001{bottom:170.065333pt;}
.y23a_c00001{bottom:170.398667pt;}
.y449_c00001{bottom:170.732000pt;}
.y162_c00001{bottom:171.666667pt;}
.y89_c00001{bottom:172.000000pt;}
.y193_c00001{bottom:172.666667pt;}
.y3be_c00001{bottom:173.265333pt;}
.y12d_c00001{bottom:173.598667pt;}
.y4c5_c00001{bottom:174.265333pt;}
.y448_c00001{bottom:174.598667pt;}
.y1e9_c00001{bottom:177.732000pt;}
.y513_c00001{bottom:179.065333pt;}
.y25_c00001{bottom:179.398667pt;}
.y369_c00001{bottom:179.666667pt;}
.y3f9_c00001{bottom:180.000000pt;}
.y212_c00001{bottom:180.333333pt;}
.y394_c00001{bottom:180.666667pt;}
.y4a3_c00001{bottom:180.932000pt;}
.y2b8_c00001{bottom:181.598667pt;}
.y4a4_c00001{bottom:182.265333pt;}
.y33f_c00001{bottom:183.532000pt;}
.yc4_c00001{bottom:183.798667pt;}
.y562_c00001{bottom:184.465333pt;}
.y322_c00001{bottom:185.132000pt;}
.y2e6_c00001{bottom:185.398667pt;}
.y3f8_c00001{bottom:186.732000pt;}
.y192_c00001{bottom:187.398667pt;}
.y487_c00001{bottom:187.666667pt;}
.y292_c00001{bottom:188.598667pt;}
.y41b_c00001{bottom:189.000000pt;}
.y88_c00001{bottom:190.532000pt;}
.y1c9_c00001{bottom:190.598667pt;}
.y161_c00001{bottom:190.865333pt;}
.y511_c00001{bottom:191.865333pt;}
.y512_c00001{bottom:192.465333pt;}
.y12c_c00001{bottom:193.732000pt;}
.y265_c00001{bottom:194.732000pt;}
.y46b_c00001{bottom:197.932000pt;}
.y561_c00001{bottom:198.198667pt;}
.y24_c00001{bottom:198.265333pt;}
.y3bd_c00001{bottom:198.532000pt;}
.y1e8_c00001{bottom:198.865333pt;}
.y447_c00001{bottom:198.932000pt;}
.yc3_c00001{bottom:199.465333pt;}
.y560_c00001{bottom:200.465333pt;}
.y2b7_c00001{bottom:201.132000pt;}
.y446_c00001{bottom:202.065333pt;}
.y4c4_c00001{bottom:202.132000pt;}
.y211_c00001{bottom:202.398667pt;}
.y5b3_c00001{bottom:203.000000pt;}
.y368_c00001{bottom:203.666667pt;}
.y266_c00001{bottom:204.666667pt;}
.y2e5_c00001{bottom:205.000000pt;}
.y3f7_c00001{bottom:207.465333pt;}
.y3f6_c00001{bottom:207.798667pt;}
.y191_c00001{bottom:207.865333pt;}
.y160_c00001{bottom:208.132000pt;}
.y393_c00001{bottom:208.798667pt;}
.y1c8_c00001{bottom:209.132000pt;}
.y87_c00001{bottom:209.465333pt;}
.yee_c00001{bottom:209.732000pt;}
.y54_c00001{bottom:210.065333pt;}
.y3f5_c00001{bottom:210.398667pt;}
.y321_c00001{bottom:211.666667pt;}
.y291_c00001{bottom:212.666667pt;}
.y55f_c00001{bottom:212.932000pt;}
.y12b_c00001{bottom:213.265333pt;}
.y4a2_c00001{bottom:213.598667pt;}
.y510_c00001{bottom:214.865333pt;}
.y486_c00001{bottom:215.198667pt;}
.y41a_c00001{bottom:215.532000pt;}
.y2b6_c00001{bottom:215.865333pt;}
.y23_c00001{bottom:216.798667pt;}
.y1e7_c00001{bottom:217.398667pt;}
.y55e_c00001{bottom:218.065333pt;}
.y5b2_c00001{bottom:219.065333pt;}
.y55d_c00001{bottom:219.333333pt;}
.yc2_c00001{bottom:219.732000pt;}
.y5b4_c00001{bottom:220.666667pt;}
.y210_c00001{bottom:221.598667pt;}
.y46a_c00001{bottom:224.465333pt;}
.y3bc_c00001{bottom:225.133333pt;}
.y445_c00001{bottom:225.800000pt;}
.y15f_c00001{bottom:227.666667pt;}
.y190_c00001{bottom:228.000000pt;}
.y86_c00001{bottom:228.598667pt;}
.y50f_c00001{bottom:229.265333pt;}
.y2e4_c00001{bottom:229.598667pt;}
.y55c_c00001{bottom:229.865333pt;}
.y2e3_c00001{bottom:231.198667pt;}
.y367_c00001{bottom:231.532000pt;}
.y4c3_c00001{bottom:232.133333pt;}
.y12a_c00001{bottom:233.466667pt;}
.y392_c00001{bottom:234.732000pt;}
.y20_c00001{bottom:235.065333pt;}
.y5af_c00001{bottom:235.333333pt;}
.y264_c00001{bottom:235.666667pt;}
.y3f4_c00001{bottom:236.000000pt;}
.y21_c00001{bottom:236.333333pt;}
.y239_c00001{bottom:236.598667pt;}
.y3f3_c00001{bottom:236.666667pt;}
.y5b0_c00001{bottom:236.932000pt;}
.y22_c00001{bottom:237.598667pt;}
.y391_c00001{bottom:238.598667pt;}
.y2b5_c00001{bottom:238.865333pt;}
.y1e6_c00001{bottom:239.532000pt;}
.yc1_c00001{bottom:239.800000pt;}
.y20f_c00001{bottom:239.865333pt;}
.y5b1_c00001{bottom:240.133333pt;}
.y3f2_c00001{bottom:240.466667pt;}
.y4a1_c00001{bottom:240.800000pt;}
.y320_c00001{bottom:241.133333pt;}
.y15c_c00001{bottom:242.732000pt;}
.y419_c00001{bottom:243.000000pt;}
.y1c6_c00001{bottom:243.333333pt;}
.y15d_c00001{bottom:243.666667pt;}
.y1c7_c00001{bottom:243.732000pt;}
.y2e1_c00001{bottom:244.598667pt;}
.y2e2_c00001{bottom:244.666667pt;}
.y55b_c00001{bottom:245.932000pt;}
.y18f_c00001{bottom:247.532000pt;}
.y85_c00001{bottom:248.133333pt;}
.y15e_c00001{bottom:248.800000pt;}
.y5ad_c00001{bottom:250.398667pt;}
.y5ae_c00001{bottom:251.398667pt;}
.y469_c00001{bottom:251.666667pt;}
.y3bb_c00001{bottom:252.333333pt;}
.y129_c00001{bottom:253.265333pt;}
.y50e_c00001{bottom:254.532000pt;}
.y1f_c00001{bottom:254.598667pt;}
.y238_c00001{bottom:255.466667pt;}
.y444_c00001{bottom:256.198667pt;}
.y1e5_c00001{bottom:256.800000pt;}
.yc0_c00001{bottom:257.466667pt;}
.y2b4_c00001{bottom:257.732000pt;}
.ybf_c00001{bottom:258.398667pt;}
.y20e_c00001{bottom:259.065333pt;}
.y4c2_c00001{bottom:259.398667pt;}
.ybe_c00001{bottom:260.598667pt;}
.y50d_c00001{bottom:261.265333pt;}
.y55a_c00001{bottom:261.932000pt;}
.y390_c00001{bottom:262.265333pt;}
.y1c5_c00001{bottom:263.466667pt;}
.y38f_c00001{bottom:263.865333pt;}
.y3f1_c00001{bottom:265.133333pt;}
.y31e_c00001{bottom:265.398667pt;}
.y38e_c00001{bottom:266.133333pt;}
.y15b_c00001{bottom:266.398667pt;}
.y84_c00001{bottom:266.732000pt;}
.y290_c00001{bottom:267.000000pt;}
.y5ab_c00001{bottom:267.333333pt;}
.y18e_c00001{bottom:267.398667pt;}
.y4a0_c00001{bottom:268.000000pt;}
.y2e0_c00001{bottom:268.598667pt;}
.y418_c00001{bottom:270.265333pt;}
.y31f_c00001{bottom:270.865333pt;}
.y485_c00001{bottom:271.865333pt;}
.y1e_c00001{bottom:273.732000pt;}
.y237_c00001{bottom:274.398667pt;}
.y5ac_c00001{bottom:276.000000pt;}
.y128_c00001{bottom:276.333333pt;}
.y53_c00001{bottom:276.666667pt;}
.y236_c00001{bottom:276.932000pt;}
.y559_c00001{bottom:277.598667pt;}
.y235_c00001{bottom:277.865333pt;}
.ybd_c00001{bottom:278.198667pt;}
.y2b3_c00001{bottom:278.265333pt;}
.y3ba_c00001{bottom:278.532000pt;}
.y468_c00001{bottom:278.865333pt;}
.y4e6_c00001{bottom:279.198667pt;}
.y20d_c00001{bottom:280.466667pt;}
.y4e7_c00001{bottom:281.466667pt;}
.y5aa_c00001{bottom:281.800000pt;}
.yeb_c00001{bottom:282.065333pt;}
.y5a8_c00001{bottom:282.732000pt;}
.y2df_c00001{bottom:284.000000pt;}
.yec_c00001{bottom:284.333333pt;}
.y4c1_c00001{bottom:285.598667pt;}
.y5a9_c00001{bottom:286.265333pt;}
.y83_c00001{bottom:286.532000pt;}
.y18d_c00001{bottom:286.865333pt;}
.y4c0_c00001{bottom:287.865333pt;}
.yed_c00001{bottom:289.398667pt;}
.y38d_c00001{bottom:290.065333pt;}
.y263_c00001{bottom:290.398667pt;}
.y50b_c00001{bottom:291.666667pt;}
.y31d_c00001{bottom:291.732000pt;}
.y38c_c00001{bottom:292.000000pt;}
.y3f0_c00001{bottom:292.666667pt;}
.y127_c00001{bottom:292.932000pt;}
.y2b2_c00001{bottom:293.265333pt;}
.y1d_c00001{bottom:293.598667pt;}
.y38b_c00001{bottom:293.865333pt;}
.y558_c00001{bottom:293.932000pt;}
.y33e_c00001{bottom:294.598667pt;}
.y49f_c00001{bottom:294.865333pt;}
.y1e3_c00001{bottom:295.800000pt;}
.y1e4_c00001{bottom:296.133333pt;}
.y5a7_c00001{bottom:296.532000pt;}
.y50c_c00001{bottom:297.133333pt;}
.y417_c00001{bottom:297.732000pt;}
.ybc_c00001{bottom:298.065333pt;}
.y5a5_c00001{bottom:298.398667pt;}
.y5a6_c00001{bottom:299.666667pt;}
.y20c_c00001{bottom:300.000000pt;}
.y15a_c00001{bottom:303.198667pt;}
.y2de_c00001{bottom:304.133333pt;}
.y52_c00001{bottom:305.732000pt;}
.y51_c00001{bottom:305.800000pt;}
.y3b9_c00001{bottom:306.065333pt;}
.y82_c00001{bottom:306.398667pt;}
.y467_c00001{bottom:307.398667pt;}
.y508_c00001{bottom:308.000000pt;}
.y557_c00001{bottom:309.598667pt;}
.y18c_c00001{bottom:310.865333pt;}
.y443_c00001{bottom:310.932000pt;}
.y556_c00001{bottom:311.466667pt;}
.y5a3_c00001{bottom:311.800000pt;}
.y5a4_c00001{bottom:311.865333pt;}
.y1c_c00001{bottom:312.466667pt;}
.y509_c00001{bottom:313.133333pt;}
.y126_c00001{bottom:313.398667pt;}
.y50a_c00001{bottom:313.732000pt;}
.y366_c00001{bottom:314.065333pt;}
.y4bf_c00001{bottom:314.732000pt;}
.y1e2_c00001{bottom:316.333333pt;}
.y2b1_c00001{bottom:316.932000pt;}
.y38a_c00001{bottom:317.333333pt;}
.ybb_c00001{bottom:317.932000pt;}
.y20b_c00001{bottom:318.532000pt;}
.y31c_c00001{bottom:319.532000pt;}
.y389_c00001{bottom:319.865333pt;}
.y3ee_c00001{bottom:320.800000pt;}
.y3ef_c00001{bottom:321.466667pt;}
.y157_c00001{bottom:322.065333pt;}
.y416_c00001{bottom:322.398667pt;}
.y158_c00001{bottom:322.732000pt;}
.y2dd_c00001{bottom:323.666667pt;}
.y49e_c00001{bottom:324.333333pt;}
.y81_c00001{bottom:325.598667pt;}
.y1c4_c00001{bottom:325.932000pt;}
.yea_c00001{bottom:326.198667pt;}
.y28f_c00001{bottom:326.265333pt;}
.y159_c00001{bottom:326.532000pt;}
.y18b_c00001{bottom:326.865333pt;}
.y484_c00001{bottom:327.532000pt;}
.y28e_c00001{bottom:327.800000pt;}
.y28d_c00001{bottom:328.466667pt;}
.y308_c00001{bottom:330.065333pt;}
.y5a2_c00001{bottom:331.666667pt;}
.y1b_c00001{bottom:332.000000pt;}
.y50_c00001{bottom:333.000000pt;}
.y4e4_c00001{bottom:333.598667pt;}
.y466_c00001{bottom:333.932000pt;}
.y125_c00001{bottom:334.865333pt;}
.y1e1_c00001{bottom:335.800000pt;}
.y2b0_c00001{bottom:336.466667pt;}
.y365_c00001{bottom:336.800000pt;}
.y4e5_c00001{bottom:338.065333pt;}
.y507_c00001{bottom:338.398667pt;}
.y20a_c00001{bottom:339.333333pt;}
.yba_c00001{bottom:340.333333pt;}
.y442_c00001{bottom:340.598667pt;}
.y555_c00001{bottom:341.932000pt;}
.y4be_c00001{bottom:342.865333pt;}
.ye9_c00001{bottom:343.532000pt;}
.y262_c00001{bottom:344.198667pt;}
.y80_c00001{bottom:344.800000pt;}
.y1c3_c00001{bottom:345.133333pt;}
.y18a_c00001{bottom:347.000000pt;}
.y28c_c00001{bottom:347.666667pt;}
.y3ec_c00001{bottom:348.000000pt;}
.y388_c00001{bottom:348.333333pt;}
.y3eb_c00001{bottom:348.598667pt;}
.y387_c00001{bottom:348.666667pt;}
.y3ea_c00001{bottom:349.598667pt;}
.y3ed_c00001{bottom:349.932000pt;}
.y49d_c00001{bottom:350.265333pt;}
.y3e9_c00001{bottom:350.532000pt;}
.y1a_c00001{bottom:351.198667pt;}
.y414_c00001{bottom:351.800000pt;}
.y2af_c00001{bottom:352.133333pt;}
.y305_c00001{bottom:352.466667pt;}
.y33d_c00001{bottom:352.532000pt;}
.y124_c00001{bottom:353.133333pt;}
.y1e0_c00001{bottom:355.333333pt;}
.y415_c00001{bottom:355.398667pt;}
.y506_c00001{bottom:356.000000pt;}
.y306_c00001{bottom:356.333333pt;}
.yb8_c00001{bottom:357.265333pt;}
.yb9_c00001{bottom:357.598667pt;}
.yb7_c00001{bottom:357.865333pt;}
.y554_c00001{bottom:357.932000pt;}
.y209_c00001{bottom:358.532000pt;}
.y553_c00001{bottom:358.598667pt;}
.y3b8_c00001{bottom:360.198667pt;}
.y465_c00001{bottom:361.133333pt;}
.y7f_c00001{bottom:362.732000pt;}
.y307_c00001{bottom:363.000000pt;}
.ye8_c00001{bottom:363.666667pt;}
.y156_c00001{bottom:364.000000pt;}
.y1c2_c00001{bottom:364.333333pt;}
.y4f_c00001{bottom:365.000000pt;}
.y2dc_c00001{bottom:365.932000pt;}
.y28b_c00001{bottom:366.198667pt;}
.y4e_c00001{bottom:366.265333pt;}
.y4d_c00001{bottom:366.532000pt;}
.y364_c00001{bottom:366.932000pt;}
.y261_c00001{bottom:367.865333pt;}
.y189_c00001{bottom:368.132000pt;}
.y5a1_c00001{bottom:368.465333pt;}
.y441_c00001{bottom:368.798667pt;}
.y19_c00001{bottom:370.398667pt;}
.y503_c00001{bottom:370.732000pt;}
.y304_c00001{bottom:371.333333pt;}
.y504_c00001{bottom:371.666667pt;}
.y505_c00001{bottom:373.265333pt;}
.y4e3_c00001{bottom:373.598667pt;}
.y386_c00001{bottom:373.932000pt;}
.y123_c00001{bottom:374.198667pt;}
.y31b_c00001{bottom:374.265333pt;}
.y2ae_c00001{bottom:374.865333pt;}
.y1df_c00001{bottom:374.932000pt;}
.y234_c00001{bottom:375.198667pt;}
.y385_c00001{bottom:376.132000pt;}
.y384_c00001{bottom:376.198667pt;}
.y3e8_c00001{bottom:376.798667pt;}
.y49c_c00001{bottom:377.465333pt;}
.yb6_c00001{bottom:377.732000pt;}
.y208_c00001{bottom:378.065333pt;}
.y33c_c00001{bottom:378.398667pt;}
.y33b_c00001{bottom:378.732000pt;}
.y413_c00001{bottom:381.598667pt;}
.y7e_c00001{bottom:382.865333pt;}
.ye7_c00001{bottom:383.198667pt;}
.y155_c00001{bottom:383.865333pt;}
.y483_c00001{bottom:384.198667pt;}
.y28a_c00001{bottom:386.065333pt;}
.y4c_c00001{bottom:386.398667pt;}
.y188_c00001{bottom:387.065333pt;}
.y260_c00001{bottom:387.666667pt;}
.y464_c00001{bottom:388.333333pt;}
.y501_c00001{bottom:388.598667pt;}
.y3b6_c00001{bottom:388.666667pt;}
.y3b7_c00001{bottom:389.000000pt;}
.y18_c00001{bottom:389.598667pt;}
.y552_c00001{bottom:389.932000pt;}
.y502_c00001{bottom:390.598667pt;}
.y551_c00001{bottom:390.865333pt;}
.y122_c00001{bottom:392.798667pt;}
.y1dd_c00001{bottom:394.398667pt;}
.y303_c00001{bottom:395.000000pt;}
.y1de_c00001{bottom:395.065333pt;}
.y440_c00001{bottom:396.932000pt;}
.yb5_c00001{bottom:397.598667pt;}
.y207_c00001{bottom:397.865333pt;}
.y4bd_c00001{bottom:398.865333pt;}
.y4bc_c00001{bottom:400.132000pt;}
.y4bb_c00001{bottom:400.198667pt;}
.y31a_c00001{bottom:401.465333pt;}
.y7d_c00001{bottom:402.732000pt;}
.y500_c00001{bottom:403.065333pt;}
.y154_c00001{bottom:403.333333pt;}
.y1c1_c00001{bottom:403.666667pt;}
.y2db_c00001{bottom:404.000000pt;}
.y4b_c00001{bottom:404.598667pt;}
.y3e7_c00001{bottom:405.265333pt;}
.y25f_c00001{bottom:405.598667pt;}
.y289_c00001{bottom:406.198667pt;}
.y33a_c00001{bottom:406.532000pt;}
.y187_c00001{bottom:407.465333pt;}
.y412_c00001{bottom:408.798667pt;}
.y17_c00001{bottom:409.132000pt;}
.y16_c00001{bottom:409.398667pt;}
.y5d5_c00001{bottom:411.000000pt;}
.y5a0_c00001{bottom:411.398667pt;}
.y482_c00001{bottom:412.000000pt;}
.y121_c00001{bottom:412.932000pt;}
.y233_c00001{bottom:413.932000pt;}
.y1db_c00001{bottom:414.532000pt;}
.y1dc_c00001{bottom:415.198667pt;}
.y5d6_c00001{bottom:416.465333pt;}
.y2ad_c00001{bottom:417.132000pt;}
.yb4_c00001{bottom:417.732000pt;}
.y4fe_c00001{bottom:418.398667pt;}
.y4ff_c00001{bottom:419.333333pt;}
.y153_c00001{bottom:421.865333pt;}
.y363_c00001{bottom:421.932000pt;}
.y7c_c00001{bottom:422.198667pt;}
.y4e2_c00001{bottom:422.532000pt;}
.y550_c00001{bottom:422.865333pt;}
.y1c0_c00001{bottom:423.198667pt;}
.y2da_c00001{bottom:423.532000pt;}
.y4a_c00001{bottom:424.465333pt;}
.y43f_c00001{bottom:424.798667pt;}
.y43e_c00001{bottom:425.132000pt;}
.ye6_c00001{bottom:425.398667pt;}
.y288_c00001{bottom:425.732000pt;}
.y287_c00001{bottom:426.398667pt;}
.y286_c00001{bottom:426.732000pt;}
.y25e_c00001{bottom:427.000000pt;}
.y4ba_c00001{bottom:428.000000pt;}
.y319_c00001{bottom:428.666667pt;}
.y15_c00001{bottom:428.932000pt;}
.y186_c00001{bottom:429.265333pt;}
.y5d4_c00001{bottom:429.598667pt;}
.y383_c00001{bottom:430.598667pt;}
.y302_c00001{bottom:430.865333pt;}
.y3e6_c00001{bottom:432.132000pt;}
.y120_c00001{bottom:433.132000pt;}
.y3e5_c00001{bottom:433.398667pt;}
.y232_c00001{bottom:433.732000pt;}
.y339_c00001{bottom:434.065333pt;}
.y1da_c00001{bottom:434.732000pt;}
.y4fd_c00001{bottom:435.000000pt;}
.y411_c00001{bottom:436.333333pt;}
.yb3_c00001{bottom:436.932000pt;}
.y54f_c00001{bottom:438.865333pt;}
.y481_c00001{bottom:440.132000pt;}
.y3b4_c00001{bottom:441.132000pt;}
.y3b5_c00001{bottom:441.398667pt;}
.y7b_c00001{bottom:442.065333pt;}
.y152_c00001{bottom:442.666667pt;}
.y1bf_c00001{bottom:443.065333pt;}
.y5d1_c00001{bottom:443.333333pt;}
.y2d9_c00001{bottom:444.000000pt;}
.y463_c00001{bottom:444.666667pt;}
.y49_c00001{bottom:444.932000pt;}
.y59f_c00001{bottom:445.000000pt;}
.y5d2_c00001{bottom:445.265333pt;}
.y285_c00001{bottom:445.598667pt;}
.y185_c00001{bottom:446.865333pt;}
.y4e1_c00001{bottom:448.132000pt;}
.y14_c00001{bottom:448.465333pt;}
.y5d3_c00001{bottom:448.798667pt;}
.y362_c00001{bottom:449.798667pt;}
.y4fc_c00001{bottom:451.065333pt;}
.y11f_c00001{bottom:452.000000pt;}
.y43d_c00001{bottom:452.932000pt;}
.y43c_c00001{bottom:453.265333pt;}
.y231_c00001{bottom:453.598667pt;}
.y301_c00001{bottom:453.932000pt;}
.y1d9_c00001{bottom:454.532000pt;}
.y318_c00001{bottom:454.932000pt;}
.y4b9_c00001{bottom:455.532000pt;}
.y317_c00001{bottom:455.798667pt;}
.yb2_c00001{bottom:456.465333pt;}
.y316_c00001{bottom:457.732000pt;}
.y5cf_c00001{bottom:459.333333pt;}
.y3e4_c00001{bottom:459.666667pt;}
.y59d_c00001{bottom:460.000000pt;}
.y49b_c00001{bottom:460.333333pt;}
.y206_c00001{bottom:460.598667pt;}
.y59e_c00001{bottom:461.265333pt;}
.y7a_c00001{bottom:461.932000pt;}
.y151_c00001{bottom:462.265333pt;}
.y1be_c00001{bottom:462.532000pt;}
.y2d8_c00001{bottom:462.865333pt;}
.y48_c00001{bottom:464.132000pt;}
.y410_c00001{bottom:464.198667pt;}
.y25d_c00001{bottom:464.465333pt;}
.y5d0_c00001{bottom:464.798667pt;}
.y284_c00001{bottom:465.132000pt;}
.y5b6_c00001{bottom:465.465333pt;}
.y480_c00001{bottom:466.732000pt;}
.y184_c00001{bottom:467.000000pt;}
.y4fb_c00001{bottom:467.333333pt;}
.y47f_c00001{bottom:467.666667pt;}
.y13_c00001{bottom:468.000000pt;}
.y3b3_c00001{bottom:468.932000pt;}
.y54e_c00001{bottom:470.532000pt;}
.y11e_c00001{bottom:471.798667pt;}
.y462_c00001{bottom:471.865333pt;}
.y230_c00001{bottom:473.398667pt;}
.y1d8_c00001{bottom:474.065333pt;}
.y300_c00001{bottom:474.398667pt;}
.yb1_c00001{bottom:476.333333pt;}
.y361_c00001{bottom:477.265333pt;}
.y4e0_c00001{bottom:477.865333pt;}
.y43b_c00001{bottom:480.798667pt;}
.y14e_c00001{bottom:481.398667pt;}
.ye5_c00001{bottom:481.465333pt;}
.y14f_c00001{bottom:481.732000pt;}
.y79_c00001{bottom:481.798667pt;}
.y150_c00001{bottom:482.065333pt;}
.y1bd_c00001{bottom:482.398667pt;}
.y2d7_c00001{bottom:482.732000pt;}
.y4b8_c00001{bottom:483.333333pt;}
.y315_c00001{bottom:483.398667pt;}
.y47_c00001{bottom:484.000000pt;}
.y382_c00001{bottom:484.265333pt;}
.y283_c00001{bottom:484.666667pt;}
.y25c_c00001{bottom:485.598667pt;}
.y54d_c00001{bottom:486.532000pt;}
.y183_c00001{bottom:486.865333pt;}
.y3e3_c00001{bottom:487.798667pt;}
.y12_c00001{bottom:487.865333pt;}
.y338_c00001{bottom:490.065333pt;}
.y2ff_c00001{bottom:490.732000pt;}
.y11d_c00001{bottom:491.666667pt;}
.y59c_c00001{bottom:492.333333pt;}
.y22f_c00001{bottom:493.265333pt;}
.y47e_c00001{bottom:495.198667pt;}
.yb0_c00001{bottom:495.465333pt;}
.yaf_c00001{bottom:496.132000pt;}
.y5b5_c00001{bottom:496.198667pt;}
.y461_c00001{bottom:499.333333pt;}
.y4fa_c00001{bottom:500.666667pt;}
.y14d_c00001{bottom:501.000000pt;}
.y78_c00001{bottom:501.598667pt;}
.y1bc_c00001{bottom:501.865333pt;}
.y54c_c00001{bottom:502.532000pt;}
.y2d6_c00001{bottom:502.865333pt;}
.y46_c00001{bottom:503.798667pt;}
.y45_c00001{bottom:503.865333pt;}
.y282_c00001{bottom:504.465333pt;}
.y44_c00001{bottom:504.798667pt;}
.y4df_c00001{bottom:505.065333pt;}
.y25b_c00001{bottom:505.398667pt;}
.y11_c00001{bottom:507.333333pt;}
.y182_c00001{bottom:508.333333pt;}
.y43a_c00001{bottom:508.932000pt;}
.y59b_c00001{bottom:509.265333pt;}
.y314_c00001{bottom:510.598667pt;}
.y11c_c00001{bottom:511.198667pt;}
.y381_c00001{bottom:512.132000pt;}
.y2fe_c00001{bottom:513.132000pt;}
.y380_c00001{bottom:513.398667pt;}
.y22e_c00001{bottom:513.732000pt;}
.y3e1_c00001{bottom:515.333333pt;}
.y3e2_c00001{bottom:515.666667pt;}
.yae_c00001{bottom:516.000000pt;}
.y205_c00001{bottom:516.598667pt;}
.y204_c00001{bottom:517.000000pt;}
.y337_c00001{bottom:517.932000pt;}
.y54b_c00001{bottom:518.598667pt;}
.y40f_c00001{bottom:519.198667pt;}
.y77_c00001{bottom:521.132000pt;}
.y1bb_c00001{bottom:521.398667pt;}
.y2d5_c00001{bottom:522.732000pt;}
.y47d_c00001{bottom:523.065333pt;}
.y43_c00001{bottom:523.666667pt;}
.y3b2_c00001{bottom:524.000000pt;}
.y25a_c00001{bottom:524.333333pt;}
.y281_c00001{bottom:524.598667pt;}
.y599_c00001{bottom:525.000000pt;}
.y59a_c00001{bottom:525.265333pt;}
.y10_c00001{bottom:526.865333pt;}
.y460_c00001{bottom:526.932000pt;}
.y181_c00001{bottom:527.198667pt;}
.y11b_c00001{bottom:531.000000pt;}
.y2ac_c00001{bottom:531.333333pt;}
.y2fd_c00001{bottom:531.666667pt;}
.y360_c00001{bottom:532.333333pt;}
.y4dc_c00001{bottom:532.666667pt;}
.y22d_c00001{bottom:533.000000pt;}
.y4dd_c00001{bottom:533.865333pt;}
.y4de_c00001{bottom:533.932000pt;}
.y549_c00001{bottom:534.865333pt;}
.y54a_c00001{bottom:535.198667pt;}
.yad_c00001{bottom:535.532000pt;}
.yac_c00001{bottom:535.798667pt;}
.y203_c00001{bottom:536.132000pt;}
.y439_c00001{bottom:537.132000pt;}
.y313_c00001{bottom:537.465333pt;}
.y4b5_c00001{bottom:538.732000pt;}
.y4b7_c00001{bottom:539.000000pt;}
.y4b6_c00001{bottom:539.065333pt;}
.ye3_c00001{bottom:540.265333pt;}
.ye4_c00001{bottom:540.333333pt;}
.y76_c00001{bottom:540.666667pt;}
.y1ba_c00001{bottom:541.265333pt;}
.y312_c00001{bottom:541.333333pt;}
.y14c_c00001{bottom:541.598667pt;}
.y1b9_c00001{bottom:541.932000pt;}
.y2d4_c00001{bottom:542.865333pt;}
.y42_c00001{bottom:543.532000pt;}
.y3e0_c00001{bottom:543.798667pt;}
.y49a_c00001{bottom:543.865333pt;}
.y52a_c00001{bottom:544.132000pt;}
.y280_c00001{bottom:544.465333pt;}
.y259_c00001{bottom:544.798667pt;}
.y336_c00001{bottom:546.065333pt;}
.y40e_c00001{bottom:546.398667pt;}
.y180_c00001{bottom:547.333333pt;}
.yf_c00001{bottom:548.000000pt;}
.y548_c00001{bottom:550.598667pt;}
.y11a_c00001{bottom:550.865333pt;}
.y119_c00001{bottom:551.198667pt;}
.y47c_c00001{bottom:551.465333pt;}
.y3b1_c00001{bottom:551.532000pt;}
.y2fc_c00001{bottom:552.465333pt;}
.y22c_c00001{bottom:553.132000pt;}
.y45f_c00001{bottom:554.732000pt;}
.yab_c00001{bottom:555.333333pt;}
.y202_c00001{bottom:556.932000pt;}
.y598_c00001{bottom:557.598667pt;}
.y35f_c00001{bottom:559.865333pt;}
.y75_c00001{bottom:560.132000pt;}
.y14b_c00001{bottom:560.798667pt;}
.y1b8_c00001{bottom:561.132000pt;}
.y2d3_c00001{bottom:562.398667pt;}
.y311_c00001{bottom:562.732000pt;}
.y41_c00001{bottom:563.666667pt;}
.y258_c00001{bottom:564.333333pt;}
.y27f_c00001{bottom:564.666667pt;}
.y438_c00001{bottom:565.932000pt;}
.ye_c00001{bottom:566.532000pt;}
.y4b4_c00001{bottom:566.865333pt;}
.y547_c00001{bottom:567.198667pt;}
.y4b3_c00001{bottom:567.465333pt;}
.y17f_c00001{bottom:567.798667pt;}
.ye2_c00001{bottom:568.132000pt;}
.y310_c00001{bottom:569.398667pt;}
.y499_c00001{bottom:569.465333pt;}
.y498_c00001{bottom:570.732000pt;}
.y2ab_c00001{bottom:571.000000pt;}
.y118_c00001{bottom:571.333333pt;}
.y3df_c00001{bottom:571.666667pt;}
.y22b_c00001{bottom:573.265333pt;}
.y597_c00001{bottom:573.598667pt;}
.y596_c00001{bottom:573.865333pt;}
.y335_c00001{bottom:573.932000pt;}
.y40d_c00001{bottom:574.265333pt;}
.yaa_c00001{bottom:575.198667pt;}
.y201_c00001{bottom:576.132000pt;}
.y1d7_c00001{bottom:576.465333pt;}
.y3b0_c00001{bottom:579.065333pt;}
.y4f9_c00001{bottom:579.333333pt;}
.y74_c00001{bottom:579.666667pt;}
.y1b7_c00001{bottom:580.333333pt;}
.y1b5_c00001{bottom:581.265333pt;}
.y1b6_c00001{bottom:581.333333pt;}
.y14a_c00001{bottom:581.598667pt;}
.y2d2_c00001{bottom:582.532000pt;}
.y45e_c00001{bottom:583.198667pt;}
.y40_c00001{bottom:583.532000pt;}
.y27e_c00001{bottom:583.798667pt;}
.y257_c00001{bottom:584.132000pt;}
.yd_c00001{bottom:586.065333pt;}
.y35e_c00001{bottom:587.065333pt;}
.y17e_c00001{bottom:587.333333pt;}
.y4db_c00001{bottom:588.000000pt;}
.y30f_c00001{bottom:588.666667pt;}
.y2aa_c00001{bottom:590.532000pt;}
.y30e_c00001{bottom:590.865333pt;}
.y117_c00001{bottom:591.198667pt;}
.y2fb_c00001{bottom:591.532000pt;}
.y22a_c00001{bottom:593.132000pt;}
.y437_c00001{bottom:594.065333pt;}
.y4f8_c00001{bottom:594.732000pt;}
.ya9_c00001{bottom:595.000000pt;}
.y200_c00001{bottom:595.666667pt;}
.y37e_c00001{bottom:596.666667pt;}
.y37f_c00001{bottom:597.598667pt;}
.y3de_c00001{bottom:598.265333pt;}
.y545_c00001{bottom:598.865333pt;}
.y497_c00001{bottom:598.932000pt;}
.y73_c00001{bottom:600.132000pt;}
.y546_c00001{bottom:600.198667pt;}
.y149_c00001{bottom:600.465333pt;}
.y1b4_c00001{bottom:601.398667pt;}
.y334_c00001{bottom:601.732000pt;}
.y2d1_c00001{bottom:602.666667pt;}
.y40c_c00001{bottom:602.732000pt;}
.y3f_c00001{bottom:603.333333pt;}
.y256_c00001{bottom:603.666667pt;}
.y27d_c00001{bottom:604.598667pt;}
.y3af_c00001{bottom:605.598667pt;}
.yc_c00001{bottom:605.865333pt;}
.y3ae_c00001{bottom:606.598667pt;}
.y17d_c00001{bottom:607.198667pt;}
.y3ad_c00001{bottom:607.465333pt;}
.y4f7_c00001{bottom:607.532000pt;}
.y4f6_c00001{bottom:608.132000pt;}
.y2a9_c00001{bottom:610.065333pt;}
.y45d_c00001{bottom:611.000000pt;}
.y116_c00001{bottom:611.333333pt;}
.y35d_c00001{bottom:612.265333pt;}
.y229_c00001{bottom:613.265333pt;}
.ya8_c00001{bottom:614.865333pt;}
.y35c_c00001{bottom:615.198667pt;}
.y57b_c00001{bottom:615.532000pt;}
.y4f5_c00001{bottom:615.865333pt;}
.y4da_c00001{bottom:616.132000pt;}
.y30d_c00001{bottom:617.132000pt;}
.y1ff_c00001{bottom:617.398667pt;}
.y1b3_c00001{bottom:619.666667pt;}
.y72_c00001{bottom:620.000000pt;}
.y148_c00001{bottom:620.333333pt;}
.y30c_c00001{bottom:621.265333pt;}
.y2d0_c00001{bottom:621.598667pt;}
.y435_c00001{bottom:622.265333pt;}
.y436_c00001{bottom:622.532000pt;}
.y4b1_c00001{bottom:622.865333pt;}
.y3e_c00001{bottom:623.198667pt;}
.y255_c00001{bottom:624.132000pt;}
.y4b2_c00001{bottom:624.465333pt;}
.y27c_c00001{bottom:624.798667pt;}
.y37d_c00001{bottom:625.132000pt;}
.y496_c00001{bottom:625.398667pt;}
.y5ce_c00001{bottom:626.065333pt;}
.y495_c00001{bottom:627.000000pt;}
.y17c_c00001{bottom:627.065333pt;}
.y3dc_c00001{bottom:627.666667pt;}
.y3dd_c00001{bottom:628.000000pt;}
.y5cd_c00001{bottom:628.333333pt;}
.yb_c00001{bottom:629.265333pt;}
.y40b_c00001{bottom:629.932000pt;}
.y115_c00001{bottom:630.532000pt;}
.y544_c00001{bottom:631.532000pt;}
.y2a8_c00001{bottom:631.798667pt;}
.y3ac_c00001{bottom:634.398667pt;}
.ya7_c00001{bottom:634.733333pt;}
.y2fa_c00001{bottom:635.000000pt;}
.y1fe_c00001{bottom:635.666667pt;}
.y1fd_c00001{bottom:638.265333pt;}
.y147_c00001{bottom:639.798667pt;}
.y1b2_c00001{bottom:640.132000pt;}
.y45c_c00001{bottom:640.198667pt;}
.y71_c00001{bottom:640.465333pt;}
.y5cc_c00001{bottom:641.465333pt;}
.y4f4_c00001{bottom:641.733333pt;}
.y2cf_c00001{bottom:642.400000pt;}
.y3d_c00001{bottom:642.733333pt;}
.y254_c00001{bottom:643.333333pt;}
.y5cb_c00001{bottom:643.400000pt;}
.y4d9_c00001{bottom:643.666667pt;}
.y27b_c00001{bottom:644.598667pt;}
.y5c9_c00001{bottom:645.000000pt;}
.ya_c00001{bottom:645.265333pt;}
.y5ca_c00001{bottom:645.865333pt;}
.y542_c00001{bottom:646.265333pt;}
.y4f3_c00001{bottom:646.532000pt;}
.y17b_c00001{bottom:647.198667pt;}
.y543_c00001{bottom:647.532000pt;}
.y4f2_c00001{bottom:647.798667pt;}
.ye1_c00001{bottom:648.132000pt;}
.y112_c00001{bottom:648.465333pt;}
.y113_c00001{bottom:648.532000pt;}
.y2a7_c00001{bottom:649.798667pt;}
.y433_c00001{bottom:650.066667pt;}
.y114_c00001{bottom:650.400000pt;}
.y434_c00001{bottom:650.733333pt;}
.y1fc_c00001{bottom:652.000000pt;}
.y228_c00001{bottom:652.932000pt;}
.y1fb_c00001{bottom:653.265333pt;}
.y30b_c00001{bottom:653.932000pt;}
.y595_c00001{bottom:654.198667pt;}
.ya6_c00001{bottom:654.865333pt;}
.y494_c00001{bottom:655.198667pt;}
.y594_c00001{bottom:655.465333pt;}
.y1fa_c00001{bottom:656.465333pt;}
.y333_c00001{bottom:656.798667pt;}
.y40a_c00001{bottom:657.733333pt;}
.y5c8_c00001{bottom:658.066667pt;}
.y70_c00001{bottom:658.733333pt;}
.y4f1_c00001{bottom:659.000000pt;}
.y1b1_c00001{bottom:659.333333pt;}
.y5c5_c00001{bottom:660.598667pt;}
.y2ce_c00001{bottom:660.666667pt;}
.y146_c00001{bottom:661.598667pt;}
.y5bf_c00001{bottom:661.932000pt;}
.y3c_c00001{bottom:662.532000pt;}
.y253_c00001{bottom:662.932000pt;}
.y541_c00001{bottom:663.798667pt;}
.y47b_c00001{bottom:664.132000pt;}
.y4f0_c00001{bottom:664.465333pt;}
.y27a_c00001{bottom:664.798667pt;}
.y9_c00001{bottom:665.132000pt;}
.y17a_c00001{bottom:666.400000pt;}
.y45b_c00001{bottom:666.733333pt;}
.y10f_c00001{bottom:668.265333pt;}
.y110_c00001{bottom:668.333333pt;}
.y2a6_c00001{bottom:669.932000pt;}
.y111_c00001{bottom:670.532000pt;}
.y4d8_c00001{bottom:671.798667pt;}
.y35b_c00001{bottom:672.132000pt;}
.y227_c00001{bottom:672.798667pt;}
.y4ef_c00001{bottom:673.465333pt;}
.y35a_c00001{bottom:673.798667pt;}
.ya5_c00001{bottom:674.066667pt;}
.y30a_c00001{bottom:675.000000pt;}
.y5c4_c00001{bottom:676.265333pt;}
.y493_c00001{bottom:677.265333pt;}
.ye0_c00001{bottom:677.598667pt;}
.y5bb_c00001{bottom:677.865333pt;}
.y6f_c00001{bottom:677.932000pt;}
.y1b0_c00001{bottom:678.532000pt;}
.y5be_c00001{bottom:678.598667pt;}
.y432_c00001{bottom:678.865333pt;}
.y145_c00001{bottom:679.198667pt;}
.y37c_c00001{bottom:679.798667pt;}
.y540_c00001{bottom:679.865333pt;}
.y4ee_c00001{bottom:680.198667pt;}
.y37a_c00001{bottom:680.798667pt;}
.y37b_c00001{bottom:681.400000pt;}
.y2cd_c00001{bottom:681.465333pt;}
.y3b_c00001{bottom:681.733333pt;}
.y1af_c00001{bottom:682.066667pt;}
.y1ae_c00001{bottom:682.132000pt;}
.y252_c00001{bottom:682.732000pt;}
.y529_c00001{bottom:683.000000pt;}
.y225_c00001{bottom:683.666667pt;}
.y8_c00001{bottom:684.666667pt;}
.y332_c00001{bottom:685.000000pt;}
.y409_c00001{bottom:685.600000pt;}
.y593_c00001{bottom:686.865333pt;}
.y179_c00001{bottom:687.198667pt;}
.y2f9_c00001{bottom:687.865333pt;}
.y1d6_c00001{bottom:688.198667pt;}
.y5c7_c00001{bottom:689.132000pt;}
.y3ab_c00001{bottom:689.398667pt;}
.y2a5_c00001{bottom:689.465333pt;}
.y10e_c00001{bottom:690.065333pt;}
.y47a_c00001{bottom:691.666667pt;}
.y5c3_c00001{bottom:692.333333pt;}
.y226_c00001{bottom:692.933333pt;}
.y5ba_c00001{bottom:694.198667pt;}
.ya4_c00001{bottom:694.266667pt;}
.y5bd_c00001{bottom:694.532000pt;}
.y45a_c00001{bottom:695.198667pt;}
.y53f_c00001{bottom:695.532000pt;}
.y4ed_c00001{bottom:697.132000pt;}
.y359_c00001{bottom:698.065333pt;}
.y6e_c00001{bottom:698.398667pt;}
.y528_c00001{bottom:698.732000pt;}
.y1ad_c00001{bottom:699.065333pt;}
.y4d7_c00001{bottom:699.398667pt;}
.y144_c00001{bottom:699.666667pt;}
.y278_c00001{bottom:700.000000pt;}
.y2cc_c00001{bottom:701.600000pt;}
.y3a_c00001{bottom:702.532000pt;}
.y251_c00001{bottom:702.865333pt;}
.y279_c00001{bottom:704.466667pt;}
.y7_c00001{bottom:704.800000pt;}
.y5c6_c00001{bottom:705.133333pt;}
.y178_c00001{bottom:705.732000pt;}
.y431_c00001{bottom:707.065333pt;}
.y10d_c00001{bottom:708.000000pt;}
.y379_c00001{bottom:708.333333pt;}
.y5c2_c00001{bottom:708.933333pt;}
.y2a4_c00001{bottom:709.600000pt;}
.y492_c00001{bottom:710.532000pt;}
.y3db_c00001{bottom:711.532000pt;}
.y53e_c00001{bottom:711.800000pt;}
.ydf_c00001{bottom:712.466667pt;}
.y224_c00001{bottom:712.800000pt;}
.y4ec_c00001{bottom:713.398667pt;}
.y331_c00001{bottom:713.466667pt;}
.y408_c00001{bottom:713.800000pt;}
.ya3_c00001{bottom:714.065333pt;}
.y6d_c00001{bottom:716.000000pt;}
.y3aa_c00001{bottom:716.666667pt;}
.y1ac_c00001{bottom:718.198667pt;}
.y6c_c00001{bottom:718.532000pt;}
.y143_c00001{bottom:718.865333pt;}
.y479_c00001{bottom:719.198667pt;}
.y6b_c00001{bottom:720.800000pt;}
.y2cb_c00001{bottom:721.133333pt;}
.y39_c00001{bottom:721.732000pt;}
.y1ab_c00001{bottom:722.398667pt;}
.y459_c00001{bottom:722.732000pt;}
.y6_c00001{bottom:724.000000pt;}
.y277_c00001{bottom:724.266667pt;}
.y358_c00001{bottom:724.333333pt;}
.y5c1_c00001{bottom:725.600000pt;}
.y109_c00001{bottom:725.865333pt;}
.y108_c00001{bottom:725.933333pt;}
.y10b_c00001{bottom:726.198667pt;}
.y10a_c00001{bottom:726.266667pt;}
.y177_c00001{bottom:726.865333pt;}
.y5bc_c00001{bottom:727.198667pt;}
.y4d6_c00001{bottom:727.532000pt;}
.y53d_c00001{bottom:729.398667pt;}
.y10c_c00001{bottom:729.732000pt;}
.y357_c00001{bottom:730.065333pt;}
.y377_c00001{bottom:731.666667pt;}
.y223_c00001{bottom:731.732000pt;}
.y592_c00001{bottom:732.000000pt;}
.y2a3_c00001{bottom:732.666667pt;}
.ya2_c00001{bottom:733.266667pt;}
.y430_c00001{bottom:734.865333pt;}
.y4b0_c00001{bottom:735.800000pt;}
.y378_c00001{bottom:736.466667pt;}
.y591_c00001{bottom:736.532000pt;}
.y491_c00001{bottom:737.065333pt;}
.y6a_c00001{bottom:737.398667pt;}
.y590_c00001{bottom:737.732000pt;}
.y1aa_c00001{bottom:739.000000pt;}
.y142_c00001{bottom:739.065333pt;}
.y2ca_c00001{bottom:739.333333pt;}
.y53c_c00001{bottom:739.666667pt;}
.y330_c00001{bottom:740.933333pt;}
.y407_c00001{bottom:741.266667pt;}
.y250_c00001{bottom:741.600000pt;}
.y38_c00001{bottom:741.865333pt;}
.y5c0_c00001{bottom:742.198667pt;}
.y490_c00001{bottom:742.600000pt;}
.y48f_c00001{bottom:742.865333pt;}
.y5b9_c00001{bottom:743.198667pt;}
.y276_c00001{bottom:743.532000pt;}
.y107_c00001{bottom:744.466667pt;}
.y527_c00001{bottom:745.466667pt;}
.y24e_c00001{bottom:745.800000pt;}
.y24f_c00001{bottom:746.065333pt;}
.y176_c00001{bottom:746.398667pt;}
.y356_c00001{bottom:746.732000pt;}
.y478_c00001{bottom:747.000000pt;}
.y4eb_c00001{bottom:747.333333pt;}
.y4ea_c00001{bottom:747.398667pt;}
.y2a2_c00001{bottom:749.600000pt;}
.y458_c00001{bottom:750.865333pt;}
.y4e9_c00001{bottom:751.198667pt;}
.y1f9_c00001{bottom:751.800000pt;}
.y222_c00001{bottom:752.133333pt;}
.ya1_c00001{bottom:752.800000pt;}
.y355_c00001{bottom:753.732000pt;}
.y58e_c00001{bottom:754.065333pt;}
.y58f_c00001{bottom:754.398667pt;}
.y4d5_c00001{bottom:756.000000pt;}
.y538_c00001{bottom:757.000000pt;}
.y1d5_c00001{bottom:757.865333pt;}
.y1a8_c00001{bottom:757.933333pt;}
.yde_c00001{bottom:758.198667pt;}
.y309_c00001{bottom:758.266667pt;}
.y69_c00001{bottom:758.532000pt;}
.y539_c00001{bottom:758.865333pt;}
.y53a_c00001{bottom:759.198667pt;}
.y141_c00001{bottom:759.532000pt;}
.ydd_c00001{bottom:760.198667pt;}
.y2c9_c00001{bottom:760.466667pt;}
.y37_c00001{bottom:761.065333pt;}
.y53b_c00001{bottom:761.133333pt;}
.ydc_c00001{bottom:761.398667pt;}
.y376_c00001{bottom:762.398667pt;}
.y42f_c00001{bottom:762.732000pt;}
.y375_c00001{bottom:763.398667pt;}
.y275_c00001{bottom:763.666667pt;}
.y4af_c00001{bottom:764.266667pt;}
.y175_c00001{bottom:764.600000pt;}
.y2f8_c00001{bottom:765.600000pt;}
.y24d_c00001{bottom:765.933333pt;}
.y3da_c00001{bottom:767.198667pt;}
.y48e_c00001{bottom:767.532000pt;}
.y32f_c00001{bottom:768.133333pt;}
.y106_c00001{bottom:768.466667pt;}
.ya0_c00001{bottom:768.800000pt;}
.y406_c00001{bottom:769.398667pt;}
.y221_c00001{bottom:770.732000pt;}
.y3a9_c00001{bottom:771.732000pt;}
.y477_c00001{bottom:774.865333pt;}
.y537_c00001{bottom:775.532000pt;}
.y3a8_c00001{bottom:776.532000pt;}
.y68_c00001{bottom:777.466667pt;}
.y1a9_c00001{bottom:778.398667pt;}
.y140_c00001{bottom:779.398667pt;}
.y36_c00001{bottom:780.333333pt;}
.y2c8_c00001{bottom:780.600000pt;}
.ydb_c00001{bottom:782.198667pt;}
.y457_c00001{bottom:782.532000pt;}
.y456_c00001{bottom:782.865333pt;}
.y4d4_c00001{bottom:783.800000pt;}
.y58d_c00001{bottom:784.198667pt;}
.y105_c00001{bottom:784.800000pt;}
.y2f7_c00001{bottom:785.133333pt;}
.y174_c00001{bottom:785.398667pt;}
.y3d6_c00001{bottom:788.000000pt;}
.y42e_c00001{bottom:790.532000pt;}
.y374_c00001{bottom:790.600000pt;}
.y536_c00001{bottom:790.865333pt;}
.y9f_c00001{bottom:791.198667pt;}
.y5b8_c00001{bottom:791.800000pt;}
.y3d7_c00001{bottom:791.865333pt;}
.y4ae_c00001{bottom:792.133333pt;}
.y58c_c00001{bottom:793.133333pt;}
.y2a1_c00001{bottom:793.732000pt;}
.y48d_c00001{bottom:794.065333pt;}
.y3d8_c00001{bottom:794.398667pt;}
.y5b7_c00001{bottom:795.065333pt;}
.y3d9_c00001{bottom:795.398667pt;}
.y32e_c00001{bottom:795.666667pt;}
.y67_c00001{bottom:796.266667pt;}
.y405_c00001{bottom:797.333333pt;}
.y58b_c00001{bottom:797.600000pt;}
.yda_c00001{bottom:797.933333pt;}
.y1a7_c00001{bottom:798.266667pt;}
.y1d2_c00001{bottom:799.865333pt;}
.y35_c00001{bottom:800.133333pt;}
.y1d3_c00001{bottom:801.398667pt;}
.y24c_c00001{bottom:801.732000pt;}
.y476_c00001{bottom:802.398667pt;}
.y1d4_c00001{bottom:803.333333pt;}
.y5_c00001{bottom:803.398667pt;}
.y58a_c00001{bottom:803.666667pt;}
.y2f6_c00001{bottom:804.600000pt;}
.y173_c00001{bottom:805.600000pt;}
.y589_c00001{bottom:805.933333pt;}
.y535_c00001{bottom:806.532000pt;}
.y220_c00001{bottom:807.198667pt;}
.y588_c00001{bottom:807.466667pt;}
.y104_c00001{bottom:807.532000pt;}
.y2a0_c00001{bottom:808.800000pt;}
.y9d_c00001{bottom:810.065333pt;}
.y1f8_c00001{bottom:811.065333pt;}
.y4d3_c00001{bottom:811.666667pt;}
.y2c6_c00001{bottom:812.000000pt;}
.y4ad_c00001{bottom:812.266667pt;}
.y9e_c00001{bottom:812.933333pt;}
.y274_c00001{bottom:813.933333pt;}
.y354_c00001{bottom:814.266667pt;}
.y66_c00001{bottom:816.133333pt;}
.y534_c00001{bottom:817.133333pt;}
.y1a6_c00001{bottom:817.398667pt;}
.yd9_c00001{bottom:817.466667pt;}
.y42d_c00001{bottom:818.065333pt;}
.y373_c00001{bottom:818.133333pt;}
.y2c7_c00001{bottom:818.732000pt;}
.y13f_c00001{bottom:819.000000pt;}
.y34_c00001{bottom:820.000000pt;}
.y3d4_c00001{bottom:821.600000pt;}
.y24b_c00001{bottom:821.933333pt;}
.y3d5_c00001{bottom:822.532000pt;}
.y32d_c00001{bottom:823.198667pt;}
.y1a4_c00001{bottom:824.133333pt;}
.y1a5_c00001{bottom:824.198667pt;}
.y172_c00001{bottom:824.800000pt;}
.y103_c00001{bottom:825.133333pt;}
.y3a7_c00001{bottom:825.398667pt;}
.y2f5_c00001{bottom:826.065333pt;}
.y587_c00001{bottom:826.398667pt;}
.y29f_c00001{bottom:828.600000pt;}
.y475_c00001{bottom:830.532000pt;}
.y9c_c00001{bottom:830.865333pt;}
.y586_c00001{bottom:831.865333pt;}
.y3a6_c00001{bottom:833.133333pt;}
.y455_c00001{bottom:834.732000pt;}
.y585_c00001{bottom:835.000000pt;}
.y65_c00001{bottom:836.000000pt;}
.yd8_c00001{bottom:836.333333pt;}
.y584_c00001{bottom:836.600000pt;}
.y171_c00001{bottom:837.333333pt;}
.y13e_c00001{bottom:837.600000pt;}
.y4d2_c00001{bottom:838.266667pt;}
.y2c5_c00001{bottom:838.532000pt;}
.y533_c00001{bottom:838.865333pt;}
.y33_c00001{bottom:839.800000pt;}
.y24a_c00001{bottom:840.133333pt;}
.y1a3_c00001{bottom:842.065333pt;}
.y21f_c00001{bottom:842.732000pt;}
.y2f4_c00001{bottom:844.000000pt;}
.y102_c00001{bottom:845.266667pt;}
.y372_c00001{bottom:845.600000pt;}
.y3a5_c00001{bottom:846.532000pt;}
.y583_c00001{bottom:847.532000pt;}
.y29e_c00001{bottom:848.133333pt;}
.y4ac_c00001{bottom:848.198667pt;}
.y582_c00001{bottom:848.532000pt;}
.y3d3_c00001{bottom:849.133333pt;}
.y48c_c00001{bottom:849.732000pt;}
.y13d_c00001{bottom:850.133333pt;}
.y9b_c00001{bottom:850.398667pt;}
.y32c_c00001{bottom:850.666667pt;}
.y532_c00001{bottom:851.000000pt;}
.y13c_c00001{bottom:852.000000pt;}
.y404_c00001{bottom:853.333333pt;}
.y16c_c00001{bottom:853.600000pt;}
.y353_c00001{bottom:853.933333pt;}
.y16d_c00001{bottom:855.198667pt;}
.y64_c00001{bottom:855.865333pt;}
.y352_c00001{bottom:856.466667pt;}
.y16e_c00001{bottom:856.732000pt;}
.y16f_c00001{bottom:857.398667pt;}
.y474_c00001{bottom:857.732000pt;}
.y2c4_c00001{bottom:858.666667pt;}
.y32_c00001{bottom:859.333333pt;}
.y4e8_c00001{bottom:859.732000pt;}
.y13b_c00001{bottom:860.000000pt;}
.yff_c00001{bottom:860.933333pt;}
.y3a4_c00001{bottom:861.333333pt;}
.y454_c00001{bottom:861.933333pt;}
.y249_c00001{bottom:862.198667pt;}
.yd7_c00001{bottom:862.532000pt;}
.y581_c00001{bottom:862.600000pt;}
.y2f3_c00001{bottom:863.198667pt;}
.y170_c00001{bottom:864.198667pt;}
.y351_c00001{bottom:864.800000pt;}
.y100_c00001{bottom:865.732000pt;}
.y34d_c00001{bottom:866.065333pt;}
.y101_c00001{bottom:867.333333pt;}
.y248_c00001{bottom:867.666667pt;}
.y57f_c00001{bottom:868.000000pt;}
.y21e_c00001{bottom:868.933333pt;}
.y580_c00001{bottom:869.266667pt;}
.y9a_c00001{bottom:869.600000pt;}
.y2c3_c00001{bottom:870.532000pt;}
.yd6_c00001{bottom:870.865333pt;}
.y4d1_c00001{bottom:871.800000pt;}
.y42b_c00001{bottom:871.865333pt;}
.y371_c00001{bottom:872.198667pt;}
.yd5_c00001{bottom:872.466667pt;}
.y169_c00001{bottom:872.800000pt;}
.y16a_c00001{bottom:873.133333pt;}
.y42c_c00001{bottom:873.466667pt;}
.y63_c00001{bottom:875.333333pt;}
.yfd_c00001{bottom:875.666667pt;}
.y4ab_c00001{bottom:876.000000pt;}
.y1f7_c00001{bottom:876.333333pt;}
.y1a2_c00001{bottom:876.933333pt;}
.y32b_c00001{bottom:877.600000pt;}
.y13a_c00001{bottom:877.933333pt;}
.yd4_c00001{bottom:878.532000pt;}
.y531_c00001{bottom:878.600000pt;}
.y31_c00001{bottom:878.933333pt;}
.y273_c00001{bottom:879.532000pt;}
.y530_c00001{bottom:880.800000pt;}
.y98_c00001{bottom:881.133333pt;}
.y403_c00001{bottom:881.398667pt;}
.y52f_c00001{bottom:882.398667pt;}
.y2f2_c00001{bottom:883.000000pt;}
.y16b_c00001{bottom:883.065333pt;}
.y2f1_c00001{bottom:883.333333pt;}
.y247_c00001{bottom:883.398667pt;}
.y350_c00001{bottom:883.666667pt;}
.y473_c00001{bottom:884.933333pt;}
.yfe_c00001{bottom:885.266667pt;}
.y246_c00001{bottom:886.266667pt;}
.y2f0_c00001{bottom:886.865333pt;}
.y29d_c00001{bottom:887.532000pt;}
.y21d_c00001{bottom:888.466667pt;}
.y34f_c00001{bottom:889.133333pt;}
.y3a3_c00001{bottom:889.398667pt;}
.y3a2_c00001{bottom:889.732000pt;}
.y99_c00001{bottom:890.065333pt;}
.y57e_c00001{bottom:891.666667pt;}
.y4aa_c00001{bottom:892.666667pt;}
.y3d0_c00001{bottom:894.600000pt;}
.y4d0_c00001{bottom:894.933333pt;}
.y62_c00001{bottom:895.198667pt;}
.y34e_c00001{bottom:895.532000pt;}
.yfa_c00001{bottom:896.466667pt;}
.yd3_c00001{bottom:896.800000pt;}
.y2c2_c00001{bottom:897.133333pt;}
.y57d_c00001{bottom:897.800000pt;}
.y139_c00001{bottom:898.065333pt;}
.y30_c00001{bottom:898.398667pt;}
.y52e_c00001{bottom:898.732000pt;}
.y370_c00001{bottom:899.000000pt;}
.y93_c00001{bottom:899.333333pt;}
.y42a_c00001{bottom:900.000000pt;}
.yfb_c00001{bottom:901.266667pt;}
.y168_c00001{bottom:901.600000pt;}
.y3d1_c00001{bottom:901.933333pt;}
.y2ef_c00001{bottom:903.198667pt;}
.y245_c00001{bottom:903.532000pt;}
.y48b_c00001{bottom:903.800000pt;}
.yfc_c00001{bottom:903.865333pt;}
.y95_c00001{bottom:904.198667pt;}
.y32a_c00001{bottom:904.466667pt;}
.y3d2_c00001{bottom:904.800000pt;}
.y244_c00001{bottom:907.000000pt;}
.y243_c00001{bottom:907.333333pt;}
.y21c_c00001{bottom:907.666667pt;}
.y3a1_c00001{bottom:908.000000pt;}
.y402_c00001{bottom:908.600000pt;}
.y39f_c00001{bottom:908.666667pt;}
.y39e_c00001{bottom:908.933333pt;}
.y97_c00001{bottom:909.333333pt;}
.y96_c00001{bottom:910.198667pt;}
.y39d_c00001{bottom:910.532000pt;}
.y34c_c00001{bottom:910.600000pt;}
.y29c_c00001{bottom:911.865333pt;}
.y3a0_c00001{bottom:912.198667pt;}
.y48a_c00001{bottom:912.800000pt;}
.y39c_c00001{bottom:913.732000pt;}
.y2c1_c00001{bottom:914.398667pt;}
.y61_c00001{bottom:915.333333pt;}
.y39b_c00001{bottom:915.398667pt;}
.y1a1_c00001{bottom:915.666667pt;}
.y52d_c00001{bottom:916.000000pt;}
.y2f_c00001{bottom:916.333333pt;}
.y138_c00001{bottom:917.266667pt;}
.y39a_c00001{bottom:917.600000pt;}
.y453_c00001{bottom:918.198667pt;}
.y242_c00001{bottom:918.532000pt;}
.y2ee_c00001{bottom:918.600000pt;}
.y3cc_c00001{bottom:920.133333pt;}
.y428_c00001{bottom:920.466667pt;}
.y167_c00001{bottom:921.133333pt;}
.yf8_c00001{bottom:921.732000pt;}
.y57c_c00001{bottom:923.398667pt;}
.y4a7_c00001{bottom:923.666667pt;}
.yf9_c00001{bottom:924.000000pt;}
.y3cd_c00001{bottom:924.333333pt;}
.y2ed_c00001{bottom:925.600000pt;}
.y36f_c00001{bottom:926.198667pt;}
.y21b_c00001{bottom:926.266667pt;}
.y92_c00001{bottom:926.532000pt;}
.y34b_c00001{bottom:926.600000pt;}
.y29b_c00001{bottom:926.865333pt;}
.y2ec_c00001{bottom:927.532000pt;}
.y429_c00001{bottom:928.800000pt;}
.y94_c00001{bottom:929.065333pt;}
.y3ce_c00001{bottom:929.466667pt;}
.y329_c00001{bottom:929.800000pt;}
.y3cf_c00001{bottom:932.000000pt;}
.y4a9_c00001{bottom:932.333333pt;}
.y4a8_c00001{bottom:933.333333pt;}
.y2c0_c00001{bottom:934.600000pt;}
.y2e_c00001{bottom:937.133333pt;}
.y472_c00001{bottom:938.732000pt;}
.y4cf_c00001{bottom:943.466667pt;}
.y489_c00001{bottom:950.266667pt;}
.y4ce_c00001{bottom:953.466667pt;}
.y2eb_c00001{bottom:955.333333pt;}
.y401_c00001{bottom:956.000000pt;}
.y399_c00001{bottom:958.266667pt;}
.y52c_c00001{bottom:961.732000pt;}
.y90_c00001{bottom:961.800000pt;}
.y1cf_c00001{bottom:962.065333pt;}
.yd2_c00001{bottom:962.732000pt;}
.y215_c00001{bottom:963.065333pt;}
.y137_c00001{bottom:963.333333pt;}
.y241_c00001{bottom:964.933333pt;}
.y452_c00001{bottom:965.266667pt;}
.y19f_c00001{bottom:965.600000pt;}
.y34a_c00001{bottom:965.933333pt;}
.y3ff_c00001{bottom:966.865333pt;}
.y91_c00001{bottom:967.532000pt;}
.y60_c00001{bottom:967.800000pt;}
.ycc_c00001{bottom:967.865333pt;}
.y398_c00001{bottom:968.198667pt;}
.y36d_c00001{bottom:968.532000pt;}
.y1f6_c00001{bottom:968.800000pt;}
.yd1_c00001{bottom:969.466667pt;}
.y4_c00001{bottom:969.800000pt;}
.y5f_c00001{bottom:970.065333pt;}
.y1f5_c00001{bottom:970.732000pt;}
.yd0_c00001{bottom:971.065333pt;}
.y400_c00001{bottom:971.398667pt;}
.y327_c00001{bottom:971.666667pt;}
.y135_c00001{bottom:972.000000pt;}
.ycf_c00001{bottom:972.333333pt;}
.y3c9_c00001{bottom:972.600000pt;}
.y23f_c00001{bottom:973.000000pt;}
.yf7_c00001{bottom:973.333333pt;}
.y1a0_c00001{bottom:973.600000pt;}
.y1d1_c00001{bottom:974.865333pt;}
.y270_c00001{bottom:975.800000pt;}
.y451_c00001{bottom:976.133333pt;}
.y348_c00001{bottom:976.198667pt;}
.y1d0_c00001{bottom:977.000000pt;}
.y3_c00001{bottom:977.133333pt;}
.y136_c00001{bottom:977.333333pt;}
.yce_c00001{bottom:977.466667pt;}
.y21a_c00001{bottom:977.800000pt;}
.y240_c00001{bottom:978.266667pt;}
.y2_c00001{bottom:979.333333pt;}
.y36e_c00001{bottom:979.666667pt;}
.y349_c00001{bottom:980.333333pt;}
.y470_c00001{bottom:980.933333pt;}
.y427_c00001{bottom:981.266667pt;}
.y219_c00001{bottom:981.466667pt;}
.ycd_c00001{bottom:982.732000pt;}
.y1_c00001{bottom:982.865333pt;}
.y299_c00001{bottom:982.933333pt;}
.y328_c00001{bottom:983.532000pt;}
.y3cb_c00001{bottom:984.466667pt;}
.y2bf_c00001{bottom:985.732000pt;}
.y426_c00001{bottom:985.800000pt;}
.y4a6_c00001{bottom:986.133333pt;}
.y29a_c00001{bottom:986.266667pt;}
.y272_c00001{bottom:987.666667pt;}
.y3ca_c00001{bottom:988.133333pt;}
.y52b_c00001{bottom:988.333333pt;}
.y2c_c00001{bottom:988.933333pt;}
.y271_c00001{bottom:990.532000pt;}
.y2d_c00001{bottom:991.865333pt;}
.y471_c00001{bottom:992.800000pt;}
.y2be_c00001{bottom:1012.333333pt;}
.y520_c00001{bottom:1044.000000pt;}
.h8_c00001{height:15.703125pt;}
.h9_c00001{height:17.072000pt;}
.h1a_c00001{height:20.937500pt;}
.h2e_c00001{height:36.640625pt;}
.h2b_c00001{height:41.875000pt;}
.h5_c00001{height:47.109375pt;}
.h1_c00001{height:48.375000pt;}
.h7_c00001{height:52.343750pt;}
.h2_c00001{height:53.750000pt;}
.h12_c00001{height:55.625000pt;}
.hc_c00001{height:57.549479pt;}
.h4_c00001{height:57.578125pt;}
.he_c00001{height:59.125000pt;}
.h18_c00001{height:61.187500pt;}
.hf_c00001{height:62.781250pt;}
.h3_c00001{height:62.812500pt;}
.h15_c00001{height:64.500000pt;}
.h2c_c00001{height:65.217833pt;}
.h20_c00001{height:66.750000pt;}
.h16_c00001{height:68.013021pt;}
.hd_c00001{height:68.046875pt;}
.hb_c00001{height:69.875000pt;}
.ha_c00001{height:73.244792pt;}
.h22_c00001{height:73.281250pt;}
.h10_c00001{height:75.250000pt;}
.h2d_c00001{height:76.673833pt;}
.h1e_c00001{height:78.476562pt;}
.h6_c00001{height:78.515625pt;}
.h1b_c00001{height:80.625000pt;}
.h27_c00001{height:83.437500pt;}
.h21_c00001{height:83.708333pt;}
.h1d_c00001{height:83.750000pt;}
.h23_c00001{height:86.000000pt;}
.h28_c00001{height:88.940104pt;}
.h24_c00001{height:88.984375pt;}
.h11_c00001{height:94.218750pt;}
.h17_c00001{height:96.750000pt;}
.h2a_c00001{height:104.687500pt;}
.h25_c00001{height:109.867188pt;}
.h26_c00001{height:115.098958pt;}
.h1f_c00001{height:120.330729pt;}
.h29_c00001{height:120.600177pt;}
.h19_c00001{height:123.625000pt;}
.h2f_c00001{height:128.244792pt;}
.h1c_c00001{height:129.000000pt;}
.h13_c00001{height:130.859375pt;}
.h14_c00001{height:151.796875pt;}
.h0_c00001{height:1044.000000pt;}
.w0_c00001{width:650.646400pt;}
.w1_c00001{width:650.666667pt;}
.x147_c00001{left:-18.897600pt;}
.x0_c00001{left:0.000000pt;}
.x71_c00001{left:17.902400pt;}
.x6e_c00001{left:19.502400pt;}
.x6d_c00001{left:20.769067pt;}
.xd7_c00001{left:21.769067pt;}
.x6a_c00001{left:23.035733pt;}
.x65_c00001{left:24.301067pt;}
.x63_c00001{left:25.235733pt;}
.x93_c00001{left:26.569067pt;}
.x92_c00001{left:27.502400pt;}
.x91_c00001{left:28.769067pt;}
.x90_c00001{left:29.769067pt;}
.x8f_c00001{left:30.702400pt;}
.x9f_c00001{left:31.634400pt;}
.x68_c00001{left:32.635733pt;}
.xa1_c00001{left:33.569067pt;}
.x8e_c00001{left:34.569067pt;}
.x103_c00001{left:35.502400pt;}
.x3b_c00001{left:36.435733pt;}
.x3d_c00001{left:37.769067pt;}
.x38_c00001{left:38.702400pt;}
.x37_c00001{left:39.969067pt;}
.x33_c00001{left:41.235733pt;}
.x74_c00001{left:42.835733pt;}
.xa9_c00001{left:43.835733pt;}
.x73_c00001{left:44.769067pt;}
.x17_c00001{left:45.769067pt;}
.x15_c00001{left:47.369067pt;}
.x13_c00001{left:48.302400pt;}
.x6c_c00001{left:49.235733pt;}
.x6f_c00001{left:50.569067pt;}
.x31_c00001{left:51.502400pt;}
.xc0_c00001{left:53.102400pt;}
.x8c_c00001{left:54.035733pt;}
.x3e_c00001{left:55.035733pt;}
.x70_c00001{left:55.969067pt;}
.x3c_c00001{left:57.235733pt;}
.x8a_c00001{left:58.235733pt;}
.xa0_c00001{left:59.502400pt;}
.x30_c00001{left:60.435733pt;}
.x89_c00001{left:61.435733pt;}
.x7c_c00001{left:63.035733pt;}
.x79_c00001{left:64.635733pt;}
.x7f_c00001{left:65.569067pt;}
.x80_c00001{left:66.569067pt;}
.xf_c00001{left:68.167733pt;}
.x85_c00001{left:69.769067pt;}
.xb_c00001{left:70.702400pt;}
.x8_c00001{left:71.969067pt;}
.x7_c00001{left:73.235733pt;}
.x26_c00001{left:74.235733pt;}
.x1a_c00001{left:75.167733pt;}
.x16_c00001{left:76.167733pt;}
.x14_c00001{left:77.435733pt;}
.x5e_c00001{left:78.702400pt;}
.x8b_c00001{left:79.969067pt;}
.x98_c00001{left:81.235733pt;}
.x69_c00001{left:82.235733pt;}
.x78_c00001{left:83.835733pt;}
.x46_c00001{left:85.102400pt;}
.x95_c00001{left:86.369067pt;}
.x99_c00001{left:87.635733pt;}
.x82_c00001{left:88.635733pt;}
.x11c_c00001{left:89.902400pt;}
.x87_c00001{left:90.835733pt;}
.xca_c00001{left:92.169067pt;}
.x2a_c00001{left:93.769067pt;}
.x27_c00001{left:95.369067pt;}
.xc7_c00001{left:96.635733pt;}
.x5c_c00001{left:97.902400pt;}
.x86_c00001{left:99.169067pt;}
.xe_c00001{left:101.102400pt;}
.x6_c00001{left:102.702400pt;}
.x2b_c00001{left:103.969067pt;}
.xae_c00001{left:105.569067pt;}
.x13a_c00001{left:106.835733pt;}
.xee_c00001{left:107.835733pt;}
.x9a_c00001{left:109.102400pt;}
.x15a_c00001{left:110.035733pt;}
.xa2_c00001{left:111.369067pt;}
.x9b_c00001{left:112.635733pt;}
.x120_c00001{left:114.835733pt;}
.x4f_c00001{left:115.835733pt;}
.xbf_c00001{left:117.102400pt;}
.xe0_c00001{left:119.369067pt;}
.x162_c00001{left:120.302400pt;}
.x10_c00001{left:121.235733pt;}
.x15d_c00001{left:122.569067pt;}
.x11_c00001{left:123.835733pt;}
.x36_c00001{left:124.769067pt;}
.x7d_c00001{left:127.369067pt;}
.x15e_c00001{left:129.235733pt;}
.x83_c00001{left:131.502400pt;}
.x101_c00001{left:132.435733pt;}
.x8d_c00001{left:133.769067pt;}
.x142_c00001{left:135.635733pt;}
.x3f_c00001{left:136.969067pt;}
.x125_c00001{left:138.235733pt;}
.x1b_c00001{left:139.502400pt;}
.x133_c00001{left:140.435733pt;}
.x23_c00001{left:142.035733pt;}
.x173_c00001{left:144.302400pt;}
.xb2_c00001{left:146.569067pt;}
.xbb_c00001{left:147.502400pt;}
.x144_c00001{left:148.435733pt;}
.x150_c00001{left:149.435733pt;}
.xaf_c00001{left:150.702400pt;}
.xf2_c00001{left:152.302400pt;}
.xe6_c00001{left:154.835733pt;}
.x5a_c00001{left:156.435733pt;}
.x139_c00001{left:159.635733pt;}
.xcf_c00001{left:161.901067pt;}
.x169_c00001{left:162.835733pt;}
.x1c_c00001{left:165.102400pt;}
.x12d_c00001{left:166.035733pt;}
.x11e_c00001{left:168.302400pt;}
.x7e_c00001{left:169.567733pt;}
.x9d_c00001{left:171.169067pt;}
.xd1_c00001{left:172.435733pt;}
.x84_c00001{left:174.369067pt;}
.x138_c00001{left:175.369067pt;}
.xd4_c00001{left:176.302400pt;}
.x15b_c00001{left:177.567733pt;}
.x24_c00001{left:180.435733pt;}
.x50_c00001{left:182.702400pt;}
.xa6_c00001{left:183.969067pt;}
.xe4_c00001{left:185.234400pt;}
.xf8_c00001{left:186.835733pt;}
.x119_c00001{left:189.102400pt;}
.x171_c00001{left:193.235733pt;}
.xcb_c00001{left:195.169067pt;}
.x81_c00001{left:198.035733pt;}
.x117_c00001{left:199.035733pt;}
.x175_c00001{left:200.969067pt;}
.x146_c00001{left:201.902400pt;}
.x66_c00001{left:202.835733pt;}
.xf9_c00001{left:204.169067pt;}
.x58_c00001{left:207.369067pt;}
.xd9_c00001{left:208.302400pt;}
.x170_c00001{left:209.235733pt;}
.x129_c00001{left:211.169067pt;}
.xec_c00001{left:212.169067pt;}
.x67_c00001{left:214.702400pt;}
.x94_c00001{left:217.569067pt;}
.x128_c00001{left:218.835733pt;}
.xe3_c00001{left:219.835733pt;}
.x62_c00001{left:222.369067pt;}
.x11a_c00001{left:225.235733pt;}
.x115_c00001{left:230.369067pt;}
.x123_c00001{left:231.369067pt;}
.x161_c00001{left:232.302400pt;}
.x56_c00001{left:234.235733pt;}
.xb5_c00001{left:235.502400pt;}
.xc6_c00001{left:236.435733pt;}
.x88_c00001{left:237.435733pt;}
.x107_c00001{left:239.969067pt;}
.xb1_c00001{left:240.969067pt;}
.x47_c00001{left:241.902400pt;}
.xa3_c00001{left:243.169067pt;}
.x96_c00001{left:245.435733pt;}
.x21_c00001{left:247.035733pt;}
.xbc_c00001{left:248.969067pt;}
.x155_c00001{left:249.902400pt;}
.x20_c00001{left:250.835733pt;}
.xb9_c00001{left:252.769067pt;}
.x110_c00001{left:254.369067pt;}
.xac_c00001{left:255.635733pt;}
.x13c_c00001{left:256.969067pt;}
.x176_c00001{left:258.235733pt;}
.x4c_c00001{left:259.169067pt;}
.x12_c00001{left:260.435733pt;}
.x153_c00001{left:262.702400pt;}
.x75_c00001{left:263.969067pt;}
.xc9_c00001{left:265.902400pt;}
.x9e_c00001{left:267.169067pt;}
.x22_c00001{left:268.169067pt;}
.xaa_c00001{left:269.435733pt;}
.xf3_c00001{left:270.369067pt;}
.x97_c00001{left:271.635733pt;}
.x1_c00001{left:272.635733pt;}
.xa4_c00001{left:273.569067pt;}
.xa7_c00001{left:275.502400pt;}
.x16e_c00001{left:278.035733pt;}
.xba_c00001{left:279.635733pt;}
.x13d_c00001{left:281.569067pt;}
.xe7_c00001{left:282.569067pt;}
.x11b_c00001{left:283.835733pt;}
.x4d_c00001{left:284.769067pt;}
.x100_c00001{left:285.769067pt;}
.x10d_c00001{left:287.969067pt;}
.x16a_c00001{left:289.569067pt;}
.x18_c00001{left:291.502400pt;}
.x154_c00001{left:292.435733pt;}
.x158_c00001{left:294.035733pt;}
.x57_c00001{left:295.035733pt;}
.x48_c00001{left:296.302400pt;}
.x2_c00001{left:297.235733pt;}
.xc5_c00001{left:298.569067pt;}
.x143_c00001{left:299.502400pt;}
.x121_c00001{left:301.102400pt;}
.x5_c00001{left:303.035733pt;}
.x16c_c00001{left:305.902400pt;}
.x28_c00001{left:306.835733pt;}
.x19_c00001{left:309.102400pt;}
.xcd_c00001{left:310.369067pt;}
.xdb_c00001{left:312.302400pt;}
.x15f_c00001{left:313.235733pt;}
.xf0_c00001{left:314.235733pt;}
.x164_c00001{left:315.502400pt;}
.xdd_c00001{left:316.769067pt;}
.x5b_c00001{left:318.369067pt;}
.x118_c00001{left:319.635733pt;}
.x159_c00001{left:321.902400pt;}
.xf4_c00001{left:323.502400pt;}
.xbe_c00001{left:326.034400pt;}
.x40_c00001{left:329.569067pt;}
.x29_c00001{left:330.569067pt;}
.xda_c00001{left:331.502400pt;}
.x127_c00001{left:333.435733pt;}
.x51_c00001{left:335.367733pt;}
.xfa_c00001{left:336.302400pt;}
.x13e_c00001{left:337.235733pt;}
.x160_c00001{left:338.835733pt;}
.x52_c00001{left:340.435733pt;}
.x102_c00001{left:341.769067pt;}
.xf7_c00001{left:343.969067pt;}
.x41_c00001{left:345.235733pt;}
.x13b_c00001{left:346.835733pt;}
.x59_c00001{left:350.367733pt;}
.x34_c00001{left:355.502400pt;}
.xff_c00001{left:358.701067pt;}
.xc3_c00001{left:359.635733pt;}
.x166_c00001{left:360.969067pt;}
.x108_c00001{left:362.569067pt;}
.x53_c00001{left:364.769067pt;}
.xcc_c00001{left:366.701067pt;}
.xc2_c00001{left:367.635733pt;}
.x1f_c00001{left:369.902400pt;}
.x54_c00001{left:371.835733pt;}
.xb0_c00001{left:374.367733pt;}
.xa5_c00001{left:375.969067pt;}
.x55_c00001{left:376.969067pt;}
.x152_c00001{left:378.569067pt;}
.xf5_c00001{left:379.502400pt;}
.xea_c00001{left:382.034400pt;}
.xef_c00001{left:383.635733pt;}
.xf1_c00001{left:386.569067pt;}
.x25_c00001{left:387.502400pt;}
.xfe_c00001{left:388.769067pt;}
.x12f_c00001{left:391.969067pt;}
.x49_c00001{left:393.235733pt;}
.x12a_c00001{left:397.769067pt;}
.x5f_c00001{left:398.702400pt;}
.xdc_c00001{left:400.635733pt;}
.x6b_c00001{left:403.502400pt;}
.x1d_c00001{left:405.102400pt;}
.xf6_c00001{left:408.302400pt;}
.x45_c00001{left:409.902400pt;}
.x105_c00001{left:410.835733pt;}
.xd0_c00001{left:412.435733pt;}
.x4e_c00001{left:417.235733pt;}
.x16d_c00001{left:419.169067pt;}
.x177_c00001{left:420.169067pt;}
.x9_c00001{left:421.435733pt;}
.x60_c00001{left:423.969067pt;}
.xb3_c00001{left:425.569067pt;}
.xbd_c00001{left:427.502400pt;}
.x15c_c00001{left:429.769067pt;}
.x12e_c00001{left:431.635733pt;}
.xc_c00001{left:433.235733pt;}
.xed_c00001{left:439.035733pt;}
.x1e_c00001{left:439.969067pt;}
.x72_c00001{left:441.235733pt;}
.x76_c00001{left:443.835733pt;}
.xd5_c00001{left:446.035733pt;}
.xd2_c00001{left:447.969067pt;}
.x3_c00001{left:449.902400pt;}
.xa_c00001{left:451.502400pt;}
.x126_c00001{left:453.102400pt;}
.x135_c00001{left:454.035733pt;}
.x168_c00001{left:455.035733pt;}
.xd_c00001{left:458.235733pt;}
.x163_c00001{left:460.169067pt;}
.x12b_c00001{left:461.769067pt;}
.xd6_c00001{left:463.635733pt;}
.x157_c00001{left:464.969067pt;}
.x5d_c00001{left:469.769067pt;}
.x136_c00001{left:474.569067pt;}
.x149_c00001{left:477.102400pt;}
.x116_c00001{left:478.702400pt;}
.xdf_c00001{left:480.969067pt;}
.x106_c00001{left:481.902400pt;}
.x16b_c00001{left:483.169067pt;}
.x4a_c00001{left:486.035733pt;}
.x132_c00001{left:487.035733pt;}
.x148_c00001{left:488.302400pt;}
.x124_c00001{left:490.569067pt;}
.x137_c00001{left:491.835733pt;}
.xad_c00001{left:494.035733pt;}
.xde_c00001{left:497.235733pt;}
.x113_c00001{left:500.169067pt;}
.x156_c00001{left:501.102400pt;}
.x4b_c00001{left:504.302400pt;}
.xe1_c00001{left:505.569067pt;}
.x10e_c00001{left:506.835733pt;}
.x10b_c00001{left:507.835733pt;}
.x14a_c00001{left:509.102400pt;}
.x39_c00001{left:510.369067pt;}
.x13f_c00001{left:511.635733pt;}
.x35_c00001{left:512.969067pt;}
.xc8_c00001{left:514.235733pt;}
.x61_c00001{left:515.835733pt;}
.x122_c00001{left:517.102400pt;}
.xc4_c00001{left:518.702400pt;}
.x104_c00001{left:519.635733pt;}
.x7a_c00001{left:522.235733pt;}
.x165_c00001{left:523.169067pt;}
.x7b_c00001{left:524.435733pt;}
.x10a_c00001{left:527.969067pt;}
.x64_c00001{left:528.969067pt;}
.x42_c00001{left:531.835733pt;}
.xfd_c00001{left:534.035733pt;}
.xfc_c00001{left:535.635733pt;}
.x130_c00001{left:537.902400pt;}
.x43_c00001{left:539.169067pt;}
.x32_c00001{left:540.769067pt;}
.x9c_c00001{left:542.702400pt;}
.x131_c00001{left:544.635733pt;}
.x12c_c00001{left:545.569067pt;}
.x10f_c00001{left:547.169067pt;}
.xa8_c00001{left:548.435733pt;}
.x141_c00001{left:549.769067pt;}
.xe5_c00001{left:550.702400pt;}
.x112_c00001{left:552.302400pt;}
.x2d_c00001{left:553.902400pt;}
.x11d_c00001{left:555.169067pt;}
.x11f_c00001{left:556.769067pt;}
.x111_c00001{left:558.369067pt;}
.x151_c00001{left:559.369067pt;}
.xeb_c00001{left:560.302400pt;}
.xd3_c00001{left:561.235733pt;}
.xe9_c00001{left:563.169067pt;}
.x167_c00001{left:565.769067pt;}
.xd8_c00001{left:567.035733pt;}
.x44_c00001{left:568.302400pt;}
.xce_c00001{left:572.169067pt;}
.xb4_c00001{left:574.702400pt;}
.x2e_c00001{left:575.969067pt;}
.xab_c00001{left:576.969067pt;}
.x2f_c00001{left:578.235733pt;}
.x134_c00001{left:579.169067pt;}
.x3a_c00001{left:580.169067pt;}
.xe8_c00001{left:581.435733pt;}
.x172_c00001{left:583.035733pt;}
.x77_c00001{left:584.635733pt;}
.x14f_c00001{left:586.835733pt;}
.x10c_c00001{left:587.835733pt;}
.xb8_c00001{left:589.102400pt;}
.xb6_c00001{left:590.369067pt;}
.x109_c00001{left:591.369067pt;}
.x4_c00001{left:592.635733pt;}
.x2c_c00001{left:595.502400pt;}
.x145_c00001{left:596.435733pt;}
.xb7_c00001{left:597.435733pt;}
.xc1_c00001{left:598.702400pt;}
.x16f_c00001{left:600.969067pt;}
.x140_c00001{left:602.235733pt;}
.x114_c00001{left:603.502400pt;}
.xfb_c00001{left:604.435733pt;}
.x174_c00001{left:605.435733pt;}
.x14e_c00001{left:609.235733pt;}
.xe2_c00001{left:610.235733pt;}
.x14d_c00001{left:613.769067pt;}
.x14c_c00001{left:615.969067pt;}
.x14b_c00001{left:622.702400pt;}
}




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